mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
32 lines
864 B
Makefile
32 lines
864 B
Makefile
# New ports collection makefile for: pglogd
|
|
# Date created: 23 April 2003
|
|
# Whom: Allie Micka <allie@pajunas.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pglogd
|
|
PORTVERSION= 2.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= www databases
|
|
MASTER_SITES= http://digitalstratum.com/download/
|
|
|
|
MAINTAINER= allie@pajunas.com
|
|
COMMENT= Sends web server log entries to a PostgreSQL database
|
|
|
|
USE_PGSQL= yes
|
|
|
|
post-extract:
|
|
@${CP} ${FILESDIR}/020.pglogd.sh ${WRKSRC}/020.pglogd.sh
|
|
@${REINPLACE_CMD} -e "s=%%PREFIX%%=${PREFIX}=g" ${WRKSRC}/020.pglogd.sh
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/020.pglogd.sh ${PREFIX}/etc/rc.d/020.pglogd.sh
|
|
@if [ ! -f ${PREFIX}/etc/rc.d/020.pglogd.sh ]; then \
|
|
${ECHO} "Installing ${PREFIX}/etc/rc.d/020.pglogd.sh startup file."; \
|
|
${INSTALL_SCRIPT} ${WRKSRC}/020.pglogd.sh ${PREFIX}/etc/rc.d/020.pglogd.sh; \
|
|
fi
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|