diff options
author | fredb <fredb> | 2001-03-20 00:10:08 +0000 |
---|---|---|
committer | fredb <fredb> | 2001-03-20 00:10:08 +0000 |
commit | 54c047155468e4a493d10ab12bbda4fcd1b7b276 (patch) | |
tree | ff3568d37ad14ad85017c656aaabab6ef1fedf4c /textproc | |
parent | 1f04e5c15849d89fdcd29573849e654d22ebe25e (diff) | |
download | pkgsrc-54c047155468e4a493d10ab12bbda4fcd1b7b276.tar.gz |
Don't build "rman" if you already have an "rman" in ${X11BASE} (which is
presumably the "rman" installed by XFree86-4.x).
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/rman/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/textproc/rman/Makefile b/textproc/rman/Makefile index 2306b1b6937..cd9c6ee914d 100644 --- a/textproc/rman/Makefile +++ b/textproc/rman/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2001/02/17 17:37:41 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2001/03/20 00:10:08 fredb Exp $ # FreeBSD Id: Makefile,v 1.17 1997/12/08 15:45:27 tg Exp # @@ -14,6 +14,10 @@ COMMENT= Produces HTML from formatted and unformatted man pages WRKSRC= ${WRKDIR}/${PKGNAME} +.if exists(${X11BASE}/bin/rman) +IGNORE= "Rosetta Man is included in your X distribution." +.endif + post-install: strip ${PREFIX}/bin/rman |