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 /security/xdm-krb4 | |
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 'security/xdm-krb4')
-rw-r--r-- | security/xdm-krb4/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/xdm-krb4/Makefile b/security/xdm-krb4/Makefile index aa0f1b476cc..67e9f14df6a 100644 --- a/security/xdm-krb4/Makefile +++ b/security/xdm-krb4/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2002/09/26 23:59:00 jlam Exp $ +# $NetBSD: Makefile,v 1.13 2003/01/28 22:04:09 jlam Exp $ # DISTNAME= xdm-krb4-3.3.6.3 @@ -8,8 +8,9 @@ MASTER_SITES= ftp://gutemine.geo.Uni-Koeln.DE/pub/xdm-krb4/ MAINTAINER= wennmach@netbsd.org COMMENT= Kerberos IV and AFS aware xdm -USE_BUILDLINK2= # defined -USE_IMAKE= # defined +USE_BUILDLINK2= yes +USE_PKGINSTALL= yes +USE_IMAKE= yes .if exists(/usr/lib/libroken.a) KRB4_INCLUDE= -I/usr/include/kerberosIV @@ -41,5 +42,4 @@ post-patch: pre-install: ${INSTALL_DATA_DIR} ${EXAMPLEDIR} -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |