forked from Lainports/freebsd-ports
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
36 lines
886 B
Makefile
36 lines
886 B
Makefile
# Created by: Robert Gogolok <gogo@cs.uni-sb.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tablelog
|
|
PORTVERSION= 0.4.4
|
|
PORTREVISION= 3
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://pgfoundry.org/frs/download.php/1387/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Logs changes on a table in PostgreSQL
|
|
|
|
LICENSE= PostgreSQL
|
|
|
|
WRKSRC= ${WRKDIR}/table_log-${DISTVERSION}
|
|
|
|
USES= gmake pgsql
|
|
LLD_UNSAFE= yes
|
|
MAKE_ARGS= USE_PGXS=1
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/postgresql/
|
|
${INSTALL_LIB} ${WRKSRC}/table_log.so \
|
|
${STAGEDIR}${PREFIX}/lib/postgresql/
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/postgresql/contrib/
|
|
${INSTALL_DATA} ${WRKSRC}/table_log_init.sql \
|
|
${STAGEDIR}${PREFIX}/share/postgresql/contrib/
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
|
cd ${WRKSRC} && ${INSTALL_DATA} README.table_log table_log.sql \
|
|
${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|