summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Medinas <metalgod@gentoo.org>2006-04-22 16:10:50 +0000
committerLuis Medinas <metalgod@gentoo.org>2006-04-22 16:10:50 +0000
commit234370697524ea606042a441acaf0a279d02f8e5 (patch)
tree30f75387183ae06dd4c32461f70fa4eb491de0b6 /media-sound
parentand another rev bump for a brush up (diff)
downloadgentoo-2-234370697524ea606042a441acaf0a279d02f8e5.tar.gz
gentoo-2-234370697524ea606042a441acaf0a279d02f8e5.tar.bz2
gentoo-2-234370697524ea606042a441acaf0a279d02f8e5.zip
Remove older versions.
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/banshee/banshee-0.10.5-r1.ebuild113
-rw-r--r--media-sound/banshee/banshee-0.10.6.ebuild106
-rw-r--r--media-sound/banshee/banshee-0.10.7_p1.ebuild111
-rw-r--r--media-sound/banshee/banshee-0.9.12.ebuild72
-rw-r--r--media-sound/banshee/files/digest-banshee-0.10.5-r16
-rw-r--r--media-sound/banshee/files/digest-banshee-0.10.63
-rw-r--r--media-sound/banshee/files/digest-banshee-0.10.7_p13
-rw-r--r--media-sound/banshee/files/digest-banshee-0.9.121
8 files changed, 0 insertions, 415 deletions
diff --git a/media-sound/banshee/banshee-0.10.5-r1.ebuild b/media-sound/banshee/banshee-0.10.5-r1.ebuild
deleted file mode 100644
index ae9e3967a3f6..000000000000
--- a/media-sound/banshee/banshee-0.10.5-r1.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/banshee/banshee-0.10.5-r1.ebuild,v 1.1 2006/02/08 02:00:41 metalgod Exp $
-
-inherit autotools eutils gnome2 mono
-
-PATCHLEVEL="1"
-DESCRIPTION="Banshee allows you to import CDs, sync your music collection, play
-music directly from an iPod, create playlists with songs from your library, and
-create audio and MP3 CDs from subsets of your library."
-HOMEPAGE="http://banshee-project.org"
-SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.gz
- http://dev.gentoo.org/~metalgod/patches/${P}-fixes-${PATCHLEVEL}.tar.bz2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="aac doc daap ipod flac mad njb real vorbis"
-
-RDEPEND=">=dev-lang/mono-1.1.10
- >=dev-dotnet/gtk-sharp-2.8.0
- >=dev-dotnet/gnomevfs-sharp-2.8.0
- >=dev-dotnet/gconf-sharp-2.8.0
- =media-libs/gstreamer-0.8.11
- =media-libs/gst-plugins-0.8.11
- =media-plugins/gst-plugins-gnomevfs-0.8.11
- mad? ( =media-plugins/gst-plugins-mad-0.8.11 )
- vorbis? ( =media-plugins/gst-plugins-ogg-0.8.11
- =media-plugins/gst-plugins-vorbis-0.8.11 )
- flac? ( =media-plugins/gst-plugins-flac-0.8.11 )
- aac? ( =media-plugins/gst-plugins-faad-0.8.11
- >=media-libs/faad2-2.0-r4 )
- =media-plugins/gst-plugins-cdparanoia-0.8.11
- >=media-libs/musicbrainz-2.1.1
- real? ( media-video/realplayer )
- njb? ( >=dev-dotnet/njb-sharp-0.2.2 )
- daap? ( >=net-dns/avahi-0.6.4 )
- >=dev-libs/glib-2.0
- >=gnome-base/libgnomeui-2.0
- >=gnome-base/libbonobo-2.0
- >=gnome-base/gnome-desktop-2.0
- ipod? ( >=dev-dotnet/ipod-sharp-0.5.12 )
- >=sys-apps/hal-0.5.2
- sys-apps/dbus
- >=dev-db/sqlite-3
- >=gnome-extra/nautilus-cd-burner-2.12"
-
-USE_DESTDIR=1
-DOCS="ChangeLog NEWS README"
-
-pkg_setup() {
- if ! built_with_use sys-apps/dbus mono ; then
- echo
- eerror "In order to compile banshee, you need to have sys-apps/dbus emerged"
- eerror "with 'mono' in your USE flags. Please add that flag, re-emerge"
- eerror "dbus, and then emerge banshee."
- die "sys-apps/dbus is missing the .NET binding."
- fi
-
- if ! built_with_use net-dns/avahi mono ; then
- echo
- eerror "In order to compile banshee with daap support"
- eerror "you need to have net-dns/avahi emerged"
- eerror "with 'mono' in your USE flags. Please add that flag, re-emerge"
- eerror "avahi, and then emerge banshee."
- die "net-dns/avahi is missing the .NET binding."
- fi
-
- if use real; then
- G2CONF="${G2CONF} --enable-helix --with-helix-libs=/opt/RealPlayer/"
- fi
-
- if use daap; then
- G2CONF="${G2CONF}"
- else
- G2CONF="${G2CONF} --disable-daap"
- fi
-
- G2CONF="${G2CONF} --disable-xing \
- $( use_enable ipod) \
- $( use_enable njb) \
- $( use_enable doc docs)"
-}
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- EPATCH_SOURCE="${WORKDIR}/patches" EPATCH_SUFFIX="patch" \
- EPATCH_FORCE="yes" epatch
-
- eautoreconf
-
- # Multilib issue: Use pkgconfig --variable=libdir over --variable=prefix
- sed -i -e 's:prefix mono`/lib:libdir mono`:' \
- ${S}/configure{.ac,} || die "sed failed"
-}
-src_compile() {
- addpredict "/root/.gconf/"
- addpredict "/root/.gconfd"
- gnome2_src_configure
- emake -j1 || "make failed"
-}
-src_install() {
- gnome2_src_install
- if ! use ipod; then
- dodir /usr/$(get_libdir)/banshee/Banshee.Dap
- fi
-}
-pkg_postinst() {
- einfo "In case you have an ipod please rebuild this package with USE=ipod"
- einfo "If you have a audio player supported by libnjb please"
- einfo "rebuild this package with USE=njb"
-}
diff --git a/media-sound/banshee/banshee-0.10.6.ebuild b/media-sound/banshee/banshee-0.10.6.ebuild
deleted file mode 100644
index f8ff89e802fe..000000000000
--- a/media-sound/banshee/banshee-0.10.6.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/banshee/banshee-0.10.6.ebuild,v 1.4 2006/02/26 19:00:16 metalgod Exp $
-
-inherit eutils gnome2 mono
-
-DESCRIPTION="Banshee allows you to import CDs, sync your music collection, play
-music directly from an iPod, create playlists with songs from your library, and
-create audio and MP3 CDs from subsets of your library."
-HOMEPAGE="http://banshee-project.org"
-SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="aac doc daap ipod flac mad njb real vorbis"
-
-RDEPEND=">=dev-lang/mono-1.1.10
- >=dev-dotnet/gtk-sharp-2.8.0
- >=dev-dotnet/gnomevfs-sharp-2.8.0
- >=dev-dotnet/gconf-sharp-2.8.0
- >=media-libs/gstreamer-0.8.11
- >=media-libs/gst-plugins-0.8.11
- >=media-plugins/gst-plugins-gnomevfs-0.8.11
- mad? ( >=media-plugins/gst-plugins-mad-0.8.11 )
- vorbis? ( >=media-plugins/gst-plugins-ogg-0.8.11
- >=media-plugins/gst-plugins-vorbis-0.8.11 )
- flac? ( >=media-plugins/gst-plugins-flac-0.8.11 )
- aac? ( >=media-plugins/gst-plugins-faad-0.8.11
- >=media-libs/faad2-2.0-r4 )
- >=media-plugins/gst-plugins-cdparanoia-0.8.11
- >=media-libs/musicbrainz-2.1.1
- real? ( media-video/realplayer )
- njb? ( >=dev-dotnet/njb-sharp-0.2.2 )
- daap? ( >=net-dns/avahi-0.6.4 )
- >=dev-libs/glib-2.0
- >=gnome-base/libgnomeui-2.0
- >=gnome-base/libbonobo-2.0
- >=gnome-base/gnome-desktop-2.0
- ipod? ( >=dev-dotnet/ipod-sharp-0.5.15 )
- >=sys-apps/hal-0.5.2
- >=sys-apps/dbus-0.60
- >=dev-db/sqlite-3
- >=gnome-extra/nautilus-cd-burner-2.12"
-
-USE_DESTDIR=1
-DOCS="ChangeLog NEWS README"
-
-pkg_setup() {
- if ! built_with_use sys-apps/dbus mono ; then
- echo
- eerror "In order to compile banshee, you need to have sys-apps/dbus emerged"
- eerror "with 'mono' in your USE flags. Please add that flag, re-emerge"
- eerror "dbus, and then emerge banshee."
- die "sys-apps/dbus is missing the .NET binding."
- fi
-
- if ! built_with_use net-dns/avahi mono ; then
- echo
- eerror "In order to compile banshee with daap support"
- eerror "you need to have net-dns/avahi emerged"
- eerror "with 'mono' in your USE flags. Please add that flag, re-emerge"
- eerror "avahi, and then emerge banshee."
- die "net-dns/avahi is missing the .NET binding."
- fi
-
- if use real; then
- G2CONF="${G2CONF} --enable-helix --with-helix-libs=/opt/RealPlayer/"
- fi
-
- if use daap; then
- G2CONF="${G2CONF}"
- else
- G2CONF="${G2CONF} --disable-daap"
- fi
-
- G2CONF="${G2CONF} --disable-xing \
- --disable-docs \
- $( use_enable ipod) \
- $( use_enable njb)"
-}
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # Multilib issue: Use pkgconfig --variable=libdir over --variable=prefix
- sed -i -e 's:prefix mono`/lib:libdir mono`:' \
- ${S}/configure{.ac,} || die "sed failed"
-}
-src_compile() {
- addpredict "/root/.gconf/"
- addpredict "/root/.gconfd"
- gnome2_src_configure
- emake -j1 || "make failed"
-}
-src_install() {
- gnome2_src_install
- if ! use ipod; then
- dodir /usr/$(get_libdir)/banshee/Banshee.Dap
- fi
-}
-pkg_postinst() {
- einfo "In case you have an ipod please rebuild this package with USE=ipod"
- einfo "If you have a audio player supported by libnjb please"
- einfo "rebuild this package with USE=njb"
-}
diff --git a/media-sound/banshee/banshee-0.10.7_p1.ebuild b/media-sound/banshee/banshee-0.10.7_p1.ebuild
deleted file mode 100644
index 3724dc9243ee..000000000000
--- a/media-sound/banshee/banshee-0.10.7_p1.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/banshee/banshee-0.10.7_p1.ebuild,v 1.2 2006/03/07 02:34:43 metalgod Exp $
-
-inherit eutils gnome2 mono
-
-MY_P="${P%%_*}"
-
-DESCRIPTION="Banshee allows you to import CDs, sync your music collection, play
-music directly from an iPod, create playlists with songs from your library, and
-create audio and MP3 CDs from subsets of your library."
-HOMEPAGE="http://banshee-project.org"
-SRC_URI="http://banshee-project.org/files/${PN}/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="aac doc daap ipod flac mad njb real vorbis"
-
-RDEPEND=">=dev-lang/mono-1.1.10
- >=dev-dotnet/gtk-sharp-2.8.0
- >=dev-dotnet/gnomevfs-sharp-2.8.0
- >=dev-dotnet/gconf-sharp-2.8.0
- >=media-libs/gstreamer-0.10.0
- >=media-libs/gst-plugins-good-0.10.0
- >=media-plugins/gst-plugins-gnomevfs-0.10.0
- >=media-plugins/gst-plugins-gconf-0.10.0
- mad? ( >=media-plugins/gst-plugins-mad-0.10.0 )
- vorbis? ( >=media-plugins/gst-plugins-ogg-0.10.0
- >=media-plugins/gst-plugins-vorbis-0.10.0 )
- flac? ( >=media-plugins/gst-plugins-flac-0.10.0 )
- aac? ( >=media-plugins/gst-plugins-faad-0.10.0
- >=media-libs/faad2-2.0-r4 )
- >=media-plugins/gst-plugins-cdparanoia-0.10.0
- >=media-libs/musicbrainz-2.1.1
- real? ( media-video/realplayer )
- njb? ( >=dev-dotnet/njb-sharp-0.2.2 )
- daap? ( >=net-dns/avahi-0.6.4 )
- >=dev-libs/glib-2.0
- >=gnome-base/libgnomeui-2.0
- >=gnome-base/libbonobo-2.0
- >=gnome-base/gnome-desktop-2.0
- ipod? ( >=dev-dotnet/ipod-sharp-0.5.15 )
- >=sys-apps/hal-0.5.2
- >=sys-apps/dbus-0.60
- >=dev-db/sqlite-3
- >=gnome-extra/nautilus-cd-burner-2.12"
-
-USE_DESTDIR=1
-DOCS="ChangeLog HACKING NEWS README"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- if ! built_with_use sys-apps/dbus mono ; then
- echo
- eerror "In order to compile banshee, you need to have sys-apps/dbus emerged"
- eerror "with 'mono' in your USE flags. Please add that flag, re-emerge"
- eerror "dbus, and then emerge banshee."
- die "sys-apps/dbus is missing the .NET binding."
- fi
-
- if ! built_with_use net-dns/avahi mono ; then
- echo
- eerror "In order to compile banshee with daap support"
- eerror "you need to have net-dns/avahi emerged"
- eerror "with 'mono' in your USE flags. Please add that flag, re-emerge"
- eerror "avahi, and then emerge banshee."
- die "net-dns/avahi is missing the .NET binding."
- fi
-
- if use real; then
- G2CONF="${G2CONF} --enable-helix --with-helix-libs=/opt/RealPlayer/"
- fi
-
- if use daap; then
- G2CONF="${G2CONF}"
- else
- G2CONF="${G2CONF} --disable-daap"
- fi
-
- G2CONF="${G2CONF} --disable-xing \
- --disable-docs \
- --with-gstreamer-0-10 \
- $( use_enable ipod) \
- $( use_enable njb)"
-}
-
-src_compile() {
- addpredict "/root/.gconf/"
- addpredict "/root/.gconfd"
- gnome2_src_configure
- emake -j1 || "make failed"
-}
-
-src_install() {
- gnome2_src_install
- if ! use ipod; then
- dodir /usr/$(get_libdir)/banshee/Banshee.Dap
- fi
-}
-pkg_postinst() {
- einfo "In case you have an ipod please rebuild this package with USE=ipod"
- einfo "If you have a audio player supported by libnjb please"
- einfo "rebuild this package with USE=njb"
- einfo
- einfo
- einfo "This version supports both gstreamer 0.8.x and 0.10.x"
- einfo "This ebuild will only build Banshee with gstreamer 0.10.x support"
- einfo
-}
diff --git a/media-sound/banshee/banshee-0.9.12.ebuild b/media-sound/banshee/banshee-0.9.12.ebuild
deleted file mode 100644
index 0111ba67b4cf..000000000000
--- a/media-sound/banshee/banshee-0.9.12.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/banshee/banshee-0.9.12.ebuild,v 1.6 2006/03/07 02:34:43 metalgod Exp $
-
-inherit eutils gnome2 mono
-
-DESCRIPTION="Banshee allows you to import CDs, sync your music collection, play
-music directly from an iPod, create playlists with songs from your library, and
-create audio and MP3 CDs from subsets of your library."
-HOMEPAGE="http://banshee-project.org"
-SRC_URI="http://banshee-project.org/files/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="aac flac mad real vorbis"
-
-RDEPEND=">=dev-lang/mono-1.1.9.2
- >=dev-dotnet/gtk-sharp-2.3.90
- >=dev-dotnet/gnomevfs-sharp-1.9
- >=dev-dotnet/gconf-sharp-2.3.90
- =media-libs/gstreamer-0.8*
- =media-libs/gst-plugins-0.8*
- =media-plugins/gst-plugins-gnomevfs-0.8*
- mad? ( =media-plugins/gst-plugins-mad-0.8* )
- vorbis? ( =media-plugins/gst-plugins-ogg-0.8*
- =media-plugins/gst-plugins-vorbis-0.8* )
- flac? ( =media-plugins/gst-plugins-flac-0.8* )
- aac? ( =media-plugins/gst-plugins-faad-0.8*
- >=media-libs/faad2-2.0-r4 )
- >=media-libs/musicbrainz-2.1.1
- real? ( media-video/realplayer )
- >=dev-libs/glib-2.0
- >=gnome-base/libgnomeui-2.0
- >=gnome-base/libbonobo-2.0
- >=gnome-base/gnome-desktop-2.0
- >=dev-dotnet/ipod-sharp-0.5.10
- >=sys-apps/hal-0.5.2
- sys-apps/dbus
- >=dev-db/sqlite-3
- >=gnome-extra/nautilus-cd-burner-2.12"
-
-USE_DESTDIR=1
-DOCS="ChangeLog NEWS README TODO"
-
-pkg_setup() {
- if ! built_with_use sys-apps/dbus mono ; then
- echo
- eerror "In order to compile banshee, you need to have sys-apps/dbus emerged"
- eerror "with 'mono' in your USE flags. Please add that flag, re-emerge"
- eerror "dbus, and then emerge banshee."
- die "sys-apps/dbus is missing the .NET binding."
- fi
- if use real; then
- G2CONF="${G2CONF} --enable-helix --with-helix-libs=/opt/RealPlayer/"
- fi
- G2CONF="${G2CONF} --disable-xing"
-}
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # Fix icon
- sed -i -e 's/TryExec=banshee %U/#TryExec=banshee %U/g' \
- data/banshee.desktop.in.in || die "sed failed"
- sed -i -e 's/Icon=music-player-banshee/Icon=music-player-banshee.png/g' \
- data/banshee.desktop.in.in || die "sed failed"
-}
-src_compile() {
- gnome2_src_configure
- emake -j1 || "make failed"
-}
diff --git a/media-sound/banshee/files/digest-banshee-0.10.5-r1 b/media-sound/banshee/files/digest-banshee-0.10.5-r1
deleted file mode 100644
index 1429a2a70c08..000000000000
--- a/media-sound/banshee/files/digest-banshee-0.10.5-r1
+++ /dev/null
@@ -1,6 +0,0 @@
-MD5 09bcb78fece393ff374f41ee98d439f8 banshee-0.10.5-fixes-1.tar.bz2 5165
-RMD160 17cd47b35568043cb7647d6370b801fac557d531 banshee-0.10.5-fixes-1.tar.bz2 5165
-SHA256 9aa561257cd7d09f77d9699f696cf2f9d63c216bd98c3520c1a9be8aad0396be banshee-0.10.5-fixes-1.tar.bz2 5165
-MD5 f585006ea42569089a77370fc8df049b banshee-0.10.5.tar.gz 1527880
-RMD160 ba5035e467b48a04a8e710c05208dadacb99fa33 banshee-0.10.5.tar.gz 1527880
-SHA256 feea20e73a0b514582570b3e6c86ad3c257652e0463a68e8bda722bef76c7364 banshee-0.10.5.tar.gz 1527880
diff --git a/media-sound/banshee/files/digest-banshee-0.10.6 b/media-sound/banshee/files/digest-banshee-0.10.6
deleted file mode 100644
index cf8d0a99353f..000000000000
--- a/media-sound/banshee/files/digest-banshee-0.10.6
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 398b69c1818568b9d7a39c5e036de84b banshee-0.10.6.tar.gz 1550341
-RMD160 c0e605cab0f8b76fe3fbf336308ece27a8d39181 banshee-0.10.6.tar.gz 1550341
-SHA256 21f14537bb5049f1e837e97cb22eb0a62a66113af5789669af8cbc87d2ce3a76 banshee-0.10.6.tar.gz 1550341
diff --git a/media-sound/banshee/files/digest-banshee-0.10.7_p1 b/media-sound/banshee/files/digest-banshee-0.10.7_p1
deleted file mode 100644
index c4e5836e1f79..000000000000
--- a/media-sound/banshee/files/digest-banshee-0.10.7_p1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 cae68ff23077f4ec37ab23b040c2470a banshee-0.10.7.tar.gz 1614761
-RMD160 9ba5b724a37ba144da282785bf0a29fcadc03419 banshee-0.10.7.tar.gz 1614761
-SHA256 43e542782150f07bb6ffc4d2f74305ed557302a8d6f4193bb9e39e83577fe2ff banshee-0.10.7.tar.gz 1614761
diff --git a/media-sound/banshee/files/digest-banshee-0.9.12 b/media-sound/banshee/files/digest-banshee-0.9.12
deleted file mode 100644
index 5db87eaa9923..000000000000
--- a/media-sound/banshee/files/digest-banshee-0.9.12
+++ /dev/null
@@ -1 +0,0 @@
-MD5 c1c695d48a6edb8b6032d2a5c1cd54e3 banshee-0.9.12.tar.gz 1794155