diff options
author | Craig Andrews <candrews@gentoo.org> | 2018-06-25 09:16:37 -0400 |
---|---|---|
committer | Craig Andrews <candrews@gentoo.org> | 2018-06-25 09:16:58 -0400 |
commit | 6e7d09d44473d25f519a968f83efdc008ea9822f (patch) | |
tree | 90c1f106169f9e5e6b94cbd194f73276cb5014f0 /app-admin/needrestart/needrestart-3.3.ebuild | |
parent | x11-libs/pango: Stable for HPPA too. (diff) | |
download | gentoo-6e7d09d44473d25f519a968f83efdc008ea9822f.tar.gz gentoo-6e7d09d44473d25f519a968f83efdc008ea9822f.tar.bz2 gentoo-6e7d09d44473d25f519a968f83efdc008ea9822f.zip |
app-admin/needrestart: 3.3 version bump
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'app-admin/needrestart/needrestart-3.3.ebuild')
-rw-r--r-- | app-admin/needrestart/needrestart-3.3.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app-admin/needrestart/needrestart-3.3.ebuild b/app-admin/needrestart/needrestart-3.3.ebuild new file mode 100644 index 000000000000..062247caf71e --- /dev/null +++ b/app-admin/needrestart/needrestart-3.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/liske/${PN}.git" + inherit git-r3 + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/liske/${PN}/archive/v${PV}.tar.gz -> ${P}.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-lang/perl:= + dev-perl/libintl-perl + dev-perl/Module-Find + dev-perl/Module-ScanDeps + dev-perl/Proc-ProcessTable + dev-perl/Sort-Naturally + dev-perl/TermReadKey + sys-apps/init-system-helpers +" +DEPEND="${RDEPEND} + sys-devel/gettext +" + +src_install() { + default + doman man/*.1 + dodoc -r ex +} |