diff options
author | Dan Armak <danarmak@gentoo.org> | 2001-09-19 19:37:48 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2001-09-19 19:37:48 +0000 |
commit | 0a6d12bbe48b470b80bdef580b959464187c6236 (patch) | |
tree | f96f7a438f1fcaca32c0ddec3741f65c6e1e4419 /app-office/koffice | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-0a6d12bbe48b470b80bdef580b959464187c6236.tar.gz gentoo-2-0a6d12bbe48b470b80bdef580b959464187c6236.tar.bz2 gentoo-2-0a6d12bbe48b470b80bdef580b959464187c6236.zip |
fixes for kde-dependant ebuilds. new kde-i18n ebuilds for kde 2.2.1
Diffstat (limited to 'app-office/koffice')
-rw-r--r-- | app-office/koffice/koffice-2.1.1_beta3-r1.ebuild | 9 | ||||
-rw-r--r-- | app-office/koffice/koffice-2.1.1_beta3.ebuild | 7 |
2 files changed, 7 insertions, 9 deletions
diff --git a/app-office/koffice/koffice-2.1.1_beta3-r1.ebuild b/app-office/koffice/koffice-2.1.1_beta3-r1.ebuild index 6eab8833e3c3..f6f4044e7514 100644 --- a/app-office/koffice/koffice-2.1.1_beta3-r1.ebuild +++ b/app-office/koffice/koffice-2.1.1_beta3-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-2.1.1_beta3-r1.ebuild,v 1.1 2001/07/08 01:27:12 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-2.1.1_beta3-r1.ebuild,v 1.2 2001/09/19 19:37:47 danarmak Exp $ P=${PN}-1.1-beta3 A=${P}.tar.bz2 @@ -29,7 +29,6 @@ src_unpack() { } src_compile() { - QTBASE=/usr/X11R6/lib/qt local myconf if [ "`use qtmt`" ] then @@ -39,9 +38,9 @@ src_compile() { then myconf="$myconf --enable-mitshm" fi - try ./configure --prefix=$KDEDIR --host=${CHOST} \ - --with-qt-dir=$QTBASE $myconf - try make + ./configure --host=${CHOST} \ + $myconf || die + make || die } src_install() { diff --git a/app-office/koffice/koffice-2.1.1_beta3.ebuild b/app-office/koffice/koffice-2.1.1_beta3.ebuild index d34d2afe1b37..e4f0f22cc7c8 100644 --- a/app-office/koffice/koffice-2.1.1_beta3.ebuild +++ b/app-office/koffice/koffice-2.1.1_beta3.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-2.1.1_beta3.ebuild,v 1.1 2001/06/29 16:20:19 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/koffice/koffice-2.1.1_beta3.ebuild,v 1.2 2001/09/19 19:37:47 danarmak Exp $ P=${PN}-1.1-beta3 A=${P}.tar.bz2 @@ -29,7 +29,6 @@ src_unpack() { } src_compile() { - QTBASE=/usr/X11R6/lib/qt local myconf if [ "`use qtmt`" ] then @@ -39,8 +38,8 @@ src_compile() { then myconf="$myconf --enable-mitshm" fi - try ./configure --prefix=$KDEDIR --host=${CHOST} \ - --with-qt-dir=$QTBASE $myconf + try ./configure --host=${CHOST} \ + $myconf try make } |