diff options
author | jlam <jlam@pkgsrc.org> | 2005-07-16 01:19:06 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-07-16 01:19:06 +0000 |
commit | 0c00ffd17b0619872d7c9c8fb3aa89544e5d4b61 (patch) | |
tree | fb130b4b27029c9f82bb28dd306abe9510817ec8 /misc/dpkg | |
parent | 313cfd06528bb5996c6005809e60bee8f54ce4b4 (diff) | |
download | pkgsrc-0c00ffd17b0619872d7c9c8fb3aa89544e5d4b61.tar.gz |
Get rid of USE_PERL5. The new way to express needing the Perl executable
around at either build-time or at run-time is:
USE_TOOLS+= perl # build-time
USE_TOOLS+= perl:run # run-time
Also remove some places where perl5/buildlink3.mk was being included
by a package Makefile, but all that the package wanted was the Perl
executable.
Diffstat (limited to 'misc/dpkg')
-rw-r--r-- | misc/dpkg/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/misc/dpkg/Makefile b/misc/dpkg/Makefile index 293aaa4a53b..eae033b786d 100644 --- a/misc/dpkg/Makefile +++ b/misc/dpkg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/05/22 20:08:15 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2005/07/16 01:19:14 jlam Exp $ # DISTNAME= ${PKGNAME:S,-,_,} @@ -16,9 +16,8 @@ WRKSRC= ${WRKDIR}/${PKGNAME} USE_PKGLOCALEDIR= yes GNU_CONFIGURE= yes -USE_TOOLS+= gmake +USE_TOOLS+= gmake perl USE_NCURSES= # tigetstr() -USE_PERL5= build USE_PKGINSTALL= yes REPLACE_PERL= ${WRKSRC}/scripts/*.pl @@ -35,5 +34,4 @@ CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/share/dpkg .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/ncurses/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" -.include "../../lang/perl5/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |