summaryrefslogtreecommitdiff
blob: 73dc392dd4830bf0aabec44403a85fbd900b9554 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Philippe Namias <pnamias@gentoo.org>

A=${P}.tar.bz2
S=${WORKDIR}/${P}
DESCRIPTION="KDE ${PV} - Multimedia"
SRC_PATH="kde/stable/${PV}/distribution/tar/generic/src/${A}"
SRC_URI="ftp://ftp.kde.org/pub/$SRC_PATH
	 ftp://ftp.sourceforge.net/pub/mirrors/$SRC_PATH"

HOMEPAGE="http://www.kde.org"

DEPEND=">=kde-base/kdelibs-${PV}
	>=sys-libs/ncurses-5.2
	alsa? ( >=media-libs/alsa-lib-0.5.9 )
	nas? ( >=media-sound/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 )
	slang? ( >=sys-libs/slang-1.4.4 )"
#	tcltk? ( =dev-lang/tcl-tk.8.0.5-r2 )

RDEPEND=$DEPEND

src_compile() {

    local myconf
    local myaudio
    local myinteface
    myaudio="--enable-audio=oss"
    myinterface="--enable-interface=xaw,ncurses"
    if [ -n "`use alsa`" ]
    then
      myconf="--with-alsa"
      myaudio="$myaudio,alsa"
    fi
    if [ -n "`use nas`" ]
    then
	myaudio="$myaudio,nas"
    fi
    if [ -n "`use esd`" ]
    then
	myaudio="$myaudio,esd"
    fi
    if [ -n "`use motif`" ]
    then
	myinterface="$myinterface,motif"
    fi
    if [ -n "`use gtk`" ]
    then
	myinterface="$myinterface,gtk"
    fi
# tcl tk does not work
#    if [ "`use tcltk`" ]
#    then
#	myinterface="$myinterface,tcltk"
#    fi
    if [ -n "`use slang`" ]
    then
	myinterface="$myinterface,slang"
    fi
    if [ "`use qtmt`" ]
    then
      myconf="$myconf --enable-mt"
    fi
    if [ "`use mitshm`" ]
    then
      myconf="$myconf --enable-mitshm"
    fi
    QTBASE=/usr/X11R6/lib/qt
    try ./configure --prefix=/opt/kde2.1 --host=${CHOST} \
		--with-qt-dir=$QTBASE \
		$myconf $myaudio $myinterface
    cp Makefile Makefile.orig
    try make
}

src_install() {
  try make install DESTDIR=${D}
  dodoc AUTHORS ChangeLog COPYING README*
}