diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2014-04-27 17:19:26 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2014-04-27 17:19:26 +0000 |
commit | 876f2211937b00ed1f43d19514e7caa09fd1a940 (patch) | |
tree | 53166070770d28a2d1dd0fc7d55654cc4b9b2a1d /gnome-extra/gtkhtml | |
parent | Version bump for Gnome 3.12. (diff) | |
download | gentoo-2-876f2211937b00ed1f43d19514e7caa09fd1a940.tar.gz gentoo-2-876f2211937b00ed1f43d19514e7caa09fd1a940.tar.bz2 gentoo-2-876f2211937b00ed1f43d19514e7caa09fd1a940.zip |
Version bump for Gnome 3.12.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'gnome-extra/gtkhtml')
-rw-r--r-- | gnome-extra/gtkhtml/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-extra/gtkhtml/gtkhtml-4.8.0.ebuild | 56 |
2 files changed, 62 insertions, 1 deletions
diff --git a/gnome-extra/gtkhtml/ChangeLog b/gnome-extra/gtkhtml/ChangeLog index cd91168724f5..6692228ad7ba 100644 --- a/gnome-extra/gtkhtml/ChangeLog +++ b/gnome-extra/gtkhtml/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnome-extra/gtkhtml # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.287 2014/04/26 19:27:08 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.288 2014/04/27 17:19:26 eva Exp $ + +*gtkhtml-4.8.0 (27 Apr 2014) + + 27 Apr 2014; Gilles Dartiguelongue <eva@gentoo.org> +gtkhtml-4.8.0.ebuild: + Version bump for Gnome 3.12. 26 Apr 2014; Pacho Ramos <pacho@gentoo.org> -gtkhtml-4.6.4.ebuild, -gtkhtml-4.6.5.ebuild: diff --git a/gnome-extra/gtkhtml/gtkhtml-4.8.0.ebuild b/gnome-extra/gtkhtml/gtkhtml-4.8.0.ebuild new file mode 100644 index 000000000000..e1b66f426512 --- /dev/null +++ b/gnome-extra/gtkhtml/gtkhtml-4.8.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-4.8.0.ebuild,v 1.1 2014/04/27 17:19:26 eva Exp $ + +EAPI="5" +GCONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="Lightweight HTML rendering/printing/editing engine" +HOMEPAGE="http://projects.gnome.org/evolution/" + +LICENSE="GPL-2+ LGPL-2+" +SLOT="4.0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" +IUSE="" + +# orbit is referenced in configure, but is not used anywhere else +RDEPEND=" + >=x11-libs/gtk+-3.2:3 + >=x11-libs/cairo-1.10:= + x11-libs/pango + >=x11-themes/gnome-icon-theme-2.22.0 + >=app-text/enchant-1.1.7:= + gnome-base/gsettings-desktop-schemas + >=app-text/iso-codes-0.49 + >=net-libs/libsoup-2.26.0:2.4 +" +DEPEND="${RDEPEND} + x11-proto/xproto + sys-devel/gettext + >=dev-util/intltool-0.40.0 + virtual/pkgconfig +" + +src_prepare() { + # Reason? + ELTCONF="--reverse-deps" + + # Regenerate marshallers for <glib-2.31 compatibility + rm -v components/editor/gtkhtml-spell-marshal.{c,h} \ + components/editor/gtkhtml-editor-marshal.{c,h} || die + + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure --disable-static +} + +src_install() { + gnome2_src_install + + # Don't collide with 3.14 slot + mv "${ED}"/usr/bin/gtkhtml-editor-test{,-${SLOT}} || die +} |