Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liblzw/
Date: Sun, 30 Sep 2018 13:24:41
Message-Id: 1538313681.4abefe703ad472858a908192386430102a9c972c.mgorny@gentoo
1 commit: 4abefe703ad472858a908192386430102a9c972c
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sat Sep 29 17:15:59 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 30 13:21:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4abefe70
7
8 dev-libs/liblzw: EAPI7 revbump, improve ebuild
9
10 Closes: https://bugs.gentoo.org/667306
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
13 Closes: https://github.com/gentoo/gentoo/pull/10014
14
15 dev-libs/liblzw/liblzw-0.2-r1.ebuild | 21 +++++++++++++++++++++
16 1 file changed, 21 insertions(+)
17
18 diff --git a/dev-libs/liblzw/liblzw-0.2-r1.ebuild b/dev-libs/liblzw/liblzw-0.2-r1.ebuild
19 new file mode 100644
20 index 00000000000..d2613787f46
21 --- /dev/null
22 +++ b/dev-libs/liblzw/liblzw-0.2-r1.ebuild
23 @@ -0,0 +1,21 @@
24 +# Copyright 1999-2018 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +DESCRIPTION="small C library for reading LZW compressed files (.Z)"
30 +HOMEPAGE="https://github.com/vapier/liblzw"
31 +SRC_URI="mirror://sourceforge/freestdf/${P}.tar.lzma"
32 +
33 +LICENSE="public-domain"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~s390 ~sh ~x86"
36 +
37 +src_configure(){
38 + econf --disable-static
39 +}
40 +
41 +src_install(){
42 + default
43 + find "${D}" -name '*.la' -delete || die
44 +}