Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libisds/
Date: Mon, 28 Dec 2020 14:16:11
Message-Id: 1609164941.9115cb5d71060f561b50e70c1e687989768a1b64.soap@gentoo
1 commit: 9115cb5d71060f561b50e70c1e687989768a1b64
2 Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
3 AuthorDate: Mon Dec 28 14:15:41 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 14:15:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9115cb5d
7
8 net-libs/libisds: Sync live ebuild
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.1
11 Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 net-libs/libisds/libisds-9999.ebuild | 51 ++++++++++++++++++------------------
15 1 file changed, 25 insertions(+), 26 deletions(-)
16
17 diff --git a/net-libs/libisds/libisds-9999.ebuild b/net-libs/libisds/libisds-9999.ebuild
18 index 29b8477bdd6..eb24a312d36 100644
19 --- a/net-libs/libisds/libisds-9999.ebuild
20 +++ b/net-libs/libisds/libisds-9999.ebuild
21 @@ -1,54 +1,53 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 -EAPI=6
27 -
28 -[[ ${PV} = 9999* ]] && inherit git-r3 autotools
29 +EAPI=7
30
31 +inherit autotools git-r3
32 DESCRIPTION="Client library for accessing ISDS Soap services"
33 HOMEPAGE="http://xpisar.wz.cz/libisds/"
34 -if [[ ${PV} = 9999* ]]; then
35 - EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
36 -else
37 - SRC_URI="http://xpisar.wz.cz/${PN}/dist/${P}.tar.xz"
38 - KEYWORDS="~amd64 ~mips ~x86"
39 -fi
40 +EGIT_REPO_URI="git://repo.or.cz/${PN}.git"
41
42 LICENSE="LGPL-3"
43 SLOT="0"
44 -IUSE="+curl debug nls static-libs test"
45 +IUSE="+curl debug doc nls openssl test"
46 RESTRICT="!test? ( test )"
47
48 -COMMON_DEPEND="
49 - app-crypt/gpgme
50 +RDEPEND="
51 dev-libs/expat
52 - dev-libs/libgcrypt:0=
53 dev-libs/libxml2
54 curl? ( net-misc/curl[ssl] )
55 -"
56 -DEPEND="${COMMON_DEPEND}
57 + doc? (
58 + app-text/docbook-xsl-stylesheets
59 + dev-libs/libxslt
60 + )
61 + openssl? ( dev-libs/openssl:= )
62 + !openssl? (
63 + app-crypt/gnupg
64 + app-crypt/gpgme
65 + dev-libs/libgcrypt:=
66 + )"
67 +DEPEND="${RDEPEND}
68 + test? ( net-libs/gnutls )"
69 +BDEPEND="
70 virtual/pkgconfig
71 - nls? ( sys-devel/gettext )
72 -"
73 -RDEPEND="${COMMON_DEPEND}
74 - >=app-crypt/gnupg-2
75 -"
76 -
77 -DOCS=( NEWS README AUTHORS ChangeLog )
78 + nls? ( sys-devel/gettext )"
79
80 src_prepare() {
81 default
82 - [[ ${PV} = 9999* ]] && eautoreconf
83 + eautoreconf
84 }
85
86 src_configure() {
87 local myeconfargs=(
88 --disable-fatalwarnings
89 + --disable-static
90 $(use_with curl libcurl)
91 $(use_enable curl curlreauthorizationbug)
92 + $(use_enable doc)
93 $(use_enable debug)
94 $(use_enable nls)
95 - $(use_enable static-libs static)
96 + $(use_enable openssl openssl-backend)
97 $(use_enable test)
98 )
99 econf "${myeconfargs[@]}"
100 @@ -57,5 +56,5 @@ src_configure() {
101 src_install() {
102 default
103
104 - find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
105 + find "${ED}" -name '*.la' -delete || die
106 }