blob: 29e0a521e6ed811de8dc1cef9fee3356a0f8cc8c (
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
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit multilib-minimal toolchain-funcs git-r3 autotools
DESCRIPTION="Transport Independent RPC library (SunRPC replacement)"
HOMEPAGE="http://libtirpc.sourceforge.net/"
SRC_URI=""
EGIT_REPO_URI=" git://git.linux-nfs.org/projects/steved/libtirpc.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="ipv6 kerberos static-libs"
RDEPEND="kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
app-arch/xz-utils
>=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
multilib_src_configure() {
ECONF_SOURCE=${S} \
econf \
$(use_enable ipv6) \
$(use_enable kerberos gssapi) \
$(use_enable static-libs static)
}
multilib_src_install() {
default
# libtirpc replaces rpc support in glibc, so we need it in /
multilib_is_native_abi && gen_usr_ldscript -a tirpc
}
src_prepare() {
eautoreconf
}
multilib_src_prepare() {
src_prepare
}
multilib_src_install_all() {
einstalldocs
insinto /etc
doins doc/netconfig
insinto /usr/include/tirpc
# doins -r "${WORKDIR}"/tirpc/*
# makes sure that the linking order for nfs-utils is proper, as
# libtool would inject a libgssglue dependency in the list.
use static-libs || prune_libtool_files
}
|