blob: afa3fe90439f2957961c485719ca5ef4411ed6f6 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/avrdude/avrdude-4.4.0.ebuild,v 1.4 2005/05/03 16:07:23 dholm Exp $
DESCRIPTION="AVR Downloader/UploaDEr"
HOMEPAGE="http://www.nongnu.org/avrdude/"
SRC_URI="http://savannah.nongnu.org/download/avrdude/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND="app-text/tetex
sys-devel/flex
sys-devel/bison
sys-devel/gcc
sys-libs/ncurses
sys-apps/grep
sys-libs/readline
virtual/libc
app-text/texi2html"
RDEPEND="virtual/libc
sys-libs/ncurses"
src_install() {
emake DESTDIR=${D} install || die
}
|