diff options
author | schmonz <schmonz@pkgsrc.org> | 2005-08-24 04:47:10 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2005-08-24 04:47:10 +0000 |
commit | 2b8e0c48585abf231ed3aea0e0493b1a44be7b27 (patch) | |
tree | ac880b2b7ba2040a37ac0d8449fce132da2c44ac /sysutils/qlogtools | |
parent | 2dc2287de84a2261eae27fb4c1362a8b3f02eb7f (diff) | |
download | pkgsrc-2b8e0c48585abf231ed3aea0e0493b1a44be7b27.tar.gz |
Introduce DJB_MAKE_TARGETS boolean, on by default, off in the
following packages because they don't use "it" and "setup check"
as BUILD_TARGET and INSTALL_TARGET, respectively:
devel/bglibs
mail/mailfront
mail/qmail-qfilter
sysutils/memtester
sysutils/qlogtools
Since there's only one consumer of BGWARE_INSTALLER, and future
bgware will use bg-installer from bglibs, move the do-install
routine directly into qlogtools.
Diffstat (limited to 'sysutils/qlogtools')
-rw-r--r-- | sysutils/qlogtools/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sysutils/qlogtools/Makefile b/sysutils/qlogtools/Makefile index b2225b83465..97f69bf5129 100644 --- a/sysutils/qlogtools/Makefile +++ b/sysutils/qlogtools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2005/08/07 11:47:55 schmonz Exp $ +# $NetBSD: Makefile,v 1.5 2005/08/24 04:47:10 schmonz Exp $ # DISTNAME= qlogtools-3.1 @@ -9,10 +9,13 @@ MAINTAINER= zuntum@NetBSD.org HOMEPAGE= http://untroubled.org/qlogtools/ COMMENT= Tools useful in analyzing logs from qmail and other pkgs -BUILD_TARGET= all - DJB_RESTRICTED= NO -BGWARE_INSTALLER= YES +DJB_MAKE_TARGETS= NO + +do-install: + ${_PKG_SILENT}${_PKG_DEBUG}cd ${WRKSRC}; \ + ./installer; \ + ./instcheck .include "../../mk/djbware.mk" .include "../../mk/bsd.pkg.mk" |