blob: 0fd8ba0830d27c63e6f843229f29df18bfd33a23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-mpc-plugin/xfce4-mpc-plugin-0.3.6.ebuild,v 1.4 2011/03/22 10:45:25 tomka Exp $
EAPI=3
inherit xfconf
DESCRIPTION="Music Player Daemon (mpd) panel plugin"
HOMEPAGE="http://goodies.xfce.org/projects/panel-plugins/xfce4-mpc-plugin"
SRC_URI="mirror://xfce/src/panel-plugins/${PN}/0.3/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc64 x86"
IUSE="libmpd"
RDEPEND=">=xfce-base/exo-0.3.1.1
>=xfce-base/libxfcegui4-4.3.22
>=xfce-base/xfce4-panel-4.3.22
libmpd? ( media-libs/libmpd )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/intltool"
pkg_setup() {
# $(xfconf_use_debug) removed because the package is still using
# deprecated libxfcegui4 functions. restore when the package has
# been migrated to libxfce4ui.
XFCONF=(
--disable-dependency-tracking
$(use_enable libmpd)
)
DOCS="AUTHORS ChangeLog README TODO"
}
|