25bafe61cf
Security: Fix XSS in function.php Feature safe: yes
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
# New ports collection makefile for: phpPgAdmin
|
|
# Date created: 19 Jan 2001
|
|
# Whom: nbm
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= phppgadmin
|
|
PORTVERSION= 5.0.4
|
|
CATEGORIES= databases www
|
|
MASTER_SITES= SF/${PORTNAME}/phpPgAdmin%20%5Bstable%5D/phpPgAdmin-5.0
|
|
DISTNAME= phpPgAdmin-${PORTVERSION}
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Web Based Postgres Administration
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_BZIP2= YES
|
|
.if !defined(WITHOUT_PHP_DEPENDS)
|
|
USE_PHP= pgsql pcre session
|
|
.endif
|
|
NO_BUILD= YES
|
|
PGADMDIR?= www/phpPgAdmin
|
|
PLIST_SUB+= PGADMDIR=${PGADMDIR}
|
|
PGADMOLDDIR?= www/data-dist/phpPgAdmin
|
|
PLIST_SUB+= PGADMOLDDIR=${PGADMOLDDIR}
|
|
|
|
pre-everything::
|
|
@${ECHO_CMD} "# you can customize the installation directory"
|
|
@${ECHO_CMD} "# by setting PGADMDIR in /etc/make.conf"
|
|
|
|
do-configure:
|
|
${REINPLACE_CMD} -e "s|/usr/bin/pg|${LOCALBASE}/bin/pg|" \
|
|
${WRKSRC}/conf/config.inc.php-dist
|
|
${RM} -f ${WRKSRC}/conf/config.inc.php \
|
|
${WRKSRC}/conf/config.inc.php-dist.bak
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/${PGADMDIR}
|
|
${RM} -f ${WRKSRC}/classes/database/Postgres81.php.orig
|
|
${CP} -Rp ${WRKSRC}/ ${PREFIX}/${PGADMDIR}/
|
|
.if exists(${PREFIX}/${PGADMOLDDIR}/conf/config.inc.php)
|
|
${CP} -np ${PREFIX}/${PGADMOLDDIR}/conf/config.inc.php \
|
|
${PREFIX}/${PGADMDIR}/conf/config.inc.php
|
|
.endif
|
|
${CP} -np ${PREFIX}/${PGADMDIR}/conf/config.inc.php-dist \
|
|
${PREFIX}/${PGADMDIR}/conf/config.inc.php
|
|
|
|
.include <bsd.port.post.mk>
|