blob: b50cdd9c163ded88ee0881b36b3396f55d7eeb60 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/avrdude/avrdude-5.1.ebuild,v 1.6 2006/03/10 19:44:09 hansmi Exp $
DESCRIPTION="AVR Downloader/UploaDEr"
HOMEPAGE="http://savannah.nongnu.org/projects/avrdude"
SRC_URI="http://savannah.nongnu.org/download/avrdude/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc ppc64 x86"
IUSE="doc"
RDEPEND="sys-libs/readline
sys-libs/ncurses
dev-libs/libusb"
DEPEND="doc? ( app-text/texi2html
app-text/tetex
sys-apps/texinfo )
sys-devel/bison
sys-devel/flex
${RDEPEND}"
src_unpack() {
unpack "${A}"
cd "${S}"
# let the build system re-generate these, bug #120194
rm -f lexer.c config_gram.c config_gram.h
}
src_compile() {
econf $(use_enable doc) || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS NEWS README ChangeLog*
}
|