summaryrefslogtreecommitdiff
blob: 2b222fd3b0402c7cf4ffb601664d871dfbf6c09d (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/sdcc/sdcc-2.5.0_p20060423.ebuild,v 1.2 2006/05/02 23:31:44 dragonheart Exp $

inherit eutils

MY_PV=${PV/*_p/}
DESCRIPTION="Small device C compiler (for various microprocessors)."
HOMEPAGE="http://sdcc.sourceforge.net/"
SRC_URI="http://sdcc.sourceforge.net/snapshots/sdcc-src/${PN}-src-${MY_PV}.tar.gz"
#	doc? ( http://sdcc.sourceforge.net/snapshots/docs/${PN}-doc-${MY_PV}.tar.gz )"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="doc"
IUSE="doc"

DEPEND=">=dev-embedded/gputils-0.13.2
	dev-libs/boehm-gc"
RDEPEND="!dev-embedded/sdcc-cvs"

S=${WORKDIR}/${PN}

src_unpack() {
	unpack ${A}
	cd ${S}
	find ./ -type f -exec sed -i s:PORTDIR:PORTINGDIR:g  {} \;
	find device/lib/pic*/ -type f -exec sed -i s:ARCH:SDCCARCH:g  {} \;
	find device/lib/pic/libdev/ -type f -exec sed -i s:CFLAGS:SDCCFLAGS:g  {} \;
}

src_compile() {
	econf --enable-libgc || die "configure failed"
	emake || die "emake failed"
}

src_install() {
	make DESTDIR=${D} install || die "Install failed"
	rm -rf ${D}/usr/share/${PN}/doc
	dodoc ChangeLog
	if use doc ; then
		cp -pPR ${WORKDIR}/doc/* ${D}/usr/share/doc/${PF}/
		find ${D}/usr/share/doc/${PF}/ -name *.txt -exec gzip -f -9 {} \;
	fi
}