diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-08-22 11:29:04 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-08-22 11:29:04 +0000 |
commit | 0b3b27e0e71c44ef16fa542945a6a940c6057273 (patch) | |
tree | 21f1045c67f3ff80d949553879229dc48caee1c8 /kde-base/kdenetwork | |
parent | added xalf, see http://www.lysator.liu.se/~astrand/projects/xalf/ for descrip... (diff) | |
download | gentoo-2-0b3b27e0e71c44ef16fa542945a6a940c6057273.tar.gz gentoo-2-0b3b27e0e71c44ef16fa542945a6a940c6057273.tar.bz2 gentoo-2-0b3b27e0e71c44ef16fa542945a6a940c6057273.zip |
Multiple changes:
1. added kdegames, kdetoys modules
2. added objprelink support to all modules (use objprelink USE flag)
3. variable cleanup (${A}, ${V}) - made short and unified, removed misc. workarounds added for 2.2_beta1
4. $Header$ fixes
5. kdebase now installs, under /usr/X11R6/bin, the file 'kde22' and a symlink to it, 'kde'.
Diffstat (limited to 'kde-base/kdenetwork')
-rw-r--r-- | kde-base/kdenetwork/kdenetwork-2.2.ebuild | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/kde-base/kdenetwork/kdenetwork-2.2.ebuild b/kde-base/kdenetwork/kdenetwork-2.2.ebuild index 502c2116f64e..b20cbf0d9d86 100644 --- a/kde-base/kdenetwork/kdenetwork-2.2.ebuild +++ b/kde-base/kdenetwork/kdenetwork-2.2.ebuild @@ -1,19 +1,20 @@ # 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> +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdenetwork/kdenetwork-2.2.ebuild,v 1.2 2001/08/22 11:29:04 danarmak Exp $ -V=2.2 -A=${PN}-${V}.tar.bz2 -S=${WORKDIR}/${PN}-${V} -DESCRIPTION="KDE ${V} - Network" -SRC_PATH="kde/stable/${V}/src/${A}" +S=${WORKDIR}/${P} +DESCRIPTION="KDE ${PV} - Network" +SRC_PATH="kde/stable/${PV}/src/${P}.tar.bz2" SRC_URI="ftp://ftp.kde.org/pub/$SRC_PATH ftp://ftp.fh-heilbronn.de/pub/mirrors/$SRC_PATH - ftp://ftp.sourceforge.net/pub/mirrors/$SRC_PATH" + ftp://ftp.sourceforge.net/pub/mirrors/$SRC_PATH + http://www.research.att.com/~leonb/objprelink/kde-admin-acinclude.patch" HOMEPAGE="http://www.kde.org" -DEPEND=">=kde-base/kdelibs-${PV}" +DEPEND=">=kde-base/kdelibs-${PV} + objprelink? ( dev-util/objprelink )" RDEPEND=$DEPEND @@ -28,6 +29,9 @@ src_compile() { then myconf="$myconf --enable-mitshm" fi + if [ "`use objprelink`" ] ; then + myconf="$myconf --enable-objprelink" + fi try ./configure --prefix=${KDEDIR} --host=${CHOST} \ --with-qt-dir=$QTBASE --with-xinerama $myconf try make |