blob: 22f15270a85198df038b9e6d884f9893fec174fa (
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
35
36
37
38
39
40
41
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/xfmpc/xfmpc-0.0.7.ebuild,v 1.3 2008/11/09 14:34:32 maekke Exp $
inherit fdo-mime
DESCRIPTION="a GTK+ based MPD client focusing on low footprint."
HOMEPAGE="http://goodies.xfce.org/projects/applications/xfmpc"
SRC_URI="http://goodies.xfce.org/releases/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~sparc x86"
IUSE="debug"
RDEPEND=">=media-libs/libmpd-0.15
>=x11-libs/gtk+-2.12
x11-themes/hicolor-icon-theme
>=xfce-base/libxfcegui4-4.4
>=xfce-base/libxfce4util-4.4"
DEPEND="${RDEPEND}
dev-util/intltool
dev-util/pkgconfig"
src_compile() {
econf --disable-dependency-tracking $(use_enable debug)
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog IDEAS NEWS README THANKS
}
pkg_postinst() {
fdo-mime_desktop_database_update
}
pkg_postrm() {
fdo-mime_desktop_database_update
}
|