# Copyright 1999-2019 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit autotools git-r3 toolchain-funcs DESCRIPTION="Identify/delete duplicate files residing within specified directories" HOMEPAGE="https://github.com/adrianlopezroche/fdupes" EGIT_REPO_URI="https://github.com/adrianlopezroche/${PN}.git" LICENSE="MIT" SLOT="0" KEYWORDS="" IUSE="ncurses" DEPEND="dev-libs/libpcre2[pcre32]" DOCS=( CHANGES CONTRIBUTORS README ) src_prepare() { default eautoreconf } src_configure() { econf $(use_with ncurses) } src_install() { default }