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 /net/arla | |
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 'net/arla')
-rw-r--r-- | net/arla/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/arla/Makefile b/net/arla/Makefile index 85a453a9903..555cacb9d29 100644 --- a/net/arla/Makefile +++ b/net/arla/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2003/01/14 12:00:08 wennmach Exp $ +# $NetBSD: Makefile,v 1.31 2003/01/28 22:03:48 jlam Exp $ DISTNAME= arla-0.35.12pre1 #PKGREVISION= @@ -15,9 +15,10 @@ CONFLICTS+= rx-[0-9]* OSVERSION_SPECIFIC= yes INFO_FILES= arla.info -USE_BUILDLINK2= # defined -USE_X11= # defined -GNU_CONFIGURE= # defined +USE_BUILDLINK2= yes +USE_PKGINSTALL= yes +USE_X11= yes +GNU_CONFIGURE= yes .if exists(/usr/lib/libroken.a) CONFIGURE_ARGS+= --with-krb4-lib=/usr/lib @@ -66,5 +67,4 @@ post-install: ${INSTALL_DATA} ${FILESDIR}/fstab ${EGDIR} .include "../../mk/texinfo.mk" -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |