Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Feb 2013 14:21:39 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r312062 - in head: audio/ccaudio2 audio/ccaudio2/files devel/ccrtp devel/libzrtpcpp net/twinkle
Message-ID:  <201302111421.r1BELd5U024754@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gahr
Date: Mon Feb 11 14:21:38 2013
New Revision: 312062
URL: http://svnweb.freebsd.org/changeset/ports/312062

Log:
  - Chase devel/ucommon shlib versbion bump

Modified:
  head/audio/ccaudio2/Makefile
  head/audio/ccaudio2/files/patch-src_friends.cpp   (contents, props changed)
  head/audio/ccaudio2/files/patch-utils_audiotool.cpp   (contents, props changed)
  head/devel/ccrtp/Makefile   (contents, props changed)
  head/devel/libzrtpcpp/Makefile   (contents, props changed)
  head/net/twinkle/Makefile   (contents, props changed)

Modified: head/audio/ccaudio2/Makefile
==============================================================================
--- head/audio/ccaudio2/Makefile	Mon Feb 11 14:20:03 2013	(r312061)
+++ head/audio/ccaudio2/Makefile	Mon Feb 11 14:21:38 2013	(r312062)
@@ -1,13 +1,9 @@
-# New ports collection makefile for:	ccaudio2
-# Date created:	13 February 2008
-# Whom:		gahr
-#
+# Created by: gahr
 # $FreeBSD$
-#
 
 PORTNAME=	ccaudio2
 PORTVERSION=	2.0.5
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	audio
 MASTER_SITES=	http://www.gnutelephony.org/dist/tarballs/
 
@@ -15,9 +11,9 @@ MAINTAINER=	gahr@FreeBSD.org
 COMMENT=	C++ class framework for manipulating audio files
 
 LIB_DEPENDS=	ccgnu2:${PORTSDIR}/devel/commoncpp \
-    		ucommon.5:${PORTSDIR}/devel/ucommon \
-		gsm.1:${PORTSDIR}/audio/gsm \
-		speex.1:${PORTSDIR}/audio/speex
+    		ucommon:${PORTSDIR}/devel/ucommon \
+		gsm:${PORTSDIR}/audio/gsm \
+		speex:${PORTSDIR}/audio/speex
 
 CONFLICTS=	ccaudio-[0-9]*
 

Modified: head/audio/ccaudio2/files/patch-src_friends.cpp
==============================================================================
--- head/audio/ccaudio2/files/patch-src_friends.cpp	Mon Feb 11 14:20:03 2013	(r312061)
+++ head/audio/ccaudio2/files/patch-src_friends.cpp	Mon Feb 11 14:21:38 2013	(r312062)
@@ -1,5 +1,5 @@
---- src/friends.cpp.orig	2011-02-21 11:15:41.000000000 +0000
-+++ src/friends.cpp	2011-02-21 11:30:59.000000000 +0000
+--- src/friends.cpp.orig	2011-03-21 08:16:40.000000000 +0100
++++ src/friends.cpp	2013-02-11 15:09:54.000000000 +0100
 @@ -22,6 +22,13 @@
  #include <ctype.h>
  #ifdef  HAVE_ENDIAN_H
@@ -14,3 +14,23 @@
  #endif
  #include <ucommon/export.h>
  #include <ccaudio2.h>
+@@ -1186,16 +1193,16 @@
+     if(!dp)
+         return;
+ 
+-    fsys::open(dir, dp, fsys::ACCESS_DIRECTORY);
++    dir.open(dp, fsys::RDONLY);
+ 
+-    while(is(dir) && fsys::read(dir, filename, sizeof(filename)) > 0) {
++    while(is(dir) && dir.read(filename, sizeof(filename)) > 0) {
+         if(filename[0] == '.')
+             continue;
+ 
+         snprintf(path, sizeof(path), "%s/%s", dp, filename);
+         fsys::load(path);
+     }
+-    fsys::close(dir);
++    dir.close();
+ #endif
+ }
+ 

Modified: head/audio/ccaudio2/files/patch-utils_audiotool.cpp
==============================================================================
--- head/audio/ccaudio2/files/patch-utils_audiotool.cpp	Mon Feb 11 14:20:03 2013	(r312061)
+++ head/audio/ccaudio2/files/patch-utils_audiotool.cpp	Mon Feb 11 14:21:38 2013	(r312062)
@@ -1,5 +1,5 @@
---- utils/audiotool.cpp.orig	2011-02-21 11:30:44.000000000 +0000
-+++ utils/audiotool.cpp	2011-02-21 11:30:58.000000000 +0000
+--- utils/audiotool.cpp.orig	2011-03-21 08:16:40.000000000 +0100
++++ utils/audiotool.cpp	2013-02-11 15:13:11.000000000 +0100
 @@ -20,6 +20,13 @@
  #include <config.h>
  #ifdef  HAVE_ENDIAN_H
@@ -13,4 +13,64 @@
 +#endif
  #endif
  
- #if defined(_MSWINDOWS_) && !defined(__BIG_ENDIAN)
+ #if !defined(__BIG_ENDIAN)
+@@ -401,12 +408,12 @@
+         framing = 20;
+ 
+     while(*argv) {
+-        if(!fsys::isfile(*argv)) {
++        if(!fsys::is_file(*argv)) {
+             printf("%s: %s\n",
+                 fname(*(argv++)), _TEXT("invalid"));
+             continue;
+         }
+-        if(fsys::access(*argv, R_OK)) {
++        if(!fsys::is_readable(*argv)) {
+             printf("%s: %s\n",
+                 fname(*(argv++)), _TEXT("inaccessable"));
+             continue;
+@@ -530,12 +537,12 @@
+     }
+ 
+     while(*argv) {
+-        if(!fsys::isfile(*argv)) {
++        if(!fsys::is_file(*argv)) {
+             printf("audiotool: %s: %s\n",
+                 fname(*(argv++)), _TEXT("invalid"));
+             continue;
+         }
+-        if(fsys::access(*argv, R_OK)) {
++        if(!fsys::is_readable(*argv)) {
+             printf("audiotool: %s: %s\n",
+                 fname(*(argv++)), _TEXT("inaccessable"));
+             continue;
+@@ -682,12 +689,12 @@
+         framing = 20;
+ 
+     while(*argv) {
+-        if(!fsys::isfile(*argv)) {
++        if(!fsys::is_file(*argv)) {
+             printf("%s: %s\n",
+                 *(argv++), _TEXT("invalid"));
+             continue;
+         }
+-        if(fsys::access(*argv, R_OK)) {
++        if(!fsys::is_readable(*argv)) {
+             printf("%s: %s\n",
+                 *(argv++), _TEXT("inaccessable"));
+             continue;
+@@ -881,12 +888,12 @@
+         framing = 20;
+ 
+     while(*argv) {
+-        if(!fsys::isfile(*argv)) {
++        if(!fsys::is_file(*argv)) {
+             printf("%s: %s\n",
+                 *(argv++), _TEXT("invalid"));
+             continue;
+         }
+-        if(fsys::access(*argv, R_OK)) {
++        if(!fsys::is_readable(*argv)) {
+             printf("%s: %s\n",
+                 *(argv++), _TEXT("inaccessable"));
+             continue;

Modified: head/devel/ccrtp/Makefile
==============================================================================
--- head/devel/ccrtp/Makefile	Mon Feb 11 14:20:03 2013	(r312061)
+++ head/devel/ccrtp/Makefile	Mon Feb 11 14:21:38 2013	(r312062)
@@ -7,6 +7,7 @@
 
 PORTNAME=	ccrtp
 PORTVERSION=	2.0.5
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	GNU
 
@@ -20,8 +21,8 @@ USE_GMAKE=	yes
 USE_GNOME=	pkgconfig
 USE_LDCONFIG=	yes
 
-CONFIGURE_ENV=	LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
-CPPFLAGS+=	-I${LOCALBASE}/include ${PTHREAD_CFLAGS}
+CONFIGURE_ENV=	LIBS="-L${LOCALBASE}/lib -pthread"
+CPPFLAGS+=	-I${LOCALBASE}/include
 INFO=	ccrtp
 
 post-patch:

Modified: head/devel/libzrtpcpp/Makefile
==============================================================================
--- head/devel/libzrtpcpp/Makefile	Mon Feb 11 14:20:03 2013	(r312061)
+++ head/devel/libzrtpcpp/Makefile	Mon Feb 11 14:21:38 2013	(r312062)
@@ -7,7 +7,7 @@
 
 PORTNAME=	libzrtpcpp
 PORTVERSION=	2.3.2
-PORTREVISION=	0
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	${MASTER_SITE_GNU}
 MASTER_SITE_SUBDIR=ccrtp

Modified: head/net/twinkle/Makefile
==============================================================================
--- head/net/twinkle/Makefile	Mon Feb 11 14:20:03 2013	(r312061)
+++ head/net/twinkle/Makefile	Mon Feb 11 14:21:38 2013	(r312062)
@@ -3,7 +3,7 @@
 
 PORTNAME=	twinkle
 PORTVERSION=	1.4.2
-PORTREVISION=	8
+PORTREVISION=	9
 CATEGORIES=	net
 MASTER_SITES=	http://mfnboer.home.xs4all.nl/twinkle/download/
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302111421.r1BELd5U024754>