diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-08-10 09:14:27 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-08-10 09:15:35 +0200 |
commit | 01252a0e10c25465ae7f5c10d54706682a0cc781 (patch) | |
tree | a34905353ed0ad547bd5289cee131825bd6f8092 /dev-lang/ekopath/ekopath-6.0.477_p20150809.ebuild | |
parent | dev-python/html5lib: Drop old (diff) | |
download | gentoo-01252a0e10c25465ae7f5c10d54706682a0cc781.tar.gz gentoo-01252a0e10c25465ae7f5c10d54706682a0cc781.tar.bz2 gentoo-01252a0e10c25465ae7f5c10d54706682a0cc781.zip |
dev-lang/ekopath: Snapshot bump
Package-Manager: portage-2.2.20
Diffstat (limited to 'dev-lang/ekopath/ekopath-6.0.477_p20150809.ebuild')
-rw-r--r-- | dev-lang/ekopath/ekopath-6.0.477_p20150809.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/dev-lang/ekopath/ekopath-6.0.477_p20150809.ebuild b/dev-lang/ekopath/ekopath-6.0.477_p20150809.ebuild new file mode 100644 index 000000000000..8f7e034cd0ba --- /dev/null +++ b/dev-lang/ekopath/ekopath-6.0.477_p20150809.ebuild @@ -0,0 +1,74 @@ +# 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-6.0.468_p20150803.ebuild,v 1.1 2015/08/04 16:35:58 mgorny Exp $ + +EAPI=5 + +inherit versionator multilib pax-utils + +MY_PV=$(get_version_component_range 1-3) +DATE=$(get_version_component_range 4) +DATE=${DATE#p} +DATE=${DATE:0:4}-${DATE:4:2}-${DATE:6} +INSTALLER=${PN}-${DATE}-installer.run + +DESCRIPTION="PathScale EKOPath Compiler Suite" +HOMEPAGE="http://www.pathscale.com/ekopath-compiler-suite" +SRC_URI="http://c591116.r16.cf2.rackcdn.com/${PN}/nightly/Linux/${INSTALLER}" + +LICENSE="all-rights-reserved" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="!!app-arch/rpm" +RDEPEND="" + +RESTRICT="bindist mirror" + +QA_PREBUILT=" + opt/${PN}/lib/${MY_PV}/x8664/* + opt/${PN}/bin/*" + +S="${WORKDIR}" + +src_unpack() { + cp "${DISTDIR}/${INSTALLER}" "${S}/" || die + chmod +x "${S}/${INSTALLER}" || die +} + +src_prepare() { + cat > 99${PN} <<-EOF + PATH=${EROOT%/}/opt/${PN}/bin + ROOTPATH=${EROOT%/}/opt/${PN}/bin + LDPATH=${EROOT%/}/opt/${PN}/lib:${EROOT%/}/opt/${PN}/lib/${MY_PV}/x8664/64 + MANPATH=${EROOT%/}/opt/${PN}/docs/man + EOF +} + +src_install() { + # 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 "${INSTALLER}" + fi + + ./"${INSTALLER}" \ + --prefix "${ED%/}/opt/${PN}" \ + --mode unattended || die + + if [[ ! -d ${ED%/}/opt/${PN}/lib/${MY_PV} ]]; then + local guess + cd "${ED%/}/opt/${PN}/lib" && guess=( * ) + + if [[ ${guess[@]} ]]; then + die "Incorrect release version in PV, guessing it should be: ${guess[*]}" + else + die "No libdir installed" + fi + fi + [[ -x ${ED%}/opt/${PN}/bin/pathcc ]] || die "No pathcc executable was installed, your hardware is unsupported most likely" + + rm -r "${ED}/opt/${PN}"/uninstall* || die + doenvd 99${PN} +} |