# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/exaile/exaile-0.2.10-r1.ebuild,v 1.8 2007/08/11 12:36:11 drac Exp $ inherit eutils fdo-mime multilib python GVER="0.10" MY_P=${PN}_${PV} DESCRIPTION="a media player aiming to be similar to AmaroK, but for GTK+" HOMEPAGE="http://www.exaile.org/" SRC_URI="http://www.exaile.org/files/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="aac alsa cdparanoia flac gnome ipod libnotify libsexy mad musepack ogg oss serpentine streamripper vorbis" RDEPEND=">=dev-python/pygtk-2.8.6 >=dev-python/pysqlite-2.3.4-r1 >=media-libs/mutagen-1.6 || ( >=dev-lang/python-2.5 dev-python/elementtree ) dev-python/dbus-python libnotify? ( dev-python/notify-python ) libsexy? ( dev-python/sexy-python ) gnome? ( >=dev-python/gnome-python-extras-2.14.2-r1 >=media-plugins/gst-plugins-gconf-${GVER} >=media-plugins/gst-plugins-gnomevfs-${GVER} ) serpentine? ( app-cdr/serpentine ) streamripper? ( media-sound/streamripper ) >=media-libs/gstreamer-${GVER} >=media-libs/gst-plugins-good-${GVER} >=dev-python/gst-python-${GVER} musepack? ( >=media-plugins/gst-plugins-musepack-${GVER} ) vorbis? ( >=media-plugins/gst-plugins-vorbis-${GVER} ) flac? ( >=media-plugins/gst-plugins-flac-${GVER} ) aac? ( >=media-plugins/gst-plugins-faad-${GVER} ) alsa? ( >=media-plugins/gst-plugins-alsa-${GVER} ) oss? ( >=media-plugins/gst-plugins-oss-${GVER} ) mad? ( >=media-plugins/gst-plugins-mad-${GVER} ) ogg? ( >=media-plugins/gst-plugins-ogg-${GVER} ) cdparanoia? ( >=media-plugins/gst-plugins-cdparanoia-${GVER} dev-python/cddb-py ) ipod? ( >=media-libs/libgpod-0.4 >=media-plugins/gst-plugins-faad-${GVER} )" DEPEND="" S="${WORKDIR}/${MY_P}" pkg_setup() { if use ipod && ! built_with_use media-libs/libgpod python ; then eerror "libgpod has to be built with python support" die "libgpod python use-flag not set" fi if use gnome; then if ! built_with_use dev-python/gnome-python-extras xulrunner; then if ! built_with_use dev-python/gnome-python-extras firefox; then if ! built_with_use dev-python/gnome-python-extras seamonkey; then ewarn "In order to enable extra features provided by gtkmozembed," ewarn "you have to re-emerge gnome-python-extras with" ewarn "xulrunner, firefox or seamonkey USE flag." epause fi fi fi fi } src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-destdir.patch epatch "${FILESDIR}"/${P}-visual.patch } src_compile() { emake -j1 mmkeys.so || die "emake mmkeys.so failed." emake translations || die "emake translations failed." } src_install() { emake LIBDIR="/usr/$(get_libdir)" DESTDIR="${D}" install || die "emake install failed." dodoc TODO changelog insinto /usr/share/${PN} doins -r scripts fperms 755 /usr/share/${PN}/scripts/{exailecover,*.py,*.pl} fperms 755 /usr/share/${PN}/scripts/exaile_system/*.py } pkg_postinst() { python_mod_optimize "${ROOT}"/usr/share/${PN} fdo-mime_desktop_database_update fdo-mime_mime_database_update } pkg_postrm() { python_mod_cleanup "${ROOT}"/usr/share/${PN} fdo-mime_desktop_database_update fdo-mime_mime_database_update }