diff options
author | nbm <nbm@FreeBSD.org> | 2001-09-11 18:32:48 +0800 |
---|---|---|
committer | nbm <nbm@FreeBSD.org> | 2001-09-11 18:32:48 +0800 |
commit | 9dc1ed7b792ae8f9ff5513f488052ad72ba98b5a (patch) | |
tree | 546952ca5ee3c112b0d675256cd042f1529ac303 /databases/phppgadmin | |
parent | d7d6ced9439d8c6c47920f9e0ce5e6cb4a80933f (diff) | |
download | freebsd-ports-gnome-9dc1ed7b792ae8f9ff5513f488052ad72ba98b5a.tar.gz freebsd-ports-gnome-9dc1ed7b792ae8f9ff5513f488052ad72ba98b5a.tar.zst freebsd-ports-gnome-9dc1ed7b792ae8f9ff5513f488052ad72ba98b5a.zip |
Default to using PHP4 and not PHP3, as recommended by the phpPgAdmin
site, and also because it makes it work better out the box. Thanks
Paul.
Submitted by: Paul Pathiakis <ppathiakis@homeportfolio.com>
Diffstat (limited to 'databases/phppgadmin')
-rw-r--r-- | databases/phppgadmin/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/databases/phppgadmin/Makefile b/databases/phppgadmin/Makefile index cc63a88dd905..9cf3a5ff7ba1 100644 --- a/databases/phppgadmin/Makefile +++ b/databases/phppgadmin/Makefile @@ -7,13 +7,14 @@ PORTNAME= phppgadmin PORTVERSION= 2.3 +PORTREVISION= 1 CATEGORIES= databases www MASTER_SITES= ftp://ftp.greatbridge.org/pub/phppgadmin/stable/ DISTNAME= phpPgAdmin_2-3 MAINTAINER= nbm@FreeBSD.org -.if defined(WITH_PHP4) +.if !defined(WITH_PHP3) RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp4.so:${PORTSDIR}/www/mod_php4 .else RUN_DEPENDS+= ${LOCALBASE}/libexec/apache/libphp3.so:${PORTSDIR}/www/mod_php3 |