diff options
author | wiz <wiz> | 1999-12-29 01:41:00 +0000 |
---|---|---|
committer | wiz <wiz> | 1999-12-29 01:41:00 +0000 |
commit | e3704c93c6c3f9041a812045aa69bcde5a8e1793 (patch) | |
tree | 82e432bb417606be0e2b04c0bb0fa848366f8b39 /emulators/vice | |
parent | 1bde1a10332db7f70cabe1b1cecb58f8f0686980 (diff) | |
download | pkgsrc-e3704c93c6c3f9041a812045aa69bcde5a8e1793.tar.gz |
replaced some commands by their ${COMMAND} counterparts,
reordered lines for fewer pkglint warnings
Diffstat (limited to 'emulators/vice')
-rw-r--r-- | emulators/vice/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index 09889f6a857..0c6b4081c43 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 1999/11/23 16:26:12 hubertf Exp $ +# $NetBSD: Makefile,v 1.8 1999/12/29 01:41:01 wiz Exp $ DISTNAME= vice-1.0 CATEGORIES= emulators @@ -8,7 +8,6 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ 64gs.390852-01.bin \ kernal.4064.901246-01.bin \ kernal.sx.251104-04.bin -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= root@garbled.net HOMEPAGE= http://www.cs.cmu.edu/~dsladic/vice/vice.html @@ -18,13 +17,15 @@ NO_CDROM= ${RESTRICTED} NO_PACKAGE= ${RESTRICTED} MIRROR_DISTFILE= no +EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} + GNU_CONFIGURE= yes USE_X11= yes USE_GTEXINFO= yes # These changes are rather common, so sed instead of patch: post-patch: - @for file in `find ${WRKSRC} -name Makefile.in -print` \ + @for file in `${FIND} ${WRKSRC} -name Makefile.in -print` \ ${WRKSRC}/src/arch/unix/archdep.h; do \ ${MV} -f $$file $$file.orig && \ ${SED} -e s,/lib/vice/doc,/share/doc/vice, \ |