diff options
author | 2013-09-06 05:42:20 +0000 | |
---|---|---|
committer | 2013-09-06 05:42:20 +0000 | |
commit | 35db3ecef95615fe918d2dabc866f90ff861116c (patch) | |
tree | abcd129e6f17b40999c8f431c6b14fb5f14d2c0b /dev-ruby/ruby-ldap | |
parent | Add missing test dep (diff) | |
download | gentoo-2-35db3ecef95615fe918d2dabc866f90ff861116c.tar.gz gentoo-2-35db3ecef95615fe918d2dabc866f90ff861116c.tar.bz2 gentoo-2-35db3ecef95615fe918d2dabc866f90ff861116c.zip |
Version bump.
(Portage version: 2.1.12.2/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.15.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-ruby/ruby-ldap/ChangeLog b/dev-ruby/ruby-ldap/ChangeLog index 2c434aa270eb..3e6d62f7b16c 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.59 2013/06/06 05:42:50 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-ldap/ChangeLog,v 1.60 2013/09/06 05:42:20 graaff Exp $ + +*ruby-ldap-0.9.15 (06 Sep 2013) + + 06 Sep 2013; Hans de Graaff <graaff@gentoo.org> +ruby-ldap-0.9.15.ebuild: + Version bump. *ruby-ldap-0.9.13 (06 Jun 2013) diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.15.ebuild b/dev-ruby/ruby-ldap/ruby-ldap-0.9.15.ebuild new file mode 100644 index 000000000000..053a507b9252 --- /dev/null +++ b/dev-ruby/ruby-ldap/ruby-ldap-0.9.15.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.15.ebuild,v 1.1 2013/09/06 05:42:20 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 +} |