diff options
author | jkh <jkh@FreeBSD.org> | 1994-10-08 23:44:58 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-10-08 23:44:58 +0000 |
commit | c8196b090af4c66c0e0e737b2ac717bd6d0c13e2 (patch) | |
tree | 6699e2c7455a3e4e2e7a7e13a4c05dc931ff84fc | |
parent | de011ca379e4376ff6ec65492f1395bce2b0a046 (diff) | |
download | FreeBSD-ports-c8196b090af4c66c0e0e737b2ac717bd6d0c13e2.zip FreeBSD-ports-c8196b090af4c66c0e0e737b2ac717bd6d0c13e2.tar.gz |
Jean-Marc Zucconi's updates from October 6th.
Submitted by: jmz
-rw-r--r-- | games/jetpack/files/patch-ac | 10 | ||||
-rw-r--r-- | games/xmris/scripts/pre-configure | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/games/jetpack/files/patch-ac b/games/jetpack/files/patch-ac index 11e8dcc..84864dd 100644 --- a/games/jetpack/files/patch-ac +++ b/games/jetpack/files/patch-ac @@ -1,5 +1,5 @@ *** Imakefile.orig Mon Apr 6 12:59:31 1992 ---- Imakefile Fri Sep 23 18:24:11 1994 +--- Imakefile Thu Oct 6 08:43:31 1994 *************** *** 1,54 **** ! SRCS = bitmap.c bonus.c collision.c demo.c draw.c erase.c events.c\ @@ -66,9 +66,9 @@ ! PROGRAMS = jetpack -! BINDIR = /usr/local/bin -! LIBDIR = /usr/local/lib/jetpack -! MANDIR = /usr/local/man/man6 +! BINDIR = $(PREFIX)/bin +! LIBDIR = $(PREFIX)/lib/jetpack +! MANDIR = $(PREFIX)/man/man6 # These defines override the template defaults. Trash em if you want to # use the template locations @@ -114,4 +114,4 @@ # man page as jetpack.1, so I install both and remove the bad one. install.man:: jetpack.man ! $(INSTALL) -c $(INSTMANFLAGS) jetpack.man $(MANDIR)/jetpack.6 -! @rm -f $(MANDIR)/jetpack.1x +! @rm -f $(MANDIR)/jetpack.1* diff --git a/games/xmris/scripts/pre-configure b/games/xmris/scripts/pre-configure index ba6bc09..bd262a3 100644 --- a/games/xmris/scripts/pre-configure +++ b/games/xmris/scripts/pre-configure @@ -9,7 +9,7 @@ fi mv ${WRKSRC}/Imakefile ${WRKSRC}/Imakefile.orig -echo "LOCAL=/usr/local" >${WRKSRC}/Imakefile || exit 1; +echo "LOCAL=$PREFIX" >${WRKSRC}/Imakefile || exit 1; # remove extra space after \ in continuation lines sed -e 's/\\ $/\\/' <${WRKSRC}/Imakefile.orig >>${WRKSRC}/Imakefile || exit 1 |