summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2006-01-04 13:58:05 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2006-01-04 13:58:05 +0000
commitf49e26711f9f1f84bbb120ccf2b4d6b3e7ad80fb (patch)
tree98075cde40e0c027e1838439ba4b77d61231ea3d /games-fps/quake1-data
parentEnabled optimisation. (diff)
downloadhistorical-f49e26711f9f1f84bbb120ccf2b4d6b3e7ad80fb.tar.gz
historical-f49e26711f9f1f84bbb120ccf2b4d6b3e7ad80fb.tar.bz2
historical-f49e26711f9f1f84bbb120ccf2b4d6b3e7ad80fb.zip
Apparently, lha can only extract self-extracting executables if they have an .exe extension. Thanks to Henrique Rodrigues <hmtr@rnl.ist.utl.pt> and closing bug #117125.
Package-Manager: portage-2.1_pre3-r1
Diffstat (limited to 'games-fps/quake1-data')
-rw-r--r--games-fps/quake1-data/ChangeLog8
-rw-r--r--games-fps/quake1-data/Manifest4
-rw-r--r--games-fps/quake1-data/quake1-data-2.40.ebuild8
3 files changed, 13 insertions, 7 deletions
diff --git a/games-fps/quake1-data/ChangeLog b/games-fps/quake1-data/ChangeLog
index d36ca7c4995f..d14924edbf52 100644
--- a/games-fps/quake1-data/ChangeLog
+++ b/games-fps/quake1-data/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for games-fps/quake1-data
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/quake1-data/ChangeLog,v 1.2 2006/01/03 14:57:27 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/quake1-data/ChangeLog,v 1.3 2006/01/04 13:58:05 wolf31o2 Exp $
+
+ 04 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
+ quake1-data-2.40.ebuild:
+ Apparently, lha can only extract self-extracting executables if they have an
+ .exe extension. Thanks to Henrique Rodrigues <hmtr@rnl.ist.utl.pt> and
+ closing bug #117125.
03 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
quake1-data-2.40.ebuild:
diff --git a/games-fps/quake1-data/Manifest b/games-fps/quake1-data/Manifest
index d861c1d07dbf..67b0e3caf872 100644
--- a/games-fps/quake1-data/Manifest
+++ b/games-fps/quake1-data/Manifest
@@ -1,4 +1,4 @@
-MD5 ae495c8431bc06191279f6c6b7595bb9 ChangeLog 449
+MD5 81a9b13dc358880703c32859a7b017b1 ChangeLog 706
MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-quake1-data-2.40 0
MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158
-MD5 6a7ed96dcda5efbd604903b7f5608f4f quake1-data-2.40.ebuild 1400
+MD5 7511524ee099a11673554e58f1972026 quake1-data-2.40.ebuild 1416
diff --git a/games-fps/quake1-data/quake1-data-2.40.ebuild b/games-fps/quake1-data/quake1-data-2.40.ebuild
index cb41f136a55a..d3ed1f47d15c 100644
--- a/games-fps/quake1-data/quake1-data-2.40.ebuild
+++ b/games-fps/quake1-data/quake1-data-2.40.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/quake1-data/quake1-data-2.40.ebuild,v 1.5 2006/01/03 14:57:27 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/quake1-data/quake1-data-2.40.ebuild,v 1.6 2006/01/04 13:58:05 wolf31o2 Exp $
inherit eutils games
@@ -28,9 +28,9 @@ src_unpack() {
echo ">>> Unpacking q101_int to ${PWD}"
if [[ ${CDROM_SET} == "1" ]] ; then
cat "${CDROM_ROOT}"/q101_int.1 "${CDROM_ROOT}"/q101_int.2 > \
- "${S}"/q101_int
- lha xqf "${S}"/q101_int || die "failure unpacking q101_int"
- rm -f q101_int
+ "${S}"/q101_int.exe
+ lha xqf "${S}"/q101_int.exe || die "failure unpacking q101_int.exe"
+ rm -f q101_int.exe
fi
}