8a67c168e3
phpPgAdmin can manage a whole PostgreSQL server (needs a super-user) as well as a single database. To accomplish the latter you'll need a properly set up PostgreSQL user who can read/write only the desired database. It's up to you to look up the appropriate part in the PostgreSQL manual. looks ok naddy@, ok sturm@
35 lines
791 B
Makefile
35 lines
791 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/11/10 07:41:56 alek Exp $
|
|
|
|
COMMENT= "tool to handle the administration of PostgreSQL over the web"
|
|
|
|
DISTNAME= phpPgAdmin-3.4.1
|
|
CATEGORIES= www databases
|
|
HOMEPAGE= http://phppgadmin.sourceforge.net/
|
|
|
|
MAINTAINER= Denis Chatelain <denis.chatelain@octopodus.com>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=phppgadmin/}
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
PKG_ARCH= *
|
|
EXTRACT_ONLY=
|
|
|
|
PREFIX= /var/www
|
|
INSTDIR= ${PREFIX}/phpPgAdmin
|
|
SUBST_VARS= INSTDIR
|
|
|
|
PHP_VERSION= 5
|
|
RUN_DEPENDS= :php${PHP_VERSION}-pgsql-*:www/php${PHP_VERSION}/extensions,-pgsql
|
|
|
|
do-install:
|
|
@cd ${PREFIX} && tar zxf ${FULLDISTDIR}/${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
.include <bsd.port.mk>
|