diff options
author | jlam <jlam@pkgsrc.org> | 2003-01-28 22:03:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-01-28 22:03:00 +0000 |
commit | d7f69e47ce32be7271733bcdf48d28468f400ab9 (patch) | |
tree | d3bbe0e3f34c0d0b96c3bf5abf2964293c181c7b /textproc/ndtpd | |
parent | 63fd8d49cc206089921ed7d972b87faff07efbe6 (diff) | |
download | pkgsrc-d7f69e47ce32be7271733bcdf48d28468f400ab9.tar.gz |
Instead of including bsd.pkg.install.mk directly in a package Makefile,
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set
to "YES". This enforces the requirement that bsd.pkg.install.mk be
included at the end of a package Makefile. Idea suggested by Julio M.
Merino Vidal <jmmv at menta.net>.
Diffstat (limited to 'textproc/ndtpd')
-rw-r--r-- | textproc/ndtpd/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/textproc/ndtpd/Makefile b/textproc/ndtpd/Makefile index ea1b933f9ad..0c7baecfccd 100644 --- a/textproc/ndtpd/Makefile +++ b/textproc/ndtpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2002/10/05 03:10:19 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2003/01/28 22:04:21 jlam Exp $ DISTNAME= ndtpd-3.1.1 PKGREVISION= 1 @@ -12,9 +12,10 @@ MAINTAINER= uebayasi@soum.co.jp HOMEPAGE= http://www.sra.co.jp/people/m-kasahr/ndtpd/ COMMENT= Server for accessing CD-ROM books with NDTP -USE_BUILDLINK2= # Defined -USE_LIBTOOL= # Defined -GNU_CONFIGURE= # Defined +USE_BUILDLINK2= yes +USE_PKGINSTALL= yes +USE_LIBTOOL= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS+=--localstatedir=${NDTPD_RUNDIR} CONFIGURE_ARGS+=--with-logdir=${NDTPD_LOGDIR} CONFIGURE_ARGS+=--with-eb @@ -42,5 +43,4 @@ post-install: .include "../../devel/gettext-lib/buildlink2.mk" .include "../../textproc/eb/buildlink2.mk" .include "../../mk/texinfo.mk" -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |