53 lines
1.3 KiB
Bash
53 lines
1.3 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snmptt/snmptt-1.4.ebuild,v 1.1 2013/11/26 12:32:49 jer Exp $
|
|
|
|
EAPI=5
|
|
|
|
MY_P="${P/-/_}"
|
|
|
|
DESCRIPTION="SNMP Trap Translator"
|
|
SRC_URI="mirror://sourceforge/snmptt/${MY_P}.tgz"
|
|
HOMEPAGE="http://www.snmptt.org/"
|
|
LICENSE="GPL-2"
|
|
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
SLOT="0"
|
|
IUSE="mysql postgres"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
RDEPEND="
|
|
dev-lang/perl
|
|
dev-perl/Config-IniFiles
|
|
net-analyzer/net-snmp
|
|
mysql? ( dev-perl/DBD-mysql )
|
|
postgres? ( dev-perl/DBD-Pg )
|
|
"
|
|
|
|
src_prepare() {
|
|
# bug 105354, daemonize this thing
|
|
sed -i \
|
|
-e 's:mode = standalone:mode = daemon:g' \
|
|
-e '/pid_file/s:/var/run:/run:g' \
|
|
snmptt.ini || die
|
|
|
|
echo "traphandle default /usr/sbin/snmptt" >examples/snmptrapd.conf.sample
|
|
}
|
|
|
|
src_install() {
|
|
into /usr
|
|
dosbin snmptt snmptthandler snmptt-net-snmp-test snmpttconvert \
|
|
snmpttconvertmib
|
|
|
|
insinto /etc/snmp
|
|
doins snmptt.ini examples/snmptt.conf.generic \
|
|
examples/snmptrapd.conf.sample
|
|
newins examples/snmptt.conf.generic snmptt.conf
|
|
|
|
dodoc BUGS ChangeLog README sample-trap
|
|
dohtml docs/faqs.html docs/index.html docs/layout1.css docs/snmptt.html \
|
|
docs/snmpttconvert.html docs/snmpttconvertmib.html
|
|
|
|
newinitd "${FILESDIR}"/snmptt.initd-r1 snmptt
|
|
}
|