diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-02-16 19:22:30 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2007-02-16 19:22:30 +0000 |
commit | e5e604b8efced3f3a550fb662d4abb53c8d19f6b (patch) | |
tree | bb0dd71d5d4a98871b9c33f4ec6bd834acb0cc21 /app-office | |
parent | remove ROOT use in src_compile (bug #167240) (diff) | |
download | gentoo-2-e5e604b8efced3f3a550fb662d4abb53c8d19f6b.tar.gz gentoo-2-e5e604b8efced3f3a550fb662d4abb53c8d19f6b.tar.bz2 gentoo-2-e5e604b8efced3f3a550fb662d4abb53c8d19f6b.zip |
fix qa issue with root abuse (bug #167204)
(Portage version: 2.1.2-r9)
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/abiword/ChangeLog | 6 | ||||
-rw-r--r-- | app-office/abiword/abiword-2.4.5-r1.ebuild | 4 | ||||
-rw-r--r-- | app-office/abiword/abiword-2.4.6.ebuild | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/app-office/abiword/ChangeLog b/app-office/abiword/ChangeLog index 3db802ba83bd..0d274050a253 100644 --- a/app-office/abiword/ChangeLog +++ b/app-office/abiword/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-office/abiword # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/abiword/ChangeLog,v 1.175 2007/02/13 17:46:21 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/abiword/ChangeLog,v 1.176 2007/02/16 19:22:30 compnerd Exp $ + + 16 Feb 2007; Saleem Abdulrasool <compnerd@gentoo.org> + abiword-2.4.5-r1.ebuild, abiword-2.4.6.ebuild: + Fix QA issue, ${ROOT} should not be used (bug #167240) 13 Feb 2007; Roy Marples <uberlord@gentoo.org> abiword-2.4.6.ebuild: Added ~x86-fbsd keyword. diff --git a/app-office/abiword/abiword-2.4.5-r1.ebuild b/app-office/abiword/abiword-2.4.5-r1.ebuild index 888c355c81ff..5d2f19b58a83 100644 --- a/app-office/abiword/abiword-2.4.5-r1.ebuild +++ b/app-office/abiword/abiword-2.4.5-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/app-office/abiword/abiword-2.4.5-r1.ebuild,v 1.11 2007/02/08 17:19:29 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/abiword/abiword-2.4.5-r1.ebuild,v 1.12 2007/02/16 19:22:30 compnerd Exp $ inherit eutils fdo-mime alternatives @@ -69,7 +69,7 @@ src_compile() { src_install() { dodir /usr/{bin,lib} - make DESTDIR="${D}" icondir="${ROOT}usr/share/pixmaps" install || die "Installation failed" + make DESTDIR="${D}" icondir="/usr/share/pixmaps" install || die "Installation failed" dosed "s:Exec=abiword:Exec=abiword-2.4:" /usr/share/applications/abiword.desktop diff --git a/app-office/abiword/abiword-2.4.6.ebuild b/app-office/abiword/abiword-2.4.6.ebuild index 7a0fa69a8a64..681a2fe54e1a 100644 --- a/app-office/abiword/abiword-2.4.6.ebuild +++ b/app-office/abiword/abiword-2.4.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/app-office/abiword/abiword-2.4.6.ebuild,v 1.6 2007/02/13 17:46:21 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/abiword/abiword-2.4.6.ebuild,v 1.7 2007/02/16 19:22:30 compnerd Exp $ inherit alternatives eutils fdo-mime @@ -65,7 +65,7 @@ src_compile() { src_install() { dodir /usr/{bin,lib} - make DESTDIR="${D}" icondir="${ROOT}usr/share/pixmaps" install || die "install failed" + make DESTDIR="${D}" icondir="/usr/share/pixmaps" install || die "install failed" dosed "s:Exec=abiword:Exec=abiword-2.4:" /usr/share/applications/abiword.desktop |