summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEldad Zack <eldad@gentoo.org>2004-07-09 13:34:03 +0000
committerEldad Zack <eldad@gentoo.org>2004-07-09 13:34:03 +0000
commit5270c74ce4647bf5c529ce2da4b56ba15aab29b7 (patch)
treee8e7705a32ef7a182c1e168adce5d7b5a1be7be3 /net-analyzer/snmptt
parentG*_DISABLE_DEPRECATED already removed upstream prior to this release, no need... (diff)
downloadhistorical-5270c74ce4647bf5c529ce2da4b56ba15aab29b7.tar.gz
historical-5270c74ce4647bf5c529ce2da4b56ba15aab29b7.tar.bz2
historical-5270c74ce4647bf5c529ce2da4b56ba15aab29b7.zip
initial ebuild. closes #50968
Diffstat (limited to 'net-analyzer/snmptt')
-rw-r--r--net-analyzer/snmptt/ChangeLog10
-rw-r--r--net-analyzer/snmptt/Manifest4
-rw-r--r--net-analyzer/snmptt/files/digest-snmptt-0.91
-rw-r--r--net-analyzer/snmptt/metadata.xml6
-rw-r--r--net-analyzer/snmptt/snmptt-0.9.ebuild36
5 files changed, 57 insertions, 0 deletions
diff --git a/net-analyzer/snmptt/ChangeLog b/net-analyzer/snmptt/ChangeLog
new file mode 100644
index 000000000000..6e3426ee00dc
--- /dev/null
+++ b/net-analyzer/snmptt/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-analyzer/snmptt
+# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snmptt/ChangeLog,v 1.1 2004/07/09 13:34:03 eldad Exp $
+
+*snmptt-0.9 (09 Jul 2004)
+
+ 09 Jul 2004; Eldad Zack <eldad@gentoo.org> +metadata.xml,
+ +snmptt-0.9.ebuild:
+ Initial ebuild. Thanks to Karl Dag Gursli <karl-d@gursli.com>. Closes #50968
+
diff --git a/net-analyzer/snmptt/Manifest b/net-analyzer/snmptt/Manifest
new file mode 100644
index 000000000000..f85286a238ed
--- /dev/null
+++ b/net-analyzer/snmptt/Manifest
@@ -0,0 +1,4 @@
+MD5 9cfb9cf63d9d771bdd7e7322da463b10 snmptt-0.9.ebuild 877
+MD5 855aea65071ae9c54fcbc8a99c7c7c8c ChangeLog 399
+MD5 193ab07812b3cd299e6fd2dd3d40d15c metadata.xml 215
+MD5 1563776a631f989d7d781026125a53d0 files/digest-snmptt-0.9 59
diff --git a/net-analyzer/snmptt/files/digest-snmptt-0.9 b/net-analyzer/snmptt/files/digest-snmptt-0.9
new file mode 100644
index 000000000000..80ec5a63741e
--- /dev/null
+++ b/net-analyzer/snmptt/files/digest-snmptt-0.9
@@ -0,0 +1 @@
+MD5 85090dee54ed5772c4e6ec939d954271 snmptt_0.9.tgz 107679
diff --git a/net-analyzer/snmptt/metadata.xml b/net-analyzer/snmptt/metadata.xml
new file mode 100644
index 000000000000..a6db43ddbc08
--- /dev/null
+++ b/net-analyzer/snmptt/metadata.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>netmon</herd>
+<longdescription>SNMP Trap Translator</longdescription>
+</pkgmetadata>
diff --git a/net-analyzer/snmptt/snmptt-0.9.ebuild b/net-analyzer/snmptt/snmptt-0.9.ebuild
new file mode 100644
index 000000000000..51851b7bfd88
--- /dev/null
+++ b/net-analyzer/snmptt/snmptt-0.9.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snmptt/snmptt-0.9.ebuild,v 1.1 2004/07/09 13:34:03 eldad Exp $
+
+MY_P=${P/-/_}
+
+DESCRIPTION="SNMP Trap Translator"
+RESTRICT="nomirror"
+SRC_URI="mirror://sourceforge/snmptt/${MY_P}.tgz"
+HOMEPAGE="http://www.snmptt.org/"
+
+LICENSE="GPL-2"
+
+KEYWORDS="~x86"
+SLOT="0"
+IUSE=""
+
+S="${WORKDIR}/${MY_P}"
+
+src_compile() {
+ echo "traphandler default /usr/sbin/snmptt" >examples/snmptrapd.conf.sample
+}
+
+src_install() {
+ into /usr
+ dosbin snmptt
+ dosbin snmptthandler
+ dosbin snmptt-net-snmp-test
+
+ insinto /etc/snmp
+ doins snmptt.ini
+ doins examples/snmptt.conf.generic
+ doins examples/snmptrapd.conf.sample
+
+ dohtml docs/faqs.html docs/index.html docs/layout1.css docs/snmptt.html docs/snmpttconvert.html docs/snmpttconvertmib.html
+}