blob: 3af9d35745d224d40372f82c944216a0a1c54891 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/avrdude/avrdude-5.4.ebuild,v 1.3 2007/07/16 19:10:23 corsair 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
virtual/tetex
sys-apps/texinfo )
sys-devel/bison
sys-devel/flex
${RDEPEND}"
MAKEOPTS="${MAKEOPTS} -j1"
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*
}
|