diff options
author | frueauf <frueauf> | 1998-07-20 13:09:24 +0000 |
---|---|---|
committer | frueauf <frueauf> | 1998-07-20 13:09:24 +0000 |
commit | 4a3acd1cf9803bfff7012fa814aa102f1ac084d7 (patch) | |
tree | fa2536869a66449ecbe2bc8ab6ca7b40fdcc2db4 /devel/bcc | |
parent | a86cbd62b221eaf64900c7abed76d709129414b1 (diff) | |
download | pkgsrc-4a3acd1cf9803bfff7012fa814aa102f1ac084d7.tar.gz |
As this packages uses BSD-style-Makefiles be sure to install both cat and
man pages and handle the MANZ case properly.
Diffstat (limited to 'devel/bcc')
-rw-r--r-- | devel/bcc/Makefile | 8 | ||||
-rw-r--r-- | devel/bcc/pkg/PLIST | 14 | ||||
-rwxr-xr-x | devel/bcc/scripts/configure | 6 |
3 files changed, 21 insertions, 7 deletions
diff --git a/devel/bcc/Makefile b/devel/bcc/Makefile index e7814b5cc29..65900d0ac04 100644 --- a/devel/bcc/Makefile +++ b/devel/bcc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 1998/07/17 04:39:19 tsarna Exp $ +# $NetBSD: Makefile,v 1.2 1998/07/20 13:09:24 frueauf Exp $ # FreeBSD Id: Makefile,v 1.6 1996/11/18 11:22:35 asami Exp # @@ -8,4 +8,10 @@ CATEGORIES= devel MAINTAINER= tsarna@netbsd.org +.include "../../mk/bsd.prefs.mk" + +.ifdef MANZ +MANCOMPRESSED= yes +.endif + .include "../../mk/bsd.pkg.mk" diff --git a/devel/bcc/pkg/PLIST b/devel/bcc/pkg/PLIST index 36d6a60af3e..f552ff5e9b2 100644 --- a/devel/bcc/pkg/PLIST +++ b/devel/bcc/pkg/PLIST @@ -1,10 +1,14 @@ -@comment $NetBSD: PLIST,v 1.1 1998/07/17 04:41:55 tsarna Exp $ +@comment $NetBSD: PLIST,v 1.2 1998/07/20 13:09:24 frueauf Exp $ bin/as86 bin/ld86 bin/bcc lib/bcc/bcc-cc1 @dirrm lib/bcc -man/man1/as86.1.gz -man/man1/bcc.1.gz -man/man1/bcc-cc1.1.gz -man/man1/ld86.1.gz +man/man1/as86.1 +man/man1/bcc.1 +man/man1/bcc-cc1.1 +man/man1/ld86.1 +man/cat1/as86.0 +man/cat1/bcc.0 +man/cat1/bcc-cc1.0 +man/cat1/ld86.0 diff --git a/devel/bcc/scripts/configure b/devel/bcc/scripts/configure index 3e64d7dea4e..445dbb1ffa7 100755 --- a/devel/bcc/scripts/configure +++ b/devel/bcc/scripts/configure @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: configure,v 1.1 1998/07/17 04:43:25 tsarna Exp $ +# $NetBSD: configure,v 1.2 1998/07/20 13:09:24 frueauf Exp $ # FreeBSD Id: configure,v 1.1.1.1 1995/03/26 18:08:54 joerg Exp # # Author: Jörg Wunsch <joerg@FreeBSD.org> @@ -38,6 +38,10 @@ cat > ${WRKSRC}/Makefile.inc <<*EOF* # LOCALPREFIX = ${PREFIX} + +# Make sure we always install man- and catpages to have a consistent PLIST + +MANINSTALL= catinstall maninstall *EOF* # a simple Makefile to make all the subdirs |