diff options
author | 2002-10-15 00:53:10 +0000 | |
---|---|---|
committer | 2002-10-15 00:53:10 +0000 | |
commit | be71c69e0a79e52bfef19c70657fbfbebb632f92 (patch) | |
tree | 6ae14130c6560cb1e1c2954df70618869a9a68cd /net-analyzer/tleds/tleds-1.05_beta11.ebuild | |
parent | Better way to add IPV6 (diff) | |
download | historical-be71c69e0a79e52bfef19c70657fbfbebb632f92.tar.gz historical-be71c69e0a79e52bfef19c70657fbfbebb632f92.tar.bz2 historical-be71c69e0a79e52bfef19c70657fbfbebb632f92.zip |
Fix for #9104
Diffstat (limited to 'net-analyzer/tleds/tleds-1.05_beta11.ebuild')
-rw-r--r-- | net-analyzer/tleds/tleds-1.05_beta11.ebuild | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/net-analyzer/tleds/tleds-1.05_beta11.ebuild b/net-analyzer/tleds/tleds-1.05_beta11.ebuild index 9db3e003f994..33a445d0f307 100644 --- a/net-analyzer/tleds/tleds-1.05_beta11.ebuild +++ b/net-analyzer/tleds/tleds-1.05_beta11.ebuild @@ -1,23 +1,22 @@ # 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.05_beta11.ebuild,v 1.4 2002/10/05 05:39:18 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tleds/tleds-1.05_beta11.ebuild,v 1.5 2002/10/15 00:53:10 vapier Exp $ IUSE="X" MY_P=${P/_/} S=${WORKDIR}/${MY_P/eta11/} -DESCRIPTION="Blinks keyboard LEDs (Light Emitting Diode) indicating outgoing -and incoming network packets on selected network interface." +DESCRIPTION="Blinks keyboard LEDs 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/${MY_P/11/10}.tgz http://www.hut.fi/~jlohikos/tleds/public/${MY_P}.patch.bz2" - + SLOT="0" LICENSE="GPL-2" KEYWORDS="x86 sparc sparc64" DEPEND="X? ( virtual/x11 )" - +RDEPEND="${DEPEND}" src_unpack() { unpack tleds-1.05beta10.tgz @@ -27,15 +26,16 @@ src_unpack() { } src_compile() { - - emake all || die + if [ `use X` ] ; then + emake all || die "make failed :(" + else + emake tleds || die "make tleds failed :(" + fi } -src_install () { - - dobin tleds - - use X && dobin xtleds +src_install() { + dosbin tleds + use X && dosbin xtleds doman tleds.1 dodoc README COPYING Changes |