From: Mike Frysinger Date: Tue, 1 Nov 2005 01:33:39 +0000 (-0000) Subject: add support for unpacking lha files X-Git-Tag: v2.1_pre1~80 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5b00dfcbd7600d9465ccb06f542ce3474d624f4a;p=portage.git add support for unpacking lha files svn path=/main/branches/2.0/; revision=2225 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 666a79dd6..21a3afda8 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -394,6 +394,9 @@ unpack() { RAR|rar) unrar x -idq "${srcdir}/${x}" || die "$myfail" ;; + LHa|LHA|lha|lzh) + lha xqf "${srcdir}/${x}" || die "$myfail" + ;; *) echo "unpack ${x}: file format not recognized. Ignoring." ;;