blob: 09036f7007c49d4693d26807314266b69fcb26cb (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libtirpc/libtirpc-0.2.2-r1.ebuild,v 1.1 2011/06/11 19:52:16 vapier Exp $
EAPI="3"
inherit eutils toolchain-funcs
DESCRIPTION="Transport Independent RPC library (SunRPC replacement)"
HOMEPAGE="http://libtirpc.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
mirror://gentoo/${PN}-glibc-nfs.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64-linux"
IUSE="kerberos static-libs"
RDEPEND="kerberos? ( net-libs/libgssglue )"
DEPEND="${RDEPEND}
app-arch/xz-utils
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cp -r tirpc "${S}"/ || die
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.2.1-fortify.patch
epatch "${FILESDIR}"/${PN}-0.2.2-rpc-des-prot.patch
> src/des_crypt.c #370713
}
src_configure() {
econf \
$(use_enable kerberos gss) \
$(use_enable static-libs static)
}
src_install() {
emake install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
insinto /etc
newins doc/etc_netconfig netconfig || die
insinto /usr/include/tirpc
doins -r "${WORKDIR}"/tirpc/* || die
# libtirpc replaces rpc support in glibc, so we need it in /
gen_usr_ldscript -a 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 || find "${ED}" -name '*.la' -delete
}
|