diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2017-01-05 23:56:08 -0500 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2017-01-05 23:56:08 -0500 |
commit | 3f00be8731ec0bca482bba3a5eebd1c2ca2663e3 (patch) | |
tree | be2f3dd06525d68d9e5a6fe2cd4410e4dfaedfb6 /dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild | |
parent | dev-php/phpmd: replace v1.5.0 with v2.5.0. (diff) | |
download | gentoo-3f00be8731ec0bca482bba3a5eebd1c2ca2663e3.tar.gz gentoo-3f00be8731ec0bca482bba3a5eebd1c2ca2663e3.tar.bz2 gentoo-3f00be8731ec0bca482bba3a5eebd1c2ca2663e3.zip |
dev-php/pecl-mongodb: remove unused pecl-mongodb-1.1.7.
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild')
-rw-r--r-- | dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild b/dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild deleted file mode 100644 index f8016de5cac2..000000000000 --- a/dev-php/pecl-mongodb/pecl-mongodb-1.1.7.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PHP_EXT_NAME="mongodb" -USE_PHP="php5-6 php7-0" -DOCS="README.md" - -inherit php-ext-pecl-r2 - -DESCRIPTION="MongoDB database driver for PHP" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="libressl pcre sasl" - -for target in ${USE_PHP}; do - slot=${target/php} - slot=${slot/-/.} - PHPUSEDEPEND="${PHPUSEDEPEND} - php_targets_${target}? ( dev-lang/php:${slot}[json,ssl,zlib] )" -done -unset target slot -RDEPEND=" - ${PHPUSEDEPEND} - >=dev-libs/libbson-1.3.3 - >=dev-libs/mongo-c-driver-1.3.3[sasl?,ssl] - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - pcre? ( dev-libs/libpcre ) - sasl? ( dev-libs/cyrus-sasl ) -" -# pkgconfig needed if system libraries are used for bson and libmongoc -DEPEND="${RDEPEND} virtual/pkgconfig" - -src_configure() { - local my_conf="--enable-mongodb --with-libbson --with-libmongoc " - my_conf+="--with-pcre-dir=$(usex pcre yes no) --with-mongodb-sasl=$(usex sasl yes no)" - php-ext-source-r2_src_configure -} |