b4f1862849
pkglint -Wall -F --only aligned -r No manual corrections.
28 lines
824 B
Makefile
28 lines
824 B
Makefile
# $NetBSD: Makefile,v 1.13 2019/11/02 15:38:06 rillig Exp $
|
|
|
|
DISTNAME= pgpool-3.4.1
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://pgfoundry.org/frs/download.php/1446/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
#HOMEPAGE= http://pgpool.projects.postgresql.org/
|
|
COMMENT= Connection pooling/replication server for PostgreSQL
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
INSTALLATION_DIRS= share/examples
|
|
|
|
CONF_FILES= ${PREFIX}/share/examples/pgpool.conf.sample \
|
|
${PKG_SYSCONFDIR}/pgpool.conf
|
|
CONF_FILES+= ${PREFIX}/share/examples/pool_hba.conf.sample \
|
|
${PKG_SYSCONFDIR}/pool_hba.conf
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/pgpool.conf.sample \
|
|
${DESTDIR}${PREFIX}/share/examples
|
|
${INSTALL_DATA} ${WRKSRC}/pool_hba.conf.sample \
|
|
${DESTDIR}${PREFIX}/share/examples
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|