Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-ldap/
Date: Sat, 03 Oct 2015 09:12:55
Message-Id: 1443863564.db1eed184027b90e754ceee4246eeb1f869e52cf.graaff@gentoo
1 commit: db1eed184027b90e754ceee4246eeb1f869e52cf
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 09:05:59 2015 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 09:12:44 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1eed18
7
8 dev-ruby/ruby-ldap: cleanup
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-ruby/ruby-ldap/ruby-ldap-0.9.16-r2.ebuild | 44 ---------------------------
13 1 file changed, 44 deletions(-)
14
15 diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.16-r2.ebuild b/dev-ruby/ruby-ldap/ruby-ldap-0.9.16-r2.ebuild
16 deleted file mode 100644
17 index 465633f..0000000
18 --- a/dev-ruby/ruby-ldap/ruby-ldap-0.9.16-r2.ebuild
19 +++ /dev/null
20 @@ -1,44 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -# jruby: mkmf
27 -# rbx: require 'ldap' no such file to load
28 -USE_RUBY="ruby19 ruby20 ruby21"
29 -
30 -inherit multilib ruby-fakegem
31 -
32 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
33 -RUBY_FAKEGEM_TASK_TEST=""
34 -RUBY_FAKEGEM_EXTRADOC="ChangeLog FAQ NOTES README TODO"
35 -
36 -DESCRIPTION="A Ruby interface to some LDAP libraries"
37 -HOMEPAGE="http://ruby-ldap.sourceforge.net/"
38 -LICENSE="BSD"
39 -SLOT="0"
40 -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos"
41 -IUSE="ssl"
42 -DEPEND=">=net-nds/openldap-2
43 - dev-libs/cyrus-sasl
44 - ssl? ( dev-libs/openssl )"
45 -RDEPEND="${DEPEND}"
46 -
47 -# Current test set is interactive due to certificate generation and requires
48 -# running LDAP daemon
49 -RESTRICT="test"
50 -
51 -each_ruby_configure() {
52 - local myconf="--with-openldap2"
53 - if ! use ssl ; then
54 - myconf="${myconf} --without-libcrypto --without-libssl"
55 - fi
56 - ${RUBY} extconf.rb ${myconf} || die "extconf.rb failed"
57 - sed -i -e 's:-Wl,--no-undefined::' \
58 - -e "s/^ldflags = /ldflags = $\(LDFLAGS\) /" Makefile || die
59 -}
60 -
61 -each_ruby_compile() {
62 - emake V=1
63 - cp ldap$(get_modname) lib/ || die
64 -}