blob: 050ec643f6641c5371e7ada6f4377f49114f397a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2009 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.9.ebuild,v 1.1 2009/07/23 07:03:35 graaff Exp $
inherit ruby
DESCRIPTION="A Ruby interface to some LDAP libraries"
HOMEPAGE="http://code.google.com/p/ruby-activeldap/"
SRC_URI="http://ruby-activeldap.googlecode.com/files/${P}.tar.bz2"
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 -j1 DESTDIR="${D}" install || die
dodoc ChangeLog FAQ README TODO
}
|