blob: abc4a54988dfe7f198efe79cf15cec151d18e16c (
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
39
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ieee-oui/ieee-oui-0.ebuild,v 1.1 2012/09/05 20:56:58 axs Exp $
EAPI=4
DESCRIPTION="Getter via cron for oui.txt from standards.ieee.org"
HOMEPAGE="http://standards.ieee.org/regauth/oui/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE=""
RDEPEND="sys-apps/util-linux
net-misc/wget
virtual/cron"
S="${WORKDIR}"
src_install() {
keepdir /var/lib/misc
exeinto /etc/cron.weekly
newexe "${FILESDIR}"/${P}.sh ${PN}
}
pkg_postinst() {
einfo "Launching cron.weekly/${PN} to get initial update ..."
/etc/cron.weekly/${PN}
if [ ! -e /var/lib/misc/oui.txt ]; then
eerror "Could not download current copy of oui.txt from standards.ieee.org ;"
eerror "Please re-emerge or manually run /etc/cron.weekly/${P} to update."
fi
}
pkg_prerm() {
rm -f /var/lib/misc/oui.txt
}
|