blob: 13479748f6633d55268d9e793508280e0081f272 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/avr-libc/avr-libc-1.0.2-r1.ebuild,v 1.6 2004/09/23 22:35:26 dragonheart Exp $
# MY_P=${P/avr-/}
# SRC_URI="http://savannah.nongnu.org/download/avr-libc/${MY_P}.tar.bz2"
DESCRIPTION="Libc for the AVR microcontroller architecture"
HOMEPAGE="http:////www.nongnu.org/avr-libc/"
# eiter .tar.gz or tar.bz2
SRC_URI="http://savannah.nongnu.org/download/avr-libc/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="nls"
DEPEND="dev-embedded/avr-gcc"
src_compile() {
mkdir obj-avr
cd obj-avr
export CC=avr-gcc
export CFLAGS=""
../configure \
--target=avr \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
`use_enable nls` || die "./configure failed"
emake || die
}
src_install() {
cd obj-avr
einstall || die
}
|