diff options
author | obrien <obrien@FreeBSD.org> | 1997-01-03 17:38:01 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-01-03 17:38:01 +0800 |
commit | 02a2a547475abccac110b403fa8c03923a0f80a8 (patch) | |
tree | 994a1119f83174e777cce15612e84c1a88a9c0c8 /games/xemeraldia | |
parent | 256e31ea6c06f7b19356f9cb777455184c857987 (diff) | |
download | freebsd-ports-gnome-02a2a547475abccac110b403fa8c03923a0f80a8.tar.gz freebsd-ports-gnome-02a2a547475abccac110b403fa8c03923a0f80a8.tar.zst freebsd-ports-gnome-02a2a547475abccac110b403fa8c03923a0f80a8.zip |
Switched to using MASTER_SITES=${MASTER_SITE_XCONTRIB} and
MASTER_SITE_SUBDIR=games
swallace wasn't listed as MAINTAINER of any of his ports
janek@gaja.ipan.lublin.pl wasn't listed as MAINTAINER of any of his ports
bin.bin --> ${BINOWN}.${BINGRP}
chown --> /usr/sbin/chown
(not everyone has /usr/sbin in their path, esp. if you sudo'ed to root)
mkdir -p --> ${MKDIR}
Diffstat (limited to 'games/xemeraldia')
-rw-r--r-- | games/xemeraldia/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/xemeraldia/Makefile b/games/xemeraldia/Makefile index 7cb8006b50ca..290d49ccc183 100644 --- a/games/xemeraldia/Makefile +++ b/games/xemeraldia/Makefile @@ -3,7 +3,7 @@ # Date created: 22 Mar 1995 # Whom: asami # -# $Id: Makefile,v 1.10 1996/11/18 11:25:25 asami Exp $ +# $Id: Makefile,v 1.11 1996/12/17 05:33:18 asami Exp $ # DISTNAME= xemeraldia-0.3 @@ -21,8 +21,8 @@ do-extract: if [ ! -f ${DISTNAME}.tar.gz ]; then \ zcat ${DISTFILES} | uudecode; \ fi) - @rm -rf ${WRKDIR} - @mkdir -p ${WRKDIR} + @${RM} -rf ${WRKDIR} + @${MKDIR} ${WRKDIR} @(cd ${WRKDIR}; tar -xzf \ ${DISTDIR}/${DISTNAME}.tar.gz) @@ -31,6 +31,6 @@ post-install: chmod 666 ${PREFIX}/lib/X11/.xemeraldia.scores pre-clean: - @rm -f ${DISTDIR}/${DISTNAME}.tar.gz + @${RM} -f ${DISTDIR}/${DISTNAME}.tar.gz .include <bsd.port.mk> |