blob: a45a5f0c5f8dd6856ece051ab99eeae7229c7429 (
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
47
48
49
50
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
MY_P="${PN/-}-${PV}"
DESCRIPTION="daemon to proxy GSSAPI context establishment and channel handling"
HOMEPAGE="https://fedorahosted.org/gss-proxy/"
SRC_URI="https://fedorahosted.org/released/gss-proxy/${MY_P}.tar.gz"
LICENSE="BSD-1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="debug selinux systemd"
RDEPEND=">=dev-libs/libverto-0.2.2
>=dev-libs/ding-libs-0.5.0
virtual/krb5
selinux? ( sys-libs/libselinux )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
S="${WORKDIR}/${MY_P}"
src_configure() {
# The build assumes localstatedir is /var and takes care of
# using all the right subdirs itself.
econf \
--localstatedir="${EPREFIX}/var" \
--with-os=gentoo \
--with-initscript=$(usex systemd systemd sysv) \
$(use_with selinux) \
$(use_with debug gssidebug)
}
src_install() {
default
# This is a plugin module, so no need for la file.
find "${ED}"/usr -name proxymech.la -delete
doinitd "${FILESDIR}"/gssproxy
insinto /etc/gssproxy
doins examples/*.conf
insinto /etc/gss/mech.d
newins examples/mech gssproxy.conf
# The build installs a bunch of empty dirs, so prune them.
find "${ED}" -depth -type d -exec rmdir {} + 2>/dev/null
}
|