blob: 40da213656a8b10e7eda299f9fd4ad81ecf1d383 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/restart_services/restart_services-0.9.7.ebuild,v 1.1 2015/02/15 02:12:43 mschiff Exp $
EAPI=5
DESCRIPTION="Tool to manage OpenRC services that need to be restarted"
HOMEPAGE="http://dev.gentoo.org/~mschiff/restart_services/"
SRC_URI="http://dev.gentoo.org/~mschiff/src/${PN}/${P}.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="
app-admin/lib_users
sys-apps/openrc
"
src_install() {
exeinto /usr/sbin
doexe restart_services
doman restart_services.1
insinto /etc
doins restart_services.conf
dodoc README CHANGES
}
|