diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2011-10-22 12:09:04 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2011-10-22 12:09:04 +0000 |
commit | 8b24d1b2a3be3949409b0261e21e493fc5e3107b (patch) | |
tree | 7ce39c51cce794eb8bca81ce050b1e68ac49345b /app-admin/logsurfer+/logsurfer+-1.8.ebuild | |
parent | alpha/ia64/s390/sh/sparc stable wrt #386369 (diff) | |
download | gentoo-2-8b24d1b2a3be3949409b0261e21e493fc5e3107b.tar.gz gentoo-2-8b24d1b2a3be3949409b0261e21e493fc5e3107b.tar.bz2 gentoo-2-8b24d1b2a3be3949409b0261e21e493fc5e3107b.zip |
Version bumped, bug #387397.
(Portage version: 2.1.10.29/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/logsurfer+/logsurfer+-1.8.ebuild')
-rw-r--r-- | app-admin/logsurfer+/logsurfer+-1.8.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-admin/logsurfer+/logsurfer+-1.8.ebuild b/app-admin/logsurfer+/logsurfer+-1.8.ebuild new file mode 100644 index 000000000000..f2d7bd4db367 --- /dev/null +++ b/app-admin/logsurfer+/logsurfer+-1.8.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/logsurfer+/logsurfer+-1.8.ebuild,v 1.1 2011/10/22 12:09:04 matsuu Exp $ + +EAPI="4" +inherit toolchain-funcs + +MY_P="logsurfer-${PV}" +DESCRIPTION="Real Time Log Monitoring and Alerting" +HOMEPAGE="http://www.crypt.gen.nz/logsurfer/" +SRC_URI="http://kerryt.orcon.net.nz/${MY_P}.tar.gz + http://www.crypt.gen.nz/logsurfer/${MY_P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + econf --with-etcdir=/etc +} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + dobin src/logsurfer + doman man/logsurfer.1 man/logsurfer.conf.4 + + newinitd "${FILESDIR}"/logsurfer.initd logsurfer + newconfd "${FILESDIR}"/logsurfer.confd logsurfer + dodoc ChangeLog README TODO +} |