dev-cpp/ETL: treeclean
Signed-off-by: Viorel Munteanu <ceamac.paragon@gmail.com>
This commit is contained in:
@@ -1,28 +0,0 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=7
|
|
||||||
|
|
||||||
inherit autotools
|
|
||||||
|
|
||||||
DESCRIPTION="ETL is a multi-platform class and template library"
|
|
||||||
HOMEPAGE="https://www.synfig.org"
|
|
||||||
SRC_URI="https://github.com/synfig/synfig/releases/download/v${PV}/${P}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64 ~x86"
|
|
||||||
IUSE=""
|
|
||||||
|
|
||||||
DEPEND=""
|
|
||||||
RDEPEND="${DEPEND}"
|
|
||||||
|
|
||||||
PATCHES=(
|
|
||||||
"${FILESDIR}"/${PN}-1.4.1-fix-gcc-flags.patch
|
|
||||||
)
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
default
|
|
||||||
|
|
||||||
eautoreconf
|
|
||||||
}
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=8
|
|
||||||
|
|
||||||
DESCRIPTION="ETL is a multi-platform class and template library"
|
|
||||||
HOMEPAGE="https://www.synfig.org"
|
|
||||||
SRC_URI="https://github.com/synfig/synfig/releases/download/v${PV}/${P}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64 ~x86"
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
# Copyright 1999-2021 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=7
|
|
||||||
|
|
||||||
inherit autotools
|
|
||||||
|
|
||||||
DESCRIPTION="ETL is a multi-platform class and template library"
|
|
||||||
HOMEPAGE="https://www.synfig.org"
|
|
||||||
SRC_URI="https://github.com/synfig/synfig/releases/download/v${PV}/${P}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~amd64 ~x86"
|
|
||||||
IUSE=""
|
|
||||||
|
|
||||||
DEPEND=""
|
|
||||||
RDEPEND="${DEPEND}"
|
|
||||||
|
|
||||||
PATCHES=(
|
|
||||||
"${FILESDIR}"/${PN}-1.4.1-fix-gcc-flags.patch
|
|
||||||
)
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
default
|
|
||||||
|
|
||||||
eautoreconf
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
DIST ETL-1.4.3.tar.gz 269951 BLAKE2B f134360c5230dc3b8e361df94bc8a11b7961327dffd9f7222c20201e49b3b9dcaffa0226cc2f49ae8795ab4e21268409e15754f133a135fcc80cde01d2ec08e2 SHA512 12c213d46686c3bff171778f5c8a91ae0c3c46b168e74c2943c56326b688e0fdab8bc742b927c6e9585f9173b7643b03c3a7ec2dabc6ec3ea511898d9eba63fc
|
|
||||||
DIST ETL-1.4.4.tar.gz 271762 BLAKE2B b5b4cec4de8be9034104ebcd12fd4b2fcfd9ac1c64df7d921ba42c0d4bf8573b132204d6d4800f7541f79c9c53f300fab3da850034b57f79a7bd8fc2629fdb4c SHA512 94ca1b9ba2c160a5956e1e21c6a20f5728d50f13bc80446ecd5bab733d27fb03ab7ea3345888566bcc54e5d9d3ed30b0b3f6b1edf2692fc107b4ea2def389466
|
|
||||||
DIST ETL-1.5.1.tar.gz 295899 BLAKE2B 95f1ec9767fc5f9851d34fdacc656183a84af1708b462aada797f9ad926b352449988dfb34e2e6336dc47921e33315ace32e30894a5b13c67869ccd59efd8498 SHA512 3b1cc7ad833d7a6c7f07a500669d87526cbe6e26cdeb3d26154ead4d2f2620c159641f6fed1776bd2da511dd081d7c603b94cd45f7e8ff07c8258c93eea3a313
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
Keep sed from mangling our CFLAGS
|
|
||||||
especially -frecord-gcc-flags, which was half removed because it contains -g
|
|
||||||
|
|
||||||
--- a/m4/subs.m4
|
|
||||||
+++ b/m4/subs.m4
|
|
||||||
@@ -77,13 +77,13 @@
|
|
||||||
case "$debug" in
|
|
||||||
yes)
|
|
||||||
debug_flags="-D_DEBUG -g -O0"
|
|
||||||
- CXXFLAGS="`echo $CXXFLAGS | sed s:-O.::` $debug_flags -fno-inline"
|
|
||||||
- CFLAGS="`echo $CFLAGS | sed s:-O.::` $debug_flags"
|
|
||||||
+ CXXFLAGS="${CXXFLAGS} ${debug_flags}"
|
|
||||||
+ CFLAGS="${CFLAGS} ${debug_flags}"
|
|
||||||
;;
|
|
||||||
no|*)
|
|
||||||
debug_flags="-DNDEBUG"
|
|
||||||
- CXXFLAGS="`echo $CXXFLAGS | sed 's:-g[[a-z-]]*\s::g' | sed 's:-g[[a-z-]]*$::'` $debug_flags"
|
|
||||||
- CFLAGS="`echo $CFLAGS | sed 's:-g[[a-z-]]*\s::g' | sed 's:-g[[a-z-]]*$::'` $debug_flags"
|
|
||||||
+ CXXFLAGS="${CXXFLAGS} ${debug_flags}"
|
|
||||||
+ CFLAGS="${CFLAGS} ${debug_flags}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
Keep sed from mangling our CFLAGS
|
|
||||||
especially -frecord-gcc-flags, which was half removed because it contains -g
|
|
||||||
|
|
||||||
--- a/m4/subs.m4
|
|
||||||
+++ b/m4/subs.m4
|
|
||||||
@@ -77,13 +77,13 @@
|
|
||||||
case "$debug" in
|
|
||||||
yes)
|
|
||||||
debug_flags="-D_DEBUG -g -O0"
|
|
||||||
- CXXFLAGS="`echo $CXXFLAGS | sed s:-O.::` $debug_flags -fno-inline"
|
|
||||||
- CFLAGS="`echo $CFLAGS | sed s:-O.::` $debug_flags"
|
|
||||||
+ CXXFLAGS="${CXXFLAGS} ${debug_flags} -fno-inline"
|
|
||||||
+ CFLAGS="${CFLAGS} ${debug_flags}"
|
|
||||||
;;
|
|
||||||
no|*)
|
|
||||||
debug_flags="-DNDEBUG"
|
|
||||||
- CXXFLAGS="`echo $CXXFLAGS | sed 's:-g[[a-z-]]*\s::g' | sed 's:-g[[a-z-]]*$::'` $debug_flags"
|
|
||||||
- CFLAGS="`echo $CFLAGS | sed 's:-g[[a-z-]]*\s::g' | sed 's:-g[[a-z-]]*$::'` $debug_flags"
|
|
||||||
+ CXXFLAGS="${CXXFLAGS} ${debug_flags}"
|
|
||||||
+ CFLAGS="${CFLAGS} ${debug_flags}"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
|
||||||
<pkgmetadata>
|
|
||||||
<maintainer type="person">
|
|
||||||
<email>ceamac@gentoo.org</email>
|
|
||||||
<description>Primary maintainer</description>
|
|
||||||
</maintainer>
|
|
||||||
<upstream>
|
|
||||||
<remote-id type="github">synfig/synfig</remote-id>
|
|
||||||
</upstream>
|
|
||||||
</pkgmetadata>
|
|
||||||
Reference in New Issue
Block a user