diff options
author | 2007-11-13 02:45:01 +0000 | |
---|---|---|
committer | 2007-11-13 02:45:01 +0000 | |
commit | 3598ab9d267f2325c012f98861b2fbfa74c4d75e (patch) | |
tree | 750f561a29fc3457cc902d93b9e0c0172844a7c1 /x11-libs/gtk+ | |
parent | Remove old unnecessary versions (diff) | |
download | gentoo-2-3598ab9d267f2325c012f98861b2fbfa74c4d75e.tar.gz gentoo-2-3598ab9d267f2325c012f98861b2fbfa74c4d75e.tar.bz2 gentoo-2-3598ab9d267f2325c012f98861b2fbfa74c4d75e.zip |
QA: Fix quoting of variables in old versions
(Portage version: 2.1.3.19)
Diffstat (limited to 'x11-libs/gtk+')
-rw-r--r-- | x11-libs/gtk+/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/gtk+/gtk+-2.10.13.ebuild | 10 | ||||
-rw-r--r-- | x11-libs/gtk+/gtk+-2.10.14.ebuild | 10 | ||||
-rw-r--r-- | x11-libs/gtk+/gtk+-2.6.10-r1.ebuild | 10 | ||||
-rw-r--r-- | x11-libs/gtk+/gtk+-2.8.19.ebuild | 8 | ||||
-rw-r--r-- | x11-libs/gtk+/gtk+-2.8.20-r1.ebuild | 10 |
6 files changed, 30 insertions, 25 deletions
diff --git a/x11-libs/gtk+/ChangeLog b/x11-libs/gtk+/ChangeLog index 5faa7095cf5a..5f13c0b13b92 100644 --- a/x11-libs/gtk+/ChangeLog +++ b/x11-libs/gtk+/ChangeLog @@ -1,6 +1,11 @@ # 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.344 2007/11/13 02:35:15 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.345 2007/11/13 02:45:01 leio Exp $ + + 13 Nov 2007; Mart Raudsepp <leio@gentoo.org> gtk+-2.6.10-r1.ebuild, + gtk+-2.8.19.ebuild, gtk+-2.8.20-r1.ebuild, gtk+-2.10.13.ebuild, + gtk+-2.10.14.ebuild: + QA: Fix quoting of variables in old versions 13 Nov 2007; Mart Raudsepp <leio@gentoo.org> -gtk+-2.10.11.ebuild, -gtk+-2.12.0-r2.ebuild, -gtk+-2.12.1.ebuild: diff --git a/x11-libs/gtk+/gtk+-2.10.13.ebuild b/x11-libs/gtk+/gtk+-2.10.13.ebuild index 7c95be8c767f..ea05a2e68653 100644 --- a/x11-libs/gtk+/gtk+-2.10.13.ebuild +++ b/x11-libs/gtk+/gtk+-2.10.13.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.10.13.ebuild,v 1.11 2007/08/25 13:55:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-2.10.13.ebuild,v 1.12 2007/11/13 02:45:01 leio Exp $ inherit gnome.org flag-o-matic eutils autotools virtualx @@ -120,11 +120,11 @@ src_install() { keepdir ${GTK2_CONFDIR} # see bug #133241 - echo 'gtk-fallback-icon-theme = "gnome"' > ${D}/${GTK2_CONFDIR}/gtkrc + echo 'gtk-fallback-icon-theme = "gnome"' > "${D}/${GTK2_CONFDIR}/gtkrc" # Enable xft in environment as suggested by <utx@gentoo.org> dodir /etc/env.d - echo "GDK_USE_XFT=1" > ${D}/etc/env.d/50gtk2 + echo "GDK_USE_XFT=1" > "${D}/etc/env.d/50gtk2" dodoc AUTHORS ChangeLog* HACKING NEWS* README* } @@ -133,8 +133,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" diff --git a/x11-libs/gtk+/gtk+-2.10.14.ebuild b/x11-libs/gtk+/gtk+-2.10.14.ebuild index f9fe6c5d0a55..77cc43cda897 100644 --- a/x11-libs/gtk+/gtk+-2.10.14.ebuild +++ b/x11-libs/gtk+/gtk+-2.10.14.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.10.14.ebuild,v 1.8 2007/09/21 01:44:39 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-2.10.14.ebuild,v 1.9 2007/11/13 02:45:01 leio Exp $ inherit gnome.org flag-o-matic eutils autotools virtualx @@ -120,11 +120,11 @@ src_install() { keepdir ${GTK2_CONFDIR} # see bug #133241 - echo 'gtk-fallback-icon-theme = "gnome"' > ${D}/${GTK2_CONFDIR}/gtkrc + echo 'gtk-fallback-icon-theme = "gnome"' > "${D}/${GTK2_CONFDIR}/gtkrc" # Enable xft in environment as suggested by <utx@gentoo.org> dodir /etc/env.d - echo "GDK_USE_XFT=1" > ${D}/etc/env.d/50gtk2 + echo "GDK_USE_XFT=1" > "${D}/etc/env.d/50gtk2" dodoc AUTHORS ChangeLog* HACKING NEWS* README* } @@ -133,8 +133,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" diff --git a/x11-libs/gtk+/gtk+-2.6.10-r1.ebuild b/x11-libs/gtk+/gtk+-2.6.10-r1.ebuild index dfa2db0cc99a..4b572543b6ec 100644 --- a/x11-libs/gtk+/gtk+-2.6.10-r1.ebuild +++ b/x11-libs/gtk+/gtk+-2.6.10-r1.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.6.10-r1.ebuild,v 1.6 2007/07/22 02:46:30 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-2.6.10-r1.ebuild,v 1.7 2007/11/13 02:45:01 leio Exp $ inherit flag-o-matic eutils @@ -69,7 +69,7 @@ src_unpack() { use x86 && [ "$(get_libdir)" == "lib32" ] && epatch ${DISTDIR}/gtk+-2.6.1-lib64.patch.bz2 # patch for ppc64 (#64359,#109089) - use ppc64 && ! has_version '>=dev-libs/glib-2.8' && epatch ${FILESDIR}/${PN}-2.4.9-ppc64.patch + use ppc64 && ! has_version '>=dev-libs/glib-2.8' && epatch "${FILESDIR}/${PN}-2.4.9-ppc64.patch" use ppc64 && append-flags -mminimal-toc autoconf || die "autoconf failed" @@ -106,7 +106,7 @@ src_install() { # Enable xft in environment as suggested by <utx@gentoo.org> dodir /etc/env.d - echo "GDK_USE_XFT=1" >${D}/etc/env.d/50gtk2 + echo "GDK_USE_XFT=1" >"${D}/etc/env.d/50gtk2" dodoc AUTHORS ChangeLog* HACKING NEWS* README* } @@ -114,6 +114,6 @@ src_install() { pkg_postinst() { set_gtk2_confdir - 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" } diff --git a/x11-libs/gtk+/gtk+-2.8.19.ebuild b/x11-libs/gtk+/gtk+-2.8.19.ebuild index ae685d6a1a47..edc61e5da8ce 100644 --- a/x11-libs/gtk+/gtk+-2.8.19.ebuild +++ b/x11-libs/gtk+/gtk+-2.8.19.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.8.19.ebuild,v 1.19 2007/07/22 02:46:30 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-2.8.19.ebuild,v 1.20 2007/11/13 02:45:01 leio Exp $ inherit gnome.org flag-o-matic eutils autotools virtualx @@ -129,7 +129,7 @@ src_install() { # Enable xft in environment as suggested by <utx@gentoo.org> dodir /etc/env.d - echo "GDK_USE_XFT=1" > ${D}/etc/env.d/50gtk2 + echo "GDK_USE_XFT=1" > "${D}/etc/env.d/50gtk2" dodoc AUTHORS ChangeLog* HACKING NEWS* README* @@ -140,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" diff --git a/x11-libs/gtk+/gtk+-2.8.20-r1.ebuild b/x11-libs/gtk+/gtk+-2.8.20-r1.ebuild index 655433e7960b..13ca1ae94641 100644 --- a/x11-libs/gtk+/gtk+-2.8.20-r1.ebuild +++ b/x11-libs/gtk+/gtk+-2.8.20-r1.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.8.20-r1.ebuild,v 1.8 2007/07/22 02:46:30 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-2.8.20-r1.ebuild,v 1.9 2007/11/13 02:45:01 leio Exp $ inherit gnome.org flag-o-matic eutils autotools virtualx @@ -128,11 +128,11 @@ src_install() { keepdir ${GTK2_CONFDIR} # # see bug #133241 - echo 'gtk-fallback-icon-theme = "gnome"' > ${D}/${GTK2_CONFDIR}/gtkrc + echo 'gtk-fallback-icon-theme = "gnome"' > "${D}/${GTK2_CONFDIR}/gtkrc" # Enable xft in environment as suggested by <utx@gentoo.org> dodir /etc/env.d - echo "GDK_USE_XFT=1" > ${D}/etc/env.d/50gtk2 + echo "GDK_USE_XFT=1" > "${D}/etc/env.d/50gtk2" dodoc AUTHORS ChangeLog* HACKING NEWS* README* @@ -143,8 +143,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" |