diff options
author | billf <billf@FreeBSD.org> | 1998-11-24 05:40:29 +0800 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1998-11-24 05:40:29 +0800 |
commit | 97abcb2120af151b4cbb959232ba1cae8eb1c67b (patch) | |
tree | 3b823f6527e4721ec0ab0821d4106c2ac1bcef8f /textproc | |
parent | b79c90f7a6d083ef8ac6c17800aa9dda1324aadf (diff) | |
download | freebsd-ports-gnome-97abcb2120af151b4cbb959232ba1cae8eb1c67b.tar.gz freebsd-ports-gnome-97abcb2120af151b4cbb959232ba1cae8eb1c67b.tar.zst freebsd-ports-gnome-97abcb2120af151b4cbb959232ba1cae8eb1c67b.zip |
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
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/htdig/Makefile | 12 |
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> |