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 | 8e6d0bc642d86ab75955328333ca12558a9c63b2 (patch) | |
tree | 73b4948b3d11293f9a88a42199799a709731926e /kde-apps/quanta/quanta-2.0-r1.ebuild | |
parent | Fixed missing digest. (diff) | |
download | historical-8e6d0bc642d86ab75955328333ca12558a9c63b2.tar.gz historical-8e6d0bc642d86ab75955328333ca12558a9c63b2.tar.bz2 historical-8e6d0bc642d86ab75955328333ca12558a9c63b2.zip |
*** empty log message ***
Diffstat (limited to 'kde-apps/quanta/quanta-2.0-r1.ebuild')
-rw-r--r-- | kde-apps/quanta/quanta-2.0-r1.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/kde-apps/quanta/quanta-2.0-r1.ebuild b/kde-apps/quanta/quanta-2.0-r1.ebuild index b3471d7ea649..3777b71d0bca 100644 --- a/kde-apps/quanta/quanta-2.0-r1.ebuild +++ b/kde-apps/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 } |