Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 836628
Collapse All | Expand All

(-)a/net-libs/libisds/Manifest (+1 lines)
Line 1 Link Here
1
DIST libisds-0.11.1.tar.xz 741992 BLAKE2B e1895450b1148c63a365a569fcdfa0d3cf3f2cdd011da6dbe92ea876aa1a9082470f3c7efc5757766df7e870559dd4ba62b59973e22d47401ef575e0fd412ec1 SHA512 8baf126ebf49c5eae6aa7b8f872ad90882a9a5088c8a33ffb415983eaf1ffc1df489f44ae6ba14a69a94bc4f79f455c7937276885afaa29e61c5c67408f7080a
1
DIST libisds-0.11.1.tar.xz 741992 BLAKE2B e1895450b1148c63a365a569fcdfa0d3cf3f2cdd011da6dbe92ea876aa1a9082470f3c7efc5757766df7e870559dd4ba62b59973e22d47401ef575e0fd412ec1 SHA512 8baf126ebf49c5eae6aa7b8f872ad90882a9a5088c8a33ffb415983eaf1ffc1df489f44ae6ba14a69a94bc4f79f455c7937276885afaa29e61c5c67408f7080a
2
DIST libisds-0.11.2.tar.xz 746388 BLAKE2B 08e5e1ba5c100faf18e4fa3d89b66486b773be4cf9097f9b237c8f407a98ac2cac0337bcb2665072f65414c06ee26f5670ee2604c8420eb12990b51534eaa062 SHA512 edaa591eda18dc0b8cc7c6e29a36610845cc293f1665a2e9744ec904aaa1c561caa41ada2e87de9428bb0397772c0c2884412fd0474daf28528d7ef2a7f28426
(-)a/net-libs/libisds/libisds-0.11.2.ebuild (-1 / +55 lines)
Line 0 Link Here
0
- 
1
# Copyright 1999-2022 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
3
4
EAPI=7
5
6
DESCRIPTION="Client library for accessing ISDS Soap services"
7
HOMEPAGE="http://xpisar.wz.cz/libisds/"
8
SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz"
9
KEYWORDS="~amd64 ~mips ~x86"
10
11
LICENSE="LGPL-3"
12
SLOT="0"
13
IUSE="+curl debug doc nls openssl test"
14
RESTRICT="!test? ( test )"
15
16
RDEPEND="
17
	dev-libs/expat
18
	dev-libs/libxml2
19
	curl? ( net-misc/curl[ssl] )
20
	doc? (
21
		app-text/docbook-xsl-stylesheets
22
		dev-libs/libxslt
23
	)
24
	openssl? ( dev-libs/openssl:= )
25
	!openssl? (
26
		app-crypt/gnupg
27
		app-crypt/gpgme:=
28
		dev-libs/libgcrypt:=
29
	)"
30
DEPEND="${RDEPEND}
31
	test? ( net-libs/gnutls )"
32
BDEPEND="
33
	virtual/pkgconfig
34
	nls? ( sys-devel/gettext )"
35
36
src_configure() {
37
	local myeconfargs=(
38
		--disable-fatalwarnings
39
		--disable-static
40
		$(use_with curl libcurl)
41
		$(use_enable curl curlreauthorizationbug)
42
		$(use_enable doc)
43
		$(use_enable debug)
44
		$(use_enable nls)
45
		$(use_enable openssl openssl-backend)
46
		$(use_enable test)
47
	)
48
	econf "${myeconfargs[@]}"
49
}
50
51
src_install() {
52
	default
53
54
	find "${ED}" -name '*.la' -delete || die
55
}

Return to bug 836628