blob: f065c29077e271293fe29372da6eec46e1758748 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-tinyos/tos-uisp/tos-uisp-1.1.15.ebuild,v 1.2 2006/11/14 22:02:09 sanchan Exp $
inherit flag-o-matic
CVS_MONTH="Dec"
CVS_YEAR="2005"
MY_P="tinyos"
DESCRIPTION="The TinyOS uisp, a tool for AVR which can interface to in-system programmers"
HOMEPAGE="http://www.tinyos.net/"
SRC_URI="http://www.tinyos.net/dist-1.1.0/tinyos/source/${MY_P}-${PV}${CVS_MONTH}${CVS_YEAR}cvs.tar.gz"
LICENSE="Intel"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND="!dev-embedded/uisp"
RDEPEND="!dev-embedded/uisp"
S=${WORKDIR}/${MY_P}-${PV}${CVS_MONTH}${CVS_YEAR}cvs/tools/src/uisp
src_compile() {
append-ldflags $(bindnow-flags)
dosed "s:AM_INIT_AUTOMAKE(uisp, 20050519tinyos):AM_INIT_AUTOMAKE(tos-uisp, ${PV}):" configure.in
./bootstrap
econf || die "configure failed"
emake || die "make failed"
}
src_install() {
INSTALL_MASK=/usr/share/doc/uisp-20050519tinyos
emake DESTDIR=${D} install || die "install failed"
dodoc doc/* AUTHORS ChangeLog CHANGES TODO
}
|