blob: 29393bb35d098401b52b2bce81fb2a9a2d81e903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
DESCRIPTION="Allow users in the entropy group to run system upgrades without password"
HOMEPAGE="http://www.rogentos.ro"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
S="${WORKDIR}"
src_install () {
dodir /usr/share/polkit-1/rules.d
insinto /usr/share/polkit-1/rules.d
doins "${FILESDIR}/10-RigoDaemon.rules"
}
|