From e1bf09bcfc10a82751297df9323664c3c170d475 Mon Sep 17 00:00:00 2001 From: Alexis Ballier Date: Fri, 19 Dec 2008 15:18:30 +0000 Subject: remove old Package-Manager: portage-2.2_rc17/cvs/Linux 2.6.27.8 x86_64 --- media-sound/quodlibet/ChangeLog | 5 +- media-sound/quodlibet/quodlibet-1.0.ebuild | 124 ----------------------------- 2 files changed, 4 insertions(+), 125 deletions(-) delete mode 100644 media-sound/quodlibet/quodlibet-1.0.ebuild (limited to 'media-sound/quodlibet') diff --git a/media-sound/quodlibet/ChangeLog b/media-sound/quodlibet/ChangeLog index e61f042e7f6e..42ad8326a047 100644 --- a/media-sound/quodlibet/ChangeLog +++ b/media-sound/quodlibet/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-sound/quodlibet # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/quodlibet/ChangeLog,v 1.58 2008/10/05 17:46:40 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/quodlibet/ChangeLog,v 1.59 2008/12/19 15:18:29 aballier Exp $ + + 19 Dec 2008; Alexis Ballier -quodlibet-1.0.ebuild: + remove old 05 Oct 2008; Alexis Ballier quodlibet-2.0.ebuild: Symlink icons to /usr/share/pixmaps so that they appear in desktop menus. diff --git a/media-sound/quodlibet/quodlibet-1.0.ebuild b/media-sound/quodlibet/quodlibet-1.0.ebuild deleted file mode 100644 index 5383b87edaa0..000000000000 --- a/media-sound/quodlibet/quodlibet-1.0.ebuild +++ /dev/null @@ -1,124 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/quodlibet/quodlibet-1.0.ebuild,v 1.4 2008/05/12 09:04:29 aballier Exp $ - -inherit eutils python - -DESCRIPTION="Quod Libet is a GTK+-based audio player written in Python." -HOMEPAGE="http://www.sacredchao.net/quodlibet/" -SRC_URI="http://www.sacredchao.net/~piman/software/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="aac alsa dbus esd ffmpeg flac gnome hal ipod mad mmkeys musepack oss trayicon vorbis" - -COMMON_DEPEND=">=virtual/python-2.4.3-r1 - trayicon? ( >=dev-python/pygtk-2.8 ) - mmkeys? ( >=dev-python/pygtk-2.8 )" - -RDEPEND="${COMMON_DEPEND} - >=dev-python/pygtk-2.8 - >=media-libs/mutagen-1.9 - >=media-libs/gst-plugins-good-0.10.2 - >=dev-python/gst-python-0.10.2 - hal? ( sys-apps/hal ) - mad? ( >=media-plugins/gst-plugins-mad-0.10.2 ) - vorbis? ( >=media-plugins/gst-plugins-vorbis-0.10.2 - >=media-plugins/gst-plugins-ogg-0.10.2 ) - flac? ( >=media-plugins/gst-plugins-flac-0.10.2 ) - aac? ( >=media-plugins/gst-plugins-faad-0.10.1 ) - musepack? ( >=media-plugins/gst-plugins-musepack-0.10.0 ) - ffmpeg? ( >=media-plugins/gst-plugins-ffmpeg-0.10.1 ) - alsa? ( >=media-plugins/gst-plugins-alsa-0.10.2 ) - oss? ( >=media-plugins/gst-plugins-oss-0.10.2 ) - esd? ( >=media-plugins/gst-plugins-esd-0.10.2 ) - gnome? ( dev-python/gnome-python-extras - >=media-plugins/gst-plugins-gconf-0.10.3 - >=media-plugins/gst-plugins-gnomevfs-0.10.2 - dev-python/feedparser ) - dbus? ( >=dev-python/dbus-python-0.71 ) - ipod? ( >=media-libs/libgpod-0.3.2-r1 )" - -DEPEND="${COMMON_DEPEND} - dev-util/intltool" - -PDEPEND="trayicon? ( media-plugins/quodlibet-trayicon )" - -pkg_setup() { - if use ipod && ! built_with_use media-libs/libgpod python ; then - eerror "media-libs/libgpod must be built with 'python' support." - die "Recompile media-libs/libgpod after enabling the 'python' USE flag" - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - - # multilib fix - sed -i -e "s,^TODEP = lib/quodlibet,TODEP = \$(libdir)/quodlibet," Makefile - - # no gst-plugins-gconf, attempt to guess the proper pipeline value. Bug #133043, #146728. - if ! use gnome; then - local sinktype="alsasink" - - use esd && sinktype="esdsink" - use oss && sinktype="osssink" - use alsa && sinktype="alsasink" - - elog "Setting the default pipeline to ${sinktype}" - - sed -i -e "s,^ \"pipeline\": \"\", \"pipeline\": \"${sinktype}\"," config.py - fi -} - -src_compile() { - if use trayicon ; then - emake _trayicon.so || die "emake _trayicon.so failed" - fi - - if use mmkeys ; then - emake _mmkeys.so || die "emake _mmkeys.so failed" - fi -} - -src_install() { - emake PREFIX=/usr DESTDIR="${D}" libdir="$(get_libdir)" install || die "install failed" - dodoc README NEWS -} - -pkg_postinst() { - python_mod_optimize /usr/share/${PN} - - if ! use mad; then - elog "" - elog "You do not have the 'mad' USE flag enabled." - elog "gst-plugins-mad, which is required for mp3 playback, may" - elog "not be installed. For mp3 support, enable the 'mad'" - elog "USE flag and emerge =media-sound/${P}." - fi - - if ! use gnome; then - elog "" - elog "You do not have the 'gnome' USE flag enabled." - elog "media-plugins/gst-plugins-gnomevfs may not be installed," - elog "so the proper pipeline won't be automatically selected." - elog "We've tried to select the proper pipeline based on your" - elog "USE flags, but if we guessed wrong you may have to set" - elog "'pipeline = ' in your ~/.quodlibet/config file to one" - elog "of the following: alsasink, osssink, esdsink. To enable" - elog "automatic selection of the proper pipeline, enable the" - elog "'gnome' USE flag and emerge =media-sound/${P}." - fi - - elog "" - elog "Installing Quod Libet from an ebuild is not supported" - elog "upstream. If you encounter any problems, file bugs on" - elog "bugs.gentoo.org. DO NOT USE THE UPSTREAM BUG SYSTEM." - elog "" -} - -pkg_postrm() { - python_mod_cleanup /usr/share/${PN} -} -- cgit v1.2.3-65-gdbad