diff options
author | rillig <rillig@pkgsrc.org> | 2006-06-18 21:52:48 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-06-18 21:52:48 +0000 |
commit | e7b01a8702edc06f491c2c898f30b1ec9c0ee4b7 (patch) | |
tree | f8f054fdaed0da70d48bb6d3a9d39417d11644cd /textproc | |
parent | 420c1e47e6eba08622455ffa43ee6036d4dd3b62 (diff) | |
download | pkgsrc-e7b01a8702edc06f491c2c898f30b1ec9c0ee4b7.tar.gz |
Added {BIN,MAN}{OWN,GRP} to MAKE_ENV to allow unprivileged builds.
Bumped PKGREVISION.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/bsdgrep-devel/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/textproc/bsdgrep-devel/Makefile b/textproc/bsdgrep-devel/Makefile index d66a1f75b57..00981de7603 100644 --- a/textproc/bsdgrep-devel/Makefile +++ b/textproc/bsdgrep-devel/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.11 2005/05/03 21:42:53 kristerw Exp $ +# $NetBSD: Makefile,v 1.12 2006/06/18 21:52:48 rillig Exp $ # DISTNAME= bsdgrep-200405051607 PKGNAME= bsdgrep-devel-20040505 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= sysutils textproc MASTER_SITES= http://www.fawlty.net/software/ @@ -11,6 +11,9 @@ MAINTAINER= cjep@NetBSD.org HOMEPAGE= # none COMMENT= BSD version of grep as in NetBSD src/usr.bin/grep +MAKE_ENV+= BINOWN=${BINOWN} BINGRP=${BINGRP} +MAKE_ENV+= MANOWN=${MANOWN} MANGRP=${MANGRP} + post-patch: @${SED} -e 's|grep|bgrep|g' ${WRKSRC}/grep.1 > ${WRKSRC}/bgrep.1 |