diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-05-26 11:04:36 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-05-29 00:09:43 -0400 |
commit | c67f00d21d6c264d330fdc79034858fb31ce0ab6 (patch) | |
tree | a0ee2ce9e5e09508e3ba97172c55d4cc67963a78 /dev-libs/log4shib | |
parent | dev-libs/log4shib: fix SRC_URI (diff) | |
download | gentoo-c67f00d21d6c264d330fdc79034858fb31ce0ab6.tar.gz gentoo-c67f00d21d6c264d330fdc79034858fb31ce0ab6.tar.bz2 gentoo-c67f00d21d6c264d330fdc79034858fb31ce0ab6.zip |
dev-libs/log4shib: EAPI=7 bump
Closes: https://bugs.gentoo.org/686778
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12113
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-libs/log4shib')
-rw-r--r-- | dev-libs/log4shib/log4shib-1.0.4-r1.ebuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/dev-libs/log4shib/log4shib-1.0.4-r1.ebuild b/dev-libs/log4shib/log4shib-1.0.4-r1.ebuild new file mode 100644 index 000000000000..63ac7a704a4d --- /dev/null +++ b/dev-libs/log4shib/log4shib-1.0.4-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Internet2 version for OpenSAML of log4cpp logging framework" +HOMEPAGE="https://wiki.shibboleth.net/confluence/display/OpenSAML/log4shib" +SRC_URI="https://shibboleth.net/downloads/${PN}/${PV}/${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="debug doc static-libs" + +BDEPEND="doc? ( app-doc/doxygen )" + +src_configure() { + econf --without-idsa \ + $(use_enable debug) \ + $(use_enable doc doxygen) \ + $(use_enable static-libs static) +} |