diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2018-11-17 18:18:21 +0100 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2018-11-17 18:21:53 +0100 |
commit | dfc99c2058fa2a623d10d11928d6eb531dfa966f (patch) | |
tree | c6736d1ddae2fddae197f8392d1a41f8391c6a22 /app-office/gnumeric | |
parent | app-office/gnumeric: bump to 1.12.43 (diff) | |
download | gentoo-dfc99c2058fa2a623d10d11928d6eb531dfa966f.tar.gz gentoo-dfc99c2058fa2a623d10d11928d6eb531dfa966f.tar.bz2 gentoo-dfc99c2058fa2a623d10d11928d6eb531dfa966f.zip |
app-office/gnumeric: add missing DTD to DEPEND
Delete unneeded SRC_URI. Make sure gobject-introspection can be
installed for all supported python versions.
Closes: https://bugs.gentoo.org/649390
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Gilles Dartiguelongue <eva@gentoo.org>
Diffstat (limited to 'app-office/gnumeric')
-rw-r--r-- | app-office/gnumeric/gnumeric-1.12.43.ebuild | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/app-office/gnumeric/gnumeric-1.12.43.ebuild b/app-office/gnumeric/gnumeric-1.12.43.ebuild index 84dd56b8e176..4f7ba1dc8029 100644 --- a/app-office/gnumeric/gnumeric-1.12.43.ebuild +++ b/app-office/gnumeric/gnumeric-1.12.43.ebuild @@ -3,20 +3,20 @@ EAPI="6" GNOME2_LA_PUNT="yes" -PYTHON_COMPAT=( python2_7 ) +PYTHON_COMPAT=( python2_7 python{3_4,3_5,3_6} ) -inherit gnome2 flag-o-matic python-single-r1 +inherit gnome2 flag-o-matic python-r1 DESCRIPTION="The GNOME Spreadsheet" HOMEPAGE="http://www.gnumeric.org/" LICENSE="GPL-2" -SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/gnumeric/1.12/gnumeric-1.12.43.tar.xz" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -IUSE="introspection libgda perl python" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +IUSE="+introspection libgda perl python" +# python-loader plugin is python2.7 only +REQUIRED_USE="python? ( $(python_gen_useflags -2) )" # Missing gnome-extra/libgnomedb required version in tree # but its upstream is dead and will be dropped soon. @@ -44,17 +44,23 @@ RDEPEND=" libgda? ( gnome-extra/libgda:5[gtk] ) " DEPEND="${RDEPEND} + app-text/docbook-xml-dtd:4.5 + app-text/yelp-tools dev-util/gtk-doc-am >=dev-util/intltool-0.35.0 - app-text/yelp-tools virtual/pkgconfig " -pkg_setup() { - use python && python-single-r1_pkg_setup +src_prepare() { + # Manage gi overrides ourselves + sed '/SUBDIRS/ s/introspection//' -i Makefile.{am,in} || die + gnome2_src_prepare } src_configure() { + if use python ; then + python_setup 'python2*' + fi gnome2_src_configure \ --disable-static \ --with-zlib \ @@ -63,3 +69,9 @@ src_configure() { $(use_with perl) \ $(use_with python) } + +src_install() { + gnome2_src_install + python_moduleinto gi.overrides + python_foreach_impl python_domodule introspection/gi/overrides/Gnm.py +} |