diff options
author | Caleb Tennis <caleb@gentoo.org> | 2008-02-06 19:47:56 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2008-02-06 19:47:56 +0000 |
commit | f60ed3969ea5db3f8b99dfb483a63a405548cbd6 (patch) | |
tree | 3a2f2b15e80111a3b68531163fbda36afcbf4433 /app-admin/monit/monit-4.10.1.ebuild | |
parent | Updating package.use.mask for hb and hb2 for evms. (diff) | |
download | gentoo-2-f60ed3969ea5db3f8b99dfb483a63a405548cbd6.tar.gz gentoo-2-f60ed3969ea5db3f8b99dfb483a63a405548cbd6.tar.bz2 gentoo-2-f60ed3969ea5db3f8b99dfb483a63a405548cbd6.zip |
version bump
(Portage version: 2.1.4.1)
Diffstat (limited to 'app-admin/monit/monit-4.10.1.ebuild')
-rw-r--r-- | app-admin/monit/monit-4.10.1.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-admin/monit/monit-4.10.1.ebuild b/app-admin/monit/monit-4.10.1.ebuild new file mode 100644 index 000000000000..59cb9bc16774 --- /dev/null +++ b/app-admin/monit/monit-4.10.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/monit/monit-4.10.1.ebuild,v 1.1 2008/02/06 19:47:55 caleb Exp $ + +DESCRIPTION="a utility for monitoring and managing daemons or similar programs running on a Unix system." +HOMEPAGE="http://www.tildeslash.com/monit/" +SRC_URI="http://www.tildeslash.com/monit/dist/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="ssl" + +RDEPEND="virtual/libc + ssl? ( dev-libs/openssl )" +DEPEND="${RDEPEND} + sys-devel/flex + sys-devel/bison" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i -e '/^INSTALL_PROG/s/-s//' Makefile.in || die "sed failed in Makefile.in" +} + +src_compile() { + econf $(use_with ssl) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + + dodoc CHANGES.txt CONTRIBUTORS FAQ.txt README* STATUS UPGRADE.txt + dohtml -r doc/* + + insinto /etc; insopts -m700; doins monitrc || die "doins monitrc failed" + newinitd "${FILESDIR}"/monit.initd-4.10.1 monit || die "newinitd failed" +} + +pkg_postinst() { + elog "Sample configurations are available at" + elog "http://www.tildeslash.com/monit/doc/examples.php" +} |