blob: 0aa7c0ed695dd59d047c1f9d60d3f85f23ada439 (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-nds/nsscache/nsscache-0.21.14.ebuild,v 1.2 2011/09/08 22:37:17 robbat2 Exp $
EAPI=3
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
PYTHON_USE_WITH="berkdb"
inherit eutils python distutils
DESCRIPTION="commandline tool to sync directory services to local cache"
HOMEPAGE="http://code.google.com/p/nsscache/"
SRC_URI="http://nsscache.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nssdb nsscache"
DEPEND="dev-python/python-ldap
dev-python/pycurl"
RDEPEND="${DEPEND}
nssdb? ( sys-libs/nss-db )
nsscache? ( >=sys-auth/libnss-cache-0.10 )"
RESTRICT="test"
src_prepare() {
distutils_src_prepare
epatch "${FILESDIR}"/${PN}-0.8.3-starttls.patch
}
src_install() {
distutils_src_install
# overwrite default with working config.
insinto /etc
doins "${FILESDIR}/nsscache.conf" || die
doman nsscache.1 nsscache.conf.5
dodoc THANKS nsscache.cron
keepdir /var/lib/nsscache
}
|