From 981ff79da30189bf25e60af0404a574b6e8dc97e Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Sat, 12 Feb 2022 11:46:03 +0100 Subject: app-arch/unmakeself: Update for libarchive[zlib] flag removal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- app-arch/unmakeself/unmakeself-1.1-r1.ebuild | 34 ++++++++++++++++++++++++++++ app-arch/unmakeself/unmakeself-1.1.ebuild | 34 ---------------------------- 2 files changed, 34 insertions(+), 34 deletions(-) create mode 100644 app-arch/unmakeself/unmakeself-1.1-r1.ebuild delete mode 100644 app-arch/unmakeself/unmakeself-1.1.ebuild diff --git a/app-arch/unmakeself/unmakeself-1.1-r1.ebuild b/app-arch/unmakeself/unmakeself-1.1-r1.ebuild new file mode 100644 index 000000000000..3f3a7c635f9f --- /dev/null +++ b/app-arch/unmakeself/unmakeself-1.1-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit flag-o-matic toolchain-funcs + +DESCRIPTION="Makeself archive extractor" +HOMEPAGE="https://www.freshports.org/archivers/unmakeself" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND="app-arch/libarchive:=[bzip2,zlib(+)]" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + append-cppflags $($(tc-getPKG_CONFIG) --cflags libarchive) + export LDLIBS=$($(tc-getPKG_CONFIG) --libs libarchive) + + tc-export CC +} + +src_compile() { + emake ${PN} +} + +src_install() { + dobin unmakeself +} diff --git a/app-arch/unmakeself/unmakeself-1.1.ebuild b/app-arch/unmakeself/unmakeself-1.1.ebuild deleted file mode 100644 index f826b09d6035..000000000000 --- a/app-arch/unmakeself/unmakeself-1.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="Makeself archive extractor" -HOMEPAGE="https://www.freshports.org/archivers/unmakeself" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="app-arch/libarchive:=[bzip2,zlib]" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_configure() { - append-cppflags $($(tc-getPKG_CONFIG) --cflags libarchive) - export LDLIBS=$($(tc-getPKG_CONFIG) --libs libarchive) - - tc-export CC -} - -src_compile() { - emake ${PN} -} - -src_install() { - dobin unmakeself -} -- cgit v1.2.3-65-gdbad