Diff liblzw-0.2-r1 with a liblzw-0.3

/usr/portage/dev-libs/liblzw/liblzw-0.3.ebuild 2023-10-09 14:52:29.520368351 +0300
1 1
# Copyright 1999-2021 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI="7"
5 5

  
6 6
DESCRIPTION="small C library for reading LZW compressed files (.Z)"
7 7
HOMEPAGE="https://github.com/vapier/liblzw"
8
SRC_URI="mirror://sourceforge/freestdf/${P}.tar.lzma"
8
SRC_URI="https://github.com/vapier/liblzw/releases/download/v${PV}/${P}.tar.xz"
9 9

  
10 10
LICENSE="public-domain"
11 11
SLOT="0"
12
KEYWORDS="amd64 arm ~hppa ~ia64 ~m68k ~s390 x86"
12
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~s390 ~x86"
13
IUSE="static-libs"
13 14

  
14 15
src_configure() {
15
	econf --disable-static
16
	econf --disable-werror $(use_enable static{-libs,})
16 17
}
17 18

  
18 19
src_install() {
Thank you!