diff options
-rw-r--r-- | www/ap2-suphp/Makefile | 13 | ||||
-rw-r--r-- | www/ap2-suphp/distinfo | 11 | ||||
-rw-r--r-- | www/ap2-suphp/patches/patch-aa | 40 | ||||
-rw-r--r-- | www/ap2-suphp/patches/patch-ab | 55 |
4 files changed, 16 insertions, 103 deletions
diff --git a/www/ap2-suphp/Makefile b/www/ap2-suphp/Makefile index c47d63ba9d1..0461870b723 100644 --- a/www/ap2-suphp/Makefile +++ b/www/ap2-suphp/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.13 2008/03/04 11:02:26 rillig Exp $ +# $NetBSD: Makefile,v 1.14 2008/05/17 02:37:24 obache Exp $ # -DISTNAME= suphp-0.6.0 +DISTNAME= suphp-0.6.3 PKGNAME= ${APACHE_PKG_PREFIX}-${DISTNAME} -PKGREVISION= 3 CATEGORIES= www MASTER_SITES= http://www.suphp.org/download/ @@ -11,6 +10,8 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.suphp.org/ COMMENT= SuEXEC-like wrapper for PHP scripts +PKG_DESTDIR_SUPPORT= user-destdir + USE_TOOLS+= lex USE_PKGLOCALEDIR= yes GNU_CONFIGURE= yes @@ -34,10 +35,12 @@ SUBST_CLASSES+= suphp SUBST_STAGE.suphp= post-configure SUBST_FILES.suphp= doc/suphp.conf-example SUBST_SED.suphp= -e "s,wwwrun,${APACHE_USER},g" +SUBST_SED.suphp+= -e "s,/var/log/suphp.log,${VARBASE}/httpd/suphp_log,g" +SUBST_SED.suphp+= -e "s,/usr/bin/php,${PREFIX}/bin/php,g" post-install: - ${INSTALL_DATA_DIR} ${EGDIR:Q} - ${INSTALL_DATA} ${WRKSRC}/doc/suphp.conf-example ${EGDIR}/suphp.conf + ${INSTALL_DATA_DIR} ${DESTDIR}${EGDIR:Q} + ${INSTALL_DATA} ${WRKSRC}/doc/suphp.conf-example ${DESTDIR}${EGDIR}/suphp.conf .include "../../mk/apache.mk" .include "../../mk/bsd.pkg.mk" diff --git a/www/ap2-suphp/distinfo b/www/ap2-suphp/distinfo index c1f51923817..b8a514bfc33 100644 --- a/www/ap2-suphp/distinfo +++ b/www/ap2-suphp/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.3 2007/06/30 15:05:08 joerg Exp $ +$NetBSD: distinfo,v 1.4 2008/05/17 02:37:24 obache Exp $ -SHA1 (suphp-0.6.0.tar.gz) = 7ec81c132355e6f508e6a3017947a870072d6eb8 -RMD160 (suphp-0.6.0.tar.gz) = 953f3be08d7e33ff64e327ee34bb84639888aa5f -Size (suphp-0.6.0.tar.gz) = 247534 bytes -SHA1 (patch-aa) = 85fdde4e2b170a1e9cf3d2dc297903486475bd73 -SHA1 (patch-ab) = 35f054add18241ee7dedc10e780afd6b77e3463e +SHA1 (suphp-0.6.3.tar.gz) = 53588e8631cdc708da4d3d199e1b7218b9f4c87e +RMD160 (suphp-0.6.3.tar.gz) = 6fe03b3eb704b6feaa991bb0099288c8d4b31cb3 +Size (suphp-0.6.3.tar.gz) = 377176 bytes +SHA1 (patch-aa) = 7cad8ced11f0c9945af85077a30e1788a624bad1 diff --git a/www/ap2-suphp/patches/patch-aa b/www/ap2-suphp/patches/patch-aa index f013b4efea1..21117f576b3 100644 --- a/www/ap2-suphp/patches/patch-aa +++ b/www/ap2-suphp/patches/patch-aa @@ -1,11 +1,10 @@ -$NetBSD: patch-aa,v 1.2 2007/06/30 15:05:08 joerg Exp $ +$NetBSD: patch-aa,v 1.3 2008/05/17 02:37:24 obache Exp $ Allow the directives to be set in the global configuration file, too. -Fix APR 1.2 build. ---- src/apache2/mod_suphp.c.orig 2005-02-27 17:56:37.000000000 +0000 +--- src/apache2/mod_suphp.c.orig 2006-11-06 00:57:12.000000000 +0000 +++ src/apache2/mod_suphp.c -@@ -313,8 +313,8 @@ static const command_rec suphp_cmds[] = +@@ -321,8 +321,8 @@ static const command_rec suphp_cmds[] = AP_INIT_TAKE2("suPHP_UserGroup", suphp_handle_cmd_user_group, NULL, RSRC_CONF | ACCESS_CONF, "User and group scripts shall be run as"), #endif @@ -16,36 +15,3 @@ Fix APR 1.2 build. {NULL} }; -@@ -558,7 +558,9 @@ static int suphp_handler(request_rec *r) - return rv; - } - -- APR_BRIGADE_FOREACH(bucket, bb) -+ for (bucket = APR_BRIGADE_FIRST(bb); -+ bucket != APR_BRIGADE_SENTINEL(bb); -+ bucket = APR_BUCKET_NEXT(bucket)) - { - const char *data; - apr_size_t len; -@@ -629,7 +631,9 @@ static int suphp_handler(request_rec *r) - - const char *buf; - apr_size_t blen; -- APR_BRIGADE_FOREACH(b, bb) -+ -+ for (b = APR_BRIGADE_FIRST(bb); b != APR_BRIGADE_SENTINEL(bb); -+ b = APR_BUCKET_NEXT(b)) - { - if (APR_BUCKET_IS_EOS(b)) - break; -@@ -650,7 +654,9 @@ static int suphp_handler(request_rec *r) - /* empty brigade (script output) */ - const char *buf; - apr_size_t blen; -- APR_BRIGADE_FOREACH(b, bb) -+ -+ for (b = APR_BRIGADE_FIRST(bb); b != APR_BRIGADE_SENTINEL(bb); -+ b = APR_BUCKET_NEXT(b)) - { - if (APR_BUCKET_IS_EOS(b)) - break; diff --git a/www/ap2-suphp/patches/patch-ab b/www/ap2-suphp/patches/patch-ab deleted file mode 100644 index bc320c8cbce..00000000000 --- a/www/ap2-suphp/patches/patch-ab +++ /dev/null @@ -1,55 +0,0 @@ -$NetBSD: patch-ab,v 1.2 2007/06/30 15:05:08 joerg Exp $ - ---- configure.orig 2005-06-01 21:01:19.000000000 +0000 -+++ configure -@@ -3960,13 +3960,13 @@ darwin* | rhapsody*) - esac - ;; - --freebsd*) -+freebsd* | dragonfly*) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - case $host_cpu in - i*86 ) - # Not sure whether the presence of OpenBSD here was a mistake. - # Let's accept both of them until this is cleared up. -- lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[3-9]86 (compact )?demand paged shared library' -+ lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' - lt_cv_file_magic_cmd=/usr/bin/file - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` - ;; -@@ -6491,7 +6491,7 @@ else - ;; - - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. -- freebsd*) -+ freebsd* | dragonfly*) - archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes -@@ -6953,7 +6953,7 @@ freebsd1*) - dynamic_linker=no - ;; - --freebsd*) -+freebsd* | dragonfly*) - objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` - version_type=freebsd-$objformat - case $version_type in -@@ -9022,12 +9022,12 @@ if test -n "$APXS"; then - | cut -f2 -d"/" \ - | cut -f1 -d" "` - major_version=`echo $APACHE_VERSION|cut -f1,2 -d.` -- if test "$major_version" = "2.0"; then -- APACHE_VERSION_2=true -- APACHE_VERSION_1_3=false -- else -+ if test "$major_version" = "1.3"; then - APACHE_VERSION_2=false - APACHE_VERSION_1_3=true -+ else -+ APACHE_VERSION_2=true -+ APACHE_VERSION_1_3=false - fi - - |