svn commit: r333899 - in head/databases/php5-pdo_cassandra: . files
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Fri Nov 15 17:55:28 UTC 2013
Author: sunpoet
Date: Fri Nov 15 17:55:27 2013
New Revision: 333899
URL: http://svnweb.freebsd.org/changeset/ports/333899
Log:
- Fix build with thrift-0.9.1
- Add LICENSE
- Support STAGEDIR
- Use single space after WWW:
PR: ports/183982
Submitted by: Gasol Wu <gasol.wu at gmail.com> (maintainer)
Added:
head/databases/php5-pdo_cassandra/files/
head/databases/php5-pdo_cassandra/files/patch-config.m4 (contents, props changed)
Modified:
head/databases/php5-pdo_cassandra/Makefile
head/databases/php5-pdo_cassandra/pkg-descr (contents, props changed)
Modified: head/databases/php5-pdo_cassandra/Makefile
==============================================================================
--- head/databases/php5-pdo_cassandra/Makefile Fri Nov 15 17:55:22 2013 (r333898)
+++ head/databases/php5-pdo_cassandra/Makefile Fri Nov 15 17:55:27 2013 (r333899)
@@ -3,7 +3,7 @@
PORTNAME= pdo_cassandra
PORTVERSION= 0.2.1
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= databases
MASTER_SITES= https://github.com/${GITHUB_USER}/php-${PORTNAME}/tarball/${GITREVISION}/
PKGNAMEPREFIX= php5-
@@ -12,8 +12,9 @@ DISTNAME= ${GITHUB_USER}-php-${PORTNAME}
MAINTAINER= gasol.wu at gmail.com
COMMENT= PDO driver for Apache Cassandra
-LIB_DEPENDS= boost_iostreams:${PORTSDIR}/devel/boost-libs \
- thrift:${PORTSDIR}/devel/thrift
+LICENSE= AL2
+
+LIB_DEPENDS= libboost_iostreams.so:${PORTSDIR}/devel/boost-libs
GITREVISION= 7debd5b
GITTAG= 0.8-support
@@ -27,14 +28,25 @@ USE_PHP= pdo
USE_PHPEXT= yes
DEFAULT_PHP_VER=5
IGNORE_WITH_PHP=52
-THRIFT_CMD= ${LOCALBASE}/bin/thrift
-NO_STAGE= yes
+.include <bsd.port.pre.mk>
+.include "${PORTSDIR}/devel/thrift/bsd.thrift.mk"
+
+THRIFT_MAJOR_VER= ${THRIFT_PORTVERSION:R:R}
+THRIFT_MINOR_VER= ${THRIFT_PORTVERSION:R:E}
+THRIFT_PATCH_VER= ${THRIFT_PORTVERSION:E}
+
+.if ${THRIFT_MAJOR_VER} >= 0 || ${THRIFT_MINOR_VER} >= 9 || ${THRIFT_PATCH_VER} >= 1
+LIB_DEPENDS+= libthrift.so:${PORTSDIR}/devel/thrift-cpp
+BUILD_DEPENDS+= ${LOCALBASE}/bin/thrift:${PORTSDIR}/devel/thrift
+.else
+LIB_DEPENDS+= libthrift.so:${PORTSDIR}/devel/thrift
+.endif
+
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
+.if ${THRIFT_PORTVERSION} == "0.8.0"
+ ${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
+.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>
Added: head/databases/php5-pdo_cassandra/files/patch-config.m4
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/php5-pdo_cassandra/files/patch-config.m4 Fri Nov 15 17:55:27 2013 (r333899)
@@ -0,0 +1,22 @@
+--- ./config.m4.orig 2011-12-30 17:41:22.000000000 +0800
++++ ./config.m4 2013-11-14 21:46:12.000000000 +0800
+@@ -38,8 +38,18 @@
+ PHP_THRIFT_VERSION=`${PKG_CONFIG} thrift --modversion`
+
+ AC_MSG_RESULT([found version ${PHP_THRIFT_VERSION}])
++ ac_IFS=$IFS
++ IFS="."
++ set $PHP_THRIFT_VERSION
++ IFS=$ac_IFS
++ dnl workaround for changes of THRIFT-1968
++ THRIFT_VERSION=`expr [$]1 \* 10000 + [$]2 \* 100 + [$]3`
++ if test "$THRIFT_VERSION" -ge "901"; then
++ PHP_THRIFT_INCS="-I`${PKG_CONFIG} thrift --variable=includedir`/thrift"
++ else
++ PHP_THRIFT_INCS=`${PKG_CONFIG} thrift --cflags`
++ fi
+ PHP_THRIFT_LIBS=`${PKG_CONFIG} thrift --libs`
+- PHP_THRIFT_INCS=`${PKG_CONFIG} thrift --cflags`
+
+ PHP_EVAL_LIBLINE(${PHP_THRIFT_LIBS}, PDO_CASSANDRA_SHARED_LIBADD)
+ PHP_EVAL_INCLINE(${PHP_THRIFT_INCS})
Modified: head/databases/php5-pdo_cassandra/pkg-descr
==============================================================================
--- head/databases/php5-pdo_cassandra/pkg-descr Fri Nov 15 17:55:22 2013 (r333898)
+++ head/databases/php5-pdo_cassandra/pkg-descr Fri Nov 15 17:55:27 2013 (r333899)
@@ -7,4 +7,4 @@ BigTable. Like Dynamo, Cassandra is even
BigTable, Cassandra provides a ColumnFamily-based data model richer
than typical key/value systems.
-WWW: http://code.google.com/a/apache-extras.org/p/cassandra-pdo/
+WWW: http://code.google.com/a/apache-extras.org/p/cassandra-pdo/
More information about the svn-ports-head
mailing list