# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Interface for GDB to Atmel AVR JTAGICE in circuit emulator." HOMEPAGE="http://avarice.sourceforge.net" SRC_URI="mirror://sourceforge/avarice/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="" #This compile cleanly without the following. #Uncomment these when available in portage or in the overlay. # #RDEPEND="dev-embedded/avr-gdb # dev-embedded/avr-insight" #PDEPEND="dev-embedded/avr-gdb # dev-embedded/avr-insight" S=${WORKDIR}/${P} src_compile() { econf || die "econf failed" emake || die "emake failed" } src_install() { einstall || die "make install failed" dodoc AUTHORS COPYING ChangeLog INSTALL doc/avrIceProtocol.txt doc/running.txt doc/todo.txt || die "dodoc failed" }