Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/log4shib/
Date: Wed, 29 May 2019 04:14:40
Message-Id: 1559102983.c67f00d21d6c264d330fdc79034858fb31ce0ab6.bman@gentoo
1 commit: c67f00d21d6c264d330fdc79034858fb31ce0ab6
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun May 26 09:04:36 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed May 29 04:09:43 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c67f00d2
7
8 dev-libs/log4shib: EAPI=7 bump
9
10 Closes: https://bugs.gentoo.org/686778
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/12113
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 dev-libs/log4shib/log4shib-1.0.4-r1.ebuild | 22 ++++++++++++++++++++++
16 1 file changed, 22 insertions(+)
17
18 diff --git a/dev-libs/log4shib/log4shib-1.0.4-r1.ebuild b/dev-libs/log4shib/log4shib-1.0.4-r1.ebuild
19 new file mode 100644
20 index 00000000000..63ac7a704a4
21 --- /dev/null
22 +++ b/dev-libs/log4shib/log4shib-1.0.4-r1.ebuild
23 @@ -0,0 +1,22 @@
24 +# Copyright 1999-2019 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +DESCRIPTION="Internet2 version for OpenSAML of log4cpp logging framework"
30 +HOMEPAGE="https://wiki.shibboleth.net/confluence/display/OpenSAML/log4shib"
31 +SRC_URI="https://shibboleth.net/downloads/${PN}/${PV}/${P}.tar.gz"
32 +
33 +KEYWORDS="~amd64 ~x86"
34 +LICENSE="LGPL-2.1"
35 +SLOT="0"
36 +IUSE="debug doc static-libs"
37 +
38 +BDEPEND="doc? ( app-doc/doxygen )"
39 +
40 +src_configure() {
41 + econf --without-idsa \
42 + $(use_enable debug) \
43 + $(use_enable doc doxygen) \
44 + $(use_enable static-libs static)
45 +}