blob: e936cef5fd6d2da0c0c93c305f1a4c4e56b3ad08 (
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
53
54
55
56
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/kradio/kradio-1.0_beta1.ebuild,v 1.2 2005/05/27 14:03:18 phosphan Exp $
inherit kde
MY_PV="${PV/_/}"
S="${WORKDIR}/${PN}-${MY_PV}"
DESCRIPTION="kradio is a radio tuner application for KDE"
HOMEPAGE="http://kradio.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="lirc encode vorbis ogg"
RDEPEND="lirc? ( app-misc/lirc )
media-libs/libsndfile
encode? ( media-sound/lame )
vorbis? ( media-libs/libvorbis )
ogg? ( media-libs/libogg )"
DEPEND="${RDEPEND}
>=kde-base/unsermake-0.3.1.4319.0"
need-kde 3.2
src_compile() {
if ! use vorbis; then
sed -e 's/\(ac_cv_lib_vorbisenc_vorbis_encode_init=\)yes$/\1no/' \
-i configure
fi
if ! use encode; then
sed -e 's/\(ac_cv_lib_mp3lame_lame_init=\)yes$/\1no/' \
-i configure
fi
if ! use ogg; then
sed -e 's/\(ac_cv_lib_ogg_ogg_stream_packetin=\)yes$/\1no/' \
-i configure
fi
export PATH="${PATH}:/usr/kde/unsermake/"
econf $(use_with arts) || die "configure failed"
unsermake ${MAKEOPTS} || die "unsermake failed"
}
src_install() {
export PATH="${PATH}:/usr/kde/unsermake"
unsermake DESTDIR="${D}" install || die "unsermake install failed"
}
src_test() {
export PATH="${PATH}:/usr/kde/unsermake"
unsermake check
}
|