1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Update port

This commit is contained in:
Rodrigo Osorio 2015-09-13 22:03:46 +00:00
parent fcbb482959
commit 5547382e16
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=396867
13 changed files with 57 additions and 88 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= libassa
DISTVERSION= 3.5.0
DISTVERSION= 3.5.1
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION:C/\.[0-9]*$//}
@ -11,6 +11,7 @@ COMMENT= C++ networking library and application framework
GNU_CONFIGURE= yes
USES= libtool pathfix pkgconfig
USE_AUTOTOOLS= autoconf
USE_LDCONFIG= yes
PLIST_SUB= ASSA_VERSION=${PORTVERSION:R:R}

View File

@ -1,2 +1,2 @@
SHA256 (libassa-3.5.0.tar.gz) = 72a627c74e82ff679cb16ebe3a625b9032d8d1feed4c1da63ebb5106a80b1314
SIZE (libassa-3.5.0.tar.gz) = 586237
SHA256 (libassa-3.5.1.tar.gz) = c1245a98373f37c0e286b327e2d750fd20278c71f47f2018053b4d799d33172c
SIZE (libassa-3.5.1.tar.gz) = 641255

View File

@ -1,10 +0,0 @@
--- assa/Address.h.orig Wed Sep 6 16:13:45 2006
+++ assa/Address.h Wed Sep 6 16:13:57 2006
@@ -13,7 +13,6 @@
#define ADDRESS_H
#if !defined (WIN32)
-# include <netinet/in.h>
# include <netdb.h>
# include <sys/types.h>
# include <sys/socket.h>

View File

@ -1,10 +0,0 @@
--- assa/Logger_Impl.cpp.orig Thu Jul 20 06:30:54 2006
+++ assa/Logger_Impl.cpp Wed Sep 6 16:20:05 2006
@@ -14,6 +14,7 @@
#include <iostream>
#include <iomanip>
+#include <cstdio>
#include <string.h> // strerror(3)
#include "assa/TimeVal.h"

View File

@ -1,11 +0,0 @@
--- assa/Logger_Impl.h.orig Mon Oct 13 11:30:18 2003
+++ assa/Logger_Impl.h Thu Jan 29 00:28:19 2004
@@ -16,6 +16,8 @@
#include <errno.h>
#include <string>
+#include <stdarg.h>
+#include <sys/types.h>
using std::string;
using std::ostream;

View File

@ -0,0 +1,12 @@
--- assa/Makefile.am.orig 2012-05-18 02:26:21 UTC
+++ assa/Makefile.am
@@ -100,8 +100,7 @@ library_includedir = $(includedir)/
library_include_HEADERS = $(h_sources)
INCLUDES = \
- -I$(top_srcdir) \
- @TIRPC_CFLAGS@
+ -I$(top_srcdir)
lib_LTLIBRARIES = libassa-3.5.la

View File

@ -0,0 +1,21 @@
--- assa/Makefile.in.orig 2015-09-13 20:12:38 UTC
+++ assa/Makefile.in
@@ -198,8 +198,6 @@ SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
-TIRPC_CFLAGS = @TIRPC_CFLAGS@
-TIRPC_LIBS = @TIRPC_LIBS@
VERSION = @VERSION@
WIN32_EXTRA_LDFLAGS = @WIN32_EXTRA_LDFLAGS@
WIN32_EXTRA_LIBADD = @WIN32_EXTRA_LIBADD@
@@ -356,8 +354,7 @@ cpp_sources = \
library_includedir = $(includedir)/assa-@ASSA_RELEASE@/assa
library_include_HEADERS = $(h_sources)
INCLUDES = \
- -I$(top_srcdir) \
- @TIRPC_CFLAGS@
+ -I$(top_srcdir)
lib_LTLIBRARIES = libassa-3.5.la
libassa_3_5_la_SOURCES = $(h_sources) $(cpp_sources)

View File

@ -0,0 +1,19 @@
--- configure.ac.orig 2012-05-23 02:52:25 UTC
+++ configure.ac
@@ -133,16 +133,6 @@ AM_SANITY_CHECK
AC_LANG_CPLUSPLUS
dnl ----------------------------------------------------------------------------
-dnl Fetch LIBTIRPC library flags.
-dnl Sometimes around late 2011/early 2012, glibc 2.14.x discontinued
-dnl support for built-in RPC support. We only use XDR part of it.
-dnl ----------------------------------------------------------------------------
-
-PKG_CHECK_MODULES(TIRPC, libtirpc >= 0.2.2)
-AC_SUBST(TIRPC_CFLAGS)
-AC_SUBST(TIRPC_LIBS)
-
-dnl ----------------------------------------------------------------------------
dnl Check if we are building for Win32
dnl ----------------------------------------------------------------------------
WIN32_EXTRA_LIBADD=

View File

@ -1,11 +0,0 @@
--- examples/logserver/server/MonitorConn.cpp.orig Thu Jul 20 10:30:55 2006
+++ examples/logserver/server/MonitorConn.cpp Thu Sep 7 16:18:01 2006
@@ -20,6 +20,8 @@
#include "LogServer-main.h"
#include "LogServer.h"
+#include <algorithm>
+
/** Convert user input to upper case
*/
template <class T>

View File

@ -1,10 +0,0 @@
--- tests/semaphore_test.cpp.orig Thu Jul 20 06:30:56 2006
+++ tests/semaphore_test.cpp Wed Sep 6 16:30:11 2006
@@ -16,6 +16,7 @@
using namespace std;
#include <assert.h>
+#include <sys/types.h>
#if !defined (WIN32)
# include <sys/ipc.h> // ftok(2)

View File

@ -1,20 +0,0 @@
--- tests/ttcp_assa.cpp.orig Fri Jan 7 10:46:12 2005
+++ tests/ttcp_assa.cpp Tue Mar 22 16:32:30 2005
@@ -91,7 +91,7 @@
IPv4Socket* sock = 0; // Communication socket
struct sockaddr_in peer;
-int peerlen;
+socklen_t peerlen;
int domain, fromlen;
int fd; /* fd of network socket */
@@ -775,7 +775,7 @@
Nread( int fd_, void* buf_, int count )
{
struct sockaddr_in from;
- int len = sizeof(from);
+ socklen_t len = sizeof(from);
register int cnt;
if( udp )

View File

@ -1,11 +0,0 @@
--- tests/charinbuffer_test.cpp.orig Sat Aug 12 23:02:38 2006
+++ tests/charinbuffer_test.cpp Sat Aug 12 23:03:00 2006
@@ -596,7 +596,7 @@
IPv4Socket& s = *this;
if (state () == Task2::start) {
- Assure_exit (s.write (&REQUEST [m_idx], 1) == 1);
+ Assure_exit (s.write (&((REQUEST.c_str())[m_idx]), 1) == 1);
s << flush;
DL((APP,"<== Sent \"%c\" to Loopback\n", REQUEST [m_idx] ));

View File

@ -59,7 +59,6 @@ include/assa-3.5/assa/XDRHack.h
include/assa-3.5/assa/xdrIOBuffer.h
lib/libassa-3.5.a
lib/libassa-3.5.so
lib/libassa-3.5.so.5
lib/libassa-3.5.so.5.0.0
lib/libassa-3.5.so.5.0.1
libdata/pkgconfig/assa-3.5.pc
man/man1/assa-genesis.1.gz