Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Apr 2016 16:36:28 +0000 (UTC)
From:      Bartek Rutkowski <robak@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r414284 - branches/2016Q2/net/freeswitch
Message-ID:  <201604291636.u3TGaSZd039592@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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
 



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