blob: 62fb0db44aef47c79b3fc2d3fa042bca88c56742 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kaudiocreator/kaudiocreator-3.5.2.ebuild,v 1.9 2006/09/03 10:21:11 kloeri Exp $
KMNAME=kdemultimedia
MAXKDEVER=$PV
KM_DEPRANGE="$PV $MAXKDEVER"
inherit kde-meta eutils
DESCRIPTION="KDE CD ripper and audio encoder frontend"
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
IUSE="encode flac mp3 vorbis"
DEPEND="$(deprange $PV $MAXKDEVER kde-base/libkcddb)
media-sound/cdparanoia"
# External encoders used - no optional compile-time support
RDEPEND="$DEPEND
$(deprange $PV $MAXKDEVER kde-base/kdemultimedia-kioslaves)
encode? ( vorbis? ( media-sound/vorbis-tools )
flac? ( media-libs/flac )
mp3? ( media-sound/lame ) )"
KMCOPYLIB="libkcddb libkcddb"
KMEXTRACTONLY="libkcddb"
KMCOMPILEONLY="kscd
libkcddb/"
src_compile () {
DO_NOT_COMPILE=libkcddb kde-meta_src_compile myconf configure
cd $S/libkcddb && make configbase.h cdinfodialogbase.h
# Library deps seems not to be built as they should :/
cd $S/kscd/libwm/audio && make libworkmanaudio.la && \
cd $S/kscd/libwm && make libworkman.la && \
cd $S/kscd && make libkcompactdisc.la || \
die "failed to make prerequisite libraries."
DO_NOT_COMPILE=libkcddb kde-meta_src_compile make
}
|