diff options
author | hubertf <hubertf@pkgsrc.org> | 1999-11-19 02:47:00 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1999-11-19 02:47:00 +0000 |
commit | ccec9ff37b602444dbf9fb87e5b6178b9cd06bab (patch) | |
tree | 385351f78d75524942f42d8ab2b1737a06aeba6a /net/zebra/Makefile | |
parent | 33c635389603b28b3a0642eeb488d4e7979b7e1b (diff) | |
download | pkgsrc-ccec9ff37b602444dbf9fb87e5b6178b9cd06bab.tar.gz |
Fix info page before it's installed (the one shipped with zebra is
obviously VERY broken), and install the manpages.
Diffstat (limited to 'net/zebra/Makefile')
-rw-r--r-- | net/zebra/Makefile | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/net/zebra/Makefile b/net/zebra/Makefile index 51bad44ef12..94567802468 100644 --- a/net/zebra/Makefile +++ b/net/zebra/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 1999/09/13 16:34:36 itojun Exp $ +# $NetBSD: Makefile,v 1.17 1999/11/19 02:47:00 hubertf Exp $ # Based on KAME Id: Makefile,v 1.1.2.1.2.1.10.2 1999/01/05 11:03:50 itojun Exp # @@ -13,6 +13,7 @@ HOMEPAGE= http://www.zebra.org/ GNU_CONFIGURE= yes CONFIGURE_ARGS+=--sysconfdir=${PREFIX}/etc/zebra +USE_GTEXINFO= yes BUILD_DEFS+= USE_INET6 @@ -25,4 +26,17 @@ CONFIGURE_ARGS+=--disable-ospf6d --disable-ripngd PLIST_SRC= ${PKGDIR}/PLIST .endif +post-build: + cd ${WRKSRC}/doc ; \ + ${TOUCH} zebra.texi ; \ + makeinfo --no-split zebra.texi + +post-install: + ${INSTALL_MAN} ${WRKSRC}/doc/bgpd.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/ospf6d.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/ospfd.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/ripd.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/ripngd.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/zebra.1 ${PREFIX}/man/man1 + .include "../../mk/bsd.pkg.mk" |