diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-09-16 18:05:57 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-11-19 11:10:41 +0100 |
commit | d93fe7517cbb37a94e23c87a55dffb6a5624100e (patch) | |
tree | bd50fc0dc7493bb4e2b6a3e40a86173835db468c /sys-apps | |
parent | app-editors/dav: use HTTPS, fix LICENSE (diff) | |
download | gentoo-d93fe7517cbb37a94e23c87a55dffb6a5624100e.tar.gz gentoo-d93fe7517cbb37a94e23c87a55dffb6a5624100e.tar.bz2 gentoo-d93fe7517cbb37a94e23c87a55dffb6a5624100e.zip |
sys-apps/duc: EAPI8 bump, fix LICENSE
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/duc/duc-9999.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys-apps/duc/duc-9999.ebuild b/sys-apps/duc/duc-9999.ebuild index e3f8f9050fbe..a0fde0e3916e 100644 --- a/sys-apps/duc/duc-9999.ebuild +++ b/sys-apps/duc/duc-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit autotools @@ -13,10 +13,10 @@ else SRC_URI="https://github.com/zevv/${PN}/releases/download/${PV}/${P}.tar.gz" fi -DESCRIPTION="A library and suite of tools for inspecting disk usage" +DESCRIPTION="Library and suite of tools for inspecting disk usage" HOMEPAGE="https://github.com/zevv/duc" -LICENSE="GPL-2" +LICENSE="LGPL-3" SLOT="0" IUSE="cairo gui leveldb ncurses sqlite +tokyocabinet X" @@ -66,7 +66,7 @@ src_configure() { if use tokyocabinet; then myconf+=( --with-db-backend=tokyocabinet ) - elif use leveldb; then + elif use leveldb; then myconf+=( --with-db-backend=leveldb ) else myconf+=( --with-db-backend=sqlite3 ) |