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/xmcd | |
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/xmcd')
-rw-r--r-- | audio/xmcd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/xmcd/Makefile b/audio/xmcd/Makefile index 7c3fa6f6e8a..86ca7d8dfc3 100644 --- a/audio/xmcd/Makefile +++ b/audio/xmcd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2003/01/24 13:36:18 wiz Exp $ +# $NetBSD: Makefile,v 1.35 2003/01/28 22:03:04 jlam Exp $ DISTNAME= xmcd-3.0.2 CATEGORIES= audio @@ -14,9 +14,10 @@ PATCH_DIST_STRIP= -p1 WRKSRC= ${WRKDIR}/xmcd-3.0 -USE_BUILDLINK2= # defined +USE_BUILDLINK2= yes +USE_PKGINSTALL= yes USE_NCURSES= # cursor_normal, cursor_invisible (in ncurses in term.h) -USE_IMAKE= # defined +USE_IMAKE= yes MAKE_ENV+= BATCH_BINDIR=${PREFIX}/bin MAKE_ENV+= BATCH_LIBDIR=${PREFIX}/lib/X11 MAKE_ENV+= BATCH_MANDIR=${PREFIX}/man/man1 @@ -53,5 +54,4 @@ post-install: .include "../../graphics/xpm/buildlink2.mk" .include "../../mk/motif.buildlink2.mk" -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |