summaryrefslogtreecommitdiff
blob: d50d49f26ba72e4704fba10d6134bec42c28853a (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/avr-gcc/avr-gcc-3.3-r1.ebuild,v 1.6 2004/06/04 11:33:40 pappy Exp $

IUSE="nls"

MY_P=${P/avr-/}
DESCRIPTION="The GNU C compiler for the AVR microcontroller architecture"
HOMEPAGE="http://sources.redhat.com/binutils"
SRC_URI="http://ftp.gnu.org/gnu/gcc/${MY_P}.tar.bz2"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"

DEPEND="virtual/glibc
	dev-embedded/avr-binutils"

src_compile() {
	cd "${WORKDIR}/${MY_P}"

	econf \
		--target=avr \
		--enable-languages=c \
		`use_enable nls` || die

	emake || die
}

src_install() {
	cd "${WORKDIR}/${MY_P}"

	einstall || die
}