<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>
-wol implements Wake On LAN functionality in a small program. It wakes up hardware that is Magic Packet compliant.
-Consider you have a sleeping or turned-off computer and you want to remotely wake him up. Just type
-"wol MAC-ADDRESS" and the host wakes up (OK, it will boot ;-).
-</longdescription>
- <upstream>
- <remote-id type="sourceforge">ahh</remote-id>
- </upstream>
+ <maintainer type="person">
+ <email>ck+gentoo@bl4ckb0x.de</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <longdescription>
+ This is wol, the Wake On Lan client.
+ It wakes up magic packet compliant machines such as boxes
+ with wake-on-lan ethernet-cards.
+ Some workstations provide SecureON which extends
+ wake-on-lan with a password. This feature is also provided by wol.
+ </longdescription>
+ <upstream>
+ <remote-id type="sourceforge">ahh</remote-id>
+ </upstream>
</pkgmetadata>
--- /dev/null
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Implements Wake On LAN (Magic Paket) functionality in a small program"
+HOMEPAGE="http://ahh.sourceforge.net/wol/"
+SRC_URI="mirror://sourceforge/ahh/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
+IUSE="nls"
+
+src_configure() {
+ local myeconfargs=(
+ --disable-rpath
+ $(use_enable nls)
+ )
+
+ econf ${myeconfargs[@]}
+}