diff options
author | billf <billf@FreeBSD.org> | 1999-06-18 00:09:09 +0800 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-06-18 00:09:09 +0800 |
commit | a8c3ff585c78e05ba1d826d92d86a6aec7d02310 (patch) | |
tree | 66813de993ebdd12dd6ed2bb64290f079d2daa3b /net/domtools | |
parent | 5779ab6dd392c09ea92eed4b7f0350b7b9a1aaf5 (diff) | |
download | freebsd-ports-gnome-a8c3ff585c78e05ba1d826d92d86a6aec7d02310.tar.gz freebsd-ports-gnome-a8c3ff585c78e05ba1d826d92d86a6aec7d02310.tar.zst freebsd-ports-gnome-a8c3ff585c78e05ba1d826d92d86a6aec7d02310.zip |
1. Make this port easier to upgrade later on.
2. Use the correct location of perl5
Diffstat (limited to 'net/domtools')
-rw-r--r-- | net/domtools/Makefile | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/net/domtools/Makefile b/net/domtools/Makefile index 5a7f14988f2c..7596d7dd8791 100644 --- a/net/domtools/Makefile +++ b/net/domtools/Makefile @@ -3,23 +3,33 @@ # Date created: 12 Jun 1999 # Whom: alexp # -# $Id: Makefile,v 1.1.1.1 1999/06/12 04:45:52 jmg Exp $ +# $Id: Makefile,v 1.1.1.1 1999/06/17 10:00:27 jmg Exp $ # -DISTNAME= domtools1.4.0 -PKGNAME= domtools-1.4.0 +DISTNAME= domtools${VERSION} +PKGNAME= domtools-${VERSION} CATEGORIES= net MASTER_SITES= http://www.domtools.com/pub/ MAINTAINER= veers@disturbed.net -WRKSRC= ${WRKDIR}/domtools1.4.0/ - USE_PERL5= YES NO_BUILD= YES +WRKSRC= ${WRKDIR}/domtools${VERSION}/ +VERSION= 1.4.0 + +# XXX - patches/patch-aa modifies Makefile +# and so does the post-patch target + +post-patch: + + ${MV} ${WRKSRC}/Makefile ${WRKSRC}/Makefile.old + ${SED} -e 's#/usr/bin/perl#${PERL5}#' \ + < ${WRKSRC}/Makefile.old > ${WRKSRC}/Makefile post-install: + ${MKDIR} ${PREFIX}/domtools/lib/zonecache .include <bsd.port.mk> |