diff --git a/dev-libs/libfguid/Manifest b/dev-libs/libfguid/Manifest index 50ea981f1..54787ab9e 100644 --- a/dev-libs/libfguid/Manifest +++ b/dev-libs/libfguid/Manifest @@ -1,2 +1 @@ -DIST libfguid-alpha-20180724.tar.gz 500741 BLAKE2B 8eed6589ed434bd37f7efa242f89f84ac6d091f12770d95f90f654234f5f75ac411a5826d67eb191a7be24b7676f59d787881717377dcc68295ba0d5050782ad SHA512 060f88da38bb8d89a5f2c37dc1e75814e7e2b603c7fe7288bec005e0a9c5508f7ebeb6c24ec566daaad7652462e8773225ec1416cbc856af6962aa6256a1abf9 DIST libfguid-alpha-20220113.tar.gz 514897 BLAKE2B 7b9c205e04f7977a85032159ee658de4efd5d321cf2e42bc1ceca90adc0949f00a642d064ed777eaee780327881b02989a38e84ec339a81969bebb027ae0f3c5 SHA512 b8cdc333fd740575f1d6a6202463cb72ea014f4c604461f55baf0e8b7dd113e09eb699b9a14874759094fc258a39b1f068f7a59224f45b8c1d44ec9c5f739afb diff --git a/dev-libs/libfguid/libfguid-20180724.ebuild b/dev-libs/libfguid/libfguid-20180724.ebuild deleted file mode 100644 index 6528c4f74..000000000 --- a/dev-libs/libfguid/libfguid-20180724.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="Library for GUID/UUID format" -HOMEPAGE="https://github.com/libyal/libfguid" -SRC_URI="https://github.com/libyal/libfguid/releases/download/${PV}/${PN}-alpha-${PV}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 ~arm64 x86" -IUSE="nls" - -DEPEND=" - dev-libs/libcerror[nls=] - nls? ( - virtual/libiconv - virtual/libintl - ) -" -RDEPEND="${DEPEND}" - -src_prepare() { - #makefile was created with 1.16, let's regenerate it - eautoreconf - eapply_user -} - -src_configure() { - econf \ - $(use_enable nls) \ - $(use_with nls libiconv-prefix) \ - $(use_with nls libintl-prefix) - -# --enable-winapi enable WINAPI support for cross-compilation -# [default=auto-detect] -# not supported in the ebuild at the moment - requires windows.h, does not make much sense for us -} - -src_install() { - default - # see https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303 - find "${ED}" -name '*.la' -delete || die -}