diff options
author | tron <tron> | 1998-09-16 17:45:43 +0000 |
---|---|---|
committer | tron <tron> | 1998-09-16 17:45:43 +0000 |
commit | 2f5a4974b19be74f7a1cd8f68e305a3f3450de6a (patch) | |
tree | 2b43f6d8626f6e0b1d29ca036748481617b8fc52 /archivers | |
parent | 2a6801c0e1efb49e274c1ada770ba91231333115 (diff) | |
download | pkgsrc-2f5a4974b19be74f7a1cd8f68e305a3f3450de6a.tar.gz |
Skip packages on systems which already have "bzip2" as part of the NetBSD
distribution.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/bzip2/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/archivers/bzip2/Makefile b/archivers/bzip2/Makefile index 919550d2881..7c22233d145 100644 --- a/archivers/bzip2/Makefile +++ b/archivers/bzip2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 1998/08/20 15:16:34 tsarna Exp $ +# $NetBSD: Makefile,v 1.7 1998/09/16 17:45:43 tron Exp $ # FreeBSD Id: Makefile,v 1.1.1.1 1997/11/20 08:18:40 tg Exp # @@ -10,6 +10,10 @@ MASTER_SITES= http://www.muraroa.demon.co.uk/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.muraroa.demon.co.uk/ +.if exists(/usr/bin/bzip2) +IGNORE= "is part of your NetBSD distribution." +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bzip2 ${PREFIX}/bin ln -sf ${PREFIX}/bin/bzip2 ${PREFIX}/bin/bunzip2 |