diff options
author | Sam James <sam@gentoo.org> | 2022-09-09 09:58:37 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-09-09 09:58:37 +0200 |
commit | f117f30b9b26322bd50999a8aafb938bb5ebf9b7 (patch) | |
tree | e66fc97392eba1e395315db42594f8cda2a9b8ff /app-crypt/ssdeep | |
parent | dev-lang/go: Stabilize 1.19.1 arm64, #869248 (diff) | |
download | gentoo-f117f30b9b26322bd50999a8aafb938bb5ebf9b7.tar.gz gentoo-f117f30b9b26322bd50999a8aafb938bb5ebf9b7.tar.bz2 gentoo-f117f30b9b26322bd50999a8aafb938bb5ebf9b7.zip |
app-crypt/ssdeep: drop multilib, static-libs
No multilib reverse dependencies, ditto static-libs.
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: David Seifert <soap@gentoo.org>
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 } |