svn commit: r414284 - branches/2016Q2/net/freeswitch

Bartek Rutkowski robak at FreeBSD.org
Fri Apr 29 16:36:29 UTC 2016


Author: robak
Date: Fri Apr 29 16:36:27 2016
New Revision: 414284
URL: https://svnweb.freebsd.org/changeset/ports/414284

Log:
  MFH: r413022 r414243
  
  Fix build as a user.
  
  Before this, it was downloading the sound distfiles in ${DISTDIR}/../sounds.
  
  Sponsored by:	Absolight
  
  net/freeswitch: fix port build error
  
  PR:		209115
  Submitted by:	Corey Smith <corsmith at gmail.com> (maintainer)
  
  Approved by:	portmgr (blanket)

Modified:
  branches/2016Q2/net/freeswitch/Makefile
Directory Properties:
  branches/2016Q2/   (props changed)

Modified: branches/2016Q2/net/freeswitch/Makefile
==============================================================================
--- branches/2016Q2/net/freeswitch/Makefile	Fri Apr 29 16:34:20 2016	(r414283)
+++ branches/2016Q2/net/freeswitch/Makefile	Fri Apr 29 16:36:27 2016	(r414284)
@@ -5,7 +5,8 @@ PORTNAME=	freeswitch
 PORTVERSION=	1.6.6
 PORTREVISION=	1
 CATEGORIES=	net
-MASTER_SITES=	http://files.freeswitch.org/releases/freeswitch/
+MASTER_SITES=	http://files.freeswitch.org/releases/freeswitch/ \
+		http://files.freeswitch.org/releases/sounds/:sounds
 DISTFILES=	${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}
 
 MAINTAINER=	corsmith at gmail.com
@@ -102,15 +103,15 @@ BITRATES+=	48000
 .endif
 
 .for rate in ${BITRATES}
-EXTRADISTFILES+=	../sounds/${EDPRE}-music-${rate}-${EDPOST}
+EXTRADISTFILES+=	${EDPRE}-music-${rate}-${EDPOST}:sounds
 .if ${PORT_OPTIONS:MENGLISH}
-EXTRADISTFILES+=	../sounds/${EDPRE}-en-us-callie-${rate}-${EDPOST}
+EXTRADISTFILES+=	${EDPRE}-en-us-callie-${rate}-${EDPOST}:sounds
 .endif
 .if ${PORT_OPTIONS:MFRENCH}
-EXTRADISTFILES+=	../sounds/${EDPRE}-fr-ca-june-${rate}-${EDPOST}
+EXTRADISTFILES+=	${EDPRE}-fr-ca-june-${rate}-${EDPOST}:sounds
 .endif
 .if ${PORT_OPTIONS:MRUSSIAN}
-EXTRADISTFILES+=	../sounds/${EDPRE}-ru-RU-elena-${rate}-${EDPOST}
+EXTRADISTFILES+=	${EDPRE}-ru-RU-elena-${rate}-${EDPOST}:sounds
 .endif
 .endfor
 


More information about the svn-ports-branches mailing list