blob: ff1718974a871d7637064884f59ac5c15dd71c5f (
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
|
# Copyright 1999-2005 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.2.5-r1.ebuild,v 1.5 2005/11/24 18:43:24 corsair Exp $
inherit eutils flag-o-matic
DESCRIPTION="Libc for the AVR microcontroller architecture"
HOMEPAGE="http://www.nongnu.org/avr-libc/"
SRC_URI="http://savannah.nongnu.org/download/avr-libc/${P}.tar.bz2
http://savannah.nongnu.org/download/avr-libc/${PN}-manpages-${PV}.tar.bz2
doc? ( http://savannah.nongnu.org/download/avr-libc/${PN}-user-manual-${PV}.tar.bz2 )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 x86"
IUSE="doc nls"
DEPEND=">=sys-devel/crossdev-0.9.1"
[[ ${CATEGORY/cross-} != ${CATEGORY} ]] \
&& RDEPEND="!dev-embedded/avr-libc" \
|| RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-macros.patch
}
src_compile() {
export AS=avr-as AR=avr-ar RANLIB=avr-ranlib CC=avr-gcc ABI=retarded
strip-flags
strip-unsupported-flags
mkdir obj-avr
cd "${S}"/obj-avr
ECONF_SOURCE="${S}" CHOST="avr" CTARGET="avr" econf \
$(use_enable nls) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
dodoc AUTHORS ChangeLog* NEWS README
cd "${S}"/obj-avr
make DESTDIR="${D}" install || die "make install failed"
# man pages can not go into standard locations
# as they would then overwrite libc man pages
dosed "s:\$(VERSION):${PVR}:" /usr/bin/avr-man
insinto /usr/share/doc/${PF}/man/man3
doins "${WORKDIR}"/man3/*
prepman /usr/share/doc/${PF}
use doc && dohtml "${WORKDIR}"/${PN}-user-manual-${PV}/*
}
|