diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2011-12-07 18:52:22 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2011-12-07 18:52:22 +0000 |
commit | 202c5068ebffb4eb0e9f2f30edd959262dc45498 (patch) | |
tree | 06bdd81ac653a8307c0c3500fd5a246e7e54d02e /x11-libs | |
parent | spidermonkey-1.9.2.x was renamed to 1.8.2.x; mask 1.9.2.x for bug #393473. (diff) | |
download | gentoo-2-202c5068ebffb4eb0e9f2f30edd959262dc45498.tar.gz gentoo-2-202c5068ebffb4eb0e9f2f30edd959262dc45498.tar.bz2 gentoo-2-202c5068ebffb4eb0e9f2f30edd959262dc45498.zip |
depend on vala and workaround broken configure script
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/libfm/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/libfm/libfm-9999.ebuild | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/x11-libs/libfm/ChangeLog b/x11-libs/libfm/ChangeLog index 48518b031ae4..ec0fea7280bf 100644 --- a/x11-libs/libfm/ChangeLog +++ b/x11-libs/libfm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-libs/libfm # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.57 2011/12/07 07:40:35 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/ChangeLog,v 1.58 2011/12/07 18:52:22 hwoarang Exp $ + + 07 Dec 2011; Markos Chandras <hwoarang@gentoo.org> libfm-9999.ebuild: + depend on vala and workaround broken configure script 07 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> libfm-0.1.17.ebuild: x86 stable wrt bug #382255 diff --git a/x11-libs/libfm/libfm-9999.ebuild b/x11-libs/libfm/libfm-9999.ebuild index 92b27369daa0..116a729067d3 100644 --- a/x11-libs/libfm/libfm-9999.ebuild +++ b/x11-libs/libfm/libfm-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v 1.19 2011/12/04 09:56:00 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libfm/libfm-9999.ebuild,v 1.20 2011/12/07 18:52:22 hwoarang Exp $ EAPI=3 @@ -24,6 +24,7 @@ RDEPEND="${COMMON_DEPEND} x11-misc/shared-mime-info udev? ( sys-fs/udisks )" DEPEND="${COMMON_DEPEND} + >=dev-lang/vala-0.14.0 dev-util/gtk-doc-am doc? ( dev-util/gtk-doc @@ -46,6 +47,10 @@ src_prepare() { echo "data/ui/"${trans}.ui >> po/POTFILES.in done sed -i -e "s:-O0::" -e "/-DG_ENABLE_DEBUG/s: -g::" "${S}"/configure.ac || die + myvalaver="$(best_version dev-lang/vala | sed -e's@dev-lang/vala-\([0-9]*\.[0-9]*\)\..*@\1@g')" + myvalac="$(type -p valac-${myvalaver})" + [[ -x "${myvalac}" ]] || die "Vala compiler ${myvalac} not found" + export VALAC=${myvalac} eautoreconf } |