svn commit: r364574 - head/databases/pgbouncer
John Marino
marino at FreeBSD.org
Sun Aug 10 21:42:51 UTC 2014
Author: marino
Date: Sun Aug 10 21:42:50 2014
New Revision: 364574
URL: http://svnweb.freebsd.org/changeset/ports/364574
QAT: https://qat.redports.org/buildarchive/r364574/
Log:
databases/pgbouncer: Unconditionally install man pages
This port had a couple of issues besided installing man pages as a
function of the DOCS option selection. It also was using <pre> and <post>
inclusions with <options>, _DEPENDS were in multiple places.
I regrouped the *_DEPENDS, I moved the options to just above the make
targets (their conventional location) and I utilized <option>_*_DEPENDS
as well after fixing the man pages.
PR: 192507
Reported by: dmitry2004 (yandex.ru)
Approved by: Just Fix It (maintainer in copy)
Modified:
head/databases/pgbouncer/Makefile
Modified: head/databases/pgbouncer/Makefile
==============================================================================
--- head/databases/pgbouncer/Makefile Sun Aug 10 21:29:18 2014 (r364573)
+++ head/databases/pgbouncer/Makefile Sun Aug 10 21:42:50 2014 (r364574)
@@ -3,7 +3,7 @@
PORTNAME= pgbouncer
PORTVERSION= 1.5.4
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= databases
MASTER_SITES= http://pgfoundry.org/frs/download.php/3393/
@@ -13,14 +13,8 @@ COMMENT= Lightweight connection pooler f
LICENSE= BSD2CLAUSE
LIB_DEPENDS= libevent.so:${PORTSDIR}/devel/libevent2
-
-OPTIONS_DEFINE= DOCS
-
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MDOCS}
-BUILD_DEPENDS+= xmlto:${PORTSDIR}/textproc/xmlto
-.endif
+BUILD_DEPENDS+= ${LOCALBASE}/bin/gsed:${PORTSDIR}/textproc/gsed \
+ xmlto:${PORTSDIR}/textproc/xmlto
PORTSCOUT= site:http://pgfoundry.org/frs/?group_id=1000258
@@ -42,15 +36,10 @@ PGBOUNCER_GROUP?= pgbouncer
PGBOUNCER_RUNDIR?= /var/run/pgbouncer
PGBOUNCER_LOGDIR?= /var/log/pgbouncer
-BUILD_DEPENDS+= ${LOCALBASE}/bin/gsed:${PORTSDIR}/textproc/gsed
-
-.include <bsd.port.pre.mk>
-
PLIST_SUB+= PGBOUNCER_USER="${USERS}" \
PGBOUNCER_GROUP="${GROUPS}" \
PGBOUNCER_LOGDIR="${PGBOUNCER_LOGDIR}" \
PGBOUNCER_RUNDIR="${PGBOUNCER_RUNDIR}"
-
SUB_LIST+= PGBOUNCER_RUNDIR="${PGBOUNCER_RUNDIR}"
post-patch:
@@ -60,17 +49,13 @@ post-patch:
@${REINPLACE_CMD} -e "s|sed -n|${LOCALBASE}/bin/gsed -n|g" \
${WRKSRC}/lib/find_modules.sh
-.if empty(PORT_OPTIONS:MDOCS)
- ${REINPLACE_CMD} -e "s| = doc| = |g" ${WRKSRC}/Makefile
-.endif
-
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pgbouncer ${STAGEDIR}${PREFIX}/bin/
-.if ${PORT_OPTIONS:MDOCS}
${INSTALL_MAN} ${WRKSRC}/doc/pgbouncer.1 ${STAGEDIR}${PREFIX}/man/man1/
${INSTALL_MAN} ${WRKSRC}/doc/pgbouncer.5 ${STAGEDIR}${PREFIX}/man/man5/
-.endif
- ${INSTALL_DATA} ${WRKSRC}/etc/pgbouncer.ini ${STAGEDIR}${PREFIX}/etc/pgbouncer.ini.sample
- ${INSTALL_DATA} ${WRKSRC}/etc/userlist.txt ${STAGEDIR}${PREFIX}/etc/pgbouncer.users.sample
+ ${INSTALL_DATA} ${WRKSRC}/etc/pgbouncer.ini \
+ ${STAGEDIR}${PREFIX}/etc/pgbouncer.ini.sample
+ ${INSTALL_DATA} ${WRKSRC}/etc/userlist.txt \
+ ${STAGEDIR}${PREFIX}/etc/pgbouncer.users.sample
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
More information about the svn-ports-all
mailing list