diff options
author | Simon Stelling <blubb@gentoo.org> | 2005-04-09 08:50:24 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2005-04-09 08:50:24 +0000 |
commit | eae384ba71f4634b502ccf7602fa390fc3bc5a10 (patch) | |
tree | 6c715cfef80682b14fc529d0c5aba95dcacc5f33 /dev-util | |
parent | ~amd64, 83524 (diff) | |
download | historical-eae384ba71f4634b502ccf7602fa390fc3bc5a10.tar.gz historical-eae384ba71f4634b502ccf7602fa390fc3bc5a10.tar.bz2 historical-eae384ba71f4634b502ccf7602fa390fc3bc5a10.zip |
~amd64
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/jscalltree/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/jscalltree/Manifest | 4 | ||||
-rw-r--r-- | dev-util/jscalltree/jscalltree-2.3.ebuild | 16 |
3 files changed, 20 insertions, 7 deletions
diff --git a/dev-util/jscalltree/ChangeLog b/dev-util/jscalltree/ChangeLog index 79ea99e66d63..df6dbe77667d 100644 --- a/dev-util/jscalltree/ChangeLog +++ b/dev-util/jscalltree/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/jscalltree -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/jscalltree/ChangeLog,v 1.3 2004/06/25 02:37:40 agriffis Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/jscalltree/ChangeLog,v 1.4 2005/04/09 08:50:24 blubb Exp $ + + 09 Apr 2005; Simon Stelling <blubb@gentoo.org> jscalltree-2.3.ebuild: + added ~amd64 06 Apr 2004; David Holm <dholm@gentoo.org> jscalltree-2.3.ebuild: Added to ~ppc. diff --git a/dev-util/jscalltree/Manifest b/dev-util/jscalltree/Manifest index 9c1ff6f74bb0..98ebb0990113 100644 --- a/dev-util/jscalltree/Manifest +++ b/dev-util/jscalltree/Manifest @@ -1,4 +1,4 @@ -MD5 b096993f1234eaac7562c8da065a7e9f jscalltree-2.3.ebuild 692 -MD5 4d5d075d7a6363aedbc6cfed92de1084 ChangeLog 422 +MD5 d31382c3898fada9a2988656bee7c1c1 ChangeLog 507 +MD5 d48635046cdab788af491e57e7fa4d9f jscalltree-2.3.ebuild 907 MD5 ae71feb28329a0e90ef4e89af1c6d309 metadata.xml 223 MD5 51175ce652917010f35c437f37bd2a3e files/digest-jscalltree-2.3 65 diff --git a/dev-util/jscalltree/jscalltree-2.3.ebuild b/dev-util/jscalltree/jscalltree-2.3.ebuild index 8212d8d6bb75..6465b8a1eb4d 100644 --- a/dev-util/jscalltree/jscalltree-2.3.ebuild +++ b/dev-util/jscalltree/jscalltree-2.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/jscalltree/jscalltree-2.3.ebuild,v 1.3 2004/06/25 02:37:40 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/jscalltree/jscalltree-2.3.ebuild,v 1.4 2005/04/09 08:50:24 blubb Exp $ MY_P=${P/js/} DESCRIPTION="Static call tree generator for C programs" @@ -9,11 +9,21 @@ SRC_URI="ftp://ftp.berlios.de/pub/calltree/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ~ppc" +KEYWORDS="x86 ~ppc ~amd64" IUSE="" DEPEND="" S=${WORKDIR}/${MY_P} +src_unpack() { + unpack ${A} + + # No rules file for amd64 but the x86 one seems to work well. + if use amd64; then + cd ${S}/RULES + [ -f x86_64-linux-cc.rul ] || ln -s i586-linux-cc.rul x86_64-linux-cc.rul + fi +} + src_compile() { emake || die "make failed" } |