1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Fix Upgrade problems

- Pass maintainership to submitter
- Fixes the -march= nothing which is not 2.0.3 specific.
- Removes the pre-everthing warning for www/apache22
- Bump PORTREVISION

Submitted by:   Philip M. Gollucci" <Philip.Gollucci@ticketmaster.com>
Approved by:	maintainer
This commit is contained in:
Martin Wilke 2006-12-04 00:07:10 +00:00
parent 566636722d
commit 628531ea87
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=178781
2 changed files with 13 additions and 14 deletions

View File

@ -7,13 +7,14 @@
PORTNAME= mod_perl
PORTVERSION= 2.0.3
PORTREVISION= 1
PORTEPOCH= 3
CATEGORIES= www perl5
MASTER_SITES= http://perl.apache.org/dist/ \
http://perl.apache.org/dist/old/
PKGNAMESUFFIX= 2
MAINTAINER= lars.eggert@gmx.net
MAINTAINER= pgollucci@p6m7g8.com
COMMENT= Embeds a Perl interpreter in the Apache2 server
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/BSD/Resource.pm:${PORTSDIR}/devel/p5-BSD-Resource
@ -66,19 +67,6 @@ PLIST_SUB= THREADMUTEX=""
PLIST_SUB= THREADMUTEX="@comment "
.endif
pre-everything::
.if ${APACHE_VERSION} >= 21
@${ECHO} "************************************************************"
@${ECHO} "You are building ${PORTNAME}-${PORTVERSION} for apache${APACHE_VERSION}."
@${ECHO} ""
@${ECHO} "Please note that the maintainer only tests ${PORTNAME}-${PORTVERSION}"
@${ECHO} "with apache20. If you encounter a problem, please roll back"
@${ECHO} "to that version and verify that the problem still exists,"
@${ECHO} "before submitting a problem report."
@${ECHO} "************************************************************"
@sleep 5
.endif
# it is time to require perl 5.8.x
.if ${PERL_LEVEL} < 500800
IGNORE= requires perl 5.8.x or later. Install lang/perl5.8 then try again

View File

@ -0,0 +1,11 @@
--- xs/APR/APR/Makefile.PL.orig Sun Nov 19 15:31:02 2006
+++ xs/APR/APR/Makefile.PL Sun Dec 3 15:30:46 2006
@@ -15,7 +15,7 @@
my %args;
-%args = map { split /=/, $_ } @ARGV;
+%args = map { split /=/, $_, 2 } @ARGV;
$args{NAME} = 'APR';
$args{VERSION_FROM} = 'APR.pm';