106 lines
3.0 KiB
Ruby
106 lines
3.0 KiB
Ruby
class Ntopng < Formula
|
|
desc "Next generation version of the original ntop"
|
|
homepage "https://www.ntop.org/products/traffic-analysis/ntop/"
|
|
license "GPL-3.0-only"
|
|
|
|
stable do
|
|
url "https://github.com/ntop/ntopng/archive/5.2.1.tar.gz"
|
|
sha256 "67404ccd87202864d2c3c44426e60cb59cc2e87d746c704b27e6a63d61ec7644"
|
|
|
|
depends_on "ndpi"
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 arm64_monterey: "31eaa1a7f8dda4581fb978000e3093b0188a3a2acb24bb8d41c49d75f5d52886"
|
|
sha256 arm64_big_sur: "75e5926447d6cd3458972f6722ad0a40d830e5861dc8155d39dc420f6729926b"
|
|
sha256 monterey: "2795c00b9e7a9cfe07b5680f19f4cef01031772698590020b2884959d70e8d7b"
|
|
sha256 big_sur: "d1d0b881045256f15a9f8a48fb17751ccf82427af51d8ef53c95bb175f7af6e9"
|
|
sha256 catalina: "0142b79173004b26028cd90318fddce419f435f14b801f1b5b92166b56657d61"
|
|
sha256 x86_64_linux: "541e338e6aeeff76cbaee1fc6b8f7abf6513fa35275d4f3234d9b9b947866c14"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/ntop/ntopng.git", branch: "dev"
|
|
|
|
resource "nDPI" do
|
|
url "https://github.com/ntop/nDPI.git", branch: "dev"
|
|
end
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "gnutls" => :build
|
|
depends_on "json-glib" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "lua" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "geoip"
|
|
depends_on "json-c"
|
|
depends_on "libmaxminddb"
|
|
depends_on "mysql-client"
|
|
depends_on "redis"
|
|
depends_on "rrdtool"
|
|
depends_on "sqlite" # try to change to uses_from_macos after python is not a dependency
|
|
depends_on "zeromq"
|
|
|
|
uses_from_macos "curl"
|
|
uses_from_macos "libpcap"
|
|
|
|
fails_with gcc: "5"
|
|
|
|
# Allow dynamic linking with nDPI
|
|
patch :DATA
|
|
|
|
def install
|
|
if build.head?
|
|
resource("nDPI").stage do
|
|
system "./autogen.sh"
|
|
system "make"
|
|
(buildpath/"nDPI").install Dir["*"]
|
|
end
|
|
end
|
|
|
|
system "./autogen.sh"
|
|
system "./configure", *std_configure_args
|
|
system "make"
|
|
system "make", "install", "MAN_DIR=#{man}"
|
|
end
|
|
|
|
test do
|
|
redis_port = free_port
|
|
redis_bin = Formula["redis"].bin
|
|
fork do
|
|
exec redis_bin/"redis-server", "--port", redis_port.to_s
|
|
end
|
|
sleep 3
|
|
|
|
mkdir testpath/"ntopng"
|
|
fork do
|
|
exec bin/"ntopng", "-i", test_fixtures("test.pcap"), "-d", testpath/"ntopng", "-r", "localhost:#{redis_port}"
|
|
end
|
|
sleep 15
|
|
|
|
assert_match "list", shell_output("#{redis_bin}/redis-cli -p #{redis_port} TYPE ntopng.trace")
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/configure.ac.in b/configure.ac.in
|
|
index b32ae1a2d19..9c2ef3eb140 100644
|
|
--- a/configure.ac.in
|
|
+++ b/configure.ac.in
|
|
@@ -234,10 +234,8 @@ if test -d /usr/local/include/ndpi ; then :
|
|
fi
|
|
|
|
PKG_CHECK_MODULES([NDPI], [libndpi >= 2.0], [
|
|
- NDPI_INC=`echo $NDPI_CFLAGS | sed -e "s/[ ]*$//"`
|
|
- # Use static libndpi library as building against the dynamic library fails
|
|
- NDPI_LIB="-Wl,-Bstatic $NDPI_LIBS -Wl,-Bdynamic"
|
|
- #NDPI_LIB="$NDPI_LIBS"
|
|
+ NDPI_INC="$NDPI_CFLAGS"
|
|
+ NDPI_LIB="$NDPI_LIBS"
|
|
NDPI_LIB_DEP=
|
|
], [
|
|
AC_MSG_CHECKING(for nDPI source)
|