- patch to resolve THRIFT-1487 issue

PR:		ports/163946
Approved by:	gabor (mentor, implicit)
This commit is contained in:
Michael Scheidell 2012-01-09 17:26:45 +00:00
parent d477272613
commit c207bf6a9a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=288830

View File

@ -7,6 +7,7 @@
PORTNAME= pdo_cassandra
PORTVERSION= 0.2.1
PORTREVISION= 1
CATEGORIES= databases
MASTER_SITES= https://github.com/${GITHUB_USER}/php-${PORTNAME}/tarball/${GITREVISION}/
PKGNAMEPREFIX= php5-
@ -29,5 +30,13 @@ USE_PHP= pdo
USE_PHPEXT= yes
DEFAULT_PHP_VER=5
IGNORE_WITH_PHP=4 52
THRIFT_CMD= ${LOCALBASE}/bin/thrift
post-configure:
thrift_version=`${THRIFT_CMD} -version | ${AWK} '{print $$3}'`; \
if [ "$$thrift_version" = "0.8.0" ]; then \
${REINPLACE_CMD} 's/\([^:]\)apache::thrift/\1 ::apache::thrift/g' ${WRKSRC}/gen-cpp/Cassandra.h; \
${REINPLACE_CMD} 's/\([^:]\)apache::thrift/\1 ::apache::thrift/g' ${WRKSRC}/gen-cpp/Cassandra.cpp; \
fi
.include <bsd.port.mk>