blob: e00a7415ef190a882c1c25f77106714040f313bf (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tleds/tleds-1.04-r1.ebuild,v 1.3 2002/08/14 12:12:29 murphy Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Blinks keyboard LEDs (Light Emitting Diode) indicating outgoing
and incoming network packets on selected network interface."
HOMEPAGE="http://www.hut.fi/~jlohikos/tleds/"
SRC_URI="http://www.hut.fi/~jlohikos/tleds/public/${P}.tgz
http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/${P}-FuRy.patch.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc sparc64"
DEPEND="X? ( virtual/x11 )"
src_unpack() {
unpack ${P}.tgz
cd ${S}
bzcat ${DISTDIR}/${P}-FuRy.patch.bz2 | patch
}
src_compile() {
emake || die
}
src_install () {
dobin tleds
use X && dobin xtleds
doman tleds.1
dodoc README COPYING Changes
}
|