diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-09-29 19:08:19 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-09-29 19:23:37 +0300 |
commit | 946608f9642649930a98cb25593ab460a8b3c8a6 (patch) | |
tree | 500f9c8b2db7693b948ca7ff8b19c50218c68bb1 /app-misc | |
parent | app-misc/fdupes: add 2.3.2 (diff) | |
download | gentoo-946608f9642649930a98cb25593ab460a8b3c8a6.tar.gz gentoo-946608f9642649930a98cb25593ab460a8b3c8a6.tar.bz2 gentoo-946608f9642649930a98cb25593ab460a8b3c8a6.zip |
app-misc/fdupes: sync live
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/fdupes/fdupes-9999.ebuild | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/app-misc/fdupes/fdupes-9999.ebuild b/app-misc/fdupes/fdupes-9999.ebuild index 2e3d8e6c3b57..c735e2285b46 100644 --- a/app-misc/fdupes/fdupes-9999.ebuild +++ b/app-misc/fdupes/fdupes-9999.ebuild @@ -1,10 +1,8 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit toolchain-funcs - DESCRIPTION="Identify/delete duplicate files residing within specified directories" HOMEPAGE="https://github.com/adrianlopezroche/fdupes" if [[ ${PV} == *9999 ]] ; then @@ -17,11 +15,12 @@ fi LICENSE="MIT" SLOT="0" -IUSE="+ncurses" +IUSE="+ncurses sqlite" RDEPEND=" - dev-libs/libpcre2[pcre32] + dev-libs/libpcre2:=[pcre32] ncurses? ( sys-libs/ncurses:= ) + sqlite? ( dev-db/sqlite:3 ) " DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" @@ -35,9 +34,5 @@ src_prepare() { } src_configure() { - econf $(use_with ncurses) -} - -src_compile() { - emake CC="$(tc-getCC)" + econf $(use_with ncurses) $(use_with sqlite) } |