Update to 1.6.56
Silence patching
This commit is contained in:
parent
b37f3dc326
commit
61a5293329
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=461999
4 changed files with 10 additions and 10 deletions
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= fox
|
||||
PORTVERSION= 1.6.55
|
||||
PORTVERSION= 1.6.56
|
||||
CATEGORIES= x11-toolkits
|
||||
MASTER_SITES= ftp://ftp.fox-toolkit.org/pub/ \
|
||||
http://ftp.fox-toolkit.org/pub/
|
||||
|
@ -83,7 +83,7 @@ CXXFLAGS+= -fexpensive-optimizations -finline-functions
|
|||
post-patch:
|
||||
# Rename man pages as in manpage.1 --> manpage-16.1 to avoid
|
||||
# conflicts with fox14 and fox17
|
||||
files=$$(${FIND} ${WRKSRC} -name *.1); \
|
||||
@files=$$(${FIND} ${WRKSRC} -name *.1); \
|
||||
for f in $$files; do \
|
||||
${MV} $$f `${ECHO_CMD} $$f | ${SED} -e 's|\.1|-16.1|'`; \
|
||||
done;
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1501510377
|
||||
SHA256 (fox-1.6.55.tar.gz) = 172416625221e54dcc1c4293fc892b9695f1e952f4b895376e6604c6c3813d74
|
||||
SIZE (fox-1.6.55.tar.gz) = 4384971
|
||||
TIMESTAMP = 1518758561
|
||||
SHA256 (fox-1.6.56.tar.gz) = c517e5fcac0e6b78ca003cc167db4f79d89e230e5085334253e1d3f544586cb2
|
||||
SIZE (fox-1.6.56.tar.gz) = 4283943
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
--- src/FXString.cpp.orig 2017-04-21 00:34:42 UTC
|
||||
--- src/FXString.cpp.orig 2018-01-17 00:37:42 UTC
|
||||
+++ src/FXString.cpp
|
||||
@@ -2353,7 +2353,7 @@ FXString& FXString::vformat(const FXchar
|
||||
@@ -2353,7 +2353,7 @@ FXString& FXString::vformat(const FXchar* fmt,va_list
|
||||
length(result);
|
||||
vsnprintf(str,length()+1,fmt,args);
|
||||
#elif defined(HAVE_VSNPRINTF) // Have vsnprintf()
|
||||
|
@ -8,4 +8,4 @@
|
|||
+#if (__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1)) || defined(__FreeBSD__)
|
||||
va_list ag;
|
||||
va_copy(ag,args);
|
||||
result=vsnprintf(str,length(),fmt,ag);
|
||||
result=vsnprintf(str,empty()?0:length()+1,fmt,ag);
|
||||
|
|
|
@ -294,11 +294,11 @@ include/fox-%%MAJORVER%%/xincs.h
|
|||
lib/libCHART-%%MAJORVER%%.a
|
||||
lib/libCHART-%%MAJORVER%%.so
|
||||
lib/libCHART-%%MAJORVER%%.so.0
|
||||
lib/libCHART-%%MAJORVER%%.so.0.0.55
|
||||
lib/libCHART-%%MAJORVER%%.so.0.0.56
|
||||
lib/libFOX-%%MAJORVER%%.a
|
||||
lib/libFOX-%%MAJORVER%%.so
|
||||
lib/libFOX-%%MAJORVER%%.so.0
|
||||
lib/libFOX-%%MAJORVER%%.so.0.0.55
|
||||
lib/libFOX-%%MAJORVER%%.so.0.0.56
|
||||
libdata/pkgconfig/fox.pc
|
||||
%%APPS%%man/man1/PathFinder-16.1.gz
|
||||
%%APPS%%man/man1/adie-16.1.gz
|
||||
|
|
Loading…
Reference in a new issue