blob: 6c61d8762cc02624aa59a42325be91dbe7f71429 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/tcc/tcc-0.9.19.ebuild,v 1.6 2004/07/02 04:32:26 eradicator 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 -sparc"
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
make prefix=${D}/usr \
bindir=${D}/usr/bin/ \
libdir=${D}/usr/lib/ \
includedir=${D}/usr/include/ \
mandir=${D}/usr/share/man/ install || die
dodoc Changelog README TODO VERSION COPYING
dohtml tcc-doc.html
mkdir ${D}/usr/share/doc/${PF}/examples
cp ex*.c ${D}/usr/share/doc/${PF}/examples/
}
|