diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-07 01:45:52 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-07 01:45:52 +0000 |
commit | a99b3ddc12ce8ec39d5f19ee6877c147c297032d (patch) | |
tree | 754264b8c63f23589611fc96306acbdfd06f7518 /app-editors | |
parent | Fixed missing digest. (diff) | |
download | gentoo-2-a99b3ddc12ce8ec39d5f19ee6877c147c297032d.tar.gz gentoo-2-a99b3ddc12ce8ec39d5f19ee6877c147c297032d.tar.bz2 gentoo-2-a99b3ddc12ce8ec39d5f19ee6877c147c297032d.zip |
*** empty log message ***
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/ktexmaker2/ktexmaker2-1.4.ebuild | 16 | ||||
-rw-r--r-- | app-editors/quanta/quanta-2.0-r1.ebuild | 12 |
2 files changed, 22 insertions, 6 deletions
diff --git a/app-editors/ktexmaker2/ktexmaker2-1.4.ebuild b/app-editors/ktexmaker2/ktexmaker2-1.4.ebuild index f15fefb89620..71ae2b10e6cc 100644 --- a/app-editors/ktexmaker2/ktexmaker2-1.4.ebuild +++ b/app-editors/ktexmaker2/ktexmaker2-1.4.ebuild @@ -8,13 +8,21 @@ DESCRIPTION="A Latex Editor and TeX shell for kde2" SRC_URI="http://xm1.net.free.fr/linux/${A}" HOMEPAGE="http://xm1.net.free.fr/linux/" -DEPEND=">=kde-base/kdelibs-2.1.1" +DEPEND=">=kde-base/kdelibs-2.1.1 sys-devel/perl" +RDEPEND=">=kde-base/kdelibs-2.1.1" -RDEPEND=$DEPEND src_compile() { - - try ./configure --prefix=${KDEDIR} --host=${CHOST} + local myconf + if [ "`use qtmt`" ] + then + myconf="--enable-mt" + fi + if [ "`use mitshm`" ] + then + myconf="$myconf --enable-mitshm" + fi + try ./configure --prefix=${KDEDIR} --host=${CHOST} $myconf try make } diff --git a/app-editors/quanta/quanta-2.0-r1.ebuild b/app-editors/quanta/quanta-2.0-r1.ebuild index b3471d7ea649..3777b71d0bca 100644 --- a/app-editors/quanta/quanta-2.0-r1.ebuild +++ b/app-editors/quanta/quanta-2.0-r1.ebuild @@ -13,8 +13,16 @@ DEPEND=">=kde-base/kdelibs-2.1.1" RDEPEND=$DEPEND src_compile() { - - try ./configure --prefix=${KDEDIR} --host=${CHOST} + local myconf + if [ "`use qtmt`" ] + then + myconf="--enable-mt" + fi + if [ "`use mitshm`" ] + then + myconf="$myconf --enable-mitshm" + fi + try ./configure --prefix=${KDEDIR} --host=${CHOST} $myconf try make } |