summaryrefslogtreecommitdiff
path: root/textproc/htdig
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1998-11-23 21:40:29 +0000
committerBill Fumerola <billf@FreeBSD.org>1998-11-23 21:40:29 +0000
commitaa9e20ae30a07b7e771d6bf00dbf52c54c161041 (patch)
tree5eef4e84742db5c46083ebd04f424ddc6d6fbb74 /textproc/htdig
parentThis is a null commit to record information I forgot to put in (diff)
I had a patch that fixed this, then I said "I'll just use sed", and I
never updated the Makefile. I was trying to avoid using sed and patch, and just ended up breaking it by my indeciveness. :> It's fixed now, and packages no less. Remind by: Satoshi
Notes
Notes: svn path=/head/; revision=14836
Diffstat (limited to 'textproc/htdig')
-rw-r--r--textproc/htdig/Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/textproc/htdig/Makefile b/textproc/htdig/Makefile
index 17ef644e667f..e30f9837f610 100644
--- a/textproc/htdig/Makefile
+++ b/textproc/htdig/Makefile
@@ -3,7 +3,7 @@
# Date created: 18 August 1998
# Whom: Bill Fumerola <billf@chc-chimes.com>
#
-# $Id: Makefile,v 1.1.1.1 1998/11/18 21:02:48 billf Exp $
+# $Id: Makefile,v 1.2 1998/11/23 09:08:25 asami Exp $
#
DISTNAME= htdig-3.1.0b2
@@ -17,13 +17,15 @@ MAINTAINER= billf@FreeBSD.org
GNU_CONFIGURE= yes
BUILD_TARGET= depends all
-BROKEN= package
-
post-patch:
${MV} ${WRKSRC}/CONFIG.in ${WRKSRC}/CONFIG.in.old
${CAT} ${WRKSRC}/CONFIG.in.old | \
- ${SED} -e 's#/opt/www/#${PREFIX}/www/#g' | \
- ${SED} -e 's#htdocs#data#g' >> ${WRKSRC}/CONFIG.in
+ ${SED} -e 's#/opt/www/#${PREFIX}/www/#g' \
+ -e 's#htdocs#data#g' \
+ -e 's#/conf#/etc#' \
+ -e 's#/common#/share/htdig#' \
+ -e 's#/db#/share/htdig#' \
+ >> ${WRKSRC}/CONFIG.in
.include <bsd.port.mk>