diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2011-08-04 08:51:38 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2011-08-04 08:51:38 +0000 |
commit | 2db8b4418f961d108f6a277a6176131e5f8c99df (patch) | |
tree | 528ada6cdf36b4d49f5683c7e6124e917d2bc5f4 /dev-lang/ekopath | |
parent | Version bump, bug #358689 should be fixed (diff) | |
download | gentoo-2-2db8b4418f961d108f6a277a6176131e5f8c99df.tar.gz gentoo-2-2db8b4418f961d108f6a277a6176131e5f8c99df.tar.bz2 gentoo-2-2db8b4418f961d108f6a277a6176131e5f8c99df.zip |
Version bump, fixes missing symbols in funclookup
(Portage version: 2.2.0_alpha49/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang/ekopath')
-rw-r--r-- | dev-lang/ekopath/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lang/ekopath/ekopath-4.0.10_pre20110803.ebuild (renamed from dev-lang/ekopath/ekopath-4.0.10_pre20110717-r1.ebuild) | 14 |
2 files changed, 20 insertions, 2 deletions
diff --git a/dev-lang/ekopath/ChangeLog b/dev-lang/ekopath/ChangeLog index 1e35e7c88321..4bb04e6e828e 100644 --- a/dev-lang/ekopath/ChangeLog +++ b/dev-lang/ekopath/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-lang/ekopath # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.5 2011/08/03 14:00:24 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.6 2011/08/04 08:51:38 xarthisius Exp $ + +*ekopath-4.0.10_pre20110803 (04 Aug 2011) + + 04 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> + -ekopath-4.0.10_pre20110717-r1.ebuild, +ekopath-4.0.10_pre20110803.ebuild: + Version bump, fixes missing symbols in funclookup 03 Aug 2011; Anthony G. Basile <blueness@gentoo.org> ekopath-4.0.10_pre20110728.ebuild: diff --git a/dev-lang/ekopath/ekopath-4.0.10_pre20110717-r1.ebuild b/dev-lang/ekopath/ekopath-4.0.10_pre20110803.ebuild index 08a5b407b82c..4efcfb1fb8d0 100644 --- a/dev-lang/ekopath/ekopath-4.0.10_pre20110717-r1.ebuild +++ b/dev-lang/ekopath/ekopath-4.0.10_pre20110803.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-4.0.10_pre20110717-r1.ebuild,v 1.1 2011/07/31 07:52:56 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-4.0.10_pre20110803.ebuild,v 1.1 2011/08/04 08:51:38 xarthisius Exp $ EAPI=4 @@ -58,9 +58,21 @@ src_prepare() { } src_install() { + # You must paxmark -m EI_PAX (not PT_PAX) to run the installer + # on a pax enabled kernel. Adding PT_PAX breaks the binary. + /usr/bin/scanelf -Xxz m ${P}.run >> /dev/null + ./${P}.run \ --prefix "${D}/opt/${PN}" \ --mode unattended || die + + # This is a temporary/partial fix to remove a RWX GNU STACK header + # from libstl.so. It still leaves libstl.a in bad shape. + # The correct fix is in the assembly atomic-cxx.S, which we don't get + # See http://www.gentoo.org/proj/en/hardened/gnu-stack.xml + # Section 6. How to fix the stack (in practice) + /usr/bin/scanelf -Xe "${D}/opt/ekopath/lib/4.0.11/x8664/64/libstl.so" + rm -rf "${D}"/opt/${PN}/uninstall || die doenvd "99${PN}" } |