summaryrefslogtreecommitdiff
blob: a69ed65629cdae952974cf344df1a84a2b4b8290 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-3.4.0-r2.ebuild,v 1.5 2005/07/08 23:20:48 swegener Exp $

inherit kde eutils flag-o-matic
set-qtdir 3
set-kdedir 3.4

DESCRIPTION="KDE libraries needed by all kde programs"
HOMEPAGE="http://www.kde.org/"
SRC_URI="mirror://kde/stable/3.4/src/${P}.tar.bz2
	mirror://kde/security_patches/post-3.4.0-kdelibs-kimgio-fixed.diff"

LICENSE="GPL-2 LGPL-2"
SLOT="3.4"
KEYWORDS="~x86 ~amd64 ~sparc ~ppc ~ppc64 ~ia64"
IUSE="alsa arts cups doc jpeg2k kerberos openexr spell ssl tiff zeroconf"

# kde.eclass has kdelibs in DEPEND, and we can't have that in here.
# so we recreate the entire DEPEND from scratch.
RDEPEND="arts? ( ~kde-base/arts-${PV} )
	>=x11-libs/qt-3.3.3
	app-arch/bzip2
	>=dev-libs/libxslt-1.1.4
	>=dev-libs/libxml2-2.6.6
	>=dev-libs/libpcre-4.2
	media-libs/libart_lgpl
	net-dns/libidn
	ssl? ( >=dev-libs/openssl-0.9.7d )
	alsa? ( media-libs/alsa-lib )
	cups? ( >=net-print/cups-1.1.19 )
	tiff? ( media-libs/tiff )
	kerberos? ( virtual/krb5 )
	jpeg2k? ( media-libs/jasper )
	openexr? ( >=media-libs/openexr-1.2 )
	spell? ( || ( app-text/aspell
		      app-text/ispell ) )
	zeroconf? ( net-misc/mDNSResponder )
	virtual/fam
	virtual/ghostscript"

DEPEND="${RDEPEND}
	>=sys-devel/autoconf-2.58
	>=sys-devel/automake-1.8
	doc? ( app-doc/doxygen )
	sys-devel/gettext"

# No longer needed; the bindings that required this (kdejava?) may need a patch
# from branch to work without this patch
#PATCHES="${FILESDIR}/${PN}-3.4.0_beta2-export-kio-symbols.diff"

src_unpack() {
	unpack ${P}.tar.bz2
	# This is an ugly hack: it makes base_src_unpack do nothing, but still lets us enjoy
	# the other things kde_src_unpack does.
	kde_src_unpack nounpack

	# Fix freezing in web forms (kde bug 100963). Applied for 3.4.1.
	epatch "${FILESDIR}/${P}-form-freeze.patch"

	# Fix forms with images (kde bug 59701). Applied for 3.4.1.
	epatch "${FILESDIR}/${P}-imagemap.patch"

	# see bug #63529.
	epatch ${FILESDIR}/${PN}-3.3.2-ppc64.patch

	# kimgio input validation errors, bug 88862
	cd ${S}/kimgio && patch -p0 < "${DISTDIR}/post-3.4.0-kdelibs-kimgio-fixed.diff"
}

src_compile() {
	myconf="--with-distribution=Gentoo --enable-libfam --enable-dnotify"
	myconf="${myconf} $(use_with alsa) $(use_with arts)"
	myconf="${myconf} $(use_with tiff) $(use_with jpeg2k jasper) $(use_with openexr)"
	myconf="${myconf} $(use_enable cups) $(use_enable zeroconf dnssd)"

	use ssl && myconf="${myconf} --with-ssl-dir=/usr" || myconf="${myconf} --without-ssl"

	use kerberos || myconf="${myconf} --with-gssapi=no"

	use x86 && myconf="${myconf} --enable-fast-malloc=full"

	# fix bug 58179, 85593
	use ppc64 && append-flags "-fno-gcse"

	kde_src_compile

	use doc && make apidox
}

src_install() {
	kde_src_install

	use doc && make DESTDIR=${D} install-apidox

	# needed to fix lib64 issues on amd64, see bug #45669
	use amd64 && ln -s ${KDEDIR}/lib ${D}/${KDEDIR}/lib64

	# Needed to create lib -> lib64 symlink for amd64 2005.0 profile
	if [ "${SYMLINK_LIB}" = "yes" ]; then
		dosym $(get_abi_LIBDIR ${DEFAULT_ABI}) ${KDEDIR}/lib
	fi

	if ! use arts ; then
		dodir /etc/env.d

		cat <<EOF > ${D}/etc/env.d/46kdepaths-${SLOT} # number goes down with version upgrade
PATH=${PREFIX}/bin
ROOTPATH=${PREFIX}/sbin:${PREFIX}/bin
LDPATH=${PREFIX}/lib
CONFIG_PROTECT="${PREFIX}/share/config ${PREFIX}/env ${PREFIX}/shutdown"
EOF
	fi

}