| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-ldap/ruby-ldap-0.9.12.ebuild,v 1.5 2012/10/27 19:05:11 armin76 Exp $ |
| 4 |
|
| 5 |
EAPI="4" |
| 6 |
# jruby: mkmf |
| 7 |
# rbx: require 'ldap' no such file to load |
| 8 |
USE_RUBY="ruby18 ruby19 ree18" |
| 9 |
|
| 10 |
inherit ruby-fakegem |
| 11 |
|
| 12 |
RUBY_FAKEGEM_TASK_DOC="" |
| 13 |
RUBY_FAKEGEM_TASK_TEST="" |
| 14 |
RUBY_FAKEGEM_EXTRADOC="ChangeLog FAQ NOTES README TODO" |
| 15 |
|
| 16 |
DESCRIPTION="A Ruby interface to some LDAP libraries" |
| 17 |
HOMEPAGE="http://ruby-ldap.sourceforge.net/" |
| 18 |
SRC_URI="mirror://rubygems/${P}.gem" |
| 19 |
LICENSE="BSD" |
| 20 |
SLOT="0" |
| 21 |
KEYWORDS="alpha amd64 hppa ia64 ppc ~ppc64 sparc x86 ~x86-macos" |
| 22 |
IUSE="ssl" |
| 23 |
DEPEND=">=net-nds/openldap-2 |
| 24 |
dev-libs/cyrus-sasl |
| 25 |
ssl? ( dev-libs/openssl )" |
| 26 |
RDEPEND="${DEPEND}" |
| 27 |
|
| 28 |
# Current test set is interactive due to certificate generation and requires |
| 29 |
# running LDAP daemon |
| 30 |
RESTRICT="test" |
| 31 |
|
| 32 |
each_ruby_configure() { |
| 33 |
local myconf="--with-openldap2" |
| 34 |
if ! use ssl ; then |
| 35 |
myconf="${myconf} --without-libcrypto --without-libssl" |
| 36 |
fi |
| 37 |
${RUBY} extconf.rb ${myconf} || die "extconf.rb failed" |
| 38 |
sed -i -e 's:-Wl,--no-undefined::' \ |
| 39 |
-e "s/^ldflags = /ldflags = $\(LDFLAGS\) /" Makefile || die |
| 40 |
} |
| 41 |
|
| 42 |
each_ruby_compile() { |
| 43 |
emake || die |
| 44 |
cp ldap.so lib/ |
| 45 |
} |