public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
@ 2013-09-26  9:27 Heather Cynede
  0 siblings, 0 replies; 10+ messages in thread
From: Heather Cynede @ 2013-09-26  9:27 UTC (permalink / raw
  To: gentoo-commits

commit:     7de8c741bb6feaf1856834d643319b82f5bb097a
Author:     Heather <Heather <AT> cynede <DOT> net>
AuthorDate: Thu Sep 26 09:29:16 2013 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Thu Sep 26 09:29:16 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=7de8c741

banshee

---
 media-sound/banshee/banshee-2.6.1-r1.ebuild | 150 ++++++++++++++++++++++++++++
 media-sound/banshee/metadata.xml            |  15 +++
 2 files changed, 165 insertions(+)

diff --git a/media-sound/banshee/banshee-2.6.1-r1.ebuild b/media-sound/banshee/banshee-2.6.1-r1.ebuild
new file mode 100644
index 0000000..d6a1c4e
--- /dev/null
+++ b/media-sound/banshee/banshee-2.6.1-r1.ebuild
@@ -0,0 +1,150 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+inherit eutils autotools mono gnome2-utils fdo-mime versionator gnome.org
+
+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"
+
+#switched web to - because I personally don't want to build yet another webkit-gtk
+IUSE="+aac +cdda +bpm daap doc +encode ipod karma mtp test udev -web youtube"
+
+RDEPEND="
+	>=dev-lang/mono-3
+	gnome-base/gnome-settings-daemon
+	sys-apps/dbus
+	>=dev-dotnet/gtk-sharp-2.12.21: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
+	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
+	dev-dotnet/dbus-sharp-glib
+	>=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? (
+		virtual/monodoc
+		>=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
+	)
+	web? (
+		>=net-libs/webkit-gtk-1.2.2:2
+		>=net-libs/libsoup-gnome-2.26:2.4
+	)
+	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 () {
+	DOCS="AUTHORS ChangeLog HACKING NEWS README"
+
+	# 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
+}
+
+src_configure() {
+	# soundmenu needs a properly maintained and updated indicate-sharp
+	local myconf="--disable-dependency-tracking
+		--disable-static
+		--disable-maintainer-mode
+		--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"
+
+	econf \
+		$(use_enable doc docs) \
+		$(use_enable doc user-help) \
+		$(use_enable mtp) \
+		$(use_enable daap) \
+		$(use_enable ipod appledevice) \
+		$(use_enable karma) \
+		$(use_enable web webkit) \
+		$(use_enable youtube) \
+		$(use_enable udev gio) \
+		$(use_enable udev gio_hardware) \
+		${myconf}
+}
+
+src_compile() {
+	emake MCS=/usr/bin/gmcs
+}
+
+src_install() {
+	default
+	prune_libtool_files --all
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	fdo-mime_desktop_database_update
+	fdo-mime_mime_database_update
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	fdo-mime_desktop_database_update
+	fdo-mime_mime_database_update
+	gnome2_icon_cache_update
+}

diff --git a/media-sound/banshee/metadata.xml b/media-sound/banshee/metadata.xml
new file mode 100644
index 0000000..2581afb
--- /dev/null
+++ b/media-sound/banshee/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>dotnet</herd>
+<herd>gstreamer</herd>
+<use>
+	<flag name="bpm">Build beats per minute detection extension</flag>
+	<flag name="cdda">Build with audio CD support</flag>
+	<flag name="daap">Build with Daap support</flag>
+	<flag name="karma">Build with karma support</flag>
+	<flag name="web">Enable support for plugins that access web-based services
+	such as Amazon and wikipedia (requires <pkg>net-libs/webkit-gtk</pkg>)</flag>
+	<flag name="youtube">Enable the Youtube plugin</flag>
+</use>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
@ 2013-09-26 10:07 Heather Cynede
  0 siblings, 0 replies; 10+ messages in thread
From: Heather Cynede @ 2013-09-26 10:07 UTC (permalink / raw
  To: gentoo-commits

commit:     4ea8aad4b5ac851ece7f38059cd292a0b91b5eec
Author:     Heather <Heather <AT> cynede <DOT> net>
AuthorDate: Thu Sep 26 10:10:05 2013 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Thu Sep 26 10:10:05 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=4ea8aad4

gconf sharp is now part of gnome sharp

---
 media-sound/banshee/banshee-2.6.1-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-sound/banshee/banshee-2.6.1-r1.ebuild b/media-sound/banshee/banshee-2.6.1-r1.ebuild
index d6a1c4e..d0edca0 100644
--- a/media-sound/banshee/banshee-2.6.1-r1.ebuild
+++ b/media-sound/banshee/banshee-2.6.1-r1.ebuild
@@ -19,6 +19,7 @@ RDEPEND="
 	>=dev-lang/mono-3
 	gnome-base/gnome-settings-daemon
 	sys-apps/dbus
+	>=dev-dotnet/gnome-sharp-2
 	>=dev-dotnet/gtk-sharp-2.12.21:2
 	>=dev-dotnet/notify-sharp-0.4.0_pre20080912-r1
 	>=media-libs/gstreamer-0.10.21-r3:0.10


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
@ 2013-09-26 11:06 Heather Cynede
  0 siblings, 0 replies; 10+ messages in thread
From: Heather Cynede @ 2013-09-26 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     9a7fc64586b6ac7f4fa87fff9f61e5b41b6a7bad
Author:     Heather <Heather <AT> cynede <DOT> net>
AuthorDate: Thu Sep 26 11:08:15 2013 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Thu Sep 26 11:08:15 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=9a7fc645

fixed banshee

---
 media-sound/banshee/banshee-2.6.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/banshee/banshee-2.6.1-r1.ebuild b/media-sound/banshee/banshee-2.6.1-r1.ebuild
index 7954f90..514a797 100644
--- a/media-sound/banshee/banshee-2.6.1-r1.ebuild
+++ b/media-sound/banshee/banshee-2.6.1-r1.ebuild
@@ -126,7 +126,7 @@ src_configure() {
 }
 
 src_compile() {
-	emake #MCS=/usr/bin/gmcs
+	emake MCS=/usr/bin/mcs
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
@ 2013-10-23 10:57 Heather Cynede
  0 siblings, 0 replies; 10+ messages in thread
From: Heather Cynede @ 2013-10-23 10:57 UTC (permalink / raw
  To: gentoo-commits

commit:     3c14cc54409b196af12136529830cc377cee4a69
Author:     Heather <Heather <AT> cynede <DOT> net>
AuthorDate: Wed Oct 23 11:00:32 2013 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Wed Oct 23 11:00:32 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=3c14cc54

correct banshee deps

---
 media-sound/banshee/banshee-2.9.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/banshee/banshee-2.9.0-r1.ebuild b/media-sound/banshee/banshee-2.9.0-r1.ebuild
index caf5383..9dc7cf1 100644
--- a/media-sound/banshee/banshee-2.9.0-r1.ebuild
+++ b/media-sound/banshee/banshee-2.9.0-r1.ebuild
@@ -20,7 +20,7 @@ RDEPEND="
 	gnome-base/gnome-settings-daemon
 	sys-apps/dbus
 	>=dev-dotnet/gnome-sharp-2
-	>=dev-dotnet/gtk-sharp-2.99:2
+	>=dev-dotnet/gtk-sharp-2.99:3
 	>=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


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
@ 2013-10-23 11:18 Heather Cynede
  0 siblings, 0 replies; 10+ messages in thread
From: Heather Cynede @ 2013-10-23 11:18 UTC (permalink / raw
  To: gentoo-commits

commit:     ab03224bcff231dcf9cf6beb0dfc2608f22c8195
Author:     Heather <Heather <AT> cynede <DOT> net>
AuthorDate: Wed Oct 23 11:21:41 2013 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Wed Oct 23 11:21:41 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=ab03224b

gnome use flag

---
 media-sound/banshee/banshee-2.9.0-r1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/media-sound/banshee/banshee-2.9.0-r1.ebuild b/media-sound/banshee/banshee-2.9.0-r1.ebuild
index 9dc7cf1..a44dee8 100644
--- a/media-sound/banshee/banshee-2.9.0-r1.ebuild
+++ b/media-sound/banshee/banshee-2.9.0-r1.ebuild
@@ -13,7 +13,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 #switched web to - because I personally don't want to build yet another webkit-gtk
-IUSE="+aac +cdda +bpm daap doc +encode ipod karma mtp test udev -web youtube"
+IUSE="+aac +cdda +bpm daap doc +encode ipod karma mtp test udev -web youtube +gnome"
 
 RDEPEND="
 	>=dev-lang/mono-3
@@ -97,7 +97,6 @@ src_configure() {
 	local myconf="--disable-dependency-tracking
 		--disable-static
 		--disable-maintainer-mode
-		--enable-gnome
 		--enable-schemas-install
 		--with-gconf-schema-file-dir=/etc/gconf/schemas
 		--with-vendor-build-id=Gentoo/${PN}/${PVR}
@@ -109,7 +108,6 @@ src_configure() {
 		--disable-ubuntuone
 		--disable-soundmenu
 		--disable-upnp"
-
 	econf \
 		$(use_enable doc docs) \
 		$(use_enable doc user-help) \
@@ -121,6 +119,7 @@ src_configure() {
 		$(use_enable youtube) \
 		$(use_enable udev gio) \
 		$(use_enable udev gio_hardware) \
+		$(use_enable gnome) \
 		${myconf}
 }
 


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
@ 2013-10-23 11:43 Heather Cynede
  0 siblings, 0 replies; 10+ messages in thread
From: Heather Cynede @ 2013-10-23 11:43 UTC (permalink / raw
  To: gentoo-commits

commit:     1858d936a5914593f2743f92b50f6246ff241e93
Author:     Heather <Heather <AT> cynede <DOT> net>
AuthorDate: Wed Oct 23 11:46:18 2013 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Wed Oct 23 11:46:18 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=1858d936

rever banshee 2.6.1

---
 .../{banshee-2.9.0-r1.ebuild => banshee-2.6.1-r1.ebuild}       | 10 ++++++----
 media-sound/banshee/banshee-2.9.0-r1.ebuild                    |  3 ++-
 2 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/media-sound/banshee/banshee-2.9.0-r1.ebuild b/media-sound/banshee/banshee-2.6.1-r1.ebuild
similarity index 96%
copy from media-sound/banshee/banshee-2.9.0-r1.ebuild
copy to media-sound/banshee/banshee-2.6.1-r1.ebuild
index a44dee8..514a797 100644
--- a/media-sound/banshee/banshee-2.9.0-r1.ebuild
+++ b/media-sound/banshee/banshee-2.6.1-r1.ebuild
@@ -13,14 +13,14 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 #switched web to - because I personally don't want to build yet another webkit-gtk
-IUSE="+aac +cdda +bpm daap doc +encode ipod karma mtp test udev -web youtube +gnome"
+IUSE="+aac +cdda +bpm daap doc +encode ipod karma mtp test udev -web youtube"
 
 RDEPEND="
 	>=dev-lang/mono-3
 	gnome-base/gnome-settings-daemon
 	sys-apps/dbus
 	>=dev-dotnet/gnome-sharp-2
-	>=dev-dotnet/gtk-sharp-2.99:3
+	>=dev-dotnet/gtk-sharp-2.12.21: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
@@ -67,9 +67,10 @@ RDEPEND="
 	)
 	udev? (
 		app-misc/media-player-info
-		>=dev-dotnet/gudev-sharp-3.0
+		dev-dotnet/gudev-sharp
 		dev-dotnet/gkeyfile-sharp
 		dev-dotnet/gtk-sharp-beans
+		dev-dotnet/gio-sharp
 	)
 "
 DEPEND="${RDEPEND}
@@ -97,6 +98,7 @@ src_configure() {
 	local myconf="--disable-dependency-tracking
 		--disable-static
 		--disable-maintainer-mode
+		--enable-gnome
 		--enable-schemas-install
 		--with-gconf-schema-file-dir=/etc/gconf/schemas
 		--with-vendor-build-id=Gentoo/${PN}/${PVR}
@@ -108,6 +110,7 @@ src_configure() {
 		--disable-ubuntuone
 		--disable-soundmenu
 		--disable-upnp"
+
 	econf \
 		$(use_enable doc docs) \
 		$(use_enable doc user-help) \
@@ -119,7 +122,6 @@ src_configure() {
 		$(use_enable youtube) \
 		$(use_enable udev gio) \
 		$(use_enable udev gio_hardware) \
-		$(use_enable gnome) \
 		${myconf}
 }
 

diff --git a/media-sound/banshee/banshee-2.9.0-r1.ebuild b/media-sound/banshee/banshee-2.9.0-r1.ebuild
index a44dee8..2ddbe86 100644
--- a/media-sound/banshee/banshee-2.9.0-r1.ebuild
+++ b/media-sound/banshee/banshee-2.9.0-r1.ebuild
@@ -10,7 +10,8 @@ HOMEPAGE="http://banshee.fm/"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="" 	# ~amd64 ~x86
+		# Fails...
 
 #switched web to - because I personally don't want to build yet another webkit-gtk
 IUSE="+aac +cdda +bpm daap doc +encode ipod karma mtp test udev -web youtube +gnome"


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
  2014-09-06 14:02 Heather Cynede
@ 2014-08-12 17:35 ` Heather Cynede
  0 siblings, 0 replies; 10+ messages in thread
From: Heather Cynede @ 2014-08-12 17:35 UTC (permalink / raw
  To: gentoo-commits

commit:     2374ccdd5b9d30202c348645f66049eb42216629
Author:     Alistair Bush <alistair.bush <AT> gmail <DOT> com>
AuthorDate: Mon Aug 11 09:33:53 2014 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Mon Aug 11 09:33:53 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=2374ccdd

Remove monodoc

Package-Manager: portage-2.2.10

---
 media-sound/banshee/banshee-2.6.1-r1.ebuild | 1 -
 media-sound/banshee/banshee-2.9.0-r1.ebuild | 1 -
 2 files changed, 2 deletions(-)

diff --git a/media-sound/banshee/banshee-2.6.1-r1.ebuild b/media-sound/banshee/banshee-2.6.1-r1.ebuild
index 514a797..e39e548 100644
--- a/media-sound/banshee/banshee-2.6.1-r1.ebuild
+++ b/media-sound/banshee/banshee-2.6.1-r1.ebuild
@@ -47,7 +47,6 @@ RDEPEND="
 	bpm? ( media-plugins/gst-plugins-soundtouch:0.10 )
 	daap? (	>=dev-dotnet/mono-zeroconf-0.8.0-r1 )
 	doc? (
-		virtual/monodoc
 		>=app-text/gnome-doc-utils-0.17.3
 	)
 	encode? (

diff --git a/media-sound/banshee/banshee-2.9.0-r1.ebuild b/media-sound/banshee/banshee-2.9.0-r1.ebuild
index 2ddbe86..c7da5dd 100644
--- a/media-sound/banshee/banshee-2.9.0-r1.ebuild
+++ b/media-sound/banshee/banshee-2.9.0-r1.ebuild
@@ -48,7 +48,6 @@ RDEPEND="
 	bpm? ( media-plugins/gst-plugins-soundtouch:0.10 )
 	daap? (	>=dev-dotnet/mono-zeroconf-0.8.0-r1 )
 	doc? (
-		virtual/monodoc
 		>=app-text/gnome-doc-utils-0.17.3
 	)
 	encode? (


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
@ 2014-09-06 14:02 Heather Cynede
  2014-08-12 17:35 ` Heather Cynede
  0 siblings, 1 reply; 10+ messages in thread
From: Heather Cynede @ 2014-09-06 14:02 UTC (permalink / raw
  To: gentoo-commits

commit:     2374ccdd5b9d30202c348645f66049eb42216629
Author:     Alistair Bush <alistair.bush <AT> gmail <DOT> com>
AuthorDate: Mon Aug 11 09:33:53 2014 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Mon Aug 11 09:33:53 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=2374ccdd

Remove monodoc

Package-Manager: portage-2.2.10

---
 media-sound/banshee/banshee-2.6.1-r1.ebuild | 1 -
 media-sound/banshee/banshee-2.9.0-r1.ebuild | 1 -
 2 files changed, 2 deletions(-)

diff --git a/media-sound/banshee/banshee-2.6.1-r1.ebuild b/media-sound/banshee/banshee-2.6.1-r1.ebuild
index 514a797..e39e548 100644
--- a/media-sound/banshee/banshee-2.6.1-r1.ebuild
+++ b/media-sound/banshee/banshee-2.6.1-r1.ebuild
@@ -47,7 +47,6 @@ RDEPEND="
 	bpm? ( media-plugins/gst-plugins-soundtouch:0.10 )
 	daap? (	>=dev-dotnet/mono-zeroconf-0.8.0-r1 )
 	doc? (
-		virtual/monodoc
 		>=app-text/gnome-doc-utils-0.17.3
 	)
 	encode? (

diff --git a/media-sound/banshee/banshee-2.9.0-r1.ebuild b/media-sound/banshee/banshee-2.9.0-r1.ebuild
index 2ddbe86..c7da5dd 100644
--- a/media-sound/banshee/banshee-2.9.0-r1.ebuild
+++ b/media-sound/banshee/banshee-2.9.0-r1.ebuild
@@ -48,7 +48,6 @@ RDEPEND="
 	bpm? ( media-plugins/gst-plugins-soundtouch:0.10 )
 	daap? (	>=dev-dotnet/mono-zeroconf-0.8.0-r1 )
 	doc? (
-		virtual/monodoc
 		>=app-text/gnome-doc-utils-0.17.3
 	)
 	encode? (


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
@ 2015-01-25  5:51 Heather Cynede
  0 siblings, 0 replies; 10+ messages in thread
From: Heather Cynede @ 2015-01-25  5:51 UTC (permalink / raw
  To: gentoo-commits

commit:     15f7753f2a6d9fb5e5bc61ee997e6da05dffa5db
Author:     Heather <heather <AT> live <DOT> ru>
AuthorDate: Fri Jan 23 21:07:55 2015 +0000
Commit:     Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Fri Jan 23 21:07:55 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=15f7753f

Delete banshee-2.9.0-r1.ebuild

---
 media-sound/banshee/banshee-2.9.0-r1.ebuild | 149 ----------------------------
 1 file changed, 149 deletions(-)

diff --git a/media-sound/banshee/banshee-2.9.0-r1.ebuild b/media-sound/banshee/banshee-2.9.0-r1.ebuild
deleted file mode 100644
index c7da5dd..0000000
--- a/media-sound/banshee/banshee-2.9.0-r1.ebuild
+++ /dev/null
@@ -1,149 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="5"
-inherit eutils autotools mono-env gnome2-utils fdo-mime versionator gnome.org
-
-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
-		# Fails...
-
-#switched web to - because I personally don't want to build yet another webkit-gtk
-IUSE="+aac +cdda +bpm daap doc +encode ipod karma mtp test udev -web youtube +gnome"
-
-RDEPEND="
-	>=dev-lang/mono-3
-	gnome-base/gnome-settings-daemon
-	sys-apps/dbus
-	>=dev-dotnet/gnome-sharp-2
-	>=dev-dotnet/gtk-sharp-2.99:3
-	>=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
-	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
-	dev-dotnet/dbus-sharp-glib
-	>=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
-	)
-	web? (
-		>=net-libs/webkit-gtk-1.2.2:2
-		>=net-libs/libsoup-gnome-2.26:2.4
-	)
-	youtube? (
-		>=dev-dotnet/google-gdata-sharp-1.4
-	)
-	udev? (
-		app-misc/media-player-info
-		>=dev-dotnet/gudev-sharp-3.0
-		dev-dotnet/gkeyfile-sharp
-		dev-dotnet/gtk-sharp-beans
-	)
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig
-"
-
-src_prepare () {
-	DOCS="AUTHORS ChangeLog HACKING NEWS README"
-
-	# 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
-}
-
-src_configure() {
-	# soundmenu needs a properly maintained and updated indicate-sharp
-	local myconf="--disable-dependency-tracking
-		--disable-static
-		--disable-maintainer-mode
-		--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"
-	econf \
-		$(use_enable doc docs) \
-		$(use_enable doc user-help) \
-		$(use_enable mtp) \
-		$(use_enable daap) \
-		$(use_enable ipod appledevice) \
-		$(use_enable karma) \
-		$(use_enable web webkit) \
-		$(use_enable youtube) \
-		$(use_enable udev gio) \
-		$(use_enable udev gio_hardware) \
-		$(use_enable gnome) \
-		${myconf}
-}
-
-src_compile() {
-	emake MCS=/usr/bin/mcs
-}
-
-src_install() {
-	default
-	prune_libtool_files --all
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
-	gnome2_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/
@ 2016-09-07  6:13 Mikhail Pukhlikov
  0 siblings, 0 replies; 10+ messages in thread
From: Mikhail Pukhlikov @ 2016-09-07  6:13 UTC (permalink / raw
  To: gentoo-commits

commit:     6b85802f592489fcf6a3ef661f8cc584cf75909f
Author:     Ben Sagal <bsagal <AT> gmail <DOT> com>
AuthorDate: Thu Sep  1 07:25:19 2016 +0000
Commit:     Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
CommitDate: Thu Sep  1 07:25:19 2016 +0000
URL:        https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=6b85802f

Remove old banshee vesion (#232)
There is a later version in main tree

 media-sound/banshee/banshee-2.6.1-r1.ebuild | 150 ----------------------------
 media-sound/banshee/metadata.xml            |  17 ----
 2 files changed, 167 deletions(-)

diff --git a/media-sound/banshee/banshee-2.6.1-r1.ebuild b/media-sound/banshee/banshee-2.6.1-r1.ebuild
deleted file mode 100644
index 22b3f27..0000000
--- a/media-sound/banshee/banshee-2.6.1-r1.ebuild
+++ /dev/null
@@ -1,150 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit eutils autotools mono-env gnome2-utils fdo-mime versionator gnome.org
-
-DESCRIPTION="Import, organize, play, and share your music in a simple and powerful interface"
-HOMEPAGE="http://banshee.fm/"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-#switched web to - because I personally don't want to build yet another webkit-gtk
-IUSE="+aac +cdda +bpm daap doc +encode ipod karma mtp test udev -web youtube"
-
-RDEPEND="
-	>=dev-lang/mono-3
-	gnome-base/gnome-settings-daemon
-	sys-apps/dbus
-	>=dev-dotnet/gnome-sharp-2
-	>=dev-dotnet/gtk-sharp-2.12.21: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
-	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:*
-	dev-dotnet/dbus-sharp-glib:*
-	>=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
-	)
-	web? (
-		>=net-libs/webkit-gtk-1.2.2:2
-		>=net-libs/libsoup-gnome-2.26:2.4
-	)
-	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 () {
-	DOCS="AUTHORS ChangeLog HACKING NEWS README"
-
-	# 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
-}
-
-src_configure() {
-	# soundmenu needs a properly maintained and updated indicate-sharp
-	local myconf="--disable-dependency-tracking
-		--disable-static
-		--disable-maintainer-mode
-		--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"
-
-	econf \
-		$(use_enable doc docs) \
-		$(use_enable doc user-help) \
-		$(use_enable mtp) \
-		$(use_enable daap) \
-		$(use_enable ipod appledevice) \
-		$(use_enable karma) \
-		$(use_enable web webkit) \
-		$(use_enable youtube) \
-		$(use_enable udev gio) \
-		$(use_enable udev gio_hardware) \
-		${myconf}
-}
-
-src_compile() {
-	emake MCS=/usr/bin/mcs
-}
-
-src_install() {
-	default
-	prune_libtool_files --all
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
-	gnome2_icon_cache_update
-}

diff --git a/media-sound/banshee/metadata.xml b/media-sound/banshee/metadata.xml
deleted file mode 100644
index 823dc4a..0000000
--- a/media-sound/banshee/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>dotnet@gentoo.org</email>
-		<description>Gentoo Dotnet Project</description>
-	</maintainer>
-	<use>
-		<flag name="bpm">Build beats per minute detection extension</flag>
-		<flag name="cdda">Build with audio CD support</flag>
-		<flag name="daap">Build with Daap support</flag>
-		<flag name="karma">Build with karma support</flag>
-		<flag name="web">Enable support for plugins that access web-based services
-		such as Amazon and wikipedia (requires <pkg>net-libs/webkit-gtk</pkg>)</flag>
-		<flag name="youtube">Enable the Youtube plugin</flag>
-	</use>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2016-09-07  6:14 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-26 10:07 [gentoo-commits] proj/dotnet:master commit in: media-sound/banshee/ Heather Cynede
  -- strict thread matches above, loose matches on Subject: below --
2016-09-07  6:13 Mikhail Pukhlikov
2015-01-25  5:51 Heather Cynede
2014-09-06 14:02 Heather Cynede
2014-08-12 17:35 ` Heather Cynede
2013-10-23 11:43 Heather Cynede
2013-10-23 11:18 Heather Cynede
2013-10-23 10:57 Heather Cynede
2013-09-26 11:06 Heather Cynede
2013-09-26  9:27 Heather Cynede

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox