diff options
author | jlam <jlam> | 2003-01-28 22:03:00 +0000 |
---|---|---|
committer | jlam <jlam> | 2003-01-28 22:03:00 +0000 |
commit | d9bf9ebd1c4d0cf9334ca40c2f585d4d17f70bdf (patch) | |
tree | d3bbe0e3f34c0d0b96c3bf5abf2964293c181c7b /misc/libutf | |
parent | ebed1329682fd1c81284e9ee1632af9b987050f0 (diff) | |
download | pkgsrc-d9bf9ebd1c4d0cf9334ca40c2f585d4d17f70bdf.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 'misc/libutf')
-rw-r--r-- | misc/libutf/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/libutf/Makefile b/misc/libutf/Makefile index c6084a1e540..bc21ceb1619 100644 --- a/misc/libutf/Makefile +++ b/misc/libutf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2002/12/23 08:03:02 jmmv Exp $ +# $NetBSD: Makefile,v 1.11 2003/01/28 22:03:44 jlam Exp $ # DISTNAME= libutf-2.10 @@ -10,8 +10,9 @@ MAINTAINER= agc@netbsd.org HOMEPAGE= http://www.westley.demon.co.uk/software.html COMMENT= UTF-8 character set support library, including regular expressions -GNU_CONFIGURE= # defined -USE_LIBTOOL= # defined +USE_PKGINSTALL= yes +GNU_CONFIGURE= yes +USE_LIBTOOL= yes ALL_TARGET= tst CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} @@ -19,5 +20,4 @@ CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} EGDIR= ${PREFIX}/share/examples/libutf CONF_FILES= ${EGDIR}/langcoll.utf ${PKG_SYSCONFDIR}/langcoll.utf -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |