summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@gentoo.org>2006-10-16 15:30:15 +0000
committerSaleem Abdulrasool <compnerd@gentoo.org>2006-10-16 15:30:15 +0000
commit5faa5203fc1030f2c08b6231cb3aed4e0504758d (patch)
treed5e35a9ea5378069617901c67fafb9d4bb51521a /app-emulation/spim
parentFixes bug #151416. (diff)
downloadhistorical-5faa5203fc1030f2c08b6231cb3aed4e0504758d.tar.gz
historical-5faa5203fc1030f2c08b6231cb3aed4e0504758d.tar.bz2
historical-5faa5203fc1030f2c08b6231cb3aed4e0504758d.zip
Fix stupid mistake in sed, resolves bug #151551
Package-Manager: portage-2.1.2_pre3-r2
Diffstat (limited to 'app-emulation/spim')
-rw-r--r--app-emulation/spim/ChangeLog5
-rw-r--r--app-emulation/spim/spim-7.3.ebuild8
2 files changed, 6 insertions, 7 deletions
diff --git a/app-emulation/spim/ChangeLog b/app-emulation/spim/ChangeLog
index 54871b758420..51b3f6718358 100644
--- a/app-emulation/spim/ChangeLog
+++ b/app-emulation/spim/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emulation/spim
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.38 2006/10/15 23:23:38 compnerd Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/ChangeLog,v 1.39 2006/10/16 15:30:15 compnerd Exp $
+
+ 16 Oct 2006; <compnerd@gentoo.org> -files/23spim, spim-7.3.ebuild:
+ Fix stupid mistake in sed, resolves (bug #151551)
*spim-7.3 (15 Oct 2006)
diff --git a/app-emulation/spim/spim-7.3.ebuild b/app-emulation/spim/spim-7.3.ebuild
index 8d7c80c07847..1b972c3df0d5 100644
--- a/app-emulation/spim/spim-7.3.ebuild
+++ b/app-emulation/spim/spim-7.3.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/app-emulation/spim/spim-7.3.ebuild,v 1.1 2006/10/15 23:23:38 compnerd Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/spim/spim-7.3.ebuild,v 1.2 2006/10/16 15:30:15 compnerd Exp $
inherit eutils toolchain-funcs
@@ -57,7 +57,7 @@ src_compile() {
-e 's:@make:@$(MAKE):' \
-e "s:\(BIN_DIR = \).*$:\1/usr/bin:" \
-e "s:\(MAN_DIR = \).*$:\1/usr/share/man:" \
- -e "s:\(EXCEPTION_DIR = \).*$:\1/var/lib/spim/exceptions.s:" \
+ -e "s:\(EXCEPTION_DIR = \).*$:\1/var/lib/spim:" \
Makefile
emake CC="$(tc-getCC)" -j1 xspim || die
@@ -91,8 +91,4 @@ src_install() {
cd ${S}
dodoc README VERSION ChangeLog
-
- # Set the default spim exception handler
- insinto /etc/env.d
- doins ${FILESDIR}/23spim
}