diff options
author | 2007-11-07 10:32:14 +0000 | |
---|---|---|
committer | 2007-11-07 10:32:14 +0000 | |
commit | 2fa71232d794c20a9d484398aea28a6705949b16 (patch) | |
tree | c53fff5076c6aae052e40f22924c48e2ac24a1c3 /dev-ruby/ruby-ldap/ruby-ldap-0.9.7.ebuild | |
parent | Remove old versions (diff) | |
download | gentoo-2-2fa71232d794c20a9d484398aea28a6705949b16.tar.gz gentoo-2-2fa71232d794c20a9d484398aea28a6705949b16.tar.bz2 gentoo-2-2fa71232d794c20a9d484398aea28a6705949b16.zip |
Version bump; fix QA issues; restrict tests
(Portage version: 2.1.3.16)
Diffstat (limited to 'dev-ruby/ruby-ldap/ruby-ldap-0.9.7.ebuild')
-rw-r--r-- | dev-ruby/ruby-ldap/ruby-ldap-0.9.7.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.7.ebuild b/dev-ruby/ruby-ldap/ruby-ldap-0.9.7.ebuild new file mode 100644 index 000000000000..ca4a5ac0f5cf --- /dev/null +++ b/dev-ruby/ruby-ldap/ruby-ldap-0.9.7.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 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.7.ebuild,v 1.1 2007/11/07 10:32:14 graaff Exp $ + +inherit ruby + +DESCRIPTION="A Ruby interface to some LDAP libraries" +HOMEPAGE="http://ruby-ldap.sourceforge.net/" +SRC_URI="mirror://sourceforge/ruby-ldap/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="ssl" +USE_RUBY="ruby18 ruby19" +DEPEND=">=dev-lang/ruby-1.8.2 + >=net-nds/openldap-2 + ssl? ( dev-libs/openssl )" + +# Current test set is interactive due to certificate generation and requires +# running LDAP daemon +RESTRICT="test" + +src_compile() { + ruby extconf.rb --with-openldap2 || die "extconf.rb failed" + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc ChangeLog README* TODO +} |