anarchy 15/01/04 15:29:10 Modified: ekopath-5.0.1_pre20131115.ebuild ChangeLog Log: Use XT_PAX for marking the installer as EI_PAX is obsolete and PT_PAX breaks the installer. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0xB4D088B4)
Revision Changes Path 1.3 dev-lang/ekopath/ekopath-5.0.1_pre20131115.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ekopath-5.0.1_pre20131115.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ekopath-5.0.1_pre20131115.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ekopath-5.0.1_pre20131115.ebuild?r1=1.2&r2=1.3 Index: ekopath-5.0.1_pre20131115.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-5.0.1_pre20131115.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ekopath-5.0.1_pre20131115.ebuild 22 May 2014 17:33:22 -0000 1.2 +++ ekopath-5.0.1_pre20131115.ebuild 4 Jan 2015 15:29:10 -0000 1.3 @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-5.0.1_pre20131115.ebuild,v 1.2 2014/05/22 17:33:22 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ekopath-5.0.1_pre20131115.ebuild,v 1.3 2015/01/04 15:29:10 anarchy Exp $ EAPI=5 -inherit versionator multilib +inherit versionator multilib pax-utils MY_PV=$(get_version_component_range 1-3) DATE=$(get_version_component_range 4) @@ -64,9 +64,11 @@ addpredict /usr/$(get_libdir)/crt1.o addpredict /usr/$(get_libdir)/crtn.o - # You must paxmark -m EI_PAX (not PT_PAX) to run the installer - # on a pax enabled kernel. Adding PT_PAX breaks the binary. - scanelf -Xxz m ${P}.run >> /dev/null + # EI_PAX marking is obsolete and PT_PAX breaks the binary. + # We must use XT_PAX to run the installer. + if [[ ${PAX_MARKINGS} == "XT" ]]; then + pax-mark m ${P}.run + fi ./${P}.run \ --prefix "${ED%/}/opt/${PN}" \ 1.22 dev-lang/ekopath/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?rev=1.22&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?rev=1.22&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ekopath/ChangeLog?r1=1.21&r2=1.22 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- ChangeLog 22 May 2014 17:33:22 -0000 1.21 +++ ChangeLog 4 Jan 2015 15:29:10 -0000 1.22 @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/ekopath -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.21 2014/05/22 17:33:22 bicatali Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/ekopath/ChangeLog,v 1.22 2015/01/04 15:29:10 anarchy Exp $ + + 04 Jan 2015; <[email protected]> ekopath-5.0.1_pre20131115.ebuild: + Use XT_PAX for marking the installer as EI_PAX is obsolete and PT_PAX breaks + the installer. 22 May 2014; Sébastien Fabbro <[email protected]> -ekopath-4.0.12.1_pre20121102.ebuild, -ekopath-5.0.0_pre20130113.ebuild,
