add passwd to ldap converter
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2562 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
47
net-nds/yap2lc/yap2lc-0.5.9.ebuild
Normal file
47
net-nds/yap2lc/yap2lc-0.5.9.ebuild
Normal file
@@ -0,0 +1,47 @@
|
||||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="3"
|
||||
|
||||
inherit db-use eutils
|
||||
|
||||
DESCRIPTION="Yet Another Passwd 2 LDIF Converter"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
||||
HOMEPAGE="http://sourceforge.net/projects/yap2lc/"
|
||||
|
||||
RDEPEND="berkdb? ( >=sys-libs/db-4 )"
|
||||
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="berkdb"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/yap2lc-0.5.9-asneeded-1.patch
|
||||
}
|
||||
src_configure() {
|
||||
local myconf
|
||||
|
||||
if use berkdb; then
|
||||
local db_version
|
||||
db_version="$(db_findver sys-libs/db)" || die "Unable to find Berkeley DB version"
|
||||
db_version="$(db_ver_to_slot "${db_version}")"
|
||||
db_version="${db_version/\./}"
|
||||
myconf+=" --with-bdb --with-bdb-lib=/usr/$(get_libdir) --with-bdb-inc=$(db_includedir 2> /dev/null)"
|
||||
#sed -i "s!-ldb!-ldb${db_version}!" configure
|
||||
else
|
||||
myconf+=" --without-bdb"
|
||||
fi
|
||||
|
||||
econf ${myconf}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin ${PN} || die "dobin failed"
|
||||
dodoc CHANGELOG README
|
||||
docinto samples
|
||||
dodoc samples/*
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user