5abef9be14
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
35 lines
957 B
Makefile
35 lines
957 B
Makefile
# $NetBSD: Makefile,v 1.42 2006/04/06 06:22:53 reed Exp $
|
|
#
|
|
|
|
DISTNAME= mod_perl-1.29
|
|
PKGNAME= ap-perl-1.29
|
|
PKGREVISION= 5
|
|
CATEGORIES= www perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Apache/} \
|
|
http://perl.apache.org/dist/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://perl.apache.org/
|
|
COMMENT= Module that embeds a Perl interpreter into Apache
|
|
|
|
CONFLICTS= ap2-perl-[0-9]*
|
|
|
|
DEPENDS+= ${BUILDLINK_API_DEPENDS.apache}:../../www/apache
|
|
DEPENDS+= p5-BSD-Resource>=1.10:../../devel/p5-BSD-Resource
|
|
|
|
APACHE_MODULE= YES
|
|
PERL5_PACKLIST= auto/mod_perl/.packlist
|
|
|
|
MAKE_PARAMS+= USE_APXS=1
|
|
MAKE_PARAMS+= WITH_APXS=${APXS}
|
|
MAKE_PARAMS+= EVERYTHING=1
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../www/apache/buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/httpd/htdocs/manual/mod
|
|
${INSTALL_DATA} ${WRKSRC}/htdocs/manual/mod/mod_perl.html \
|
|
${PREFIX}/share/httpd/htdocs/manual/mod
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|