public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Pacho Ramos" <pacho@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/banshee/
Date: Sat, 28 May 2016 12:24:56 +0000 (UTC)	[thread overview]
Message-ID: <1464437943.44c762afefb67425b879a8700abdf206187ec3b1.pacho@gentoo> (raw)

commit:     44c762afefb67425b879a8700abdf206187ec3b1
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat May 28 12:19:03 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat May 28 12:19:03 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44c762af

media-sound/banshee: Disable webkit support to stop relying on vulnerable versions (#584178) and obsolete libsoup-gnome (#565916)

Package-Manager: portage-2.3.0_rc1

 media-sound/banshee/banshee-2.6.2-r1.ebuild | 118 ++++++++++++++++++++++++++++
 1 file changed, 118 insertions(+)

diff --git a/media-sound/banshee/banshee-2.6.2-r1.ebuild b/media-sound/banshee/banshee-2.6.2-r1.ebuild
new file mode 100644
index 0000000..2f3bc21
--- /dev/null
+++ b/media-sound/banshee/banshee-2.6.2-r1.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools eutils fdo-mime mono-env versionator gnome2
+
+DESCRIPTION="Import, organize, play, and share your music using a simple and powerful interface"
+HOMEPAGE="http://banshee.fm/"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+aac +cdda +bpm daap doc +encode ipod karma mtp test udev youtube"
+
+RDEPEND="
+	>=dev-lang/mono-2.4.3
+	<dev-lang/mono-4
+	dev-libs/glib:2[dbus]
+	gnome-base/gnome-settings-daemon
+	sys-apps/dbus
+	>=dev-dotnet/gtk-sharp-2.12:2
+	>=dev-dotnet/notify-sharp-0.4.0_pre20080912-r1
+	>=media-libs/gstreamer-0.10.21-r3:0.10
+	>=media-libs/gst-plugins-base-0.10.25.2:0.10
+	media-libs/gst-plugins-bad:0.10
+	media-libs/gst-plugins-good:0.10
+	media-libs/gst-plugins-ugly:0.10
+	>=media-plugins/gst-plugins-meta-0.10-r2:0.10
+	media-plugins/gst-plugins-gio:0.10
+	>=dev-dotnet/gconf-sharp-2.24.0:2
+	media-plugins/gst-plugins-gconf:0.10
+	cdda? (
+		|| (
+			media-plugins/gst-plugins-cdparanoia:0.10
+			media-plugins/gst-plugins-cdio:0.10
+		)
+	)
+	media-libs/musicbrainz:3
+	dev-dotnet/dbus-sharp:1.0
+	dev-dotnet/dbus-sharp-glib:1.0
+	>=dev-dotnet/mono-addins-0.6.2[gtk]
+	>=dev-dotnet/taglib-sharp-2.0.3.7
+	>=dev-db/sqlite-3.4:3
+	karma? ( >=media-libs/libkarma-0.1.0-r1 )
+	aac? ( media-plugins/gst-plugins-faad:0.10 )
+	bpm? ( media-plugins/gst-plugins-soundtouch:0.10 )
+	daap? (	>=dev-dotnet/mono-zeroconf-0.8.0-r1 )
+	doc? ( >=app-text/gnome-doc-utils-0.17.3 )
+	encode? (
+		media-plugins/gst-plugins-lame:0.10
+		media-plugins/gst-plugins-taglib:0.10
+	)
+	ipod? ( >=media-libs/libgpod-0.8.2[mono] )
+	mtp? ( >=media-libs/libmtp-0.3.0:= )
+	youtube? ( >=dev-dotnet/google-gdata-sharp-1.4 )
+	udev? (
+		app-misc/media-player-info
+		dev-dotnet/gudev-sharp
+		dev-dotnet/gkeyfile-sharp
+		dev-dotnet/gtk-sharp-beans
+		dev-dotnet/gio-sharp
+	)
+"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig
+"
+
+src_prepare () {
+	# Don't build BPM extension when not wanted
+	if ! use bpm; then
+		sed -i -e 's:Banshee.Bpm:$(NULL):g' src/Extensions/Makefile.am || die
+	fi
+
+	# Don't append -ggdb, bug #458632, upstream bug #698217
+	sed -i -e 's:-ggdb3:$(NULL):g' libbanshee/Makefile.am || die
+	sed -i -e 's:-ggdb3::g' src/Core/Banshee.WebBrowser/libossifer/Makefile.am || die
+
+	AT_M4DIR="-I build/m4/banshee -I build/m4/shamrock -I build/m4/shave" \
+	eautoreconf
+	gnome2_src_prepare
+}
+
+src_configure() {
+	# soundmenu needs a properly maintained and updated indicate-sharp
+	# webkit disabled due to bug #584178
+	local myconf="
+		--disable-static
+		--enable-gnome
+		--enable-schemas-install
+		--with-gconf-schema-file-dir=/etc/gconf/schemas
+		--with-vendor-build-id=Gentoo/${PN}/${PVR}
+		--enable-gapless-playback
+		--disable-boo
+		--disable-gst-sharp
+		--disable-torrent
+		--disable-shave
+		--disable-ubuntuone
+		--disable-soundmenu
+		--disable-upnp
+		--disable-webkit"
+
+	gnome2_src_configure \
+		$(use_enable doc docs) \
+		$(use_enable doc user-help) \
+		$(use_enable mtp) \
+		$(use_enable daap) \
+		$(use_enable ipod appledevice) \
+		$(use_enable karma) \
+		$(use_enable youtube) \
+		$(use_enable udev gio) \
+		$(use_enable udev gio_hardware) \
+		${myconf}
+}
+
+src_compile() {
+	gnome2_src_compile MCS=/usr/bin/gmcs
+}


             reply	other threads:[~2016-05-28 12:25 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-28 12:24 Pacho Ramos [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-06-28 20:34 [gentoo-commits] repo/gentoo:master commit in: media-sound/banshee/ Pacho Ramos
2016-06-28 20:34 Pacho Ramos
2016-06-11 19:39 Pacho Ramos
2016-06-11 12:06 Pacho Ramos
2016-05-28 12:24 Pacho Ramos
2016-03-06 20:52 Mikle Kolyada
2016-02-21 23:44 Pacho Ramos
2015-09-18  5:19 Christoph Mende
2015-08-18 11:47 Justin Lecher
2015-08-18  9:57 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1464437943.44c762afefb67425b879a8700abdf206187ec3b1.pacho@gentoo \
    --to=pacho@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox