diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-09-16 00:58:19 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-09-16 00:58:19 +0000 |
commit | 9c4df3b2d2bd4942a11a9b51be1892765dbc825a (patch) | |
tree | d64f5633230465dc0fa022581e6cdaf4ff874139 /sys-libs | |
parent | Fix vala.eclass usage (bug #435158, thanks to Alexandre and Rafał Mużyło) ... (diff) | |
download | gentoo-2-9c4df3b2d2bd4942a11a9b51be1892765dbc825a.tar.gz gentoo-2-9c4df3b2d2bd4942a11a9b51be1892765dbc825a.tar.bz2 gentoo-2-9c4df3b2d2bd4942a11a9b51be1892765dbc825a.zip |
Do not call vala_src_prepare when USE=-vala, it dies if vala is not found.
(Portage version: 2.2.0_alpha128/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/libosinfo/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/libosinfo/libosinfo-0.2.0.ebuild | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/sys-libs/libosinfo/ChangeLog b/sys-libs/libosinfo/ChangeLog index 56bf7306e561..c6b25cc77123 100644 --- a/sys-libs/libosinfo/ChangeLog +++ b/sys-libs/libosinfo/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/libosinfo # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/ChangeLog,v 1.11 2012/09/15 12:05:12 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/ChangeLog,v 1.12 2012/09/16 00:58:19 tetromino Exp $ + + 16 Sep 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + libosinfo-0.2.0.ebuild: + Do not call vala_src_prepare when USE=-vala, it dies if vala is not found. *libosinfo-0.2.0 (15 Sep 2012) diff --git a/sys-libs/libosinfo/libosinfo-0.2.0.ebuild b/sys-libs/libosinfo/libosinfo-0.2.0.ebuild index 21bc25f0d9a3..0aaac7dc771a 100644 --- a/sys-libs/libosinfo/libosinfo-0.2.0.ebuild +++ b/sys-libs/libosinfo/libosinfo-0.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/libosinfo-0.2.0.ebuild,v 1.1 2012/09/15 12:05:12 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libosinfo/libosinfo-0.2.0.ebuild,v 1.2 2012/09/16 00:58:19 tetromino Exp $ EAPI=4 VALA_MIN_API_VERSION="0.16" @@ -33,6 +33,10 @@ DEPEND="${RDEPEND} DOCS="AUTHORS ChangeLog NEWS README" +src_prepare() { + use vala && vala_src_prepare +} + src_configure() { local udevdir=/lib/udev has_version sys-fs/udev && udevdir="$($(tc-getPKG_CONFIG) --variable=udevdir udev)" |