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 /games/koth | |
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 'games/koth')
-rw-r--r-- | games/koth/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/games/koth/Makefile b/games/koth/Makefile index e4dee5cfeb9..cdc81426efc 100644 --- a/games/koth/Makefile +++ b/games/koth/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2003/01/04 12:25:13 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2003/01/28 22:03:19 jlam Exp $ # DISTNAME= koth-0.7.6 @@ -10,9 +10,10 @@ MAINTAINER= hubertf@netbsd.org HOMEPAGE= http://www-unix.oit.umass.edu/~tetron/koth/ COMMENT= The classic "shoot the other tank" artillery game, networked +USE_BUILDLINK2= YES +USE_PKGINSTALL= YES GNU_CONFIGURE= YES CPPFLAGS+= -DPKG_SYSCONFDIR=\"\\\"${PKG_SYSCONFDIR:Q}\\\"\" -USE_BUILDLINK2= YES EGDIR= ${PREFIX}/share/examples/koth CONF_FILES= ${EGDIR}/koth.cfg ${PKG_SYSCONFDIR}/koth.cfg @@ -25,5 +26,5 @@ post-install: .include "../../graphics/libggi/buildlink2.mk" .include "../../graphics/libgii/buildlink2.mk" -.include "../../mk/bsd.pkg.install.mk" + .include "../../mk/bsd.pkg.mk" |