summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2012-06-13 12:17:17 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2012-06-13 12:17:17 +0000
commit52445c96699e18fd13bab25cc6e508675c9c26aa (patch)
tree68539faf676b977cf66b8c7e14a0aa35b2cc343c /eclass
parentEAPI-4, fix SRC_URI, fix HOMEPAGE (diff)
downloadhistorical-52445c96699e18fd13bab25cc6e508675c9c26aa.tar.gz
historical-52445c96699e18fd13bab25cc6e508675c9c26aa.tar.bz2
historical-52445c96699e18fd13bab25cc6e508675c9c26aa.zip
Make the oxt unpacking really work.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/myspell-r2.eclass8
2 files changed, 8 insertions, 5 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 1c0a2929bf25..4b26a056b676 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.312 2012/06/13 11:06:17 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.313 2012/06/13 12:17:17 scarabeus Exp $
+
+ 13 Jun 2012; Tomáš Chvátal <scarabeus@gentoo.org> myspell-r2.eclass:
+ Make the oxt unpacking really work.
13 Jun 2012; Tomáš Chvátal <scarabeus@gentoo.org> myspell-r2.eclass:
Handle dodoc correctly to not die if no documents are found.
diff --git a/eclass/myspell-r2.eclass b/eclass/myspell-r2.eclass
index eb3fe6a31a6d..9e8daced3a19 100644
--- a/eclass/myspell-r2.eclass
+++ b/eclass/myspell-r2.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/myspell-r2.eclass,v 1.3 2012/06/13 11:06:17 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/myspell-r2.eclass,v 1.4 2012/06/13 12:17:17 scarabeus Exp $
# @ECLASS: aspell-dict.eclass
# @MAINTAINER:
@@ -48,9 +48,9 @@ myspell-r2_src_unpack() {
for f in ${A}; do
case ${f} in
*.oxt)
- echo ">>> Unpacking ${f} to ${PWD}"
- unzip -qoj ${f}
- assert "failed unpacking ${f}"
+ echo ">>> Unpacking "${DISTDIR}/${f}" to ${PWD}"
+ unzip -qoj ${DISTDIR}/${f}
+ assert "failed unpacking ${DISTDIR}/${f}"
;;
*) unpack ${f} ;;
esac