From b70e0603d9766ce2d3e3ac652c038fdf9bca4c72 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 12 Jan 2009 08:18:36 +0000 Subject: Bug #250469 - Fix unpack() so that deb2targz is called in a way such that $DISTDIR write access is not required. (trunk r12389) svn path=/main/branches/2.1.6/; revision=12456 --- bin/ebuild.sh | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 49bbe78ff..ab71871f2 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -406,10 +406,24 @@ unpack() { # that reason. We just make sure on AIX `deb2targz` is # installed. if type -P deb2targz > /dev/null; then - deb2targz "${srcdir}/${x}" || die "$myfail" - mv "${srcdir}/${x/.deb/.tar.gz}" data.tar.gz + y=${x##*/} + local created_symlink=0 + if [ ! "$srcdir$x" -ef "$y" ] ; then + # deb2targz always extracts into the same directory as + # the source file, so create a symlink in the current + # working directory if necessary. + ln -sf "$srcdir$x" "$y" || die "$myfail" + created_symlink=1 + fi + deb2targz "$y" || die "$myfail" + if [ $created_symlink = 1 ] ; then + # Clean up the symlink so the ebuild + # doesn't inadvertently install it. + rm -f "$y" + fi + mv -f "${y%.deb}".tar.gz data.tar.gz || die "$myfail" else - ar x "${srcdir}/${x}" || die "$myfail" + ar x "$srcdir$x" || die "$myfail" fi ;; lzma) -- cgit v1.2.3-1-g7c22