blob: 77603cc63e9c66555c3f10886e492196454ccfb1 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/picprog/picprog-1.7.ebuild,v 1.3 2004/06/24 22:08:11 agriffis Exp $
DESCRIPTION="a pic16xxx series microcontroller programmer software for the simple serial port device"
HOMEPAGE="http://www.iki.fi/hyvatti/pic/picprog.html"
SRC_URI="http://www.iki.fi/hyvatti/pic/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~x86 ~ppc"
DEPEND="sys-devel/gcc
virtual/glibc
sys-apps/coreutils"
RDEPEND="virtual/glibc"
src_compile() {
emake CXXFLAGS="${CXXFLAGS}" || die
}
src_install() {
dobin picprog
dodoc README
dohtml picprog.html *.png
doman picprog.1
}
|