diff --git a/app-misc/jdupes/jdupes-1.20.2-r1.ebuild b/app-misc/jdupes/jdupes-1.20.2-r1.ebuild new file mode 100644 index 0000000000000..a6b6e30cf6754 --- /dev/null +++ b/app-misc/jdupes/jdupes-1.20.2-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Identify duplicate files on the filesystem" +HOMEPAGE="https://github.com/jbruchon/jdupes" +if [[ "${PV}" == *9999 ]] ; then + EGIT_REPO_URI="https://github.com/jbruchon/jdupes.git" + inherit git-r3 +else + SRC_URI="https://github.com/jbruchon/jdupes/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi +LICENSE="MIT" +SLOT="0" + +IUSE="+dedupe lowmem hardened" + +# missing test.sh script +# https://github.com/jbruchon/jdupes/issues/191 +RESTRICT="test" + +src_prepare() { + sed -i -e '/PREFIX/s/=/?=/' Makefile || die + default +} + +src_compile() { + tc-export CC + local myconf=( + $(usex dedupe 'ENABLE_DEDUPE=1' '') + $(usex lowmem 'LOW_MEMORY=1' '') + $(usex hardened 'HARDEN=1' '') + ) + emake ${myconf[@]} +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install + einstalldocs +} diff --git a/app-misc/jdupes/jdupes-9999.ebuild b/app-misc/jdupes/jdupes-9999.ebuild index 681f1d0f1493e..a6b6e30cf6754 100644 --- a/app-misc/jdupes/jdupes-9999.ebuild +++ b/app-misc/jdupes/jdupes-9999.ebuild @@ -17,6 +17,8 @@ fi LICENSE="MIT" SLOT="0" +IUSE="+dedupe lowmem hardened" + # missing test.sh script # https://github.com/jbruchon/jdupes/issues/191 RESTRICT="test" @@ -28,7 +30,12 @@ src_prepare() { src_compile() { tc-export CC - default + local myconf=( + $(usex dedupe 'ENABLE_DEDUPE=1' '') + $(usex lowmem 'LOW_MEMORY=1' '') + $(usex hardened 'HARDEN=1' '') + ) + emake ${myconf[@]} } src_install() { diff --git a/app-misc/jdupes/metadata.xml b/app-misc/jdupes/metadata.xml index a710c4ca40770..5079763f76360 100644 --- a/app-misc/jdupes/metadata.xml +++ b/app-misc/jdupes/metadata.xml @@ -13,6 +13,10 @@ proxy-maint@gentoo.org Proxy Maintainers + + Enable deduplication support + Enable support for low-memory operation + jbruchon/jdupes