diff options
author | 2021-08-14 22:12:57 +0200 | |
---|---|---|
committer | 2021-08-14 22:13:12 +0200 | |
commit | fb2b0a41619026518d52f65821046a6297dd57e0 (patch) | |
tree | c39ad0c6cfeb79bdba1dc3cbf9556392492f6e53 /sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild | |
parent | sys-libs/glibc: Update default nsswitch.conf in 2.33, again (diff) | |
download | gentoo-fb2b0a41619026518d52f65821046a6297dd57e0.tar.gz gentoo-fb2b0a41619026518d52f65821046a6297dd57e0.tar.bz2 gentoo-fb2b0a41619026518d52f65821046a6297dd57e0.zip |
sci-electronics/gspeakers: EAPI-7 bump
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild')
-rw-r--r-- | sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild b/sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild index 38be7a2bcdba..28ce47c011f6 100644 --- a/sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild +++ b/sci-electronics/gspeakers/gspeakers-0.11-r2.ebuild @@ -1,10 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -GCONF_DEBUG="no" +EAPI=7 -inherit autotools epatch flag-o-matic gnome2 +inherit autotools flag-o-matic gnome2 DESCRIPTION="GTK based loudspeaker enclosure and crossovernetwork designer" HOMEPAGE="http://gspeakers.sourceforge.net/" @@ -22,20 +21,25 @@ RDEPEND=" || ( sci-electronics/gnucap sci-electronics/ngspice - sci-electronics/spice ) + sci-electronics/spice + ) " -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig " +PATCHES=( + "${FILESDIR}"/${P}-cxxflags.patch + "${FILESDIR}"/${P}-gcc43.patch + "${FILESDIR}"/${P}-glib-single-include.patch + "${FILESDIR}"/${P}-fix-sigc-includes.patch + "${FILESDIR}"/${P}-c++11.patch +) + src_prepare() { - sed -i -e "s/-O0//" src/Makefile.am - epatch "${FILESDIR}"/${P}-gcc43.patch - epatch "${FILESDIR}"/${P}-glib-single-include.patch - epatch "${FILESDIR}"/${P}-fix-sigc-includes.patch - epatch "${FILESDIR}"/${P}-c++11.patch append-cxxflags '-std=c++11' mv configure.in configure.ac || die - eautoreconf gnome2_src_prepare + eautoreconf } |