Subject: pkg/26539: databases/phppgadmin update
To: None <gnats-bugs@gnats.NetBSD.org>
From: None <tripledes@eslack.org>
List: pkgsrc-bugs
Date: 08/03/2004 22:32:41
>Number:         26539
>Category:       pkg
>Synopsis:       phppgadmin is very outdated
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pkg-manager
>State:          open
>Class:          change-request
>Submitter-Id:   net
>Arrival-Date:   Tue Aug 03 20:32:00 UTC 2004
>Closed-Date:
>Last-Modified:
>Originator:     Sergio Jimenez
>Release:        NetBSD 2.0G
>Organization:
none
>Environment:
	
	
System: NetBSD mimir.tripledes.net 2.0G NetBSD 2.0G (POWERNOW) #6: Mon Jul 26 01:59:47 BST 2004 sergio@mimir.tripledes.net:/usr/src/obj/usr/src/sys/arch/i386/compile/POWERNOW i386
Architecture: i386
Machine: i386
>Description:
	databases/phppgadmin is very outdated, it should be updated or maybe removed if no one cares.
>How-To-Repeat:
	look at databases/phppgadmin/Makefile
>Fix:
	apply following patch

diff -uNr -x CVS phppgadmin.orig/MESSAGE phppgadmin/MESSAGE
--- phppgadmin.orig/MESSAGE	2003-05-06 18:40:46.000000000 +0100
+++ phppgadmin/MESSAGE	2004-08-03 21:48:56.000000000 +0100
@@ -1,16 +1,8 @@
 ===========================================================================
-$NetBSD: MESSAGE,v 1.4 2003/05/06 17:40:46 jmmv Exp $
+$NetBSD:$
 
-Copy required files from ${PREFIX}/share/phppgadmin to your web
-space. Do not edit "config.inc.php-dist", copy it to "config.inc.php" and
-configure it for your needs. Remember that PHP should be configured to
-have "magic_quotes=on".
-
-You may want to set the following variables in config.inc.php:
-
-	$cfgDefaultDB                       = "mydb";
-	$cfgSuperUser                       = "pgsql";
-	$cfgServers[1]['host']              = 'localhost';
-	$cfgServers[1]['user']              = 'pgsql'
+In order tu use ${PKGNAME}, ${APHPGCONF}
+has been installed to be included in your apache configuration,
+it could be accessed by http://www.yourdomain.com/phppgadmin/index.php
 
 ===========================================================================
diff -uNr -x CVS phppgadmin.orig/Makefile phppgadmin/Makefile
--- phppgadmin.orig/Makefile	2004-04-25 02:14:56.000000000 +0100
+++ phppgadmin/Makefile	2004-08-03 21:44:17.000000000 +0100
@@ -1,35 +1,72 @@
 # $NetBSD: Makefile,v 1.7 2004/04/25 01:14:56 xtraeme Exp $
 
-DISTNAME=	phpPgAdmin_2-4-2
-PKGNAME=	phppgadmin-2.4.2
-PKGREVISION=	1
+DISTNAME=	phpPgAdmin-3.4.1
+PKGNAME=	${DISTNAME:S/PgAdmin/pgadmin/}
 CATEGORIES=	databases www
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE:=phppgadmin/}
 EXTRACT_SUFX=	.tar.bz2
 
-MAINTAINER=	sjr@hispabsd.org
+MAINTAINER=	tech-pkg@NetBSD.org
 HOMEPAGE=	http://phppgadmin.sourceforge.net/
 COMMENT=	Set of PHP-scripts to administer PostgreSQL over the WWW
 
+DEPENDS+=       {ap-php-4.[0-9]*,ap2-php-4.[0-9]*}:../../www/ap-php4
 DEPENDS+=	php-pgsql>=4.1.2:../../databases/php4-pgsql
 
-WRKSRC=		${WRKDIR}/${DISTNAME:S/_2-4-2//}
+MESSAGE_SUBST+=	APHPGCONF=${APHPGCONF}
+
+WRKSRC=		${WRKDIR}/${DISTNAME:S/-3.4.1//}
 NO_BUILD=	YES
 NO_BUILDLINK=	YES
+USE_PKGINSTALL=	YES
 
-DOC_FILES=	BUGS ChangeLog Documentation.html \
-		INSTALL README TODO
+PHPPGBASE=	${PREFIX}/share/phppgadmin
+PHPPGHIER=	classes/HTML_TreeMenu/images images/themes/default libraries/adodb/datadict	\
+		libraries/adodb/drivers classes/database lang/recoded themes/default		\
+		sql conf
+
+PKG_SYSCONFDIR.phppgadmin=	${PREFIX}/share/phppgadmin/conf
+EGDIR=		${PREFIX}/share/examples/phppgadmin
+DOCDIR=		${PREFIX}/share/doc/phpgadmin
+CONF_FILES=	${EGDIR}/config.inc.php-dist ${PKG_SYSCONFDIR}/config.inc.php
+DOC_FILES=	FAQ INSTALL TODO
+APHPGCONF=	${PKG_SYSCONFBASE}/httpd/phppgadmin.conf
+
+do-configure:
+	${SED} -e "s#/usr/bin/pg#${PREFIX}/bin/pg#" \
+		${WRKSRC}/conf/config.inc.php-dist > ${WRKSRC}/conf/config.inc.php-dist.tmp
+	${MV} ${WRKSRC}/conf/config.inc.php-dist.tmp ${WRKSRC}/conf/config.inc.php-dist
+	${SED} -e "s#@PHPPGBASE@#${PHPPGBASE}#g" ${FILESDIR}/phppgadmin.conf-dist	\
+		> ${WRKDIR}/phppgadmin.conf
 
 do-install:
-	${INSTALL_DATA_DIR} ${PREFIX}/share/phppgadmin
-	${INSTALL_DATA_DIR} ${PREFIX}/share/phppgadmin/images
-	${INSTALL_SCRIPT} ${WRKSRC}/*.js ${PREFIX}/share/phppgadmin
-	${INSTALL_SCRIPT} ${WRKSRC}/*.php ${PREFIX}/share/phppgadmin
-	${INSTALL_SCRIPT} ${WRKSRC}/config.inc.php-dist ${PREFIX}/share/phppgadmin
-	${INSTALL_DATA} ${WRKSRC}/images/*.* ${PREFIX}/share/phppgadmin/images
-	${INSTALL_DATA_DIR} ${PREFIX}/share/doc/phppgadmin
+	${INSTALL_DATA_DIR} ${PHPPGBASE}
+	${INSTALL_DATA_DIR} ${EGDIR}
+
+	for d in ${PHPPGHIER}; do					\
+		${INSTALL_DATA_DIR} ${PHPPGBASE}/$$d;			\
+	done
+
+	${INSTALL_SCRIPT} ${WRKSRC}/*.* ${PHPPGBASE}
+	${INSTALL_SCRIPT} ${WRKSRC}/classes/*.* ${PHPPGBASE}/classes
+	${INSTALL_SCRIPT} ${WRKSRC}/classes/HTML_TreeMenu/*.* ${PHPPGBASE}/classes/HTML_TreeMenu
+	${INSTALL_DATA} ${WRKSRC}/classes/HTML_TreeMenu/images/* ${PHPPGBASE}/classes/HTML_TreeMenu/images
+	${INSTALL_SCRIPT} ${WRKSRC}/classes/database/* ${PHPPGBASE}/classes/database
+	${INSTALL_SCRIPT} ${WRKSRC}/sql/* ${PHPPGBASE}/sql
+	${INSTALL_DATA} ${WRKSRC}/images/themes/default/*.png ${PHPPGBASE}/images/themes/default
+	${INSTALL_SCRIPT} ${WRKSRC}/lang/*.* ${PHPPGBASE}/lang
+	${INSTALL_SCRIPT} ${WRKSRC}/lang/recoded/*.* ${PHPPGBASE}/lang/recoded
+	${INSTALL_SCRIPT} ${WRKSRC}/libraries/*.php ${PHPPGBASE}/libraries
+	${INSTALL_SCRIPT} ${WRKSRC}/libraries/adodb/*.php ${PHPPGBASE}/libraries/adodb
+	${INSTALL_DATA} ${WRKSRC}/libraries/adodb/*.txt ${PHPPGBASE}/libraries/adodb
+	${INSTALL_SCRIPT} ${WRKSRC}/libraries/adodb/datadict/* ${PHPPGBASE}/libraries/adodb/datadict
+	${INSTALL_SCRIPT} ${WRKSRC}/libraries/adodb/drivers/* ${PHPPGBASE}/libraries/adodb/drivers
+	${INSTALL_DATA} ${WRKSRC}/themes/default/global.css ${PHPPGBASE}/themes/default
+	${INSTALL_DATA} ${WRKSRC}/conf/config.inc.php-dist ${EGDIR}
+	${INSTALL_DATA} ${WRKDIR}/phppgadmin.conf ${APHPGCONF}
+
 	for f in ${DOC_FILES}; do					\
-	  ${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/doc/phppgadmin;	\
+	  ${INSTALL_DATA} ${WRKSRC}/$$f ${DOCDIR};			\
 	done
 
 .include "../../mk/bsd.pkg.mk"
diff -uNr -x CVS phppgadmin.orig/PLIST phppgadmin/PLIST
--- phppgadmin.orig/PLIST	2002-07-23 13:13:35.000000000 +0100
+++ phppgadmin/PLIST	2004-08-03 21:45:51.000000000 +0100
@@ -1,81 +1,202 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2002/07/23 12:13:35 agc Exp $
-share/doc/phppgadmin/BUGS
-share/doc/phppgadmin/ChangeLog
-share/doc/phppgadmin/Documentation.html
-share/doc/phppgadmin/INSTALL
-share/doc/phppgadmin/README
-share/doc/phppgadmin/TODO
+@comment $NetBSD$
+etc/httpd/phppgadmin.conf
+share/doc/phpgadmin
+share/examples/phppgadmin/config.inc.php-dist
+share/phppgadmin/aggregates.php
 share/phppgadmin/all_db.php
-share/phppgadmin/basque.inc.php
-share/phppgadmin/castellano.inc.php
-share/phppgadmin/catalan.inc.php
-share/phppgadmin/chinese_big5.inc.php
-share/phppgadmin/chinese_gb.inc.php
-share/phppgadmin/config.inc.php-dist
-share/phppgadmin/danish.inc.php
-share/phppgadmin/db_create.php
-share/phppgadmin/db_details.php
-share/phppgadmin/db_dump.php
-share/phppgadmin/db_privilege.php
-share/phppgadmin/db_readdump.php
-share/phppgadmin/dutch.inc.php
-share/phppgadmin/english.inc.php
-share/phppgadmin/file_sql.php
-share/phppgadmin/footer.inc.php
-share/phppgadmin/french.inc.php
-share/phppgadmin/func_edit.php
-share/phppgadmin/func_properties.php
-share/phppgadmin/german.inc.php
-share/phppgadmin/grp_admin.php
-share/phppgadmin/header.inc.php
-share/phppgadmin/hung.inc.php
-share/phppgadmin/images/bkg.gif
-share/phppgadmin/images/browse.gif
-share/phppgadmin/images/minus.gif
-share/phppgadmin/images/plus.gif
-share/phppgadmin/images/spacer.gif
+share/phppgadmin/bottombar.php
+share/phppgadmin/browser.php
+share/phppgadmin/casts.php
+share/phppgadmin/classes/Gui.php
+share/phppgadmin/classes/HTML_TreeMenu/TreeMenu.js
+share/phppgadmin/classes/HTML_TreeMenu/TreeMenu.php
+share/phppgadmin/classes/HTML_TreeMenu/images/branch.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/branchbottom.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/branchtop.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/folder-expanded.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/folder.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/line.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/linebottom.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/minus.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/minusbottom.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/minustop.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/plus.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/plusbottom.gif
+share/phppgadmin/classes/HTML_TreeMenu/images/plustop.gif
+share/phppgadmin/classes/Misc.php
+share/phppgadmin/classes/Reports.php
+share/phppgadmin/classes/class.select.php
+share/phppgadmin/classes/database/ADODB_base.php
+share/phppgadmin/classes/database/BaseDB.php
+share/phppgadmin/classes/database/Connection.php
+share/phppgadmin/classes/database/Postgres.php
+share/phppgadmin/classes/database/Postgres71.php
+share/phppgadmin/classes/database/Postgres72.php
+share/phppgadmin/classes/database/Postgres73.php
+share/phppgadmin/classes/database/Postgres74.php
+share/phppgadmin/classes/database/Postgres75.php
+share/phppgadmin/conf/.pkgsrc
+share/phppgadmin/constraints.php
+share/phppgadmin/conversions.php
+share/phppgadmin/database.php
+share/phppgadmin/dataexport.php
+share/phppgadmin/dataimport.php
+share/phppgadmin/dbexport.php
+share/phppgadmin/display.php
+share/phppgadmin/domains.php
+share/phppgadmin/functions.php
+share/phppgadmin/groups.php
+share/phppgadmin/images/themes/default/database.png
+share/phppgadmin/images/themes/default/domains.png
+share/phppgadmin/images/themes/default/functions.png
+share/phppgadmin/images/themes/default/operators.png
+share/phppgadmin/images/themes/default/sequences.png
+share/phppgadmin/images/themes/default/tables.png
+share/phppgadmin/images/themes/default/title.png
+share/phppgadmin/images/themes/default/triggers.png
+share/phppgadmin/images/themes/default/types.png
+share/phppgadmin/images/themes/default/views.png
 share/phppgadmin/index.php
-share/phppgadmin/italian.inc.php
-share/phppgadmin/ldi_check.php
-share/phppgadmin/ldi_table.php
-share/phppgadmin/left.js
-share/phppgadmin/left.php
-share/phppgadmin/lib.inc.php
-share/phppgadmin/login.inc.php
-share/phppgadmin/main.php
-share/phppgadmin/norwegian.inc.php
-share/phppgadmin/oper_create.php
-share/phppgadmin/oper_properties.php
-share/phppgadmin/polish.inc.php
-share/phppgadmin/portuguese.inc.php
-share/phppgadmin/rep_create.php
-share/phppgadmin/rep_properties.php
+share/phppgadmin/indexes.js
+share/phppgadmin/indexes.php
+share/phppgadmin/info.php
+share/phppgadmin/intro.php
+share/phppgadmin/lang/afrikaans.php
+share/phppgadmin/lang/arabic.php
+share/phppgadmin/lang/chinese-sim.php
+share/phppgadmin/lang/chinese-tr.php
+share/phppgadmin/lang/convert.awk
+share/phppgadmin/lang/czech.php
+share/phppgadmin/lang/dutch.php
+share/phppgadmin/lang/english.php
+share/phppgadmin/lang/french.php
+share/phppgadmin/lang/german.php
+share/phppgadmin/lang/hungarian.php
+share/phppgadmin/lang/italian.php
+share/phppgadmin/lang/japanese.php
+share/phppgadmin/lang/polish.php
+share/phppgadmin/lang/portuguese-br.php
+share/phppgadmin/lang/recoded/afrikaans.php
+share/phppgadmin/lang/recoded/arabic.php
+share/phppgadmin/lang/recoded/chinese-sim.php
+share/phppgadmin/lang/recoded/chinese-tr.php
+share/phppgadmin/lang/recoded/czech.php
+share/phppgadmin/lang/recoded/dutch.php
+share/phppgadmin/lang/recoded/english.php
+share/phppgadmin/lang/recoded/french.php
+share/phppgadmin/lang/recoded/german.php
+share/phppgadmin/lang/recoded/hungarian.php
+share/phppgadmin/lang/recoded/italian.php
+share/phppgadmin/lang/recoded/japanese.php
+share/phppgadmin/lang/recoded/polish.php
+share/phppgadmin/lang/recoded/portuguese-br.php
+share/phppgadmin/lang/recoded/russian.php
+share/phppgadmin/lang/recoded/slovak.php
+share/phppgadmin/lang/recoded/spanish.php
+share/phppgadmin/lang/recoded/swedish.php
+share/phppgadmin/lang/recoded/turkish.php
+share/phppgadmin/lang/russian.php
+share/phppgadmin/lang/slovak.php
+share/phppgadmin/lang/spanish.php
+share/phppgadmin/lang/swedish.php
+share/phppgadmin/lang/turkish.php
+share/phppgadmin/languages.php
+share/phppgadmin/libraries/adodb/adodb-connection.inc.php
+share/phppgadmin/libraries/adodb/adodb-cryptsession.php
+share/phppgadmin/libraries/adodb/adodb-csvlib.inc.php
+share/phppgadmin/libraries/adodb/adodb-datadict.inc.php
+share/phppgadmin/libraries/adodb/adodb-errorhandler.inc.php
+share/phppgadmin/libraries/adodb/adodb-errorpear.inc.php
+share/phppgadmin/libraries/adodb/adodb-lib.inc.php
+share/phppgadmin/libraries/adodb/adodb-pager.inc.php
+share/phppgadmin/libraries/adodb/adodb-pear.inc.php
+share/phppgadmin/libraries/adodb/adodb-recordset.inc.php
+share/phppgadmin/libraries/adodb/adodb-session.php
+share/phppgadmin/libraries/adodb/adodb-time.inc.php
+share/phppgadmin/libraries/adodb/adodb.inc.php
+share/phppgadmin/libraries/adodb/crypt.inc.php
+share/phppgadmin/libraries/adodb/datadict/datadict-mssql.inc.php
+share/phppgadmin/libraries/adodb/datadict/datadict-mysql.inc.php
+share/phppgadmin/libraries/adodb/datadict/datadict-oci8.inc.php
+share/phppgadmin/libraries/adodb/datadict/datadict-postgres.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-access.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-ado.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-ado_access.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-ado_mssql.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-borland_ibase.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-csv.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-db2.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-fbsql.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-firebird.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-ibase.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-informix.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-informix72.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-mssql.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-mssqlpo.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-mysql.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-mysqlt.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-oci8.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-oci805.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-oci8po.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-odbc.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-odbc_mssql.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-odbc_oracle.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-oracle.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-postgres.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-postgres64.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-postgres7.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-proxy.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-sqlanywhere.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-sybase.inc.php
+share/phppgadmin/libraries/adodb/drivers/adodb-vfp.inc.php
+share/phppgadmin/libraries/adodb/license.txt
+share/phppgadmin/libraries/adodb/pivottable.inc.php
+share/phppgadmin/libraries/adodb/readme.txt
+share/phppgadmin/libraries/adodb/rsfilter.inc.php
+share/phppgadmin/libraries/adodb/server.php
+share/phppgadmin/libraries/adodb/toexport.inc.php
+share/phppgadmin/libraries/adodb/tohtml.inc.php
+share/phppgadmin/libraries/errorhandler.inc.php
+share/phppgadmin/libraries/lib.inc.php
+share/phppgadmin/links.js
+share/phppgadmin/login.php
+share/phppgadmin/logout.php
+share/phppgadmin/opclasses.php
+share/phppgadmin/operators.php
+share/phppgadmin/privileges.php
 share/phppgadmin/reports.php
-share/phppgadmin/russian-koi8.inc.php
-share/phppgadmin/russian-win1251.inc.php
-share/phppgadmin/seq_create.php
-share/phppgadmin/spanish.inc.php
+share/phppgadmin/robots.txt
+share/phppgadmin/rules.php
+share/phppgadmin/schema.php
+share/phppgadmin/sequences.php
 share/phppgadmin/sql.php
-share/phppgadmin/tbl_addfield.php
-share/phppgadmin/tbl_alter.php
-share/phppgadmin/tbl_alter_drop.php
-share/phppgadmin/tbl_change.php
-share/phppgadmin/tbl_copy.php
-share/phppgadmin/tbl_create.php
-share/phppgadmin/tbl_dump.php
-share/phppgadmin/tbl_form.inc.php
-share/phppgadmin/tbl_privilege.php
-share/phppgadmin/tbl_properties.inc.php
-share/phppgadmin/tbl_properties.php
-share/phppgadmin/tbl_qbe.php
-share/phppgadmin/tbl_rename.php
-share/phppgadmin/tbl_replace.php
-share/phppgadmin/tbl_select.php
-share/phppgadmin/trig_create.php
-share/phppgadmin/trig_properties.php
-share/phppgadmin/turkish.inc.php
-share/phppgadmin/user_admin.php
-share/phppgadmin/view_create.php
+share/phppgadmin/sql/reports-pgsql.sql
+share/phppgadmin/sqledit.php
+share/phppgadmin/tables.php
+share/phppgadmin/tblproperties.php
+share/phppgadmin/themes/default/global.css
+share/phppgadmin/topbar.php
+share/phppgadmin/triggers.php
+share/phppgadmin/types.php
+share/phppgadmin/users.php
+share/phppgadmin/viewproperties.php
+share/phppgadmin/views.php
+@dirrm share/phppgadmin/themes/default
+@dirrm share/phppgadmin/themes
+@dirrm share/phppgadmin/sql
+@dirrm share/phppgadmin/libraries/adodb/drivers
+@dirrm share/phppgadmin/libraries/adodb/datadict
+@dirrm share/phppgadmin/libraries/adodb
+@dirrm share/phppgadmin/libraries
+@dirrm share/phppgadmin/lang/recoded
+@dirrm share/phppgadmin/lang
+@dirrm share/phppgadmin/images/themes/default
+@dirrm share/phppgadmin/images/themes
 @dirrm share/phppgadmin/images
+@dirrm share/phppgadmin/conf
+@dirrm share/phppgadmin/classes/database
+@dirrm share/phppgadmin/classes/HTML_TreeMenu/images
+@dirrm share/phppgadmin/classes/HTML_TreeMenu
+@dirrm share/phppgadmin/classes
 @dirrm share/phppgadmin
-@dirrm share/doc/phppgadmin
+@dirrm share/examples/phppgadmin
diff -uNr -x CVS phppgadmin.orig/distinfo phppgadmin/distinfo
--- phppgadmin.orig/distinfo	2002-07-23 13:13:34.000000000 +0100
+++ phppgadmin/distinfo	2004-07-26 04:44:36.000000000 +0100
@@ -1,4 +1,4 @@
 $NetBSD: distinfo,v 1.1.1.1 2002/07/23 12:13:34 agc Exp $
 
-SHA1 (phpPgAdmin_2-4-2.tar.bz2) = 0115ace79a6c60f27a3f9916e0002556bebc7ab7
-Size (phpPgAdmin_2-4-2.tar.bz2) = 93769 bytes
+SHA1 (phpPgAdmin-3.4.1.tar.bz2) = c3b160c4171ba4d393e31eae5dd8f177747fc9d0
+Size (phpPgAdmin-3.4.1.tar.bz2) = 359408 bytes
diff -uNr -x CVS phppgadmin.orig/files/phppgadmin.conf-dist phppgadmin/files/phppgadmin.conf-dist
--- phppgadmin.orig/files/phppgadmin.conf-dist	1970-01-01 01:00:00.000000000 +0100
+++ phppgadmin/files/phppgadmin.conf-dist	2004-07-28 04:28:28.000000000 +0100
@@ -0,0 +1,10 @@
+<IfModule mod_alias.c>
+    Alias /phppgadmin/ "@PHPPGBASE@/"
+</IfModule>
+
+<Directory "@PHPPGBASE@">
+    Options Indexes
+    AllowOverride None
+    Order allow,deny
+    Allow from all
+</Directory>
>Release-Note:
>Audit-Trail:
>Unformatted: