blob: 95bec28272266f62304c5bb3900c92e9693dd51f (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-embedded/picasm/picasm-1.12b.ebuild,v 1.2 2004/03/05 09:03:51 dragonheart Exp $
MY_PV="${PV//.}"
MY_P="${PN}${MY_PV}"
DESCRIPTION="An assembler and disassembler for 12 and 14-bit PIC chips"
HOMEPAGE="http://www.iki.fi/trossi/pic/"
SRC_URI="http://www.iki.fi/trossi/pic/${MY_P}.tar.gz"
LICENSE="X11"
SLOT="0"
IUSE=""
KEYWORDS="x86"
DEPEND="sys-devel/gcc"
RDEPEND=""
S="${WORKDIR}/${PN}"
src_compile() {
emake CFLAGS="${CFLAGS}" CC="${CC}" || die
}
src_install() {
dobin picasm
dodoc picasm.txt devices.txt HISTORY TODO
dohtml picasm.html
docinto examples
dodoc examples/*
}
|