blob: 823f551d05364a53c5534a8d27bf4f5f9c6d5929 (
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
|
# 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.14.ebuild,v 1.6 2004/06/24 22:57:52 agriffis Exp $
IUSE=""
DESCRIPTION="A very small C compiler for ix86"
HOMEPAGE="http://www.tinycc.org/"
LICENSE="GPL-2"
DEPEND="virtual/glibc"
SRC_URI="http://fabrice.bellard.free.fr/tcc/${P}.tar.gz"
SLOT="0"
KEYWORDS="x86 -sparc"
src_compile() {
mv Makefile Makefile.orig || die
sed -e 's:prefix=/usr/local:prefix=/usr:g' \
-e 's:$(INSTALL) tcc.1 $(manpath)/man1::' \
-e "s:-O2:${CFLAGS} -DRTLD_DEFAULT=NULL:g" \
-e 's:-m386::g' \
Makefile.orig > Makefile || die
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 () {
dodir /usr/bin
dodir /usr/lib
make prefix=${D}/usr install || die
doman tcc.1
dodoc Changelog README TODO
dohtml tcc-doc.html
mkdir ${D}/usr/share/doc/${P}/examples
cp ex*.c ${D}/usr/share/doc/${P}/examples/
}
|