diff options
author | 2019-02-17 17:52:20 +0200 | |
---|---|---|
committer | 2019-02-17 18:04:54 +0200 | |
commit | cae385fb7636ff3fd9b2f735d46285a1ade1aa51 (patch) | |
tree | 062118632a79a7be01f5eab9912d697d38dcf1be /dev-libs/gom/gom-0.3.2-r1.ebuild | |
parent | media-gfx/graphite2: arm64 stable (bug #676956) (diff) | |
download | gentoo-cae385fb7636ff3fd9b2f735d46285a1ade1aa51.tar.gz gentoo-cae385fb7636ff3fd9b2f735d46285a1ade1aa51.tar.bz2 gentoo-cae385fb7636ff3fd9b2f735d46285a1ade1aa51.zip |
dev-libs/gom: fix pkg-config file libdir
Broke consumers that use meson on 17.1 gentoo profiles
Bug: https://bugs.gentoo.org/678190
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp <leio@gentoo.org>
Diffstat (limited to 'dev-libs/gom/gom-0.3.2-r1.ebuild')
-rw-r--r-- | dev-libs/gom/gom-0.3.2-r1.ebuild | 78 |
1 files changed, 78 insertions, 0 deletions
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..6589d8eb0a78 --- /dev/null +++ b/dev-libs/gom/gom-0.3.2-r1.ebuild @@ -0,0 +1,78 @@ +# 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 +} |