Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/dotconf/
Date: Fri, 20 May 2022 19:30:38
Message-Id: 1653075024.a34541c86c83849132706f7bfab58ba6d3a7460f.pacho@gentoo
1 commit: a34541c86c83849132706f7bfab58ba6d3a7460f
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 20 19:19:55 2022 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Fri May 20 19:30:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a34541c8
7
8 dev-libs/dotconf: Remove unneeded .la files
9
10 Closes: https://bugs.gentoo.org/593744
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 dev-libs/dotconf/dotconf-1.3-r2.ebuild | 31 +++++++++++++++++++++++++++++++
14 1 file changed, 31 insertions(+)
15
16 diff --git a/dev-libs/dotconf/dotconf-1.3-r2.ebuild b/dev-libs/dotconf/dotconf-1.3-r2.ebuild
17 new file mode 100644
18 index 000000000000..d2f6fc9815eb
19 --- /dev/null
20 +++ b/dev-libs/dotconf/dotconf-1.3-r2.ebuild
21 @@ -0,0 +1,31 @@
22 +# Copyright 1999-2022 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="dot.conf configuration file parser"
30 +HOMEPAGE="https://github.com/williamh/dotconf"
31 +SRC_URI="mirror://gentoo/${P}.tar.gz"
32 +
33 +LICENSE="LGPL-2.1"
34 +SLOT="0"
35 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
36 +IUSE=""
37 +
38 +DEPEND=">=sys-devel/autoconf-2.58"
39 +RDEPEND=""
40 +
41 +src_configure() {
42 + econf --disable-static
43 +}
44 +
45 +src_compile() {
46 + emake CC="$(tc-getCC)"
47 +}
48 +
49 +src_install() {
50 + default
51 + find "${ED}" -type f -name '*.la' -delete || die
52 +}