blob: 7b9d2fc87c7c902bc83cb17a15ef08b07a098baf (
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
|
# 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.0b_beta3.ebuild,v 1.1 2005/09/05 09:12:13 phosphan Exp $
inherit kde
MY_PV="1.0beta3b"
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"
DEPEND="lirc? ( app-misc/lirc )
media-libs/libsndfile
encode? ( media-sound/lame )
vorbis? ( media-libs/libvorbis )
ogg? ( media-libs/libogg )
arts? ( kde-base/arts )"
RDEPEND="${DEPEND}"
need-kde 3.2
src_compile() {
if ! use vorbis; then
sed -e 's/\(ac_cv_lib_vorbisenc_vorbis_encode_init=\)yes$/\1no/' \
-i configure || die "Couldn't disable vorbis support"
fi
if ! use encode; then
sed -e 's/\(ac_cv_lib_mp3lame_lame_init=\)yes$/\1no/' \
-i configure || die "Couldn't disable lame support"
fi
if ! use ogg; then
sed -e 's/\(ac_cv_lib_ogg_ogg_stream_packetin=\)yes$/\1no/' \
-i configure || die "Couldn't disable ogg support"
fi
export PATH="${PATH}:/usr/kde/unsermake/"
econf $(use_with arts) || die "configure failed"
emake || die "emake failed"
}
|