diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-24 08:39:07 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-24 08:39:07 +0000 |
commit | 9df56bbe44991b5c5ef9eb38faaa066d096c051f (patch) | |
tree | 2bff30db74856400cadea69b4a5c67bdff8f57b9 /net/dgd-net/Makefile | |
parent | upgrade to 1.6.2 (diff) |
fix master site
make portlint happy
PR: 38487
Submitted by: Erwin Lansing <erwin@lansing.dk>
Notes
Notes:
svn path=/head/; revision=59866
Diffstat (limited to 'net/dgd-net/Makefile')
-rw-r--r-- | net/dgd-net/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/dgd-net/Makefile b/net/dgd-net/Makefile index b1c5911ed503..7c2635816f49 100644 --- a/net/dgd-net/Makefile +++ b/net/dgd-net/Makefile @@ -8,7 +8,8 @@ PORTNAME= dgd-net PORTVERSION= 1.1.8 CATEGORIES= net lang -MASTER_SITES= ftp://ftp.imaginary.com/pub/LPC/servers/DGD/archive/ +MASTER_SITES= http://dl.droso.net/ports/ \ + http://ftp.dyu.edu.tw/FreeBSD/dgd/ DISTFILES= dgd-1.1p8.tar.gz MAINTAINER= ports@FreeBSD.org @@ -26,7 +27,7 @@ PATCH_DIST_ARGS= -d ${WRKDIR} --forward --quiet -E ${PATCH_DIST_STRIP} pre-patch: @${LN} -s dgd ${WRKDIR}/dgd+net - @mkdir ${WRKDIR}/dgd/bin + @${MKDIR} ${WRKDIR}/dgd/bin post-build: @cd ${WRKSRC}; ${MAKE} install @@ -38,8 +39,7 @@ post-build: do-install: @-${MV} ${PREFIX}/dgd/bin/driver.net ${PREFIX}/dgd/bin/driver.net.old - @tar -C ${WRKDIR} -cf - `${GREP} '^dgd/' ${PLIST}` \ - | tar -C ${PREFIX} -xpf - + @${TAR} -C ${WRKDIR} -cf - `${GREP} '^dgd/' ${PLIST}` \ + | ${TAR} -C ${PREFIX} -xpf - .include <bsd.port.mk> - |