blob: 4203996d62e6dea45e0f55288f35b34817ac7bd3 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-3.1.5-r1.ebuild,v 1.4 2004/08/30 15:45:01 pvdabeel Exp $
inherit kde eutils
#don't inherit kde-base or kde-dist! it calls need-kde which adds kdelibs to depend!
IUSE="alsa cups doc ipv6 ssl"
DESCRIPTION="KDE libraries needed by all kde programs"
KEYWORDS="x86 ppc sparc alpha hppa amd64 ia64"
HOMEPAGE="http//www.kde.org/"
SLOT="3.1"
LICENSE="GPL-2 LGPL-2"
SRC_URI="mirror://kde/stable/$PV/src/${P}.tar.bz2"
DEPEND=">=sys-devel/autoconf-2.58
>=app-arch/bzip2-1.0.1
>=dev-libs/libxslt-1.0.7
>=dev-libs/libpcre-3.5
>=dev-libs/libxml2-2.4.10
ssl? ( >=dev-libs/openssl-0.9.6 )
alsa? ( media-libs/alsa-lib virtual/alsa )
cups? ( >=net-print/cups-1.1.14 )
>=media-libs/tiff-3.5.5
app-admin/fam
virtual/ghostscript
media-libs/libart_lgpl
sys-devel/gettext
>=x11-libs/qt-3.1.0
~kde-base/arts-1.1.5"
RDEPEND="$DEPEND
doc? ( ~app-doc/kdelibs-apidocs-$PV )
app-text/sgml-common
cups? ( net-print/cups )
dev-lang/python"
myconf="$myconf --with-distribution=Gentoo --enable-libfam --enable-dnotify"
use ipv6 || myconf="$myconf --with-ipv6-lookup=no"
use ssl && myconf="$myconf --with-ssl-dir=/usr" || myconf="$myconf --without-ssl"
use alsa && myconf="$myconf --with-alsa" || myconf="$myconf --without-alsa"
use cups && myconf="$myconf --enable-cups" || myconf="$myconf --disable-cups"
use x86 && myconf="$myconf --enable-fast-malloc=full"
set-kdedir $PV
src_unpack() {
kde_src_unpack
epatch ${FILESDIR}/post-3.1.5-kdelibs-kapplication.patch
epatch ${FILESDIR}/post-3.1.5-kdelibs-ktelnetservice.patch
use alpha && cd ${S} && epatch ${FILESDIR}/${P}-kjs-alphaev6-gcc3-workaround.patch
kde_sandbox_patch ${S}/kio/misc/kpac
}
src_install() {
kde_src_install
dohtml *.html
# kdelibs-apidocs is provided by kdelibs-apidocs ebuild, kdelibs ebuild
# shouldn't install anything into kdelibs-apidocs (bug #15102)
rm -r ${D}/$KDEDIR/share/doc/HTML/en/kdelibs-apidocs
}
|