blob: 71fdfbd5c59feb4660fe2e5cf4d15b806446cfc5 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/etherwake/etherwake-1.08.ebuild,v 1.5 2003/09/05 22:13:37 msterret Exp $
DESCRIPTION="This program generates and transmits a Wake-On-LAN (WOL) \"Magic Packet\", used for restarting machines that have been soft-powered-down (ACPI D3-warm state)."
SRC_URI="http://www.scyld.com/pub/diag/ether-wake.c
http://www.scyld.com/pub/diag/etherwake.8"
HOMEPAGE="http://www.scyld.com/expert/wake-on-lan.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~sparc ~alpha"
DEPEND="virtual/glibc"
src_compile() {
gcc ${CFLAGS} -o etherwake ${DISTDIR}/ether-wake.c
}
src_install() {
dosbin etherwake
doman ${DISTDIR}/etherwake.8
dodoc ${FILESDIR}/readme
}
|