summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2013-04-24 10:21:00 +0000
committerJustin Lecher <jlec@gentoo.org>2013-04-24 10:21:00 +0000
commit66cf0c1d71da9433f087fb1e688b55dc034a5169 (patch)
tree9e15477c71440fefbe99470c79309e439465e18a
parentFixed SIGSEGV (writable %n is forbidden by glibc-2.3+). (diff)
downloadgentoo-2-66cf0c1d71da9433f087fb1e688b55dc034a5169.tar.gz
gentoo-2-66cf0c1d71da9433f087fb1e688b55dc034a5169.tar.bz2
gentoo-2-66cf0c1d71da9433f087fb1e688b55dc034a5169.zip
sci-chemistry/theseus: The paths in the align script need to be absolute
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
-rw-r--r--sci-chemistry/theseus/ChangeLog8
-rw-r--r--sci-chemistry/theseus/theseus-2.0.1-r1.ebuild (renamed from sci-chemistry/theseus/theseus-2.0.1.ebuild)7
2 files changed, 11 insertions, 4 deletions
diff --git a/sci-chemistry/theseus/ChangeLog b/sci-chemistry/theseus/ChangeLog
index a23eb9b25152..574895deb390 100644
--- a/sci-chemistry/theseus/ChangeLog
+++ b/sci-chemistry/theseus/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-chemistry/theseus
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/theseus/ChangeLog,v 1.5 2013/04/09 09:57:35 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/theseus/ChangeLog,v 1.6 2013/04/24 10:21:00 jlec Exp $
+
+*theseus-2.0.1-r1 (24 Apr 2013)
+
+ 24 Apr 2013; Justin Lecher <jlec@gentoo.org> -theseus-2.0.1.ebuild,
+ +theseus-2.0.1-r1.ebuild:
+ The paths in the align script need to be absolute
*theseus-2.0.1 (09 Apr 2013)
diff --git a/sci-chemistry/theseus/theseus-2.0.1.ebuild b/sci-chemistry/theseus/theseus-2.0.1-r1.ebuild
index 7c84e3da67b6..5054400e445a 100644
--- a/sci-chemistry/theseus/theseus-2.0.1.ebuild
+++ b/sci-chemistry/theseus/theseus-2.0.1-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/theseus/theseus-2.0.1.ebuild,v 1.1 2013/04/09 09:57:35 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/theseus/theseus-2.0.1-r1.ebuild,v 1.1 2013/04/24 10:21:00 jlec Exp $
EAPI=5
@@ -52,8 +52,9 @@ src_prepare() {
-i Makefile || die
sed \
- -e 's:/usr/local/bin/::g' \
- -e 's:/usr/bin/::g' \
+ -e 's:/usr/bin/sed:sed:g' \
+ -e "s:/usr/local/bin/:${EPREFIX}/usr/bin/:g" \
+ -e "s:/usr/bin/:${EPREFIX}/usr/bin/:g" \
-i theseus_align || die
}