summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2002-08-17 11:36:27 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2002-08-17 11:36:27 +0000
commitd7339f27da4e838ae12b5b8dfd490ab4ad397c76 (patch)
treea5f3d7c770de77ac14f28c3cad2446a6cbda1cb0 /net-analyzer
parentgcc 3.2 is default (diff)
downloadgentoo-2-d7339f27da4e838ae12b5b8dfd490ab4ad397c76.tar.gz
gentoo-2-d7339f27da4e838ae12b5b8dfd490ab4ad397c76.tar.bz2
gentoo-2-d7339f27da4e838ae12b5b8dfd490ab4ad397c76.zip
Initial import.
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/xprobe/ChangeLog8
-rw-r--r--net-analyzer/xprobe/files/digest-xprobe-0.0.21
-rw-r--r--net-analyzer/xprobe/files/xprobe-0.0.2-gentoo.patch11
-rw-r--r--net-analyzer/xprobe/xprobe-0.0.2.ebuild32
4 files changed, 52 insertions, 0 deletions
diff --git a/net-analyzer/xprobe/ChangeLog b/net-analyzer/xprobe/ChangeLog
new file mode 100644
index 000000000000..facbdadff4c1
--- /dev/null
+++ b/net-analyzer/xprobe/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for net-analyzer/xprobe
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/xprobe/ChangeLog,v 1.1 2002/08/17 11:36:27 aliz Exp $
+
+*xprobe-0.0.2 (17 Aug 2002)
+
+ 17 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> xprobe-0.0.2.ebuild:
+ Initial import. Ebuild submitted by Stoyan Zhekov <zhware@hotpop.com>.
diff --git a/net-analyzer/xprobe/files/digest-xprobe-0.0.2 b/net-analyzer/xprobe/files/digest-xprobe-0.0.2
new file mode 100644
index 000000000000..5119e5328e1e
--- /dev/null
+++ b/net-analyzer/xprobe/files/digest-xprobe-0.0.2
@@ -0,0 +1 @@
+MD5 72761231d7829e0ce4eb8f7db9049405 xprobe-0.0.2.tar.gz 52117
diff --git a/net-analyzer/xprobe/files/xprobe-0.0.2-gentoo.patch b/net-analyzer/xprobe/files/xprobe-0.0.2-gentoo.patch
new file mode 100644
index 000000000000..198975179518
--- /dev/null
+++ b/net-analyzer/xprobe/files/xprobe-0.0.2-gentoo.patch
@@ -0,0 +1,11 @@
+--- Makefile.in Sat Aug 17 13:32:57 2002
++++ Makefile.in Sat Aug 17 13:33:10 2002
+@@ -61,7 +61,7 @@
+ $(INSTALL_PROGRAM) -d $(DESTDIR)/$(bindir)
+ $(INSTALL_PROGRAM) -d $(DESTDIR)/$(mandir)/man1
+ $(INSTALL_PROGRAM) -m 0755 xprobe $(DESTDIR)/$(bindir)
+- $(INSTALL_DATA) xprobe.1 $(mandir)/man1
++ $(INSTALL_DATA) xprobe.1 $(DESTDIR)/$(mandir)/man1
+
+ configure: configure.in
+ autoheader
diff --git a/net-analyzer/xprobe/xprobe-0.0.2.ebuild b/net-analyzer/xprobe/xprobe-0.0.2.ebuild
new file mode 100644
index 000000000000..1c3885bbb539
--- /dev/null
+++ b/net-analyzer/xprobe/xprobe-0.0.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Active OS fingerprinting tool"
+SRC_URI="http://www.sys-security.com/archive/tools/X/${P}.tar.gz"
+HOMEPAGE="http://www.sys-security.com/html/projects/X.html"
+KEYWORDS="x86"
+SLOT="0"
+LICENSE="GPL-2"
+
+DEPEND=">=net-libs/libpcap-0.6.1"
+
+src_unpack() {
+ unpack ${A}
+
+ cd ${S}
+ patch -p0 < ${FILESDIR}/${P}-gentoo.patch || die
+}
+
+src_compile() {
+ econf || die
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS CREDITS LICENSE
+ dodoc Changelog TODO README
+}
+