blob: ba0f502d71f780ee66e75c396e2bf42de6ced124 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/icdprog/icdprog-0.3.ebuild,v 1.7 2007/01/28 06:15:24 genone Exp $
DESCRIPTION="Microchip PIC Programmer using ICD hardware"
HOMEPAGE="http://icdprg.sf.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="sys-devel/gcc
>=sys-apps/sed-4"
RDEPEND=""
src_unpack() {
unpack ${A}
for f in ${S}/src/Makefile ${S}/src/icddump/Makefile; do
sed -e 's|^CFLAGS.*|CFLAGS += -Wall|' -i ${f}
done
}
src_compile() {
cd ${S}/src
emake
cd ${S}/src/icddump
emake
}
src_install() {
dobin src/icdprog
dobin src/icddump/icddump
dodoc README src/README.coders
}
pkg_postinst() {
elog "Please read the README if the ICD seems to be very slow."
}
|