diff options
Diffstat (limited to 'dev-lang/tcc/tcc-0.9.23.ebuild')
-rw-r--r-- | dev-lang/tcc/tcc-0.9.23.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/dev-lang/tcc/tcc-0.9.23.ebuild b/dev-lang/tcc/tcc-0.9.23.ebuild deleted file mode 100644 index b177cb7b927a..000000000000 --- a/dev-lang/tcc/tcc-0.9.23.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcc/tcc-0.9.23.ebuild,v 1.1 2006/01/08 17:22:27 george Exp $ - -IUSE="" -DESCRIPTION="A very small C compiler for ix86" -HOMEPAGE="http://www.tinycc.org/" -SRC_URI="http://fabrice.bellard.free.fr/tcc/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="-* ~x86" - -DEPEND="virtual/libc" - -src_compile() { - econf || die "configure failed" - emake || die - - # Fix examples - for example in ex*.c; do - tail -n +2 $example >$example.temp - echo '#! /usr/bin/env tcc' >$example - cat $example.temp >>$example - chmod 755 $example - done -} - -src_install() { - #autoconf for the package does not create dirs if they are missing for some reason - dodir /usr/bin - dodir /usr/lib/tcc - dodir /usr/share/man/man1 - dodir /usr/include - dodir /usr/share/doc/${PF} - make \ - bindir=${D}/usr/bin \ - libdir=${D}/usr/lib \ - tccdir=${D}/usr/lib \ - includedir=${D}/usr/include \ - docdir=${D}/usr/share/doc/${PF} \ - mandir=${D}/usr/share/man/ install || die - dodoc Changelog README TODO VERSION COPYING - dohtml tcc-doc.html - dodir /usr/share/doc/${PF}/examples/ - insinto /usr/share/doc/${PF}/examples ; doins ex*.c -} |