24 lines
704 B
Bash
24 lines
704 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagircbot/nagircbot-0.0.30.ebuild,v 1.1 2010/01/17 11:01:07 dertobi123 Exp $
|
|
|
|
DESCRIPTION="An irc bot that alerts you to nagios changes"
|
|
HOMEPAGE="http://www.vanheusden.com/nagircbot"
|
|
SRC_URI="http://www.vanheusden.com/nagircbot/${P}.tgz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="net-analyzer/nagios-core"
|
|
|
|
src_install() {
|
|
dodir /usr/bin
|
|
cp "${S}"/nagircbot "${D}"/usr/bin
|
|
|
|
dodir /etc/init.d
|
|
dodir /etc/conf.d
|
|
cp "${FILESDIR}"/conf "${D}"/etc/conf.d/nagircbot
|
|
cp "${FILESDIR}"/init "${D}"/etc/init.d/nagircbot
|
|
}
|