projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
107ac23
)
add support for unpacking lha files
author
Mike Frysinger
<vapier@gentoo.org>
Tue, 1 Nov 2005 01:33:39 +0000
(
01:33
-0000)
committer
Mike Frysinger
<vapier@gentoo.org>
Tue, 1 Nov 2005 01:33:39 +0000
(
01:33
-0000)
svn path=/main/branches/2.0/; revision=2225
bin/ebuild.sh
patch
|
blob
|
history
diff --git
a/bin/ebuild.sh
b/bin/ebuild.sh
index 666a79dd6d420208a9daeb880747f45bac223631..21a3afda81b06fa3e4391288a48d6307483aed9e 100755
(executable)
--- 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."
;;