diff options
author | Wes Cilldhaire <wes@sol1.com.au> | 2016-02-02 22:29:00 +1100 |
---|---|---|
committer | Wes Cilldhaire <wes@sol1.com.au> | 2016-02-02 22:43:40 +1100 |
commit | 708306d764835c180931fa903d6f75a87875bae0 (patch) | |
tree | c024bc56768900123994057ea84f5b84303cb304 /dev-perl/perl-mozldap | |
parent | dev-python/webob: use EAPI=6 and drop py-3.3 support in 1.6.0_alpha0 (diff) | |
download | gentoo-708306d764835c180931fa903d6f75a87875bae0.tar.gz gentoo-708306d764835c180931fa903d6f75a87875bae0.tar.bz2 gentoo-708306d764835c180931fa903d6f75a87875bae0.zip |
dev-perl/perl-mozldap: version bump to 1.5.3
This also replaces mozldap with openldap to fix the build
issue experienced in earlier bump requests for this version.
Gentoo-bug: 573446
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-perl/perl-mozldap')
-rw-r--r-- | dev-perl/perl-mozldap/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/perl-mozldap/perl-mozldap-1.5.3.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/dev-perl/perl-mozldap/Manifest b/dev-perl/perl-mozldap/Manifest index 97c87884f411..5a0088d111a6 100644 --- a/dev-perl/perl-mozldap/Manifest +++ b/dev-perl/perl-mozldap/Manifest @@ -1 +1,2 @@ DIST perl-mozldap-1.5.2.tar.gz 109175 SHA256 fdfc02b0c0be704980e93f12aa5ed2c13c7bae5a50e68ba446c06a7adee9991b SHA512 b47c3ffdab96b42a69daf3c4deeddd42000be328c77b3a80cb417ceed4b20768390c532e890198270956065db714ff51f035c9ad40e973c376cddcaae67c4a04 WHIRLPOOL 2bca2853a6333f37d3ee745611ba4df23bae6b70147e79dc24537f7b8016afa74f526b6afd9625b5d955502cd250abd05064fcf147b68d9de0b5d9b69c85eca7 +DIST perl-mozldap-1.5.3.tar.gz 114128 SHA256 9d707be3a126dd6001205ef72e59e4b892dcda3b3a1e7d061f6f7fc0dba20a68 SHA512 41a6913222cde9be4dc85a6406b0a499954500a38e74e5367f150191f0ea186162b5cd66a2655240909a4d5cc9df820e349e37e73c8549f83d084d96f8f74375 WHIRLPOOL 8a9f1ab724330fdb1d3a1cd6c6966f86f67379fc1615d461f76b2ead3010c3dcc3c8a19f81031b8c8bf3f278ef83ac970c658acdbf788f46051e84611726de75 diff --git a/dev-perl/perl-mozldap/perl-mozldap-1.5.3.ebuild b/dev-perl/perl-mozldap/perl-mozldap-1.5.3.ebuild new file mode 100644 index 000000000000..69dca9dbdbc0 --- /dev/null +++ b/dev-perl/perl-mozldap/perl-mozldap-1.5.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit perl-module + +DESCRIPTION="Mozilla PerLDAP" +HOMEPAGE="http://www.mozilla.org/directory/perldap.html" +SRC_URI="https://ftp.mozilla.org/pub/mozilla.org/directory/perldap/releases/${PV}/src/${P}.tar.gz" + +LICENSE="MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-libs/nspr-4.0.1 + >=dev-libs/nss-3.11.6 + net-nds/openldap" +DEPEND="${RDEPEND} + sys-apps/sed" + +src_configure() { + export USE_OPENLDAP=1 + perl-module_src_configure +} |