diff options
author | agc <agc> | 1997-10-09 09:22:30 +0000 |
---|---|---|
committer | agc <agc> | 1997-10-09 09:22:30 +0000 |
commit | 938b57f2e00bc72018ac7c0ed0ce2724d7e5b8ad (patch) | |
tree | faca2cfbb0e8d2d2084caedea5dd284541ef6a9d /devel/autoconf | |
parent | d88c7f12b59da89124e7fd36b7e709baeec39f93 (diff) | |
download | pkgsrc-938b57f2e00bc72018ac7c0ed0ce2724d7e5b8ad.tar.gz |
Add a (build) dependency on gtexinfo for NetBSD.
Remove previous OS-dependent hack whereby we had no info files on NetBSD.
Install the info files by default.
Diffstat (limited to 'devel/autoconf')
-rw-r--r-- | devel/autoconf/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/devel/autoconf/Makefile b/devel/autoconf/Makefile index 43f7654d2a3..929914aef33 100644 --- a/devel/autoconf/Makefile +++ b/devel/autoconf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 1997/10/06 14:30:49 agc Exp $ +# $NetBSD: Makefile,v 1.3 1997/10/09 09:22:30 agc Exp $ # New ports collection makefile for: autoconf # Version required: 2.12 # Date created: 7 October 1995 @@ -18,16 +18,17 @@ MAINTAINER= torstenb@FreeBSD.ORG GNU_CONFIGURE= yes CONFIGURE_ENV= M4=${PREFIX}/bin/gm4 -OPSYS!= uname -s +OPSYS!= uname -s + +.if (${OPSYS} == "NetBSD") +BUILD_DEPENDS= install-info:${PORTSDIR}/devel/gtexinfo +.endif -.if (${OPSYS} != "NetBSD") -# agc - this assumes /usr/share/info/dir and install-info post-install: @if [ ! -f ${PREFIX}/info/dir ]; then \ ${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \ fi @install-info ${PREFIX}/info/autoconf.info ${PREFIX}/info/dir @install-info ${PREFIX}/info/standards.info ${PREFIX}/info/dir -.endif .include <bsd.port.mk> |