diff options
author | Michael Seifert <m.seifert@digitalernachschub.de> | 2020-11-17 07:59:42 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-11-20 14:03:36 +0200 |
commit | f51c2e50d5484c188220c35632572014947b79bf (patch) | |
tree | 984c4cff6be66cecbc2aebc8bd9e7499867d96d2 /net-analyzer | |
parent | sys-apps/firejail: remove unused local USE flag descriptions (diff) | |
download | gentoo-f51c2e50d5484c188220c35632572014947b79bf.tar.gz gentoo-f51c2e50d5484c188220c35632572014947b79bf.tar.bz2 gentoo-f51c2e50d5484c188220c35632572014947b79bf.zip |
net-analyzer/goaccess: Removed dependency & USE flag in live ebuild
The dependency on TokyoCabinet was replaced starting with v1.4 [1]. That also
means that the bzip2, zlib, and btree USE flags are now obsolete.
[1] https://github.com/allinurl/goaccess/blob/d374abfaffea9d5fc99931e01d78b970ef99d0dd/ChangeLog#L129
Signed-off-by: Michael Seifert <m.seifert@digitalernachschub.de>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/goaccess/goaccess-9999.ebuild | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/net-analyzer/goaccess/goaccess-9999.ebuild b/net-analyzer/goaccess/goaccess-9999.ebuild index a5512dc51d48..54c48bd6e78f 100644 --- a/net-analyzer/goaccess/goaccess-9999.ebuild +++ b/net-analyzer/goaccess/goaccess-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -14,8 +14,8 @@ SRC_URI="" LICENSE="MIT" SLOT="0" KEYWORDS="" -IUSE="btree bzip2 debug geoip geoipv2 getline libressl tokyocabinet ssl unicode zlib" -REQUIRED_USE="btree? ( tokyocabinet ) bzip2? ( btree ) geoipv2? ( geoip ) zlib? ( btree )" +IUSE="debug geoip geoipv2 getline libressl ssl unicode" +REQUIRED_USE="geoipv2? ( geoip )" BDEPEND="virtual/pkgconfig" RDEPEND="sys-libs/ncurses:0=[unicode?] @@ -23,14 +23,6 @@ RDEPEND="sys-libs/ncurses:0=[unicode?] !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) - !tokyocabinet? ( dev-libs/glib:2 ) - tokyocabinet? ( - dev-db/tokyocabinet[bzip2?,zlib?] - btree? ( - bzip2? ( app-arch/bzip2 ) - zlib? ( sys-libs/zlib ) - ) - ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) @@ -48,11 +40,8 @@ src_prepare() { src_configure() { econf \ - "$(use_enable bzip2 bzip)" \ - "$(use_enable zlib)" \ "$(use_enable debug)" \ "$(use_enable geoip geoip "$(usex geoipv2 mmdb legacy)")" \ - "$(use_enable tokyocabinet tcb "$(usex btree btree memhash)")" \ "$(use_enable unicode utf8)" \ "$(use_with getline)" \ "$(use_with ssl openssl)" |