exaile-3.3.2 added
This commit is contained in:
parent
a945fcbd98
commit
53a0857526
|
@ -0,0 +1 @@
|
|||
DIST exaile-3.3.2.tar.gz 3207277 SHA256 b25b61e6ad682737f3728015a82f4d733beaa6740862c7413bcc502e432a0461 SHA512 c096e8f926ca74d9e9034f0758e966fdde677b426e11a9d87f9052c57c8cd7622bcc3a251a8163d132dce09b7fe95dc9b3fee78778f92698d375332417ae7c52 WHIRLPOOL 085090f0f7eb998c1044acd47221daab7acd10d22c7f70406a3a1b8546ad3018946116194beb07dbd3cd31af75d2fbc8ceea49714b84a9b0a8e8250426b18928
|
|
@ -0,0 +1,58 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python{2_6,2_7} )
|
||||
PYTHON_REQ_USE="sqlite"
|
||||
|
||||
inherit fdo-mime multilib python-r1
|
||||
|
||||
DESCRIPTION="a media player aiming to be similar to AmaroK, but for GTK+"
|
||||
HOMEPAGE="http://www.exaile.org/"
|
||||
SRC_URI="http://launchpad.net/${PN}/3.3.x/${PV}/+download/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2 GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
|
||||
IUSE="cddb libnotify nls"
|
||||
|
||||
RDEPEND="dev-python/dbus-python
|
||||
>=media-libs/mutagen-1.10
|
||||
>=dev-python/pygtk-2.17
|
||||
>=dev-python/pygobject-2.18:2
|
||||
dev-python/gst-python:0.10
|
||||
media-libs/gst-plugins-good:0.10
|
||||
media-plugins/gst-plugins-meta:0.10
|
||||
libnotify? ( dev-python/notify-python )
|
||||
cddb? ( dev-python/cddb-py )"
|
||||
DEPEND="nls? ( dev-util/intltool
|
||||
sys-devel/gettext )"
|
||||
|
||||
RESTRICT="test" #315589
|
||||
|
||||
src_compile() {
|
||||
if use nls; then
|
||||
emake locale || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake \
|
||||
PREFIX=/usr \
|
||||
LIBINSTALLDIR=/$(get_libdir) \
|
||||
DESTDIR="${D}" \
|
||||
install$(use nls || echo _no_locale) || die
|
||||
|
||||
dodoc FUTURE || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
fdo-mime_desktop_database_update
|
||||
fdo-mime_mime_database_update
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
fdo-mime_desktop_database_update
|
||||
fdo-mime_mime_database_update
|
||||
}
|
Loading…
Reference in New Issue