diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2013-04-29 14:21:23 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2013-04-29 14:21:23 +0000 |
commit | 9f3f80847924ec44b690c9b7d694ce212b168453 (patch) | |
tree | 6d355c1cc9e4f01a47ddc7529856bccb4b64b64b /databases/postgresql-plproxy/Makefile | |
parent | 393a30af07ec639f5c7b9b23463ea83c819aa7af (diff) | |
download | ports-9f3f80847924ec44b690c9b7d694ce212b168453.tar.gz ports-9f3f80847924ec44b690c9b7d694ce212b168453.zip |
Notes
Diffstat (limited to 'databases/postgresql-plproxy/Makefile')
-rw-r--r-- | databases/postgresql-plproxy/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/databases/postgresql-plproxy/Makefile b/databases/postgresql-plproxy/Makefile index 581aa152b20a..0be6474b30bb 100644 --- a/databases/postgresql-plproxy/Makefile +++ b/databases/postgresql-plproxy/Makefile @@ -2,22 +2,23 @@ # $FreeBSD$ PORTNAME= plproxy -PORTVERSION= 2.4 +PORTVERSION= 2.5 CATEGORIES= databases -MASTER_SITES= http://pgfoundry.org/frs/download.php/3274/ +MASTER_SITES= http://pgfoundry.org/frs/download.php/3392/ PKGNAMEPREFIX= postgresql- MAINTAINER= ports@FreeBSD.org -COMMENT= PL/Proxy is database partitioning system +COMMENT= PL/Proxy - database partitioning system +LICENSE= BSD + +USES= bison USE_PGSQL= yes USE_GMAKE= yes -USES= bison +MAKE_JOBS_SAFE= yes PORTSCOUT= site:http://pgfoundry.org/frs/?group_id=1000207 -MAKE_ARGS+= CFLAGS+=-DSYS_SOCKET_H - .include <bsd.port.pre.mk> .if exists(${LOCALBASE}/bin/postmaster) @@ -36,4 +37,8 @@ PLIST_SUB+= NEW_CONTRIB_DIR="" OLD_CONTRIB_DIR="@comment " PLIST_SUB+= NEW_CONTRIB_DIR="@comment " OLD_CONTRIB_DIR="" .endif +post-patch: + @${REINPLACE_CMD} -e \ + '/^#ifdef/s| SYS_| HAVE_SYS_|' ${WRKSRC}/src/execute.c + .include <bsd.port.post.mk> |