blob: c6fdafa933f3402f63c15f5ca7fa3b501a7011c9 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/picp/picp-0.6.4.ebuild,v 1.2 2005/01/01 17:55:06 eradicator Exp $
inherit toolchain-funcs
DESCRIPTION="A commandline interface to Microchip's PICSTART+ programmer."
HOMEPAGE="http://home.pacbell.net/theposts/picmicro/"
SRC_URI="http://home.pacbell.net/theposts/picmicro/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
emake CC=$(tc-getCC) OPTIONS="${CFLAGS} -x c++" || die "emake failed"
}
src_install() {
dodoc README HISTORY LICENSE.TXT NOTES PSCOMMANDS.TXT
dohtml PICPmanual.html
dobin picp
}
|