blob: 316c2d9f97c704634a006d58b41aba4d2ed718c8 (
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
60
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
[[ ${PV} = 9999* ]] && inherit git-r3 autotools
DESCRIPTION="Client library for accessing ISDS Soap services"
HOMEPAGE="http://xpisar.wz.cz/libisds/"
if [[ ${PV} = 9999* ]]; then
EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
else
SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz"
KEYWORDS="~amd64 ~mips ~x86"
fi
LICENSE="LGPL-3"
SLOT="0"
IUSE="+curl debug nls static-libs test"
COMMON_DEPEND="
app-crypt/gpgme
dev-libs/expat
dev-libs/libgcrypt:0=
dev-libs/libxml2
curl? ( net-misc/curl[ssl] )
"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig
nls? ( sys-devel/gettext )
"
RDEPEND="${COMMON_DEPEND}
>=app-crypt/gnupg-2
"
DOCS=( NEWS README AUTHORS ChangeLog )
src_prepare() {
default
[[ ${PV} = 9999* ]] && eautoreconf
}
src_configure() {
local myeconfargs=(
--disable-fatalwarnings
$(use_with curl libcurl)
$(use_enable curl curlreauthorizationbug)
$(use_enable debug)
$(use_enable nls)
$(use_enable static-libs static)
$(use_enable test)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
}
|