diff options
author | 2013-05-06 21:56:42 +0000 | |
---|---|---|
committer | 2013-05-06 21:56:42 +0000 | |
commit | 6bb78b6f0f01a4e28a7f54d3417f519fc629a232 (patch) | |
tree | 27f97ccbe92dbc4504fec0c8157f78d662fa83ae /media-libs/gegl/gegl-0.2.0-r1.ebuild | |
parent | Install /var/log/portage/elog for bug #415911. (diff) | |
download | gentoo-2-6bb78b6f0f01a4e28a7f54d3417f519fc629a232.tar.gz gentoo-2-6bb78b6f0f01a4e28a7f54d3417f519fc629a232.tar.bz2 gentoo-2-6bb78b6f0f01a4e28a7f54d3417f519fc629a232.zip |
media-libs/gegl: Compile fix (bug #468248)
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)
Diffstat (limited to 'media-libs/gegl/gegl-0.2.0-r1.ebuild')
-rw-r--r-- | media-libs/gegl/gegl-0.2.0-r1.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/media-libs/gegl/gegl-0.2.0-r1.ebuild b/media-libs/gegl/gegl-0.2.0-r1.ebuild index 109adbb62168..4d8e2400774c 100644 --- a/media-libs/gegl/gegl-0.2.0-r1.ebuild +++ b/media-libs/gegl/gegl-0.2.0-r1.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.2.0-r1.ebuild,v 1.13 2013/05/02 14:03:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/gegl/gegl-0.2.0-r1.ebuild,v 1.14 2013/05/06 21:56:42 sping Exp $ EAPI=4 VALA_MIN_API_VERSION=0.14 VALA_USE_DEPEND=vapigen -inherit vala gnome2-utils eutils autotools +inherit versionator vala gnome2-utils eutils autotools DESCRIPTION="A graph based image processing framework" HOMEPAGE="http://www.gegl.org/" @@ -65,6 +65,10 @@ src_prepare() { epatch "${FILESDIR}"/${P}-g_log_domain.patch eautoreconf + # https://bugs.gentoo.org/show_bug.cgi?id=468248 + local deps_file="${PN}/${PN}-$(get_version_component_range 1-2).deps" + [[ -f "${deps_file}" ]] || touch "${deps_file}" + use vala && vala_src_prepare } |