diff options
Diffstat (limited to 'app-crypt/ssdeep')
-rw-r--r-- | app-crypt/ssdeep/ssdeep-2.14.1-r1.ebuild (renamed from app-crypt/ssdeep/ssdeep-2.14.1.ebuild) | 27 |
1 files changed, 6 insertions, 21 deletions
diff --git a/app-crypt/ssdeep/ssdeep-2.14.1.ebuild b/app-crypt/ssdeep/ssdeep-2.14.1-r1.ebuild index dfbb62845de4..f3832477f4c4 100644 --- a/app-crypt/ssdeep/ssdeep-2.14.1.ebuild +++ b/app-crypt/ssdeep/ssdeep-2.14.1-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit autotools multilib-minimal +inherit autotools DESCRIPTION="Computes context triggered piecewise hashes (fuzzy hashes)" HOMEPAGE="https://ssdeep-project.github.io/ssdeep/" @@ -12,16 +12,6 @@ SRC_URI="https://github.com/${PN}-project/${PN}/releases/download/release-${PV}/ LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86" -IUSE="static-libs" - -DOCS=( - AUTHORS - ChangeLog - FILEFORMAT - NEWS - README - TODO -) PATCHES=( "${FILESDIR}/${PN}-2.10-shared.patch" @@ -32,13 +22,8 @@ src_prepare() { eautoreconf } -multilib_src_configure() { - ECONF_SOURCE="${S}" \ - econf \ - $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - find "${D}" -name '*.la' -delete || die +src_install() { + default + dodoc FILEFORMAT + find "${ED}" -name '*.la' -delete || die } |