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 92150138359 for ; Sat, 14 Nov 2020 15:06:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3499E0831; Sat, 14 Nov 2020 15:06:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BDA06E0824 for ; Sat, 14 Nov 2020 15:06:21 +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 C7236340F3D for ; Sat, 14 Nov 2020 15:06:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64FA1476 for ; Sat, 14 Nov 2020 15:06:16 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1605366303.9e1438a956b2c2459ab517985ce44bf05514bbdc.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mangler/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mangler/mangler-1.2.5-r1.ebuild X-VCS-Directories: media-sound/mangler/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9e1438a956b2c2459ab517985ce44bf05514bbdc X-VCS-Branch: master Date: Sat, 14 Nov 2020 15:06:16 +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: 5e39aeaa-52c6-421a-a796-77c8e5a23e23 X-Archives-Hash: c67cbf9221b7f91cf8343594fdc8f2db commit: 9e1438a956b2c2459ab517985ce44bf05514bbdc Author: David Seifert gentoo org> AuthorDate: Sat Nov 14 15:05:03 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Nov 14 15:05:03 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e1438a9 media-sound/mangler: Port to EAPI 7 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> media-sound/mangler/mangler-1.2.5-r1.ebuild | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/media-sound/mangler/mangler-1.2.5-r1.ebuild b/media-sound/mangler/mangler-1.2.5-r1.ebuild index 6c07765cec2..8f58aefd5e7 100644 --- a/media-sound/mangler/mangler-1.2.5-r1.ebuild +++ b/media-sound/mangler/mangler-1.2.5-r1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils flag-o-matic ltprune toolchain-funcs +EAPI=7 + +inherit toolchain-funcs DESCRIPTION="Open source VOIP client capable of connecting to Ventrilo 3.x servers" HOMEPAGE="http://www.mangler.org/" @@ -11,9 +12,10 @@ SRC_URI="http://www.mangler.org/downloads/${P}.tar.bz2" LICENSE="GPL-3 LGPL-2.1 ZLIB" SLOT="0" KEYWORDS="amd64 x86" -IUSE="+alsa opus espeak g15 +gsm oss pulseaudio static-libs +speex +xosd" +IUSE="+alsa opus espeak g15 +gsm oss pulseaudio +speex +xosd" -RDEPEND="dev-cpp/gtkmm:2.4 +RDEPEND=" + dev-cpp/gtkmm:2.4 gnome-base/librsvg >=dev-libs/dbus-glib-0.80 >=dev-libs/glib-2.20.1:2 @@ -28,14 +30,14 @@ RDEPEND="dev-cpp/gtkmm:2.4 pulseaudio? ( >=media-sound/pulseaudio-0.9.14 ) speex? ( >=media-libs/speex-1.2_rc1 ) xosd? ( x11-libs/xosd )" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" src_configure() { tc-export CC - append-cxxflags -std=c++11 + econf \ - $(use_enable static-libs static) \ + --disable-static \ $(use_enable gsm) \ $(use_enable speex) \ $(use_enable opus) \ @@ -49,5 +51,7 @@ src_configure() { src_install() { default - prune_libtool_files + + # no static archives + find "${ED}" -name '*.la' -delete || die }