summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorhe <he>2013-07-09 10:24:22 +0000
committerhe <he>2013-07-09 10:24:22 +0000
commita1b22a75d26e3591b208b73ab1f362b7d6df5b2e (patch)
tree6f4b3676db5478e78344bb8d7ac48e332a942cbe /emulators
parentb9b74b5b6c8c45a6180958c5f620ac95cea90969 (diff)
downloadpkgsrc-a1b22a75d26e3591b208b73ab1f362b7d6df5b2e.tar.gz
Fix problem related to search of X11 application defaults: pick
it up from the path specified in the package Makefile. Also fix the default ROM path fixup so that it actually works. Bump PKGREVISION.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/x48/Makefile11
-rw-r--r--emulators/x48/distinfo3
-rw-r--r--emulators/x48/patches/patch-src_x48_x11.c18
3 files changed, 27 insertions, 5 deletions
diff --git a/emulators/x48/Makefile b/emulators/x48/Makefile
index 271044e1a3f..3bf358b4486 100644
--- a/emulators/x48/Makefile
+++ b/emulators/x48/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.16 2013/07/08 08:37:10 he Exp $
+# $NetBSD: Makefile,v 1.17 2013/07/09 10:24:22 he Exp $
#
DISTNAME= x48-0.6.4
+PKGREVISION= 1
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=x48.berlios/}
DISTFILES= ${PKGNAME}${EXTRACT_SUFX}
@@ -21,20 +22,22 @@ USE_LIBTOOL= yes
USE_TOOLS+= gmake
DATADIR= lib/x48
+APPDEFS= lib/X11/app-defaults
INSTALLATION_DIRS+= share/doc/x48/romdump
INSTALLATION_DIRS+= ${DATADIR}
-INSTALLATION_DIRS+= lib/X11/app-defaults
+INSTALLATION_DIRS+= ${APPDEFS}
CONFIGURE_ARGS= --disable-shm
CPPFLAGS+= -DHAVE_STDLIB
+CPPFLAGS+= -DX11APPDEFS=\"${PREFIX}/${APPDEFS}\"
SUBST_CLASSES= fix-ad
SUBST_STAGE.fix-ad= post-configure
SUBST_MESSAGE.fix-ad= Fix default rom path
-SUBST_FILES.fix-ad= X48.ad
-SUBST_SED.fix-ad= -e 's,"rom.dump,"${DATADIR}/gxrom-r,'
+SUBST_FILES.fix-ad= src/X48.ad
+SUBST_SED.fix-ad= -e 's,rom.dump,${PREFIX}/${DATADIR}/gxrom-r,'
pre-configure:
diff --git a/emulators/x48/distinfo b/emulators/x48/distinfo
index 573fd756b38..d331ce39f67 100644
--- a/emulators/x48/distinfo
+++ b/emulators/x48/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.8 2013/07/08 08:37:10 he Exp $
+$NetBSD: distinfo,v 1.9 2013/07/09 10:24:22 he Exp $
SHA1 (gxrom-r.bz2) = c60a83cd57681c3cb359f0cd2505ede686fdb4c8
RMD160 (gxrom-r.bz2) = 1dafce5902310161cb60f3dde401941565fd031c
@@ -14,3 +14,4 @@ SHA1 (patch-configure.ac) = 55f1033b0f49e0a296290a1af83f6772e5783f0d
SHA1 (patch-src_emulate.c) = 75a62b9038a07baff779ed7fad46252e276e69b0
SHA1 (patch-src_global.h) = 48f076bdf72fb7a6df92e1bb961997fb3844ab30
SHA1 (patch-src_serial.c) = 9b681d0d94ad53c9d770e54d56eddbda900627b1
+SHA1 (patch-src_x48_x11.c) = 4615a57f65e23f4352ea2717306f0095ef9464b0
diff --git a/emulators/x48/patches/patch-src_x48_x11.c b/emulators/x48/patches/patch-src_x48_x11.c
new file mode 100644
index 00000000000..94e3e6ff79d
--- /dev/null
+++ b/emulators/x48/patches/patch-src_x48_x11.c
@@ -0,0 +1,18 @@
+$NetBSD: patch-src_x48_x11.c,v 1.1 2013/07/09 10:24:22 he Exp $
+
+Pick X11 application defaults from path specified in the package
+Makefile.
+
+--- src/x48_x11.c.orig 2011-11-15 03:03:40.000000000 +0000
++++ src/x48_x11.c
+@@ -1100,8 +1100,9 @@ char **argv;
+ }
+
+ /* 2. /usr/lib/X11/app-defaults/X48 */
++ /* Erm... Rather, get this from package Makefile via CPPFLAGS */
+
+- merge_app_defaults("/usr/lib/X11/app-defaults", &rdb);
++ merge_app_defaults(X11APPDEFS, &rdb);
+
+ /* 3. Values in $XUSERFILESEARCHPATH/X48, or $XAPPLRESDIR/X48 */
+