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 /audio/tracker | |
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 'audio/tracker')
-rw-r--r-- | audio/tracker/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/tracker/Makefile b/audio/tracker/Makefile index 17ed6a40cca..7f9148edd57 100644 --- a/audio/tracker/Makefile +++ b/audio/tracker/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2002/12/22 12:22:05 jmmv Exp $ +# $NetBSD: Makefile,v 1.21 2003/01/28 22:03:04 jlam Exp $ # FreeBSD Id: Makefile,v 1.29 1996/12/20 23:46:22 ache Exp # @@ -24,10 +24,11 @@ MAKE_FLAGS= MACHINE=netbsd CC=${CC} INSTALL="${INSTALL}" \ COMPRESSION_FILE=${PKG_SYSCONFDIR}/compression_methods \ COMPRESSION_FILE_EG=${EGDIR}/compression_methods +USE_PKGINSTALL= yes EGDIR= ${PREFIX}/share/examples/tracker CONF_FILES= ${EGDIR}/compression_methods ${PKG_SYSCONFDIR}/compression_methods -INFO_FILES= tracker.info +INFO_FILES= tracker.info pre-install: cd ${WRKSRC}/Docs && \ @@ -41,5 +42,4 @@ post-install: ${CP} -R ${WRKSRC}/Docs/* ${PREFIX}/share/doc/tracker .include "../../mk/texinfo.mk" -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |