diff options
author | 2024-02-18 14:16:19 +0100 | |
---|---|---|
committer | 2024-02-18 14:23:34 +0100 | |
commit | 5e7893185848deb96a0dd7e3a8c409c62b9650f2 (patch) | |
tree | b3855a2ef5e68240f1e7145e677ccd212da9b35e /app-arch/clzip/clzip-1.13.ebuild | |
parent | app-arch/lunzip: Remove old (diff) | |
download | gentoo-5e7893185848deb96a0dd7e3a8c409c62b9650f2.tar.gz gentoo-5e7893185848deb96a0dd7e3a8c409c62b9650f2.tar.bz2 gentoo-5e7893185848deb96a0dd7e3a8c409c62b9650f2.zip |
app-arch/clzip: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-arch/clzip/clzip-1.13.ebuild')
-rw-r--r-- | app-arch/clzip/clzip-1.13.ebuild | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/app-arch/clzip/clzip-1.13.ebuild b/app-arch/clzip/clzip-1.13.ebuild deleted file mode 100644 index 14d7593f7414..000000000000 --- a/app-arch/clzip/clzip-1.13.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/antoniodiazdiaz.asc -inherit toolchain-funcs verify-sig - -DESCRIPTION="C language version of lzip" -HOMEPAGE="https://www.nongnu.org/lzip/clzip.html" -SRC_URI="https://download.savannah.gnu.org/releases/lzip/clzip/${P/_/-}.tar.gz" -SRC_URI+=" verify-sig? ( https://download.savannah.gnu.org/releases/lzip/${PN}/${P/_/-}.tar.gz.sig )" -S="${WORKDIR}/${P/_/-}" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64" - -BDEPEND="verify-sig? ( sec-keys/openpgp-keys-antoniodiazdiaz )" - -src_configure() { - # not autotools-based - local myconf=( - --prefix="${EPREFIX}"/usr - CC="$(tc-getCC)" - CPPFLAGS="${CPPFLAGS}" - CFLAGS="${CFLAGS}" - LDFLAGS="${LDFLAGS}" - ) - - ./configure "${myconf[@]}" || die -} |