blob: 782423ebeb9d2879f3442cf33afd4cbc73bcbef7 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/linksys-tftp/linksys-tftp-1.2.1.ebuild,v 1.3 2004/06/24 23:53:48 agriffis Exp $
DESCRIPTION="TFTP client suitable for uploading to the Linksys WRT54G Wireless Router"
HOMEPAGE="http://redsand.net/"
SRC_URI="http://redsand.net/code/linksys-tftp-${PV}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86"
DEPEND="sys-devel/gcc
virtual/glibc"
RDEPEND="virtual/glibc"
src_compile() {
emake || die
}
src_install() {
exeinto /usr/bin/
doexe linksys-tftp || die
dodoc README
}
|