blob: 316722f221e266cf3d4702e48e54d043afe9e405 (
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
|
# Copyright 1999-2004 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.9 2004/06/09 18:31:22 agriffis Exp $
IUSE="X"
DESCRIPTION="Blinks keyboard LEDs (Light Emitting Diode) indicating outgoing
and incoming network packets on selected network interface."
HOMEPAGE="http://www.hut.fi/~jlohikos/tleds.html"
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 "
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
}
|