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/quanta | |
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/quanta')
-rw-r--r-- | app-editors/quanta/quanta-2.0-r1.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
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 } |