From 1f4af7d6f9d4b9a05ff5ef0d332d2a87ba4218fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Van=C4=9Bk?= Date: Thu, 31 Oct 2024 16:10:13 +0100 Subject: [PATCH] dev-libs/liblzw: drop 0.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Vaněk --- dev-libs/liblzw/liblzw-0.3.ebuild | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 dev-libs/liblzw/liblzw-0.3.ebuild diff --git a/dev-libs/liblzw/liblzw-0.3.ebuild b/dev-libs/liblzw/liblzw-0.3.ebuild deleted file mode 100644 index a3745e0cc481..000000000000 --- a/dev-libs/liblzw/liblzw-0.3.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -DESCRIPTION="small C library for reading LZW compressed files (.Z)" -HOMEPAGE="https://github.com/vapier/liblzw" -SRC_URI="https://github.com/vapier/liblzw/releases/download/v${PV}/${P}.tar.xz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="amd64 arm ~hppa ~m68k ~s390 x86" -IUSE="static-libs" - -src_configure() { - econf --disable-werror $(use_enable static{-libs,}) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -}