From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QkZ7M-0006ix-RS for garchives@archives.gentoo.org; Sat, 23 Jul 2011 10:07:33 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED83121C09B; Sat, 23 Jul 2011 10:07:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C265D21C09B for ; Sat, 23 Jul 2011 10:07:24 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7A2BE1B401D for ; Sat, 23 Jul 2011 10:07:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D9D4F8003D for ; Sat, 23 Jul 2011 10:07:22 +0000 (UTC) From: "Kacper Kowalik" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kacper Kowalik" Message-ID: Subject: [gentoo-commits] proj/sci:master commit in: dev-lang/path64/ X-VCS-Repository: proj/sci X-VCS-Files: dev-lang/path64/ChangeLog dev-lang/path64/path64-9999.ebuild X-VCS-Directories: dev-lang/path64/ X-VCS-Committer: xarthisius X-VCS-Committer-Name: Kacper Kowalik X-VCS-Revision: d497a85bcc8c25b43c1afbe0282c0cdd0d3a33ca Date: Sat, 23 Jul 2011 10:07:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: b657829d9242e346c9a1a6ffd1620321 commit: d497a85bcc8c25b43c1afbe0282c0cdd0d3a33ca Author: Kacper Kowalik (Xarthisius) gentoo org= > AuthorDate: Sat Jul 23 10:07:16 2011 +0000 Commit: Kacper Kowalik gentoo org> CommitDate: Sat Jul 23 10:07:16 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3Dd497a85b [dev-lang/path64] Add env file --- dev-lang/path64/ChangeLog | 3 +++ dev-lang/path64/path64-9999.ebuild | 16 ++++++++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/dev-lang/path64/ChangeLog b/dev-lang/path64/ChangeLog index 53e690c..9c14339 100644 --- a/dev-lang/path64/ChangeLog +++ b/dev-lang/path64/ChangeLog @@ -3,6 +3,9 @@ # $Header: $ =20 23 Jul 2011; Kacper Kowalik path64-9999.ebuild= : + Add env file + + 23 Jul 2011; Kacper Kowalik path64-9999.ebuild= : Promote native to prefereed, add assembler flag (not working at the mo= ment), remove needless dep on gcc for native =20 diff --git a/dev-lang/path64/path64-9999.ebuild b/dev-lang/path64/path64-= 9999.ebuild index 5b16548..0d72194 100644 --- a/dev-lang/path64/path64-9999.ebuild +++ b/dev-lang/path64/path64-9999.ebuild @@ -11,12 +11,11 @@ if [ "${PV%9999}" !=3D "${PV}" ] ; then PATH64_URI=3D"compiler assembler" PATHSCALE_URI=3D"compiler-rt libcxxrt libdwarf-bsd libunwind stdcxx" DBG_URI=3D"git://github.com/path64/debugger.git" - fi =20 inherit cmake-utils ${SCM} multilib toolchain-funcs =20 -DESCRIPTION=3D"PathScale EKOPath Compiler Suite" +DESCRIPTION=3D"Path64 Compiler Suite Community Edition" HOMEPAGE=3D"http://www.pathscale.com/ekopath-compiler-suite" if [ "${PV%9999}" !=3D "${PV}" ] ; then SRC_URI=3D"" @@ -57,6 +56,14 @@ src_unpack() { EGIT_SOURCEDIR=3D"${WORKDIR}/${P}/compiler/pathdb" git-2_src_unpack } =20 +src_prepare() { + cat > "98${PN}" <<-EOF + PATH=3D/usr/lib/${PN}/bin + ROOTPATH=3D/usr/lib/${PN}/bin + LDPATH=3D/usr/lib/${PN}/lib + EOF +} + src_configure() { local linker=3D$($(tc-getCC) --help -v 2>&1 >/dev/null | grep '\-dynami= c\-linker' | cut -f7 -d' ') local libgcc=3D$($(tc-getCC) -print-libgcc-file-name) @@ -100,3 +107,8 @@ src_configure() { ) cmake-utils_src_configure } + +src_install() { + cmake-utils_src_install + doenvd "98${PN}" +}