Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (cd00c0ef0257711cd36221cf136cd16173584efd)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (cd00c0ef0257711cd36221cf136cd16173584efd)
  • Date: Wed, 23 Jan 2008 15:33:42 -0600

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

net/ntop/BUILD | 6 ++++--
net/ntop/CONFIGURE | 2 ++
net/ntop/DEPENDS | 27 ++++++++++++++++++++++++---
net/ntop/DETAILS | 16 ++++++++--------
net/ntop/HISTORY | 13 ++++++++++++-
net/ntop/PRE_BUILD | 3 +++
net/ntop/ntop-3.3.tar.gz.sig |binary
7 files changed, 53 insertions(+), 14 deletions(-)

New commits:
commit cd00c0ef0257711cd36221cf136cd16173584efd
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

ntop: Updated to 3.3 and add SSLv3 support (enabled by default)

diff --git a/net/ntop/BUILD b/net/ntop/BUILD
index 9f2a5f7..c611889 100755
--- a/net/ntop/BUILD
+++ b/net/ntop/BUILD
@@ -1,3 +1,5 @@
-OPTS="$OPTS --localstatedir=${INSTALL_ROOT}/var/cache" &&
-make_single &&
+OPTS="$NTOP_SSLV3 \
+ --localstatedir=${INSTALL_ROOT}/var/cache \
+ $OPTS" &&
+make_single &&
default_build
diff --git a/net/ntop/CONFIGURE b/net/ntop/CONFIGURE
new file mode 100755
index 0000000..ea5783c
--- /dev/null
+++ b/net/ntop/CONFIGURE
@@ -0,0 +1,2 @@
+config_query_option NTOP_SSLV3 'Enable SSLv3 support?' y \
+ '--enable-sslv3' '--disable-sslv3'
diff --git a/net/ntop/DEPENDS b/net/ntop/DEPENDS
index 6aef520..9f6d355 100755
--- a/net/ntop/DEPENDS
+++ b/net/ntop/DEPENDS
@@ -1,6 +1,27 @@
+depends autoconf &&
+depends automake &&
+depends gawk &&
depends gd &&
-depends openssl &&
depends gdbm &&
-depends automake &&
depends libtool &&
-depends libpcap
+depends libpcap &&
+depends libpng &&
+depends m4 &&
+depends rrdtool &&
+depends zlib &&
+
+optional_depends 'mysql' \
+ '--enable-mysql' \
+ '--disable-mysql' \
+ 'for MySQL database support' &&
+
+optional_depends 'openssl' \
+ "--with-ssl --with-ssl-root=$INSTALL_ROOT/usr" \
+ '--without-ssl' \
+ 'for HTTPS (secure HTTP) support' &&
+
+
+optional_depends 'tcp_wrappers' \
+ '--with-tcpwrap' \
+ '--without-tcpwrap' \
+ 'for TCP Wrappers support'
diff --git a/net/ntop/DETAILS b/net/ntop/DETAILS
index 39c5c26..762c04b 100755
--- a/net/ntop/DETAILS
+++ b/net/ntop/DETAILS
@@ -1,20 +1,20 @@
SPELL=ntop
- VERSION=3.2
- SOURCE=$SPELL-$VERSION.tgz
+ VERSION=3.3
+ SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
-
SOURCE_HASH=sha512:6aeb2b7194376a7f04a64800ec272785d7ce57429c3931506506c28a809f3febff8df3ba50f432f198efb0e83553dc99c0824fe63af6574b63054ce8eec34d2e
- WEB_SITE=http://www.ntop.org/
- ENTERED=20020205
- UPDATED=20060102
+#
SOURCE_HASH=sha512:6aeb2b7194376a7f04a64800ec272785d7ce57429c3931506506c28a809f3febff8df3ba50f432f198efb0e83553dc99c0824fe63af6574b63054ce8eec34d2e
+ SOURCE_GPG="gurus.gpg:$SOURCE.sig:WORKS_FOR_ME"
LICENSE[0]=GPL
+ WEB_SITE=http://www.ntop.org/
KEYWORDS="net"
+ ENTERED=20020205
SHORT="Network traffic usage monitor"
cat << EOF
ntop shows network usage in a way similar to what top does for processes.
In interactive mode, it displays the network status on the user's terminal.
-In Web mode, it acts as a Web server, creating an HTML dump of the network
-status. It sports a lightweight network IDS (Intrusion Detection System)
+In Web mode, it acts as a Web server, creating an HTML dump of the network
+status. It sports a lightweight network IDS (Intrusion Detection System)
and an HTTP-based client interface for creating ntop-centric monitoring
applications.
EOF
diff --git a/net/ntop/HISTORY b/net/ntop/HISTORY
index f5bc6fd..ab53430 100644
--- a/net/ntop/HISTORY
+++ b/net/ntop/HISTORY
@@ -1,3 +1,14 @@
+2008-01-22 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 3.3
+ SOURCE is now .tar.gz instead of .gz
+ Removed UPDATED
+ * CONFIGURE: Prompt for SSLv3 support
+ Default to 'y' (even though default is 'n') as SSLv2 is insecure
+ * DEPENDS: Depends on autoconf, libpng, rrdtool, m4, zlib and gawk
+ mysql, tcp_wrappers and openssl are optional
+ * BUILD: Pass NTOP_SSLV3 to OPTS
+ Always pass OPTS last so user may override our settings
+
2006-09-21 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed BUILD_API=2.

@@ -14,7 +25,7 @@
2005-04-07 Eric Sandall <sandalle AT sourcemage.org>
* DETAILS: Removed MAKE_NJOBS=1
Shortened SHORT
- * BUILD: Run make_single before make
+ * BUILD: Run make_single before make
* INSTALL: Run make_normal before make install

2005-01-01 Robert Helgesson <rhelgesson AT sourcemage.org>
diff --git a/net/ntop/PRE_BUILD b/net/ntop/PRE_BUILD
new file mode 100755
index 0000000..f660002
--- /dev/null
+++ b/net/ntop/PRE_BUILD
@@ -0,0 +1,3 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+./autogen.sh --noconfig
diff --git a/net/ntop/ntop-3.3.tar.gz.sig b/net/ntop/ntop-3.3.tar.gz.sig
new file mode 100644
index 0000000..13fcfe9
Binary files /dev/null and b/net/ntop/ntop-3.3.tar.gz.sig differ



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (cd00c0ef0257711cd36221cf136cd16173584efd), Eric Sandall, 01/23/2008

Archive powered by MHonArc 2.6.24.

Top of Page