diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2007-10-28 23:17:32 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2007-10-28 23:17:32 +0000 |
commit | 2d5dad1897772be5d88eac3107dcc4c675de8685 (patch) | |
tree | 975b2b1b93915f79dc6b4e21a4bbd2bee08f6069 /x11-libs/gtk+ | |
parent | fix QA warnings for app-vim/gtk-syntax prior to commiting changes in gtk+ (diff) | |
download | gentoo-2-2d5dad1897772be5d88eac3107dcc4c675de8685.tar.gz gentoo-2-2d5dad1897772be5d88eac3107dcc4c675de8685.tar.bz2 gentoo-2-2d5dad1897772be5d88eac3107dcc4c675de8685.zip |
fix bug #152275 (vim-syntax) and add a note about gtk+ default preview backend
(Portage version: 2.1.3.16)
Diffstat (limited to 'x11-libs/gtk+')
-rw-r--r-- | x11-libs/gtk+/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/gtk+/gtk+-2.12.1.ebuild | 12 |
2 files changed, 13 insertions, 5 deletions
diff --git a/x11-libs/gtk+/ChangeLog b/x11-libs/gtk+/ChangeLog index 215465392a28..c84e398e57de 100644 --- a/x11-libs/gtk+/ChangeLog +++ b/x11-libs/gtk+/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/gtk+ # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.340 2007/10/20 05:44:35 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.341 2007/10/28 23:17:32 eva Exp $ + + 28 Oct 2007; Gilles Dartiguelongue <eva@gentoo.org> gtk+-2.12.1.ebuild: + add vim-syntax support, fix bug #152275 + add a note about evince being the default backend for printing preview *gtk+-2.12.1 (20 Oct 2007) diff --git a/x11-libs/gtk+/gtk+-2.12.1.ebuild b/x11-libs/gtk+/gtk+-2.12.1.ebuild index 7f21d83b4469..62225b81af06 100644 --- a/x11-libs/gtk+/gtk+-2.12.1.ebuild +++ b/x11-libs/gtk+/gtk+-2.12.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-2.12.1.ebuild,v 1.1 2007/10/20 05:44:35 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-2.12.1.ebuild,v 1.2 2007/10/28 23:17:32 eva Exp $ inherit gnome.org flag-o-matic eutils autotools virtualx @@ -10,7 +10,7 @@ HOMEPAGE="http://www.gtk.org/" LICENSE="LGPL-2" SLOT="2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="cups debug doc jpeg tiff xinerama" +IUSE="cups debug doc jpeg tiff vim-syntax xinerama" RDEPEND="x11-libs/libXrender x11-libs/libX11 @@ -46,6 +46,7 @@ DEPEND="${RDEPEND} >=dev-util/gtk-doc-1.6 ~app-text/docbook-xml-dtd-4.1.2 )" +PDEPEND="vim-syntax? ( app-vim/gtk-syntax )" pkg_setup() { if ! built_with_use x11-libs/cairo X; then @@ -139,8 +140,8 @@ pkg_postinst() { set_gtk2_confdir if [ -d "${ROOT}${GTK2_CONFDIR}" ]; then - gtk-query-immodules-2.0 > ${ROOT}${GTK2_CONFDIR}/gtk.immodules - gdk-pixbuf-query-loaders > ${ROOT}${GTK2_CONFDIR}/gdk-pixbuf.loaders + gtk-query-immodules-2.0 > "${ROOT}${GTK2_CONFDIR}/gtk.immodules" + gdk-pixbuf-query-loaders > "${ROOT}${GTK2_CONFDIR}/gdk-pixbuf.loaders" else ewarn "The destination path ${ROOT}${GTK2_CONFDIR} doesn't exist;" ewarn "to complete the installation of GTK+, please create the" @@ -155,4 +156,7 @@ pkg_postinst() { elog "to do that you can use qfile from portage-utils:" elog "emerge -va1 \$(qfile -qC /usr/lib/gtk-2.0/2.[^1]*)" fi + + elog "Please install app-text/evince for print preview functionality" } + |