diff options
author | Dan Armak <danarmak@gentoo.org> | 2002-09-11 07:45:08 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2002-09-11 07:45:08 +0000 |
commit | 3d7e4f87e77638737d05a5a4fbb0e6dc6143e848 (patch) | |
tree | d90e2286aed49fbcd3d48a112f605dd1f9d96b7e /kde-base/kdelibs/kdelibs-2.2.2a.ebuild | |
parent | unmasking pcmcia-cs-3.2.1-r1 to so the world can have the fixes (diff) | |
download | gentoo-2-3d7e4f87e77638737d05a5a4fbb0e6dc6143e848.tar.gz gentoo-2-3d7e4f87e77638737d05a5a4fbb0e6dc6143e848.tar.bz2 gentoo-2-3d7e4f87e77638737d05a5a4fbb0e6dc6143e848.zip |
same security fix as became 3.0.3a, for kde2
Diffstat (limited to 'kde-base/kdelibs/kdelibs-2.2.2a.ebuild')
-rw-r--r-- | kde-base/kdelibs/kdelibs-2.2.2a.ebuild | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/kde-base/kdelibs/kdelibs-2.2.2a.ebuild b/kde-base/kdelibs/kdelibs-2.2.2a.ebuild new file mode 100644 index 000000000000..034a8c7f8a21 --- /dev/null +++ b/kde-base/kdelibs/kdelibs-2.2.2a.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdelibs/kdelibs-2.2.2a.ebuild,v 1.1 2002/09/11 07:45:08 danarmak Exp $ +inherit kde kde.org +#don't inherit kde-dist! it calls need-kde which adds kdelibs to depend -> circular deps! + +DESCRIPTION="KDE $PV - base libraries needed by all kde programs" +KEYWORDS="x86 sparc sparc64" +HOMEPAGE="http//www.kde.org/" + +SLOT="2" +LICENSE="GPL-2 LGPL-2" + +# kde 2.2.2 is no longer on kde mirrors, but we still have it +SRC_URI="mirror://gentoo/kdelibs-2.2.2.tar.bz2" +S=$WORKDIR/kdelibs-2.2.2 + +# kde.eclass has kdelibs in DEPEND, and we can't have that in here. so we recreate the entire +# DEPEND from scratch. +DEPEND="" +RDEPEND="" +newdepend ">=sys-devel/gcc-2.95.2 + virtual/glibc + sys-devel/ld.so + sys-devel/perl + >=media-libs/audiofile-0.1.9 + >=sys-apps/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-0.5.9 ) + cups? ( net-print/cups ) + >=media-libs/tiff-3.5.5 + app-admin/fam-oss" + +DEPEND="$DEPEND + sys-devel/make + sys-devel/autoconf + sys-devel/automake" + +RDEPEND="$RDEPEND + app-text/sgml-common + cups? ( net-print/cups ) + dev-lang/python" + +myconf="$myconf --enable-final" + +qtver-from-kdever $PV +need-qt $selected_version + +set-kdedir $PV + +PATCHES="$FILESDIR/$P-crosside.diff" + +src_unpack() { + + base_src_unpack + + kde_sandbox_patch ${S}/{arts/soundserver,kio/kpac} + +} + +src_compile() { + + kde_src_compile myconf + + 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" + + kde_src_compile configure make + +} + +src_install() { + + kde_src_install + + dohtml *.html + + dodir /etc/env.d + + if [ "${PREFIX}" != "/usr/kde/2" ]; then +echo "PATH=${PREFIX}/bin:/usr/kde/2/bin +ROOTPATH=${PREFIX}/bin:/usr/kde/2/bin +LDPATH=${PREFIX}/lib:/usr/kde/2/lib" > ${D}/etc/env.d/70kdelibs-${PV} + else +echo "PATH=${PREFIX}/bin +ROOTPATH=${PREFIX}/bin +LDPATH=${PREFIX}/lib" > ${D}/etc/env.d/70kdelibs-${PV} + fi + + echo "KDEDIR=/usr/kde/2" > ${D}/etc/env.d/40kdedir-${PV} + +} + + |