blob: 811776a17c32503e6bb5a0df3242e5f4e189cd1a (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
inherit python-r1 udev
DESCRIPTION="Software for the Open Hardware Random Number Generator called OneRNG"
HOMEPAGE="https://www.onerng.info/"
SRC_URI="https://github.com/OneRNG/onerng.github.io/raw/master/sw/${PN}_${PV}.orig.tar.gz -> ${P}.tar.gz"
LICENSE="|| ( LGPL-2.1 LGPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="app-crypt/gnupg
dev-python/python-gnupg[${PYTHON_USEDEP}]
sys-apps/rng-tools
sys-process/at
virtual/udev"
DEPEND="virtual/pkgconfig
virtual/udev"
S="${WORKDIR}/${PN}_${PV}"
pkg_postinst() {
udev_reload
}
pkg_postrm() {
udev_reload
}
|