blob: 554690eea8588dc4be5242aa5280d054497ac9c9 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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
}
|