diff options
Diffstat (limited to 'dev-libs/gom/gom-0.3.3-r1.ebuild')
-rw-r--r-- | dev-libs/gom/gom-0.3.3-r1.ebuild | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/dev-libs/gom/gom-0.3.3-r1.ebuild b/dev-libs/gom/gom-0.3.3-r1.ebuild deleted file mode 100644 index 394c983e..00000000 --- a/dev-libs/gom/gom-0.3.3-r1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -GCONF_DEBUG="yes" -PYTHON_COMPAT=( python3_{4,5,6} ) - -inherit gnome.org gnome2-utils meson 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="doc +introspection test" - -RDEPEND=" - >=dev-db/sqlite-3.7:3 - >=dev-libs/glib-2.36:2 - introspection? ( >=dev-libs/gobject-introspection-1.30.0:= ) - ${PYTHON_DEPS} - >=dev-python/pygobject-3.16:3[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND} - doc? ( dev-util/gtk-doc ) - >=dev-util/intltool-0.40.0 - sys-devel/gettext - virtual/pkgconfig - test? ( x11-libs/gdk-pixbuf:2 ) -" -# TODO: make gdk-pixbuf properly optional with USE=test - -pkg_setup() { - python_setup -} - -src_prepare() { - default - python_copy_sources -} - -src_configure() { - local emesonargs=( - $(meson_use introspection enable-introspection) - $(meson_use doc enable-gtk-doc) - ) -# FIXME: is this needed??? - meson_src_configure - - python_foreach_impl run_in_build_dir \ - meson_src_configure -} - -src_install() { - meson_src_install - - - docinto examples - dodoc examples/*.py - - python_foreach_impl run_in_build_dir \ - meson_src_install DESTDIR="${D}" -} - -src_test() { - # tests may take a long time - python_foreach_impl run_in_build_dir \ - meson_src_test -} |