diff options
author | Mart Raudsepp <leio@gentoo.org> | 2006-10-12 03:54:10 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2006-10-12 03:54:10 +0000 |
commit | 7dd2f5bf02e27b99a6eb1ea78526c0ae6ebd63f5 (patch) | |
tree | 2794c05e03e01afa6d03144f88b0510c47e6ebb4 /x11-libs/vte | |
parent | Bump to 2.16.1 (diff) | |
download | gentoo-2-7dd2f5bf02e27b99a6eb1ea78526c0ae6ebd63f5.tar.gz gentoo-2-7dd2f5bf02e27b99a6eb1ea78526c0ae6ebd63f5.tar.bz2 gentoo-2-7dd2f5bf02e27b99a6eb1ea78526c0ae6ebd63f5.zip |
Version bump
(Portage version: 2.1.2_pre2-r8)
Diffstat (limited to 'x11-libs/vte')
-rw-r--r-- | x11-libs/vte/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/vte/files/digest-vte-0.14.1 | 3 | ||||
-rw-r--r-- | x11-libs/vte/vte-0.14.1.ebuild | 52 |
3 files changed, 61 insertions, 1 deletions
diff --git a/x11-libs/vte/ChangeLog b/x11-libs/vte/ChangeLog index 2edc8305be48..57d6169eef26 100644 --- a/x11-libs/vte/ChangeLog +++ b/x11-libs/vte/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/vte # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.130 2006/09/13 21:14:10 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.131 2006/10/12 03:54:10 leio Exp $ + +*vte-0.14.1 (12 Oct 2006) + + 12 Oct 2006; Mart Raudsepp <leio@gentoo.org> +vte-0.14.1.ebuild: + Version bump for Gnome 2.16 series 13 Sep 2006; Aron Griffis <agriffis@gentoo.org> vte-0.12.2.ebuild: Mark 0.12.2 stable on ia64. #139612 diff --git a/x11-libs/vte/files/digest-vte-0.14.1 b/x11-libs/vte/files/digest-vte-0.14.1 new file mode 100644 index 000000000000..aed345f10ba0 --- /dev/null +++ b/x11-libs/vte/files/digest-vte-0.14.1 @@ -0,0 +1,3 @@ +MD5 98ea2513b773b44cb7f8d75dc1aa312e vte-0.14.1.tar.bz2 1008999 +RMD160 74b76a5632f790a71b606127767b06f0ce0b6597 vte-0.14.1.tar.bz2 1008999 +SHA256 001b252018522a9dab890503a57949bd905d105dd317a2deca0e62f8cd16d6be vte-0.14.1.tar.bz2 1008999 diff --git a/x11-libs/vte/vte-0.14.1.ebuild b/x11-libs/vte/vte-0.14.1.ebuild new file mode 100644 index 000000000000..844e253611f9 --- /dev/null +++ b/x11-libs/vte/vte-0.14.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.14.1.ebuild,v 1.1 2006/10/12 03:54:10 leio Exp $ + +inherit eutils gnome2 autotools + +DESCRIPTION="Xft powered terminal widget" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug doc python opengl" + +RDEPEND=">=dev-libs/glib-2.9 + >=x11-libs/gtk+-2.6 + >=x11-libs/pango-1.1 + >=media-libs/freetype-2.0.2 + media-libs/fontconfig + sys-libs/ncurses + python? ( + >=dev-python/pygtk-2.4 + >=dev-lang/python-2.2 + ) + opengl? ( + virtual/opengl + virtual/glu + ) + || ( x11-libs/libX11 virtual/x11 ) + virtual/xft" + +DEPEND="${RDEPEND} + doc? ( >=dev-util/gtk-doc-1.0 ) + >=dev-util/intltool-0.35 + >=dev-util/pkgconfig-0.9 + sys-devel/gettext" + +DOCS="AUTHORS ChangeLog HACKING NEWS README" + +pkg_setup() { + G2CONF="$(use_enable debug debugging) $(use_enable python) \ + $(use_with opengl glX) --with-xft2 --with-pangox" +} + +src_unpack() { + gnome2_src_unpack + + epatch ${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch + + cd ${S}/gnome-pty-helper + eautomake +} |