From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4BD321384B4 for ; Sat, 26 Dec 2015 01:08:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8A17E079E; Sat, 26 Dec 2015 01:08:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 43689E079E for ; Sat, 26 Dec 2015 01:08:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5997F3403C1 for ; Sat, 26 Dec 2015 01:08:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3496C6F for ; Sat, 26 Dec 2015 01:08:09 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1451092505.0a7f1ad06c32edbed2261693c7b56f244ed4061b.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/monit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/monit/monit-5.15-r1.ebuild X-VCS-Directories: app-admin/monit/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 0a7f1ad06c32edbed2261693c7b56f244ed4061b X-VCS-Branch: master Date: Sat, 26 Dec 2015 01:08:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b54c6849-1d91-4745-986a-82a368edf773 X-Archives-Hash: 44b0a1ba7f5edfe18e5832006f02c89d commit: 0a7f1ad06c32edbed2261693c7b56f244ed4061b Author: Anthony G. Basile gentoo org> AuthorDate: Sat Dec 26 01:15:05 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Dec 26 01:15:05 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a7f1ad0 app-admin/monit: add libressl support Package-Manager: portage-2.2.24 app-admin/monit/monit-5.15-r1.ebuild | 51 ++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/app-admin/monit/monit-5.15-r1.ebuild b/app-admin/monit/monit-5.15-r1.ebuild new file mode 100644 index 0000000..cd3f4d3 --- /dev/null +++ b/app-admin/monit/monit-5.15-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +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="GPL-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() { + 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* + dohtml -r doc/* + + 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/" +}