diff options
author | Hans de Graaff <graaff@gentoo.org> | 2013-09-24 05:38:16 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2013-09-24 05:38:16 +0000 |
commit | 6e0580db75d643144b787142890b5882c705c4d6 (patch) | |
tree | 41a5b3215ba545207c823d4d899bfab163fe1846 /dev-ruby/ruby-ldap | |
parent | Temporarily disable openldap mask until s390 catches up (diff) | |
download | gentoo-2-6e0580db75d643144b787142890b5882c705c4d6.tar.gz gentoo-2-6e0580db75d643144b787142890b5882c705c4d6.tar.bz2 gentoo-2-6e0580db75d643144b787142890b5882c705c4d6.zip |
Version bump.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/ruby-ldap')
-rw-r--r-- | dev-ruby/ruby-ldap/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/ruby-ldap/ruby-ldap-0.9.16.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-ruby/ruby-ldap/ChangeLog b/dev-ruby/ruby-ldap/ChangeLog index 3e6d62f7b16c..02c812af49a3 100644 --- a/dev-ruby/ruby-ldap/ChangeLog +++ b/dev-ruby/ruby-ldap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-ruby/ruby-ldap # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-ldap/ChangeLog,v 1.60 2013/09/06 05:42:20 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-ldap/ChangeLog,v 1.61 2013/09/24 05:38:16 graaff Exp $ + +*ruby-ldap-0.9.16 (24 Sep 2013) + + 24 Sep 2013; Hans de Graaff <graaff@gentoo.org> +ruby-ldap-0.9.16.ebuild: + Version bump. *ruby-ldap-0.9.15 (06 Sep 2013) diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.16.ebuild b/dev-ruby/ruby-ldap/ruby-ldap-0.9.16.ebuild new file mode 100644 index 000000000000..2b4d1b760b17 --- /dev/null +++ b/dev-ruby/ruby-ldap/ruby-ldap-0.9.16.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-ldap/ruby-ldap-0.9.16.ebuild,v 1.1 2013/09/24 05:38:16 graaff Exp $ + +EAPI=5 +# jruby: mkmf +# rbx: require 'ldap' no such file to load +USE_RUBY="ruby18 ruby19 ruby20" + +inherit multilib ruby-fakegem + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_TASK_TEST="" +RUBY_FAKEGEM_EXTRADOC="ChangeLog FAQ NOTES README TODO" + +DESCRIPTION="A Ruby interface to some LDAP libraries" +HOMEPAGE="http://ruby-ldap.sourceforge.net/" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos" +IUSE="ssl" +DEPEND=">=net-nds/openldap-2 + dev-libs/cyrus-sasl + ssl? ( dev-libs/openssl )" +RDEPEND="${DEPEND}" + +# Current test set is interactive due to certificate generation and requires +# running LDAP daemon +RESTRICT="test" + +each_ruby_configure() { + local myconf="--with-openldap2" + if ! use ssl ; then + myconf="${myconf} --without-libcrypto --without-libssl" + fi + ${RUBY} extconf.rb ${myconf} || die "extconf.rb failed" + sed -i -e 's:-Wl,--no-undefined::' \ + -e "s/^ldflags = /ldflags = $\(LDFLAGS\) /" Makefile || die +} + +each_ruby_compile() { + emake V=1 || die + cp ldap$(get_modname) lib/ || die +} |