From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E36D4138334 for ; Sat, 9 Feb 2019 19:56:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 777F1E0B14; Sat, 9 Feb 2019 19:56:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45721E0B0A for ; Sat, 9 Feb 2019 19:56:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4224D335D46 for ; Sat, 9 Feb 2019 19:56:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FB9C544 for ; Sat, 9 Feb 2019 19:56:01 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1549742103.c2cd859b9ea562059326cda6cc5fe9885745c7f6.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/ETL/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/ETL/ETL-0.04.15-r1.ebuild X-VCS-Directories: dev-cpp/ETL/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: c2cd859b9ea562059326cda6cc5fe9885745c7f6 X-VCS-Branch: master Date: Sat, 9 Feb 2019 19:56:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e970bdcb-ad50-4b8b-8011-616deef05515 X-Archives-Hash: ce58e6a59946740afd1dac8046e1e627 commit: c2cd859b9ea562059326cda6cc5fe9885745c7f6 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Sep 30 12:13:30 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Feb 9 19:55:03 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2cd859b dev-cpp/ETL: EAPI7 revbump, improve ebuild Closes: https://bugs.gentoo.org/663798 Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/9031 Signed-off-by: Aaron Bauman gentoo.org> dev-cpp/ETL/ETL-0.04.15-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-cpp/ETL/ETL-0.04.15-r1.ebuild b/dev-cpp/ETL/ETL-0.04.15-r1.ebuild new file mode 100644 index 00000000000..98488ac2a7b --- /dev/null +++ b/dev-cpp/ETL/ETL-0.04.15-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Multi-platform class and template library" +HOMEPAGE="https://www.synfig.org" +SRC_URI="mirror://sourceforge/synfig/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_prepare() { + default + sed -i -e 's/CXXFLAGS="`echo $CXXFLAGS | sed s:-g::` $debug_flags"//' \ + -e 's/CFLAGS="`echo $CFLAGS | sed s:-g::` $debug_flags"//' \ + m4/subs.m4 || die + + eautoreconf +}