diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-09-25 21:03:59 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-09-25 21:03:59 +0000 |
commit | f86eccbc4f82ea5276e8d166f63a8c54ef106868 (patch) | |
tree | aed2dceed9358cafc94f4324e1b66c71bea17b50 /eclass | |
parent | Changing X into gtk in IUSE (diff) | |
download | historical-f86eccbc4f82ea5276e8d166f63a8c54ef106868.tar.gz historical-f86eccbc4f82ea5276e8d166f63a8c54ef106868.tar.bz2 historical-f86eccbc4f82ea5276e8d166f63a8c54ef106868.zip |
DO NOT ignore the visibility for kde newer than 3.4.1 as the problem is STILL there.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde.eclass | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 5a38ae43b74b..c82f63ad8fa5 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -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/eclass/kde.eclass,v 1.132 2005/09/25 12:38:18 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.133 2005/09/25 21:03:59 flameeyes Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -60,12 +60,11 @@ kde_src_unpack() { touch $UIFILES fi - # Visiblity stuff is way broken before 3.4.2. Just disable it when it's present. - if [ "${PV}" = "3.4.1" ]; then - if grep KDE_ENABLE_HIDDEN_VISIBILITY configure.in &> /dev/null || ! [[ -f configure ]]; then - find ${S} -name configure.in.in | xargs sed -i -e 's:KDE_ENABLE_HIDDEN_VISIBILITY::g' - rm -f configure - fi + # Visiblity stuff *IS* broken. Just disable it when it's present. + # DON'T make this version-dependent, it's NOT version dependant. + if grep KDE_ENABLE_HIDDEN_VISIBILITY configure.in &> /dev/null || ! [[ -f configure ]]; then + find ${S} -name configure.in.in | xargs sed -i -e 's:KDE_ENABLE_HIDDEN_VISIBILITY::g' + rm -f configure fi } |