19942cae40
- Connect to build PR: 139382 Submitted by: Cristiano Rolim Pereira <cristianorolim@hotmail.com> (maintainer)
27 lines
703 B
Makefile
27 lines
703 B
Makefile
# New ports collection makefile for: rsyslog4-pgsql
|
|
# Date created: 29 December 2008
|
|
# Whom: Cristiano Rolim Pereira <cristianorolim@hotmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
COMMENT= PostgreSQL output module for rsyslog
|
|
MASTERDIR= ${.CURDIR}/../rsyslog5
|
|
|
|
MNAME= pgsql
|
|
USE_PGSQL= yes
|
|
|
|
CONFIGURE_ARGS+=--enable-pgsql
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} \
|
|
${WRKSRC}/plugins/ompgsql/.libs/ompgsql.so ${PREFIX}/lib/rsyslog
|
|
@${INSTALL_DATA} \
|
|
${WRKSRC}/plugins/ompgsql/ompgsql.la ${PREFIX}/lib/rsyslog
|
|
post-install:
|
|
.ifndef NOPORTEXAMPLES
|
|
@${INSTALL} -d ${EXAMPLESDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/plugins/ompgsql/createDB.sql ${EXAMPLESDIR}/pgsql_createDB.sql
|
|
.endif
|
|
.include "${MASTERDIR}/Makefile"
|