mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
*/*: Bump after update devel/poco
Bump PORTREVISION for all consumers of the devel/poco.
In multimedia/nymphrpc add patch from upstream to support newer poco:
d56411046e
https://github.com/MayaPosch/NymphRPC/issues/9
security/clamfs: while here replace PORTVERSION with DISTVERSION and
remove GNU_CONFIGURE_MANPREFIX.
PR: 282219
Approved by: adridg
This commit is contained in:
parent
584922c914
commit
afabf7e5e9
6 changed files with 18 additions and 18 deletions
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= mumble
|
||||
DISTVERSION= 1.5.634
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= https://github.com/${PORTNAME}-voip/${PORTNAME}/releases/download/v${DISTVERSION}/
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= NymphCast
|
||||
DISTVERSION= v0.1
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= multimedia
|
||||
|
||||
MAINTAINER= adridg@FreeBSD.org
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= NymphCastLib
|
||||
DISTVERSION= v0.1
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= multimedia
|
||||
|
||||
MAINTAINER= adridg@FreeBSD.org
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= NymphRPC
|
||||
DISTVERSION= v0.1
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= multimedia devel
|
||||
|
||||
MAINTAINER= adridg@FreeBSD.org
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
--- Makefile.orig 2021-12-16 10:20:49 UTC
|
||||
--- Makefile.orig 2022-03-20 11:56:45 UTC
|
||||
+++ Makefile
|
||||
@@ -7,6 +7,8 @@
|
||||
@@ -7,6 +7,8 @@ export TOP := $(CURDIR)
|
||||
|
||||
export TOP := $(CURDIR)
|
||||
|
||||
+CXX ?= g++
|
||||
+
|
||||
ifndef ANDROID_ABI_LEVEL
|
||||
ANDROID_ABI_LEVEL := 21
|
||||
ANDROID_ABI_LEVEL := 24
|
||||
endif
|
||||
@@ -31,9 +33,7 @@ TOOLCHAIN_POSTFIX := .cmd
|
||||
@@ -37,9 +39,7 @@ endif
|
||||
endif
|
||||
endif
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
|||
|
||||
USYS := $(shell uname -s)
|
||||
UMCH := $(shell uname -m)
|
||||
@@ -60,7 +60,7 @@ MAKEDIR = mkdir -p
|
||||
@@ -71,7 +71,7 @@ else
|
||||
RM = rm
|
||||
AR = ar
|
||||
else
|
||||
|
@ -29,19 +29,20 @@
|
|||
MAKEDIR = mkdir -p
|
||||
RM = rm
|
||||
AR = ar
|
||||
@@ -81,9 +81,10 @@ endif
|
||||
@@ -92,9 +92,10 @@ INCLUDE = -I src
|
||||
|
||||
|
||||
INCLUDE = -I src
|
||||
+INCLUDE += -I /usr/local/include
|
||||
LIBS := -lPocoNet -lPocoUtil -lPocoFoundation -lPocoJSON
|
||||
CFLAGS := $(INCLUDE) -g3 -std=c++11 -O0
|
||||
-CFLAGS := $(INCLUDE) -g3 -std=c++11 -O0
|
||||
-SHARED_FLAGS := -fPIC -shared -Wl,$(SONAME),$(LIBNAME)
|
||||
+CFLAGS := $(INCLUDE) -g3 -std=c++14 -O0
|
||||
+SHARED_FLAGS := -fPIC -shared -Wl,$(SONAME),$(LIBNAME) -L /usr/local/lib
|
||||
|
||||
ifdef ANDROID
|
||||
CFLAGS += -fPIC
|
||||
@@ -113,9 +114,10 @@ SOURCES := $(wildcard src/*.cpp)
|
||||
@@ -132,9 +133,10 @@ SHARED_OBJECTS := $(addprefix obj/shared/$(ARCH),$(not
|
||||
OBJECTS := $(addprefix obj/static/$(ARCH),$(notdir) $(SOURCES:.cpp=.o))
|
||||
SHARED_OBJECTS := $(addprefix obj/shared/$(ARCH),$(notdir) $(SOURCES:.cpp=.o))
|
||||
|
||||
|
@ -54,7 +55,7 @@
|
|||
|
||||
obj/static/$(ARCH)%.o: %.cpp
|
||||
$(GCC) -c -o $@ $< $(CFLAGS)
|
||||
@@ -123,11 +125,11 @@ obj/static/$(ARCH)%.o: %.cpp
|
||||
@@ -142,11 +144,11 @@ obj/shared/$(ARCH)%.o: %.cpp
|
||||
obj/shared/$(ARCH)%.o: %.cpp
|
||||
$(GCC) -c -o $@ $< $(SHARED_FLAGS) $(CFLAGS) $(LIBS)
|
||||
|
||||
|
@ -68,7 +69,7 @@
|
|||
$(GCC) -o $@ $(CFLAGS) $(SHARED_FLAGS) $(SHARED_OBJECTS) $(LIBS)
|
||||
|
||||
makedir:
|
||||
@@ -165,9 +167,9 @@ endif
|
||||
@@ -184,9 +186,9 @@ install:
|
||||
.PHONY: install
|
||||
install:
|
||||
install -d $(DESTDIR)$(PREFIX)/lib/
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PORTNAME= clamfs
|
||||
PORTVERSION= 1.2.0
|
||||
PORTREVISION= 4
|
||||
DISTVERSION= 1.2.0
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= https://github.com/burghardt/${PORTNAME}/releases/download/${PORTNAME}-${PORTVERSION}/
|
||||
MASTER_SITES= https://github.com/burghardt/${PORTNAME}/releases/download/${PORTNAME}-${DISTVERSION}/
|
||||
|
||||
MAINTAINER= anastasios@mageirias.com
|
||||
COMMENT= User-space fs with on-access antivirus scanning
|
||||
|
@ -20,7 +20,6 @@ RUN_DEPENDS= clamd:security/clamav
|
|||
USES= autoreconf compiler:c++11-lib fuse:3 pkgconfig
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
|
||||
|
||||
PLIST_FILES= bin/clamfs \
|
||||
share/man/man1/clamfs.1.gz
|
||||
|
|
Loading…
Add table
Reference in a new issue