diff options
author | 2016-03-07 20:40:15 +0100 | |
---|---|---|
committer | 2016-03-07 20:40:30 +0100 | |
commit | d48f7a19d547093ff7c81b7c9d8c008f6e5d3412 (patch) | |
tree | ef7d40d7a1a17773ac78ed6e3dfa20020510744e /app-admin/monit/monit-5.17.1.ebuild | |
parent | dev-ruby/sprockets: add 3.5.2 (diff) | |
download | gentoo-d48f7a19d547093ff7c81b7c9d8c008f6e5d3412.tar.gz gentoo-d48f7a19d547093ff7c81b7c9d8c008f6e5d3412.tar.bz2 gentoo-d48f7a19d547093ff7c81b7c9d8c008f6e5d3412.zip |
app-admin/monit: Bump to version 5.17.1
Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'app-admin/monit/monit-5.17.1.ebuild')
-rw-r--r-- | app-admin/monit/monit-5.17.1.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/app-admin/monit/monit-5.17.1.ebuild b/app-admin/monit/monit-5.17.1.ebuild new file mode 100644 index 000000000000..df1ef806e07d --- /dev/null +++ b/app-admin/monit/monit-5.17.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit pam systemd + +DESCRIPTION="a utility for monitoring and managing daemons or similar programs running on a Unix system" +HOMEPAGE="http://mmonit.com/monit/" +SRC_URI="http://mmonit.com/monit/dist/${P}.tar.gz" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux" +IUSE="libressl pam ssl" + +RDEPEND=" + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl ) + )" +DEPEND="${RDEPEND} + sys-devel/flex + sys-devel/bison + pam? ( virtual/pam )" + +src_prepare() { + default + + sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die "sed failed in Makefile.in" +} + +src_configure() { + econf $(use_with ssl) $(use_with pam) +} + +src_install() { + default + + dodoc README + + insinto /etc; insopts -m600; doins monitrc + newinitd "${FILESDIR}"/monit.initd-5.0-r1 monit + systemd_dounit "${FILESDIR}"/${PN}.service + + use pam && newpamd "${FILESDIR}"/${PN}.pamd ${PN} +} + +pkg_postinst() { + elog "Sample configurations are available at:" + elog "http://mmonit.com/monit/documentation/" +} |