From b9f08c5e1245d32bba5406e5ed7833838fd3d33c Mon Sep 17 00:00:00 2001 From: Richard Brown Date: Tue, 24 Apr 2007 11:22:57 +0000 Subject: [PATCH] Fix $ROOT usage. Bug #167271 Package-Manager: portage-2.1.2.2 --- dev-lang/ruby/ChangeLog | 7 ++++++- dev-lang/ruby/ruby-1.8.4-r3.ebuild | 6 +++--- dev-lang/ruby/ruby-1.8.5_p12.ebuild | 6 +++--- dev-lang/ruby/ruby-1.8.5_p2.ebuild | 6 +++--- dev-lang/ruby/ruby-1.8.5_p35.ebuild | 6 +++--- dev-lang/ruby/ruby-1.8.6.ebuild | 6 +++--- dev-lang/ruby/ruby-1.8.6_pre1.ebuild | 6 +++--- dev-lang/ruby/ruby-1.8.6_pre3.ebuild | 6 +++--- 8 files changed, 27 insertions(+), 22 deletions(-) diff --git a/dev-lang/ruby/ChangeLog b/dev-lang/ruby/ChangeLog index ef2efd1231c0..dd7e4f9d965e 100644 --- a/dev-lang/ruby/ChangeLog +++ b/dev-lang/ruby/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-lang/ruby # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.262 2007/04/07 16:23:57 pclouds Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ChangeLog,v 1.263 2007/04/24 11:22:57 rbrown Exp $ + + 24 Apr 2007; Richard Brown ruby-1.8.4-r3.ebuild, + ruby-1.8.5_p2.ebuild, ruby-1.8.5_p12.ebuild, ruby-1.8.5_p35.ebuild, + ruby-1.8.6_pre1.ebuild, ruby-1.8.6_pre3.ebuild, ruby-1.8.6.ebuild: + Fix $ROOT usage. Bug #167271 07 Apr 2007; Nguyễn Thái Ngọc Duy ruby-1.8.4-r3.ebuild, ruby-1.8.5_p2.ebuild, ruby-1.8.5_p12.ebuild, diff --git a/dev-lang/ruby/ruby-1.8.4-r3.ebuild b/dev-lang/ruby/ruby-1.8.4-r3.ebuild index 744335e93056..3e48e8ed4377 100644 --- a/dev-lang/ruby/ruby-1.8.4-r3.ebuild +++ b/dev-lang/ruby/ruby-1.8.4-r3.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/dev-lang/ruby/ruby-1.8.4-r3.ebuild,v 1.18 2007/04/07 16:23:57 pclouds Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.4-r3.ebuild,v 1.19 2007/04/24 11:22:57 rbrown Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -109,8 +109,8 @@ src_install() { fi if use examples; then - dodir ${ROOT}usr/share/doc/${PF} - cp -pPR sample ${D}/${ROOT}usr/share/doc/${PF} + dodir /usr/share/doc/${PF} + cp -pPR sample ${D}/usr/share/doc/${PF} fi dosym libruby${SLOT/./}.so.${PV%_*} /usr/$(get_libdir)/libruby.so.${PV%.*} diff --git a/dev-lang/ruby/ruby-1.8.5_p12.ebuild b/dev-lang/ruby/ruby-1.8.5_p12.ebuild index cdc97d204fc3..635dcee360cb 100644 --- a/dev-lang/ruby/ruby-1.8.5_p12.ebuild +++ b/dev-lang/ruby/ruby-1.8.5_p12.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/dev-lang/ruby/ruby-1.8.5_p12.ebuild,v 1.6 2007/04/07 16:23:57 pclouds Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.5_p12.ebuild,v 1.7 2007/04/24 11:22:57 rbrown Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -109,8 +109,8 @@ src_install() { fi if use examples; then - dodir ${ROOT}usr/share/doc/${PF} - cp -pPR sample ${D}/${ROOT}usr/share/doc/${PF} + dodir /usr/share/doc/${PF} + cp -pPR sample ${D}/usr/share/doc/${PF} fi dosym libruby${SLOT/./}$(get_libname ${PV%_*}) /usr/$(get_libdir)/libruby$(get_libname ${PV%.*}) diff --git a/dev-lang/ruby/ruby-1.8.5_p2.ebuild b/dev-lang/ruby/ruby-1.8.5_p2.ebuild index 99a4ef2b5411..71215ee474cf 100644 --- a/dev-lang/ruby/ruby-1.8.5_p2.ebuild +++ b/dev-lang/ruby/ruby-1.8.5_p2.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/dev-lang/ruby/ruby-1.8.5_p2.ebuild,v 1.15 2007/04/07 16:23:57 pclouds Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.5_p2.ebuild,v 1.16 2007/04/24 11:22:57 rbrown Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -102,8 +102,8 @@ src_install() { fi if use examples; then - dodir ${ROOT}usr/share/doc/${PF} - cp -pPR sample ${D}/${ROOT}usr/share/doc/${PF} + dodir /usr/share/doc/${PF} + cp -pPR sample ${D}/usr/share/doc/${PF} fi dosym libruby${SLOT/./}.so.${PV%_*} /usr/$(get_libdir)/libruby.so.${PV%.*} diff --git a/dev-lang/ruby/ruby-1.8.5_p35.ebuild b/dev-lang/ruby/ruby-1.8.5_p35.ebuild index 872b26dddb84..5b31f0ba078d 100644 --- a/dev-lang/ruby/ruby-1.8.5_p35.ebuild +++ b/dev-lang/ruby/ruby-1.8.5_p35.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/dev-lang/ruby/ruby-1.8.5_p35.ebuild,v 1.2 2007/04/07 16:23:57 pclouds Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.5_p35.ebuild,v 1.3 2007/04/24 11:22:57 rbrown Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -109,8 +109,8 @@ src_install() { fi if use examples; then - dodir ${ROOT}usr/share/doc/${PF} - cp -pPR sample ${D}/${ROOT}usr/share/doc/${PF} + dodir /usr/share/doc/${PF} + cp -pPR sample ${D}/usr/share/doc/${PF} fi dosym libruby${SLOT/./}$(get_libname ${PV%_*}) /usr/$(get_libdir)/libruby$(get_libname ${PV%.*}) diff --git a/dev-lang/ruby/ruby-1.8.6.ebuild b/dev-lang/ruby/ruby-1.8.6.ebuild index 8591bccb3d93..ad9cf754d0ec 100644 --- a/dev-lang/ruby/ruby-1.8.6.ebuild +++ b/dev-lang/ruby/ruby-1.8.6.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/dev-lang/ruby/ruby-1.8.6.ebuild,v 1.2 2007/04/07 16:23:57 pclouds Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6.ebuild,v 1.3 2007/04/24 11:22:57 rbrown Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -106,8 +106,8 @@ src_install() { fi if use examples; then - dodir ${ROOT}usr/share/doc/${PF} - cp -pPR sample ${D}/${ROOT}usr/share/doc/${PF} + dodir /usr/share/doc/${PF} + cp -pPR sample ${D}/usr/share/doc/${PF} fi dosym libruby${SLOT/./}$(get_libname ${PV%_*}) /usr/$(get_libdir)/libruby$(get_libname ${PV%.*}) diff --git a/dev-lang/ruby/ruby-1.8.6_pre1.ebuild b/dev-lang/ruby/ruby-1.8.6_pre1.ebuild index acecd97eed10..a82a06745a1a 100644 --- a/dev-lang/ruby/ruby-1.8.6_pre1.ebuild +++ b/dev-lang/ruby/ruby-1.8.6_pre1.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/dev-lang/ruby/ruby-1.8.6_pre1.ebuild,v 1.2 2007/04/07 16:23:57 pclouds Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_pre1.ebuild,v 1.3 2007/04/24 11:22:57 rbrown Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -111,8 +111,8 @@ src_install() { fi if use examples; then - dodir ${ROOT}usr/share/doc/${PF} - cp -pPR sample ${D}/${ROOT}usr/share/doc/${PF} + dodir /usr/share/doc/${PF} + cp -pPR sample ${D}/usr/share/doc/${PF} fi dosym libruby${SLOT/./}$(get_libname ${PV%_*}) /usr/$(get_libdir)/libruby$(get_libname ${PV%.*}) diff --git a/dev-lang/ruby/ruby-1.8.6_pre3.ebuild b/dev-lang/ruby/ruby-1.8.6_pre3.ebuild index 1b24dc3c4e2f..82519bc607fc 100644 --- a/dev-lang/ruby/ruby-1.8.6_pre3.ebuild +++ b/dev-lang/ruby/ruby-1.8.6_pre3.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/dev-lang/ruby/ruby-1.8.6_pre3.ebuild,v 1.3 2007/04/07 16:23:57 pclouds Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ruby/ruby-1.8.6_pre3.ebuild,v 1.4 2007/04/24 11:22:57 rbrown Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -111,8 +111,8 @@ src_install() { fi if use examples; then - dodir ${ROOT}usr/share/doc/${PF} - cp -pPR sample ${D}/${ROOT}usr/share/doc/${PF} + dodir /usr/share/doc/${PF} + cp -pPR sample ${D}/usr/share/doc/${PF} fi dosym libruby${SLOT/./}$(get_libname ${PV%_*}) /usr/$(get_libdir)/libruby$(get_libname ${PV%.*}) -- 2.26.2