diff options
author | 2009-07-05 19:25:41 +0000 | |
---|---|---|
committer | 2009-07-05 19:25:41 +0000 | |
commit | bc773fa10b399abd742d403c5877173927252269 (patch) | |
tree | 90193d9f3dd5522ecdd1dc0b9c07bd84eb52d0fe /dev-libs/libhome/libhome-0.10.2.ebuild | |
parent | remove file components/WeaveCrypto.so compiled for ARM, fix bug 276323 (diff) | |
download | gentoo-2-bc773fa10b399abd742d403c5877173927252269.tar.gz gentoo-2-bc773fa10b399abd742d403c5877173927252269.tar.bz2 gentoo-2-bc773fa10b399abd742d403c5877173927252269.zip |
version bump, fixes #265588 and maybe #234538
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'dev-libs/libhome/libhome-0.10.2.ebuild')
-rw-r--r-- | dev-libs/libhome/libhome-0.10.2.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/dev-libs/libhome/libhome-0.10.2.ebuild b/dev-libs/libhome/libhome-0.10.2.ebuild new file mode 100644 index 000000000000..1abbbbd63aa0 --- /dev/null +++ b/dev-libs/libhome/libhome-0.10.2.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhome/libhome-0.10.2.ebuild,v 1.1 2009/07/05 19:25:39 hollow Exp $ + +inherit autotools db-use eutils + +DESCRIPTION="libhome is a library providing a getpwnam() emulation" +HOMEPAGE="http://pll.sourceforge.net" +SRC_URI="mirror://sourceforge/pll/${P}.tar.gz" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="berkdb ldap mysql pam postgres" + +DEPEND="berkdb? ( =sys-libs/db-4* ) + ldap? ( net-nds/openldap ) + mysql? ( virtual/mysql ) + pam? ( virtual/pam ) + postgres? ( virtual/postgresql-server )" +RDEPEND="${DEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + rm -f aclocal.m4 + epatch "${FILESDIR}"/${PN}-0.10.1-Makefile.patch + epatch "${FILESDIR}"/${PN}-0.10.2-ldap_deprecated.patch + + # bug 225579 + sed -i -e 's:\<VERSION\>:__PKG_VERSION:' configure.in + + eautoreconf +} + +src_compile() { + econf --without-db3 \ + $(use_with berkdb db4 $(db_includedir)) \ + $(use_with ldap) \ + $(use_with mysql) \ + $(use_with pam) \ + $(use_with postgres pgsql) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" +} |