Update to 0.0.19.
ok bentley@ (maintainer)
This commit is contained in:
parent
97889e162c
commit
fba02450a5
@ -1,10 +1,10 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.4 2015/09/21 11:27:08 pascal Exp $
|
||||
# $OpenBSD: Makefile.inc,v 1.5 2015/12/03 22:03:18 pascal Exp $
|
||||
|
||||
ONLY_FOR_ARCHS = amd64 i386
|
||||
|
||||
CATEGORIES = games
|
||||
|
||||
V ?= 0.0.18
|
||||
V ?= 0.0.19
|
||||
|
||||
HOMEPAGE = http://play0ad.com/
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.8 2015/09/21 11:27:08 pascal Exp $
|
||||
# $OpenBSD: Makefile,v 1.9 2015/12/03 22:03:18 pascal Exp $
|
||||
|
||||
COMMENT = historical real-time strategy game
|
||||
|
||||
@ -8,7 +8,7 @@ PKGNAME = 0ad-${V}
|
||||
SO_VERSION = 0.0
|
||||
SHARED_LIBS += mozjs31-ps-release ${SO_VERSION}
|
||||
|
||||
WANTLIB += GL SDL X11 Xcursor boost_filesystem boost_system c curl
|
||||
WANTLIB += GL SDL2 X11 Xcursor boost_filesystem boost_system c curl
|
||||
WANTLIB += enet execinfo gloox icui18n icuuc jpeg m miniupnpc
|
||||
WANTLIB += nspr4 ogg openal plc4 plds4 png pthread vorbis vorbisfile
|
||||
WANTLIB += xml2 z
|
||||
@ -20,7 +20,7 @@ LIB_DEPENDS = audio/libvorbis \
|
||||
devel/boost \
|
||||
devel/libexecinfo \
|
||||
devel/nspr \
|
||||
devel/sdl \
|
||||
devel/sdl2 \
|
||||
graphics/jpeg \
|
||||
graphics/png \
|
||||
net/curl \
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (0ad-0.0.18-alpha-unix-build.tar.gz) = zA1w57Yzs1rJun3yk6E5xJdNVLlXgwVz42o/+XEjTXA=
|
||||
SIZE (0ad-0.0.18-alpha-unix-build.tar.gz) = 28382799
|
||||
SHA256 (0ad-0.0.19-alpha-unix-build.tar.gz) = 9hA6HPMmnoikBOM7AFN+rXT6gVLj6vRImknAZDb0khs=
|
||||
SIZE (0ad-0.0.19-alpha-unix-build.tar.gz) = 28412491
|
||||
|
@ -1,8 +1,8 @@
|
||||
$OpenBSD: patch-build_workspaces_update-workspaces_sh,v 1.3 2015/09/21 11:27:08 pascal Exp $
|
||||
$OpenBSD: patch-build_workspaces_update-workspaces_sh,v 1.4 2015/12/03 22:03:18 pascal Exp $
|
||||
Don't build bundled libraries during configure.
|
||||
--- build/workspaces/update-workspaces.sh.orig.port Mon Jan 26 19:19:24 2015
|
||||
+++ build/workspaces/update-workspaces.sh Thu Aug 13 14:57:16 2015
|
||||
@@ -83,7 +83,7 @@ if [ "`uname -s`" != "Darwin" ]; then
|
||||
--- build/workspaces/update-workspaces.sh.orig.port Sun Jun 14 22:43:12 2015
|
||||
+++ build/workspaces/update-workspaces.sh Fri Nov 27 18:40:37 2015
|
||||
@@ -81,7 +81,7 @@ if [ "`uname -s`" != "Darwin" ]; then
|
||||
echo
|
||||
|
||||
# Build/update bundled external libraries
|
||||
|
@ -1,21 +1,7 @@
|
||||
$OpenBSD: patch-libraries_source_spidermonkey_build_sh,v 1.1 2015/09/21 11:27:08 pascal Exp $
|
||||
--- libraries/source/spidermonkey/build.sh.orig.port Sat Jan 24 15:46:52 2015
|
||||
+++ libraries/source/spidermonkey/build.sh Mon Aug 31 10:52:29 2015
|
||||
@@ -84,6 +84,13 @@ patch -p1 -i ../FixTraceLoggerFlushing.diff
|
||||
# It makes quite a big difference for performance.
|
||||
# https://bugzilla.mozilla.org/show_bug.cgi?id=1046176
|
||||
patch -p1 -i ../FixForOfBailouts.diff
|
||||
+
|
||||
+# patch to fix compilation on systems with proper endian.h
|
||||
+patch -p1 -i ../FixForEndian.diff
|
||||
+
|
||||
+# patch to fix SO_VERSION on OpenBSD
|
||||
+patch -p1 -i ../FixSoVersionOpenBSD.diff
|
||||
+
|
||||
cd ..
|
||||
|
||||
# Clean up header files that may be left over by earlier versions of SpiderMonkey
|
||||
@@ -99,17 +106,17 @@ rm -rf build-release
|
||||
$OpenBSD: patch-libraries_source_spidermonkey_build_sh,v 1.2 2015/12/03 22:03:18 pascal Exp $
|
||||
--- libraries/source/spidermonkey/build.sh.orig.port Wed Sep 30 22:28:13 2015
|
||||
+++ libraries/source/spidermonkey/build.sh Fri Nov 27 18:40:37 2015
|
||||
@@ -86,17 +86,17 @@ rm -rf build-release
|
||||
# the LIBRARY_NAME for each build.
|
||||
# (We use perl instead of sed so that it works with MozillaBuild on Windows,
|
||||
# which has an ancient sed.)
|
||||
@ -40,7 +26,7 @@ $OpenBSD: patch-libraries_source_spidermonkey_build_sh,v 1.1 2015/09/21 11:27:08
|
||||
${MAKE} ${MAKE_OPTS}
|
||||
cd ..
|
||||
|
||||
@@ -134,10 +141,10 @@ else
|
||||
@@ -121,10 +121,10 @@ else
|
||||
LIB_DST_SUFFIX=.so
|
||||
if [ "`uname -s`" = "OpenBSD" ]
|
||||
then
|
||||
@ -55,7 +41,7 @@ $OpenBSD: patch-libraries_source_spidermonkey_build_sh,v 1.1 2015/09/21 11:27:08
|
||||
fi
|
||||
fi
|
||||
|
||||
@@ -147,12 +154,12 @@ fi
|
||||
@@ -134,12 +134,12 @@ fi
|
||||
mkdir -p ${INCLUDE_DIR_DEBUG}
|
||||
mkdir -p ${INCLUDE_DIR_RELEASE}
|
||||
cp -R -L mozjs31/js/src/build-release/dist/include/* ${INCLUDE_DIR_RELEASE}/
|
||||
|
@ -0,0 +1,13 @@
|
||||
$OpenBSD: patch-libraries_source_spidermonkey_patch_sh,v 1.1 2015/12/03 22:03:18 pascal Exp $
|
||||
--- libraries/source/spidermonkey/patch.sh.orig.port Fri Nov 27 18:41:05 2015
|
||||
+++ libraries/source/spidermonkey/patch.sh Fri Nov 27 18:41:18 2015
|
||||
@@ -23,3 +23,9 @@ patch -p1 -i ../FixBug1119228.diff
|
||||
|
||||
# Fix debug build failure on platforms with Ion disabled (eg AArch64)
|
||||
patch -p1 -i ../FixBug1037470.diff
|
||||
+
|
||||
+# patch to fix compilation on systems with proper endian.h
|
||||
+patch -p1 -i ../FixForEndian.diff
|
||||
+
|
||||
+# patch to fix SO_VERSION on OpenBSD
|
||||
+patch -p1 -i ../FixSoVersionOpenBSD.diff
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2015/09/21 11:27:08 pascal Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.4 2015/12/03 22:03:18 pascal Exp $
|
||||
bin/0ad
|
||||
@bin bin/pyrogenesis
|
||||
lib/libCollada.so
|
||||
@ -26,9 +26,6 @@ share/0ad/l10n/de.engine.po
|
||||
share/0ad/l10n/en_GB.engine.po
|
||||
share/0ad/l10n/engine.pot
|
||||
share/0ad/l10n/es.engine.po
|
||||
share/0ad/l10n/es_AR.engine.po
|
||||
share/0ad/l10n/es_CL.engine.po
|
||||
share/0ad/l10n/es_MX.engine.po
|
||||
share/0ad/l10n/fr.engine.po
|
||||
share/0ad/l10n/gd.engine.po
|
||||
share/0ad/l10n/gl.engine.po
|
||||
@ -36,9 +33,11 @@ share/0ad/l10n/id.engine.po
|
||||
share/0ad/l10n/it.engine.po
|
||||
share/0ad/l10n/messages.json
|
||||
share/0ad/l10n/nl.engine.po
|
||||
share/0ad/l10n/pl.engine.po
|
||||
share/0ad/l10n/pt_BR.engine.po
|
||||
share/0ad/l10n/pt_PT.engine.po
|
||||
share/0ad/l10n/ru.engine.po
|
||||
share/0ad/l10n/sk.engine.po
|
||||
share/0ad/l10n/tr.engine.po
|
||||
share/0ad/mods/_test.dae/
|
||||
share/0ad/mods/_test.dae/art/
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (0ad-0.0.18-alpha-unix-data.tar.gz) = sa3/iPARD5iAOBVlhZFoJ6xNPe1rcFkeVdBORMD1euw=
|
||||
SIZE (0ad-0.0.18-alpha-unix-data.tar.gz) = 709492951
|
||||
SHA256 (0ad-0.0.19-alpha-unix-data.tar.gz) = 39MgxWUaZ05SG5/4pLa8ca6jqTsdn+Q7Wl6rw2tBtac=
|
||||
SIZE (0ad-0.0.19-alpha-unix-data.tar.gz) = 714612776
|
||||
|
Loading…
x
Reference in New Issue
Block a user