Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/ETL/
Date: Sat, 09 Feb 2019 19:56:06
Message-Id: 1549742103.c2cd859b9ea562059326cda6cc5fe9885745c7f6.bman@gentoo
1 commit: c2cd859b9ea562059326cda6cc5fe9885745c7f6
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Sep 30 12:13:30 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 9 19:55:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2cd859b
7
8 dev-cpp/ETL: EAPI7 revbump, improve ebuild
9
10 Closes: https://bugs.gentoo.org/663798
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/9031
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14
15 dev-cpp/ETL/ETL-0.04.15-r1.ebuild | 23 +++++++++++++++++++++++
16 1 file changed, 23 insertions(+)
17
18 diff --git a/dev-cpp/ETL/ETL-0.04.15-r1.ebuild b/dev-cpp/ETL/ETL-0.04.15-r1.ebuild
19 new file mode 100644
20 index 00000000000..98488ac2a7b
21 --- /dev/null
22 +++ b/dev-cpp/ETL/ETL-0.04.15-r1.ebuild
23 @@ -0,0 +1,23 @@
24 +# Copyright 1999-2018 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +inherit autotools
30 +
31 +DESCRIPTION="Multi-platform class and template library"
32 +HOMEPAGE="https://www.synfig.org"
33 +SRC_URI="mirror://sourceforge/synfig/${PN}/${PV}/${P}.tar.gz"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +src_prepare() {
40 + default
41 + sed -i -e 's/CXXFLAGS="`echo $CXXFLAGS | sed s:-g::` $debug_flags"//' \
42 + -e 's/CFLAGS="`echo $CFLAGS | sed s:-g::` $debug_flags"//' \
43 + m4/subs.m4 || die
44 +
45 + eautoreconf
46 +}