diff options
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | emulators/openmsx/Makefile | 11 |
2 files changed, 9 insertions, 5 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 5e59eaf72f1..de87f9f1a59 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.6145 2004/06/05 17:47:12 xtraeme Exp $ +$NetBSD: CHANGES,v 1.6146 2004/06/05 18:50:59 xtraeme Exp $ Changes to the packages collection and infrastructure in 2004: @@ -2799,3 +2799,4 @@ Changes to the packages collection and infrastructure in 2004: Updated raine to 0.40.2 [xtraeme 2004-06-05] Updated mew to 2.3nb1 [minskim 2004-06-05] Added weechat-0.0.6 [xtraeme 2004-06-05] + Updated openmsx to 0.4.0nb1 [xtraeme 2004-06-05] diff --git a/emulators/openmsx/Makefile b/emulators/openmsx/Makefile index 209b2cffd8f..fe17c0b4343 100644 --- a/emulators/openmsx/Makefile +++ b/emulators/openmsx/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2004/06/05 17:26:55 xtraeme Exp $ +# $NetBSD: Makefile,v 1.3 2004/06/05 18:50:59 xtraeme Exp $ # DISTNAME= openmsx-0.4.0 +PKGREVISION= 1 CATEGORIES= emulators MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=openmsx/} @@ -30,11 +31,13 @@ SUBST_FILES.prefix= build/custom.mk SUBST_SED.prefix= -e "s,/opt/openMSX,${PREFIX}/openmsx," SUBST_MESSAGE.prefix= "Fixing installation directory." -post-install: +post-build: @( \ - ${ECHO_MSG} "#!/bin/sh"; \ - ${ECHO_MSG} "exec ${PREFIX}/openmsx/bin/openmsx" \ + ${ECHO} "#!${SH}"; \ + ${ECHO} 'exec ${PREFIX}/openmsx/bin/openmsx $$@' \ ) > ${WRKSRC}/openmsx.sh + +post-install: ${INSTALL_SCRIPT} ${WRKSRC}/openmsx.sh ${PREFIX}/bin/openmsx .include "../../devel/SDL/buildlink3.mk" |