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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2904158046 for ; Thu, 10 Oct 2024 14:03:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71BB1E2BC2; Thu, 10 Oct 2024 14:03:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 52B98E2BC2 for ; Thu, 10 Oct 2024 14:03:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5BB45341C25 for ; Thu, 10 Oct 2024 14:03:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BD7E97F for ; Thu, 10 Oct 2024 14:03:04 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1728568606.6a67915e1fc33aaa3e4f07b5df14cccc4fba677e.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/gspeakers/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-electronics/gspeakers/gspeakers-0.11-r3.ebuild X-VCS-Directories: sci-electronics/gspeakers/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 6a67915e1fc33aaa3e4f07b5df14cccc4fba677e X-VCS-Branch: master Date: Thu, 10 Oct 2024 14:03:04 +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: faa57784-18b0-4e91-8101-941862d43941 X-Archives-Hash: a466907b9ed76f62a496feb7a859dd49 commit: 6a67915e1fc33aaa3e4f07b5df14cccc4fba677e Author: Filip Kobierski pm me> AuthorDate: Thu Sep 26 14:00:59 2024 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Thu Oct 10 13:56:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a67915e sci-electronics/gspeakers: bump EAPI & more - https HOMEPAGE - remove empty IUSE - fix redirection on SRC_URI Signed-off-by: Filip Kobierski pm.me> Signed-off-by: Andrew Ammerlaan gentoo.org> sci-electronics/gspeakers/gspeakers-0.11-r3.ebuild | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/sci-electronics/gspeakers/gspeakers-0.11-r3.ebuild b/sci-electronics/gspeakers/gspeakers-0.11-r3.ebuild new file mode 100644 index 000000000000..15cc964317f5 --- /dev/null +++ b/sci-electronics/gspeakers/gspeakers-0.11-r3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools flag-o-matic gnome2 + +DESCRIPTION="GTK based loudspeaker enclosure and crossovernetwork designer" +HOMEPAGE="https://gspeakers.sourceforge.net/" +SRC_URI="https://downloads.sourceforge.net/project/gspeakers/${PN}/${P}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=" + dev-cpp/gtkmm:2.4 + >=dev-libs/libsigc++-2.6:2 + dev-libs/libxml2:2 + || ( + sci-electronics/gnucap + sci-electronics/ngspice + sci-electronics/spice + ) +" +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() { + append-cxxflags '-std=c++11' + mv configure.in configure.ac || die + gnome2_src_prepare + eautoreconf +}