blob: 12a4b5a167dffa2bc00e085b552c43248b79a61f (
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
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellmms/gkrellmms-2.1.22-r1.ebuild,v 1.8 2008/03/16 15:08:25 coldwind Exp $
inherit eutils multilib toolchain-funcs
DESCRIPTION="A sweet plugin to control Audacious from GKrellM2"
SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz
mirror://gentoo/${P}-audacious.patch.gz"
HOMEPAGE="http://gkrellm.luon.net/gkrellmms.phtml"
DEPEND=">=app-admin/gkrellm-2
media-sound/audacious
sys-apps/dbus"
# dbus dependency is because of audacious patch
RDEPEND="${DEPEND}"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha amd64 ppc sparc x86"
S="${WORKDIR}"/${PN}
pkg_setup() {
if ! built_with_use media-sound/audacious dbus ; then
eerror "${PN} needs media-sound/audacious built with"
eerror "USE='dbus'. Please, reinstall it with dbus enabled"
eerror "and try again."
die "media-sound/audacious built without dbus USE flag"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}"/${P}-audacious.patch
epatch "${FILESDIR}"/${P}-ldflags.patch
}
src_compile() {
tc-export CC
emake USE_AUDACIOUS=1 || die
}
src_install () {
exeinto /usr/"$(get_libdir)"/gkrellm2/plugins
doexe gkrellmms.so
dodoc README Changelog FAQ Themes
}
|