diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-05-31 09:53:01 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-05-31 09:53:01 +0000 |
commit | cefc44cf182baf2f5b369b3cc51fff6b2510b69c (patch) | |
tree | 86b33a1f7fd2439aec6567d364d1f4807e2d6875 /gnome-extra | |
parent | Version bump (diff) | |
download | gentoo-2-cefc44cf182baf2f5b369b3cc51fff6b2510b69c.tar.gz gentoo-2-cefc44cf182baf2f5b369b3cc51fff6b2510b69c.tar.bz2 gentoo-2-cefc44cf182baf2f5b369b3cc51fff6b2510b69c.zip |
Version bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/gtkhtml/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-extra/gtkhtml/gtkhtml-4.8.1.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/gnome-extra/gtkhtml/ChangeLog b/gnome-extra/gtkhtml/ChangeLog index 6692228ad7ba..8a2345819857 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.288 2014/04/27 17:19:26 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.289 2014/05/31 09:53:01 pacho Exp $ + +*gtkhtml-4.8.1 (31 May 2014) + + 31 May 2014; Pacho Ramos <pacho@gentoo.org> +gtkhtml-4.8.1.ebuild: + Version bump *gtkhtml-4.8.0 (27 Apr 2014) diff --git a/gnome-extra/gtkhtml/gtkhtml-4.8.1.ebuild b/gnome-extra/gtkhtml/gtkhtml-4.8.1.ebuild new file mode 100644 index 000000000000..fceda0e92009 --- /dev/null +++ b/gnome-extra/gtkhtml/gtkhtml-4.8.1.ebuild @@ -0,0 +1,55 @@ +# 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.1.ebuild,v 1.1 2014/05/31 09:53:01 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="Lightweight HTML rendering/printing/editing engine" +HOMEPAGE="https://git.gnome.org/browse/gtkhtml" + +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 + >=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 +} |