blob: 35561e44d418852331cc239af350d17b6f78b8e0 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-fmradio/xmms-fmradio-1.5.ebuild,v 1.13 2005/09/09 12:21:23 flameeyes Exp $
IUSE=""
inherit toolchain-funcs
MY_P=${P/fmr/FMR}
S=${WORKDIR}/${MY_P}
DESCRIPTION="radio tuner Plugin for XMMS"
HOMEPAGE="http://silicone.free.fr/xmms-FMRadio/"
SRC_URI="http://silicone.free.fr/xmms-FMRadio/${MY_P}.tgz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ppc sparc"
RDEPEND="media-sound/xmms"
src_compile() {
emake CC="$(tc-getCC)" || die
}
src_install() {
exeinto `xmms-config --input-plugin-dir`
doexe libradio.so || die
dodoc README
}
|