From 16449a80e28af2209916cc66d19c9a44ca2b90d9 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 20 Feb 2019 15:11:50 +0000 Subject: gentoo resync : 20.02.2019 --- dev-libs/gom/gom-0.3.2-r1.ebuild | 77 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 dev-libs/gom/gom-0.3.2-r1.ebuild (limited to 'dev-libs/gom/gom-0.3.2-r1.ebuild') diff --git a/dev-libs/gom/gom-0.3.2-r1.ebuild b/dev-libs/gom/gom-0.3.2-r1.ebuild new file mode 100644 index 000000000000..384abeb6ccdc --- /dev/null +++ b/dev-libs/gom/gom-0.3.2-r1.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="5" +GCONF_DEBUG="yes" +PYTHON_COMPAT=( python{3_4,3_5,3_6} ) + +inherit epatch gnome2 python-r1 + +DESCRIPTION="GObject to SQLite object mapper library" +HOMEPAGE="https://wiki.gnome.org/Projects/Gom" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86" +IUSE="+introspection python" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} introspection )" + +RDEPEND=" + >=dev-db/sqlite-3.7:3 + >=dev-libs/glib-2.36:2 + introspection? ( >=dev-libs/gobject-introspection-1.30.0:= ) + python? ( + ${PYTHON_DEPS} + >=dev-python/pygobject-3.16:3[${PYTHON_USEDEP}] ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.14 + >=dev-util/intltool-0.40.0 + sys-devel/gettext + virtual/pkgconfig + x11-libs/gdk-pixbuf:2 +" +# TODO: make gdk-pixbuf properly optional with USE=test + +pkg_setup() { + use python && python_setup +} + +src_prepare() { + epatch "${FILESDIR}"/${PV}-fix-pkgconfig.patch + gnome2_src_prepare + + use python && python_copy_sources +} + +src_configure() { + # glibtest is a relic from AM_PATH_GLIB macro + local myconf=( + --disable-static + --disable-glibtest + ) + + gnome2_src_configure \ + ${myconf[@]} \ + --disable-python \ + $(use_enable introspection) + + if use python ; then + python_foreach_impl run_in_build_dir \ + gnome2_src_configure \ + ${myconf[@]} \ + --enable-python + fi +} + +src_install() { + gnome2_src_install + + if use python ; then + docinto examples + dodoc examples/*.py + + python_foreach_impl run_in_build_dir \ + emake DESTDIR="${D}" install-overridesPYTHON + fi +} -- cgit v1.2.3