diff options
Diffstat (limited to 'databases/php5-pdo_cassandra')
-rw-r--r-- | databases/php5-pdo_cassandra/Makefile | 52 | ||||
-rw-r--r-- | databases/php5-pdo_cassandra/distinfo | 2 | ||||
-rw-r--r-- | databases/php5-pdo_cassandra/files/patch-config.m4 | 22 | ||||
-rw-r--r-- | databases/php5-pdo_cassandra/pkg-descr | 10 |
4 files changed, 0 insertions, 86 deletions
diff --git a/databases/php5-pdo_cassandra/Makefile b/databases/php5-pdo_cassandra/Makefile deleted file mode 100644 index 94579b853c11..000000000000 --- a/databases/php5-pdo_cassandra/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# Created by: Gasol Wu <gasol.wu@gmail.com> -# $FreeBSD$ - -PORTNAME= pdo_cassandra -PORTVERSION= 0.2.1 -PORTREVISION= 17 -CATEGORIES= databases -PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX} - -MAINTAINER= gasol.wu@gmail.com -COMMENT= PDO driver for Apache Cassandra - -LICENSE= APACHE20 - -BROKEN= fails to build -DEPRECATED= Broken for more than 5 months -EXPIRATION_DATE= 2018-08-20 -BROKEN_powerpc64= Does not build - -LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs - -USE_GITHUB= yes -GH_ACCOUNT= mkoppanen -GH_PROJECT= php-${PORTNAME} -GH_TAGNAME= 7debd5b - -USES= compiler:c++11-lib php:ext pkgconfig -USE_CXXSTD= c++11 -USE_PHP= pdo:build - -IGNORE_WITH_PHP= 70 71 72 - -.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:devel/thrift-cpp -BUILD_DEPENDS+= ${LOCALBASE}/bin/thrift:devel/thrift -.else -LIB_DEPENDS+= libthrift.so:devel/thrift -.endif - -post-configure: - ${REINPLACE_CMD} 's/\([^:]\)apache::thrift/\1 ::apache::thrift/g' ${WRKSRC}/gen-cpp/Cassandra.cpp - ${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_types.cpp - -.include <bsd.port.post.mk> diff --git a/databases/php5-pdo_cassandra/distinfo b/databases/php5-pdo_cassandra/distinfo deleted file mode 100644 index 1622cbb0e7b1..000000000000 --- a/databases/php5-pdo_cassandra/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (mkoppanen-php-pdo_cassandra-0.2.1-7debd5b_GH0.tar.gz) = 9814535af2fe99f706af50947e6cff26a940de87246a42d89bd4fd48ac76d06c -SIZE (mkoppanen-php-pdo_cassandra-0.2.1-7debd5b_GH0.tar.gz) = 32961 diff --git a/databases/php5-pdo_cassandra/files/patch-config.m4 b/databases/php5-pdo_cassandra/files/patch-config.m4 deleted file mode 100644 index 84200cd4df31..000000000000 --- a/databases/php5-pdo_cassandra/files/patch-config.m4 +++ /dev/null @@ -1,22 +0,0 @@ ---- config.m4.orig 2011-12-30 09:41:22 UTC -+++ config.m4 -@@ -38,8 +38,18 @@ if test "x${PHP_PDO_CASSANDRA}" != "xno" - 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}) diff --git a/databases/php5-pdo_cassandra/pkg-descr b/databases/php5-pdo_cassandra/pkg-descr deleted file mode 100644 index 3d8747110fd5..000000000000 --- a/databases/php5-pdo_cassandra/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -PDO driver for Apache Cassandra - -Cassandra is a highly scalable, eventually consistent, distributed, -structured key-value store. Cassandra brings together the distributed -systems technologies from Dynamo and the data model from Google's -BigTable. Like Dynamo, Cassandra is eventually consistent. Like -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/ |