blob: 9d1d745c15d5cf70fe34f5e7838349d0509e7b19 (
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
57
58
59
60
61
62
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdemultimedia/kdemultimedia-3.0.1.ebuild,v 1.2 2002/05/16 17:07:30 danarmak Exp $
. /usr/portage/eclass/inherit.eclass || die
inherit kde-dist
DESCRIPTION="${DESCRIPTION}Multimedia"
newdepend ">=sys-libs/ncurses-5.2
>=media-sound/cdparanoia-3.9.8
>=media-libs/libvorbis-1.0_beta4
>=media-video/xanim-2.80.1
nas? ( >=media-libs/nas-1.4.1 )
esd? ( >=media-sound/esound-0.2.22 )
motif? ( >=x11-libs/openmotif-2.1.30 )
gtk? ( >=x11-libs/gtk+-1.2.10-r4 )
slang? ( >=sys-libs/slang-1.4.4 )
app-cdr/cdrtools
>=app-cdr/cdrdao-1.1.5
>=media-sound/mpg123-0.59r
tcltk? ( >=dev-lang/tcl-tk.8.0.5-r2 )"
#alsa? ( >=media-libs/alsa-lib-0.5.9 )
myaudio="--enable-audio=oss"
myinterface="--enable-interface=xaw,ncurses"
myconf="$myconf --enable-xaw --enable-ncurses"
#use alsa && myconf="$myconf --with-alsa --with-arts-alsa" && myaudio="$myaudio,alsa"|| myconf="$myconf --without-alsa --disable-alsa"
use nas && myaudio="$myaudio,nas" || myconf="$myconf --disable-nas"
use esd && myaudio="$myaudio,esd" || myconf="$myconf --disable-esd"
use motif && myinterface="$myinterface,motif" && myconf="$myconf --enable-motif"
use gtk && myinterface="$myinterface,gtk" && myconf="$myconf --enable-gtk"
use slang && myinterface="$myinterface,slang" && myconf="$myconf --enable-slang"
use tcltk && myinterface="$myinterface,tcltk" && myconf="$myconf --enable-tcltk"
myconf="$myconf $myaudio $myinterface"
src_unpack() {
base_src_unpack
cd ${S}
patch -p0 < ${FILESDIR}/${P}-gentoo-timidity.diff || die
#use alsa && patch -p0 < ${FILESDIR}/${P}-gentoo-alsa.diff
kde_sandbox_patch ${S}/kmidi/config
cd ${S}/kmidi/config
for x in Makefile.am Makefile.in; do
mv $x $x.orig
sed -e 's:TIMID_DIR = $(DESTDIR)/$(kde_datadir):TIMID_DIR = $(kde_datadir):g' $x.orig > $x
done
}
pkg_postinst() {
[ -n "`use alsa`" ] && einfo "WARNING: alsa support has been removed becuase of a bug in kdemm sources.
For further information see bug #2324 on bugs.gentoo.org and bug #39574 on bugs.kde.org.
Meanwhile, you can use the alsa oss emulation."
}
|