1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00

net/ndpi: Update to latest upstream commit

Fix missing SONAME (intruduced by mistake in previous update)
This commit is contained in:
Guido Falsi 2023-11-03 19:58:30 +01:00
parent d7b99124a0
commit 2adbe2ccc4
3 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= ndpi
PORTVERSION= 4.8.d20231023
PORTVERSION= 4.8.d20231102
PORTEPOCH= 1
CATEGORIES= net
@ -30,7 +30,7 @@ INSTALL_TARGET= install-strip
USE_GITHUB= yes
GH_ACCOUNT= ntop
GH_PROJECT= nDPI
GH_TAGNAME= b328916
GH_TAGNAME= 816b001
PLIST_SUB= MAJOR_VER=${PORTVERSION:R:R} VER=${PORTVERSION:R}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1698154698
SHA256 (ntop-nDPI-4.8.d20231023-b328916_GH0.tar.gz) = 0ef6805c72ca6f87ec6d2c43e5289e014eeb7cfb48828243202193455fd06522
SIZE (ntop-nDPI-4.8.d20231023-b328916_GH0.tar.gz) = 39479352
TIMESTAMP = 1699024440
SHA256 (ntop-nDPI-4.8.d20231102-816b001_GH0.tar.gz) = ad8243b813864f2cb1c35ebc8d7e9746a81b864e6c994756babb52195642e1d9
SIZE (ntop-nDPI-4.8.d20231102-816b001_GH0.tar.gz) = 39479382

View File

@ -1,4 +1,4 @@
--- src/lib/Makefile.in.orig 2023-10-23 09:45:30 UTC
--- src/lib/Makefile.in.orig 2023-11-02 19:51:08 UTC
+++ src/lib/Makefile.in
@@ -14,15 +14,12 @@ includedir = @includedir@/ndpi
PREFIX = @prefix@
@ -31,7 +31,7 @@
-ifneq ($(OS),Windows_NT)
-OS := $(shell uname)
-endif
BUILD_MINGW = @BUILD_MINGW@
-BUILD_MINGW = @BUILD_MINGW@
-
-ifeq ($(OS),Darwin)
-CC=clang -fno-color-diagnostics
@ -41,7 +41,7 @@
-NDPI_LIB_SHARED_BASE = libndpi
-NDPI_LIB_SHARED = $(NDPI_LIB_SHARED_BASE)-@NDPI_VERSION_SHORT@.dll
-else
-SONAME_FLAG=-Wl,-soname,$(NDPI_LIB_SHARED_BASE).$(NDPI_VERSION_MAJOR)
SONAME_FLAG=-Wl,-soname,$(NDPI_LIB_SHARED_BASE).$(NDPI_VERSION_MAJOR)
-endif
-endif