svn commit: r416830 - in head/audio: baresip re rem

Ben Woods woodsb02 at FreeBSD.org
Mon Jun 13 06:22:23 UTC 2016


Author: woodsb02
Date: Mon Jun 13 06:22:21 2016
New Revision: 416830
URL: https://svnweb.freebsd.org/changeset/ports/416830

Log:
  audio/re:
  - Update to 0.4.16
  - Organise pkg-plist alphabetically
  
  audio/rem:
  - Update to 0.4.7
  - Organise pkg-plist alphabetically
  
  audio/baresip:
  - Update to 0.4.19
  - Remove CELT option (no longer supported upstream - replaced by OPUS)
  - Add EXAMPLES option to install new ${WRKSRC}/docs/examples
  - Update minimum required versions of audio/re and audio/rem [1]
  
  Changes this release:
    https://github.com/alfredh/baresip/blob/v0.4.19/docs/ChangeLog
  
  [1] https://github.com/alfredh/baresip/blob/v0.4.19/docs/README#L324
  
  This upate also allows baresip to build successfully once
  multimedia/ffmpeg is updated to 3.0.x.
  Note that multimedia/ffmpeg is currently still on the 2.8.x branch,
  however this patch is backwards compatible with ffmpeg 2.8.x.
  
  Reported by:	antoine (via exp-run)
  Reviewed by:	mat (mentor)
  Approved by:	crees (maintainer), adamw (mentor)
  Differential Revision:	https://reviews.freebsd.org/D6822

Modified:
  head/audio/baresip/Makefile
  head/audio/baresip/Makefile.depends
  head/audio/baresip/distinfo
  head/audio/re/Makefile
  head/audio/re/distinfo
  head/audio/re/pkg-plist
  head/audio/rem/Makefile
  head/audio/rem/distinfo
  head/audio/rem/pkg-plist

Modified: head/audio/baresip/Makefile
==============================================================================
--- head/audio/baresip/Makefile	Mon Jun 13 06:13:43 2016	(r416829)
+++ head/audio/baresip/Makefile	Mon Jun 13 06:22:21 2016	(r416830)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	baresip
-PORTVERSION=	0.4.8
-PORTREVISION=	4
+PORTVERSION=	0.4.19
 CATEGORIES=	audio
 MASTER_SITES=	http://www.creytiv.com/pub/
 
@@ -12,8 +11,8 @@ COMMENT=	Small SIP client
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/docs/COPYING
 
-BUILD_DEPENDS=	re>=0.4.6:audio/re \
-		rem>=0.4.4:audio/rem
+BUILD_DEPENDS=	re>=0.4.14:audio/re \
+		rem>=0.4.7:audio/rem
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
 USES=		gmake pkgconfig
@@ -23,10 +22,11 @@ MAKE_ARGS=	MOD_AUTODETECT=""
 PLIST_FILES=	bin/baresip
 PORTDATA=	*
 PORTDOCS=	*
+PORTEXAMPLES=	*
 
 #OPTIONS_NOT_YET_WORKING=	ALSA BV32 G722_1 PLC ISAC OPENGLES
-OPTIONS_DEFINE=	CELT CONS DOCS FFMPEG G711 G722 G726 GSM GSTREAMER ILBC L16 \
-	OPUS OSS PORTAUDIO SDL SNDFILE SPEEX SRTP STDIO UUID V4L V4L2 X11 \
+OPTIONS_DEFINE=	CONS DOCS EXAMPLES FFMPEG G711 G722 G726 GSM GSTREAMER ILBC \
+	L16 OPUS OSS PORTAUDIO SDL SNDFILE SPEEX SRTP STDIO UUID V4L V4L2 X11 \
 	DTLS_SRTP AUBRIDGE VIDBRIDGE HTTPD DSHOW DIRECTFB ACCOUNT \
 	NATPMP SDL MIW SNAPSHOT SELFVIEW VUMETER AULOOP CONTACT \
 	MENU PRESENCE SYSLOG VIDLOOP
@@ -34,7 +34,6 @@ OPTIONS_DEFAULT=CONS G711 G722 G726 L16
 
 AULOOP_DESC=	Audio-loop test module
 BV32_DESC=	BroadVoice32 Wideband Audio codec
-CELT_DESC=	Celt support [broken]
 CONTACT_DESC=	Contacts module
 CONS_DESC=	Console input driver
 DTLS_SRTP_DESC=	DTLS Secure RTP module [broken]
@@ -84,7 +83,7 @@ MAKE_ARGS+=	USE_$s=yes
 MAKE_ARGS+=	HAVE_SPEEXDSP=yes
 .endif
 
-.for o in CELT SRTP V4L DTLS_SRTP V4L2 X11
+.for o in SRTP V4L DTLS_SRTP V4L2 X11
 .  if ${PORT_OPTIONS:M$o}
 BROKEN=	OPTIONS marked as BROKEN have not been updated to the new Baresip API
 .  endif
@@ -106,8 +105,6 @@ post-patch:
 	${ECHO_CMD} ".PHONY: showmodules" >> ${WRKSRC}/Makefile
 	${ECHO_CMD} "showmodules:" >> ${WRKSRC}/Makefile
 	${ECHO_CMD} '	@${ECHO_CMD} $$(MODULES)' >> ${WRKSRC}/Makefile
-	${REINPLACE_CMD} 's,-lcelt[0-9]*,$$(pkg-config --libs celt),' \
-		${WRKSRC}/modules/celt/module.mk
 	${REINPLACE_CMD} 's,-lportaudio[0-9]*,-L${LOCALBASE}/lib -lportaudio,' \
 		${WRKSRC}/modules/portaudio/module.mk
 
@@ -124,7 +121,9 @@ post-install:
 		${STAGEDIR}${PREFIX}/lib/baresip/modules; \
 	   ${ECHO_CMD} lib/${PORTNAME}/modules/$$m.so >> ${TMPPLIST}; \
 	done
-	${MKDIR} ${STAGEDIR}${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR}
+	${MKDIR} ${STAGEDIR}${DOCSDIR} ${STAGEDIR}${EXAMPLESDIR}
+	(cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
+	${MV} ${STAGEDIR}${DOCSDIR}/examples/* ${STAGEDIR}${EXAMPLESDIR}
+	${RMDIR} ${STAGEDIR}${DOCSDIR}/examples
 
 .include <bsd.port.mk>

Modified: head/audio/baresip/Makefile.depends
==============================================================================
--- head/audio/baresip/Makefile.depends	Mon Jun 13 06:13:43 2016	(r416829)
+++ head/audio/baresip/Makefile.depends	Mon Jun 13 06:22:21 2016	(r416830)
@@ -2,7 +2,6 @@
 
 ALSA_DEPEND=	${LOCALBASE}/include/alsa/asoundlib.h:audio/alsa-lib
 BV32_DEPEND=	# nonexistent
-CELT_DEPEND=	${LOCALBASE}/include/celt/celt.h:audio/celt
 CONS_DEPEND=	# unnecessary
 DTLS_SRTP_DEPEND=	# unnecessary
 EVDEV_DEPEND=

Modified: head/audio/baresip/distinfo
==============================================================================
--- head/audio/baresip/distinfo	Mon Jun 13 06:13:43 2016	(r416829)
+++ head/audio/baresip/distinfo	Mon Jun 13 06:22:21 2016	(r416830)
@@ -1,2 +1,3 @@
-SHA256 (baresip-0.4.8.tar.gz) = f13f63aa27bd565dcd08d5fd56cc5eae9043495b27513a7e488bd2935c2932f7
-SIZE (baresip-0.4.8.tar.gz) = 360486
+TIMESTAMP = 1465682412
+SHA256 (baresip-0.4.19.tar.gz) = bb8c62da225d7ee30ad371e6e0cd0f4bb663635e73b8c09cd43b054b981eb0d1
+SIZE (baresip-0.4.19.tar.gz) = 449660

Modified: head/audio/re/Makefile
==============================================================================
--- head/audio/re/Makefile	Mon Jun 13 06:13:43 2016	(r416829)
+++ head/audio/re/Makefile	Mon Jun 13 06:22:21 2016	(r416830)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	re
-PORTVERSION=	0.4.6
-PORTREVISION=	1
+PORTVERSION=	0.4.16
 CATEGORIES=	audio devel
 MASTER_SITES=	http://www.creytiv.com/pub/
 

Modified: head/audio/re/distinfo
==============================================================================
--- head/audio/re/distinfo	Mon Jun 13 06:13:43 2016	(r416829)
+++ head/audio/re/distinfo	Mon Jun 13 06:22:21 2016	(r416830)
@@ -1,2 +1,3 @@
-SHA256 (re-0.4.6.tar.gz) = 7e12582254f17fc3e24d0cbca9303117392501a024550f3ed08138decd0127ee
-SIZE (re-0.4.6.tar.gz) = 272017
+TIMESTAMP = 1465679980
+SHA256 (re-0.4.16.tar.gz) = bc36fcf37302bfdb964374f2842179f1521d78df79e42e74c4fd102e61fa4b29
+SIZE (re-0.4.16.tar.gz) = 308213

Modified: head/audio/re/pkg-plist
==============================================================================
--- head/audio/re/pkg-plist	Mon Jun 13 06:13:43 2016	(r416829)
+++ head/audio/re/pkg-plist	Mon Jun 13 06:22:21 2016	(r416830)
@@ -1,45 +1,51 @@
-include/re/re_net.h
-include/re/re_list.h
-include/re/re_hash.h
-include/re/re_stun.h
-include/re/re_tls.h
-include/re/re_lock.h
+include/re/re.h
+include/re/re_aes.h
 include/re/re_base64.h
 include/re/re_bfcp.h
-include/re/re_sip.h
-include/re/re_dbg.h
-include/re/re_sys.h
-include/re/re_tmr.h
-include/re/re_types.h
-include/re/re_mbuf.h
-include/re/re_mem.h
-include/re/re_mqueue.h
+include/re/re_bitv.h
+include/re/re_conf.h
 include/re/re_crc32.h
-include/re/re_main.h
-include/re/re_uri.h
-include/re/re_jbuf.h
-include/re/re_sipevent.h
-include/re/re_telev.h
+include/re/re_dbg.h
+include/re/re_dns.h
+include/re/re_fmt.h
+include/re/re_hash.h
+include/re/re_hmac.h
 include/re/re_http.h
 include/re/re_httpauth.h
-include/re/re_dns.h
 include/re/re_ice.h
-include/re/re_sdp.h
-include/re/re.h
-include/re/re_conf.h
-include/re/re_rtp.h
+include/re/re_jbuf.h
+include/re/re_json.h
+include/re/re_list.h
+include/re/re_lock.h
+include/re/re_main.h
+include/re/re_mbuf.h
 include/re/re_md5.h
-include/re/re_fmt.h
-include/re/re_turn.h
-include/re/re_sipreg.h
+include/re/re_mem.h
+include/re/re_mod.h
+include/re/re_mqueue.h
+include/re/re_msg.h
 include/re/re_natbd.h
-include/re/re_bitv.h
+include/re/re_net.h
+include/re/re_odict.h
+include/re/re_rtp.h
 include/re/re_sa.h
+include/re/re_sdp.h
 include/re/re_sha.h
-include/re/re_mod.h
+include/re/re_sip.h
+include/re/re_sipevent.h
+include/re/re_sipreg.h
 include/re/re_sipsess.h
-include/re/re_hmac.h
+include/re/re_srtp.h
+include/re/re_stun.h
+include/re/re_sys.h
 include/re/re_tcp.h
+include/re/re_telev.h
+include/re/re_tls.h
+include/re/re_tmr.h
+include/re/re_turn.h
+include/re/re_types.h
 include/re/re_udp.h
-lib/libre.so
+include/re/re_uri.h
+include/re/re_websock.h
 lib/libre.a
+lib/libre.so

Modified: head/audio/rem/Makefile
==============================================================================
--- head/audio/rem/Makefile	Mon Jun 13 06:13:43 2016	(r416829)
+++ head/audio/rem/Makefile	Mon Jun 13 06:22:21 2016	(r416830)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	rem
-PORTVERSION=	0.4.4
-PORTREVISION=	2
+PORTVERSION=	0.4.7
 CATEGORIES=	audio devel
 MASTER_SITES=	http://www.creytiv.com/pub/
 

Modified: head/audio/rem/distinfo
==============================================================================
--- head/audio/rem/distinfo	Mon Jun 13 06:13:43 2016	(r416829)
+++ head/audio/rem/distinfo	Mon Jun 13 06:22:21 2016	(r416830)
@@ -1,2 +1,3 @@
-SHA256 (rem-0.4.4.tar.gz) = 2551dc0888846af59d6392b5dfbb7e845d3bc70b98b03ff93c4ccdbafe2d7d43
-SIZE (rem-0.4.4.tar.gz) = 34381
+TIMESTAMP = 1465679998
+SHA256 (rem-0.4.7.tar.gz) = 5d084f5ee17b839680ab6b978357c095c2a85d04bdf61fa03192019e3435954e
+SIZE (rem-0.4.7.tar.gz) = 36986

Modified: head/audio/rem/pkg-plist
==============================================================================
--- head/audio/rem/pkg-plist	Mon Jun 13 06:13:43 2016	(r416829)
+++ head/audio/rem/pkg-plist	Mon Jun 13 06:22:21 2016	(r416830)
@@ -1,17 +1,18 @@
+include/rem/rem.h
 include/rem/rem_au.h
 include/rem/rem_aubuf.h
+include/rem/rem_auconv.h
+include/rem/rem_audio.h
 include/rem/rem_aufile.h
-include/rem/rem_g711.h
+include/rem/rem_aumix.h
+include/rem/rem_auresamp.h
+include/rem/rem_autone.h
 include/rem/rem_dsp.h
-include/rem/rem_video.h
-include/rem/rem.h
 include/rem/rem_fir.h
+include/rem/rem_g711.h
 include/rem/rem_vid.h
-include/rem/rem_auresamp.h
-include/rem/rem_vidmix.h
-include/rem/rem_aumix.h
-include/rem/rem_audio.h
-include/rem/rem_autone.h
 include/rem/rem_vidconv.h
-lib/librem.so
+include/rem/rem_video.h
+include/rem/rem_vidmix.h
 lib/librem.a
+lib/librem.so


More information about the svn-ports-head mailing list