summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Bickel <mabi@gentoo.org>2007-01-22 19:58:58 +0000
committerMatti Bickel <mabi@gentoo.org>2007-01-22 19:58:58 +0000
commit3b33b5af79561bf127ca509b77f023f2620d3b21 (patch)
treec1e06675f8151f43a1270e57ecef08a230e05858 /x11-wm/ion3
parentAdd patch to fix To: appearing as sender address improperly, from upstream, a... (diff)
downloadhistorical-3b33b5af79561bf127ca509b77f023f2620d3b21.tar.gz
historical-3b33b5af79561bf127ca509b77f023f2620d3b21.tar.bz2
historical-3b33b5af79561bf127ca509b77f023f2620d3b21.zip
fixing sandbox violation (bug #163104)
Package-Manager: portage-2.1.1-r2
Diffstat (limited to 'x11-wm/ion3')
-rw-r--r--x11-wm/ion3/ChangeLog5
-rw-r--r--x11-wm/ion3/ion3-20061223.ebuild11
2 files changed, 10 insertions, 6 deletions
diff --git a/x11-wm/ion3/ChangeLog b/x11-wm/ion3/ChangeLog
index 78df88df3a42..84455caeb21c 100644
--- a/x11-wm/ion3/ChangeLog
+++ b/x11-wm/ion3/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-wm/ion3
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ChangeLog,v 1.40 2007/01/20 19:23:31 mabi Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ChangeLog,v 1.41 2007/01/22 19:58:58 mabi Exp $
+
+ 22 Jan 2007; Matti Bickel <mabi@gentoo.org> ion3-20061223.ebuild:
+ Fixing sandbox violation (missing sed add) (bug #163104)
*ion3-20061223-r1 (20 Jan 2007)
diff --git a/x11-wm/ion3/ion3-20061223.ebuild b/x11-wm/ion3/ion3-20061223.ebuild
index a3b15f09189f..2f18445b6c0d 100644
--- a/x11-wm/ion3/ion3-20061223.ebuild
+++ b/x11-wm/ion3/ion3-20061223.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-wm/ion3/ion3-20061223.ebuild,v 1.1 2007/01/20 19:23:31 mabi Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/ion3/ion3-20061223.ebuild,v 1.2 2007/01/22 19:58:58 mabi Exp $
inherit autotools eutils
@@ -55,14 +55,15 @@ src_unpack() {
use iontruetype && patch -p1 < ${DISTDIR}/xft-ion3-for-darcs-20061202.diff
# Rewrite install directories to be prefixed by DESTDIR for sake of portage's sandbox
- sed -i Makefile build/rules.mk \
+ sed -i Makefile */Makefile */*/Makefile build/rules.mk \
-e 's!\($(INSTALL\w*)\|rm -f\|ln -s\)\(.*\)\($(\w\+DIR)\)!\1\2$(DESTDIR)\3!g'
for i in "${IONFLUX_PN}-${IONFLUX_PV}" "${IONXRANDR_PN}-${IONXRANDR_PV}"
do
- cd ${WORKDIR}/${i}
- # Rewrite install directories to be prefixed by DESTDIR for sake of portage's sandbox
- sed -i 's!\($(INSTALL\w*)\|rm -f\|ln -s\)\(.*\)\($(\w\+DIR)\)!\1\2$(DESTDIR)\3!g' Makefile */Makefile */*/Makefile
+ cd ${WORKDIR}/${i}
+ # Rewrite install directories to be prefixed by DESTDIR for sake of portage's sandbox
+ sed -i Makefile */Makefile \
+ -e 's!\($(INSTALL\w*)\|rm -f\|ln -s\)\(.*\)\($(\w\+DIR)\)!\1\2$(DESTDIR)\3!g'
done
cd ${S}