diff options
author | David Seifert <soap@gentoo.org> | 2022-04-10 17:02:49 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-04-10 17:02:49 +0200 |
commit | edb024802334850133f2c9ac8cb641c1f89d5795 (patch) | |
tree | 8691333c192381e6c47e485e1a3ea4af45da35e2 /sys-apps/man-db | |
parent | dev-lang/pico8: Correct the HOMEPAGE (diff) | |
download | gentoo-edb024802334850133f2c9ac8cb641c1f89d5795.tar.gz gentoo-edb024802334850133f2c9ac8cb641c1f89d5795.tar.bz2 gentoo-edb024802334850133f2c9ac8cb641c1f89d5795.zip |
sys-apps/man-db: remove USE="berkdb"
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sys-apps/man-db')
-rw-r--r-- | sys-apps/man-db/man-db-2.10.2-r1.ebuild (renamed from sys-apps/man-db/man-db-2.10.2.ebuild) | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sys-apps/man-db/man-db-2.10.2.ebuild b/sys-apps/man-db/man-db-2.10.2-r1.ebuild index 10986291516d..ef05ecd8416f 100644 --- a/sys-apps/man-db/man-db-2.10.2.ebuild +++ b/sys-apps/man-db/man-db-2.10.2-r1.ebuild @@ -5,7 +5,7 @@ EAPI=7 inherit systemd prefix tmpfiles -DESCRIPTION="A man replacement that utilizes berkdb instead of flat files" +DESCRIPTION="A man replacement that utilizes dbm instead of flat files" HOMEPAGE="https://gitlab.com/cjwatson/man-db https://www.nongnu.org/man-db/" if [[ ${PV} == *9999 ]] ; then inherit autotools git-r3 @@ -18,13 +18,12 @@ fi LICENSE="GPL-3" SLOT="0" -IUSE="berkdb +manpager nls +seccomp selinux static-libs zlib" +IUSE="+manpager nls +seccomp selinux static-libs zlib" -CDEPEND="!sys-apps/man +CDEPEND=" >=dev-libs/libpipeline-1.5.0 sys-apps/groff - !berkdb? ( sys-libs/gdbm:= ) - berkdb? ( sys-libs/db:= ) + sys-libs/gdbm:= seccomp? ( sys-libs/libseccomp ) zlib? ( sys-libs/zlib )" DEPEND="${CDEPEND}" @@ -117,7 +116,7 @@ src_configure() { $(use_enable static-libs static) $(use_with seccomp libseccomp) - --with-db=$(usex berkdb db gdbm) + --with-db=gdbm ) case ${CHOST} in |