diff options
author | 2009-07-10 21:44:58 +0000 | |
---|---|---|
committer | 2009-07-10 21:44:58 +0000 | |
commit | 3e58492b7fa815d793d25d0ac04ced35dffb2c5b (patch) | |
tree | 42874946867b8b7dc92e048ad6aca215829fb38e /dev-lang/tcc/tcc-0.9.25.ebuild | |
parent | PyQt4 use dep, #272142 (diff) | |
download | historical-3e58492b7fa815d793d25d0ac04ced35dffb2c5b.tar.gz historical-3e58492b7fa815d793d25d0ac04ced35dffb2c5b.tar.bz2 historical-3e58492b7fa815d793d25d0ac04ced35dffb2c5b.zip |
Version bump, with amd64 support
Package-Manager: portage-2.2_rc33/cvs/Linux i686
Diffstat (limited to 'dev-lang/tcc/tcc-0.9.25.ebuild')
-rw-r--r-- | dev-lang/tcc/tcc-0.9.25.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/dev-lang/tcc/tcc-0.9.25.ebuild b/dev-lang/tcc/tcc-0.9.25.ebuild new file mode 100644 index 000000000000..554690eea858 --- /dev/null +++ b/dev-lang/tcc/tcc-0.9.25.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcc/tcc-0.9.25.ebuild,v 1.1 2009/07/10 21:44:58 truedfx Exp $ + +inherit eutils + +IUSE="" +DESCRIPTION="A very small C compiler for ix86/amd64" +HOMEPAGE="http://bellard.org/tcc/" +SRC_URI="http://download.savannah.nongnu.org/releases/tinycc/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="" +# Both tendra and tinycc install /usr/bin/tcc +RDEPEND="!dev-lang/tendra" + +# Testsuite is broken, relies on gcc to compile +# invalid C code that it no longer accepts +RESTRICT="test" + +src_unpack() { + unpack ${A} + cd "${S}" + #epatch "${FILESDIR}"/${PN}-0.9.23-anonunion.patch + #epatch "${FILESDIR}"/${PN}-0.9.23-asneeded.patch + #epatch "${FILESDIR}"/${PN}-0.9.23-nxbit.patch + + # Don't strip + sed -i -e 's|$(INSTALL) -s|$(INSTALL)|' Makefile + + # Fix examples + sed -i -e '1{ + i#! /usr/bin/tcc -run + /^#!/d + }' examples/ex*.c + sed -i -e '1s/$/ -lX11/' examples/ex4.c +} + +src_compile() { + local myopts + use x86 && myopts="--cpu=x86" + use amd64 && myopts="--cpu=x86-64" + econf ${myopts} + emake || die "make failed" +} + +src_install() { + emake \ + bindir="${D}"/usr/bin \ + libdir="${D}"/usr/lib \ + tccdir="${D}"/usr/lib/tcc \ + includedir="${D}"/usr/include \ + docdir="${D}"/usr/share/doc/${PF} \ + mandir="${D}"/usr/share/man install || die "make install failed" + dodoc Changelog README TODO VERSION + dohtml tcc-doc.html + exeinto /usr/share/doc/${PF}/examples + doexe examples/ex*.c +} |