* [gentoo-commits] repo/gentoo:master commit in: media-sound/mangler/
@ 2021-06-29 15:43 Matthew Thode
0 siblings, 0 replies; 3+ messages in thread
From: Matthew Thode @ 2021-06-29 15:43 UTC (permalink / raw
To: gentoo-commits
commit: 1fd22947ade37a8dea597870e2dd426303cd0f05
Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 29 15:42:46 2021 +0000
Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Tue Jun 29 15:43:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fd22947
media-sound/mangler: fix missing eautreconf
Closes: https://bugs.gentoo.org/799221
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --force
Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
.../mangler/{mangler-1.2.5-r2.ebuild => mangler-1.2.5-r3.ebuild} | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/media-sound/mangler/mangler-1.2.5-r2.ebuild b/media-sound/mangler/mangler-1.2.5-r3.ebuild
similarity index 94%
rename from media-sound/mangler/mangler-1.2.5-r2.ebuild
rename to media-sound/mangler/mangler-1.2.5-r3.ebuild
index 38b754f7ff4..8241de78acc 100644
--- a/media-sound/mangler/mangler-1.2.5-r2.ebuild
+++ b/media-sound/mangler/mangler-1.2.5-r3.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit toolchain-funcs
+inherit autotools toolchain-funcs
DESCRIPTION="Open source VOIP client capable of connecting to Ventrilo 3.x servers"
HOMEPAGE="http://www.mangler.org/"
@@ -38,6 +38,11 @@ PATCHES=(
"${FILESDIR}/fix_ftbfs_narrowing_conversion.patch"
)
+src_prepare() {
+ default
+ eautoreconf
+}
+
src_configure() {
tc-export CC
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/mangler/
@ 2020-11-14 15:06 David Seifert
0 siblings, 0 replies; 3+ messages in thread
From: David Seifert @ 2020-11-14 15:06 UTC (permalink / raw
To: gentoo-commits
commit: 9e1438a956b2c2459ab517985ce44bf05514bbdc
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 14 15:05:03 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> 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 <soap <AT> 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
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-sound/mangler/
@ 2015-12-23 20:38 Pacho Ramos
0 siblings, 0 replies; 3+ messages in thread
From: Pacho Ramos @ 2015-12-23 20:38 UTC (permalink / raw
To: gentoo-commits
commit: cdb2b9e21d52c169a0a03b30a041cdc442f8246f
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 23 20:18:14 2015 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Dec 23 20:38:19 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdb2b9e2
media-sound/mangler: Fix building with latest glibmm/libsigc++
Package-Manager: portage-2.2.26
media-sound/mangler/mangler-1.2.5-r1.ebuild | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/media-sound/mangler/mangler-1.2.5-r1.ebuild b/media-sound/mangler/mangler-1.2.5-r1.ebuild
index d8d817c..5ed52aa 100644
--- a/media-sound/mangler/mangler-1.2.5-r1.ebuild
+++ b/media-sound/mangler/mangler-1.2.5-r1.ebuild
@@ -3,8 +3,7 @@
# $Id$
EAPI=5
-
-inherit toolchain-funcs
+inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="Open source VOIP client capable of connecting to Ventrilo 3.x servers"
HOMEPAGE="http://www.mangler.org/"
@@ -35,8 +34,8 @@ DEPEND="${RDEPEND}
src_configure() {
tc-export CC
+ append-cxxflags -std=c++11
econf \
- --disable-dependency-tracking \
$(use_enable static-libs static) \
$(use_enable gsm) \
$(use_enable speex) \
@@ -50,8 +49,6 @@ src_configure() {
}
src_install() {
- emake DESTDIR="${D}" install
- dodoc AUTHORS ChangeLog
-
- find "${D}" -name '*.la' -exec rm -f '{}' +
+ default
+ prune_libtool_files
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-06-29 15:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-29 15:43 [gentoo-commits] repo/gentoo:master commit in: media-sound/mangler/ Matthew Thode
-- strict thread matches above, loose matches on Subject: below --
2020-11-14 15:06 David Seifert
2015-12-23 20:38 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox