diff options
author | Caleb Tennis <caleb@gentoo.org> | 2004-12-28 21:12:56 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2004-12-28 21:12:56 +0000 |
commit | db7f469177a4d3aa0fe67de59b15c1b40f1b3ceb (patch) | |
tree | 4b9196c5f134a05727fabc9c7a857d59e2f6e62e /x11-libs | |
parent | Moved hdf and hdf5 from dev-libs to sci-libs (diff) | |
download | historical-db7f469177a4d3aa0fe67de59b15c1b40f1b3ceb.tar.gz historical-db7f469177a4d3aa0fe67de59b15c1b40f1b3ceb.tar.bz2 historical-db7f469177a4d3aa0fe67de59b15c1b40f1b3ceb.zip |
make qt_use a little simpler
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/qt/Manifest | 2 | ||||
-rw-r--r-- | x11-libs/qt/qt-4.0.0_beta1-r1.ebuild | 10 |
2 files changed, 3 insertions, 9 deletions
diff --git a/x11-libs/qt/Manifest b/x11-libs/qt/Manifest index 8c73c2d6281a..cc4ac09fc51c 100644 --- a/x11-libs/qt/Manifest +++ b/x11-libs/qt/Manifest @@ -1,4 +1,4 @@ -MD5 2f457b461a5839260136dfb926997dfd qt-4.0.0_beta1-r1.ebuild 4958 +MD5 69142a64de29b866aa75da0bba112869 qt-4.0.0_beta1-r1.ebuild 4899 MD5 6e61efd43e5e4d7d3a18031b108a331b qt-3.3.3-r1.ebuild 8034 MD5 a5c51d879fff01b6f6b8128088bbe3c4 qt-3.3.2.ebuild 6893 MD5 f769105ec9340901a442a9e9880f504d qt-2.3.2-r1.ebuild 2287 diff --git a/x11-libs/qt/qt-4.0.0_beta1-r1.ebuild b/x11-libs/qt/qt-4.0.0_beta1-r1.ebuild index fcf0ff50897c..b3681fe1199e 100644 --- a/x11-libs/qt/qt-4.0.0_beta1-r1.ebuild +++ b/x11-libs/qt/qt-4.0.0_beta1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/qt-4.0.0_beta1-r1.ebuild,v 1.3 2004/12/28 20:56:28 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt/qt-4.0.0_beta1-r1.ebuild,v 1.4 2004/12/28 21:12:56 caleb Exp $ inherit eutils flag-o-matic @@ -47,11 +47,7 @@ export QTDIR=${S} export PLATFORM=linux-g++ qt_use() { - if useq $1; then - echo "-${1}" - else - echo "-no-${1}" - fi + useq ${1} && echo "-${1}" || echo "-no-${1}" return 0 } @@ -64,8 +60,6 @@ src_unpack() { cp configure configure.orig sed -e 's:read acceptance:acceptance=yes:' configure.orig > configure -# epatch ${FILESDIR}/qt-no-rpath-uic.patch - cd mkspecs/linux-g++ # set c/xxflags and ldflags strip-flags |