media-libs/gexiv2: Fix compilation (bug #613778)
authorSebastian Pipping <sping@gentoo.org>
Wed, 29 Mar 2017 22:43:28 +0000 (00:43 +0200)
committerSebastian Pipping <sping@gentoo.org>
Wed, 29 Mar 2017 22:44:43 +0000 (00:44 +0200)
Thanks to Markus Moll for the patch!

Package-Manager: Portage-2.3.5, Repoman-2.3.2

media-libs/gexiv2/files/gexiv2-0.10.5-stdexcept.patch [new file with mode: 0644]
media-libs/gexiv2/gexiv2-0.10.5-r1.ebuild [new file with mode: 0644]

diff --git a/media-libs/gexiv2/files/gexiv2-0.10.5-stdexcept.patch b/media-libs/gexiv2/files/gexiv2-0.10.5-stdexcept.patch
new file mode 100644 (file)
index 0000000..dc9c582
--- /dev/null
@@ -0,0 +1,11 @@
+diff -Naur gexiv2-0.10.5/gexiv2/gexiv2-metadata-gps.cpp gexiv2-0.10.5b/gexiv2/gexiv2-metadata-gps.cpp
+--- gexiv2-0.10.5/gexiv2/gexiv2-metadata-gps.cpp       2017-03-19 18:00:55.000000000 +0100
++++ gexiv2-0.10.5b/gexiv2/gexiv2-metadata-gps.cpp      2017-03-26 09:45:44.638692802 +0200
+@@ -12,6 +12,7 @@
+ #include "gexiv2-metadata-private.h"
+ #include <string>
+ #include <cmath>
++#include <stdexcept>
+ #include <stdio.h>
+ #include <glib-object.h>
+ #include <exiv2/exif.hpp>
diff --git a/media-libs/gexiv2/gexiv2-0.10.5-r1.ebuild b/media-libs/gexiv2/gexiv2-0.10.5-r1.ebuild
new file mode 100644 (file)
index 0000000..8ba9a36
--- /dev/null
@@ -0,0 +1,60 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit autotools eutils multilib python-r1 toolchain-funcs versionator xdg-utils
+
+MY_PV=$(get_version_component_range 1-2)
+
+DESCRIPTION="GObject-based wrapper around the Exiv2 library"
+HOMEPAGE="https://wiki.gnome.org/Projects/gexiv2"
+SRC_URI="mirror://gnome/sources/${PN}/${MY_PV}/${P}.tar.xz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="introspection python static-libs test"
+
+REQUIRED_USE="
+       python? ( introspection ${PYTHON_REQUIRED_USE} )
+       test? ( python )
+"
+
+RDEPEND="${PYTHON_DEPS}
+       >=dev-libs/glib-2.26.1:2
+       >=media-gfx/exiv2-0.21:0=
+       introspection? ( dev-libs/gobject-introspection:= )"
+DEPEND="${RDEPEND}
+       virtual/pkgconfig"
+
+PATCHES=(
+       "${FILESDIR}"/${PN}-0.10.5-stdexcept.patch
+)
+
+src_prepare() {
+       xdg_environment_reset
+       tc-export CXX
+       default
+       eautoreconf
+}
+
+src_configure() {
+       econf \
+               $(use_enable introspection) \
+               $(use_enable static-libs static)
+}
+
+src_install() {
+       emake DESTDIR="${D}" LIB="$(get_libdir)" install
+       dodoc AUTHORS NEWS README THANKS
+
+       if use python ; then
+               python_moduleinto gi/overrides/
+               python_foreach_impl python_domodule GExiv2.py
+       fi
+
+       use static-libs || prune_libtool_files --modules
+}