You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
900 B
45 lines
900 B
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
|
|
if [[ ${PV} == "9999" ]] ; then
|
|
EGIT_REPO_URI="git://github.com/liske/${PN}.git"
|
|
inherit git-r3
|
|
SRC_URI=""
|
|
KEYWORDS=""
|
|
else
|
|
SRC_URI="https://github.com/liske/${PN}/archive/v${PV}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
fi
|
|
|
|
DESCRIPTION="Restart daemons after library updates"
|
|
HOMEPAGE="https://fiasko-nw.net/~thomas/tag/needrestart.html https://github.com/liske/needrestart"
|
|
|
|
SLOT="0"
|
|
LICENSE="GPL-2+"
|
|
|
|
RDEPEND="
|
|
>=sys-apps/sed-4.2.2
|
|
dev-perl/libintl-perl
|
|
dev-perl/Module-Find
|
|
dev-perl/Module-ScanDeps
|
|
dev-perl/Proc-ProcessTable
|
|
dev-perl/Sort-Naturally
|
|
dev-perl/TermReadKey
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
sys-devel/gettext
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-parallelmake.patch # https://bugs.gentoo.org/show_bug.cgi?id=588216
|
|
)
|
|
|
|
src_install() {
|
|
default
|
|
doman man/*.1
|
|
dodoc -r ex
|
|
}
|