freebsd-ports/net/freeswitch-vanilla-devel/Makefile
Chris Rees e634049e1e Add configuration ports for freeswitch-devel; vanilla, sbc, insideout and curl
PR:		ports/167877
PR:		ports/167878
PR:		ports/167879
PR:		ports/167881
Submitted by:	Richard Neese (r.neese@gmail.com) (maintainer)

Fix some minor pkg-install script issues in -core-devel

Use a cookie file to install ETCDIR/conf directory structure rather than
@exec mkdir to simplify installation
2012-05-22 19:12:47 +00:00

66 lines
2.1 KiB
Makefile

# Ports collection makefile for: net/freeswitch-vanilla-devel
# Date created: May 11, 2012
# Whom: Richard Neese <r.neese@gmail.com>
#
# $FreeBSD$
#
PORTNAME= freeswitch
DISTVERSION= 1.2.rc2
CATEGORIES= net
MASTER_SITES= http://files.freeswitch.org/
PKGNAMESUFFIX= -${FREESWITCH_CONF_DIST}-devel
DIST_SUBDIR= ${PORTNAME}
MAINTAINER= r.neese@gmail.com
COMMENT= FreeSwitch configuration files; ${FREESWITCH_CONF_DIST} variant
RUN_DEPENDS= freeswitch:${PORTSDIR}/net/freeswitch-core-devel
FREESWITCH_CONF_DIST?= vanilla
USE_BZIP2= yes
NO_BUILD= yes
SHAREOWN= ${PORTNAME}
SHAREGRP= ${SHAREOWN}
PLIST= ${MASTERDIR}/pkg-plist-${FREESWITCH_CONF_DIST}
WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}/conf/${FREESWITCH_CONF_DIST}
# Do some checking and conflict on other conf dists
VALID_DISTS= vanilla sbc curl insideout
.for d in ${FREESWITCH_CONF_DIST}
. if ${VALID_DISTS:M$d}
CONFLICTS_INSTALL= ${VALID_DISTS:N$d:S/^/freeswitch-/:S/$/-devel-[0-9]*/}
. else
IGNORE= requires a valid conf distribution in FREESWITCH_CONF_DIST; use a slave port
. endif
.endfor
CONF_EXTENSIONS= xml ttml tpl conf types yaml FS0
post-patch:
@cd ${WRKSRC} && for i in $$(${FIND} . -type f ${CONF_EXTENSIONS:C/.*/-name \*.& -o/} -false); \
do [ -f $${i}.sample ] || ${MV} $$i $${i}.sample ; done
do-install:
cd ${WRKSRC} && ${COPYTREE_SHARE} . ${ETCDIR}/conf/
${FIND} ${ETCDIR} -type d -exec chmod 770 '{}' \;
for i in $$(cd ${WRKSRC} && ${FIND} * \
-type f -name '*.sample' | ${SED} 's|^|${ETCDIR_REL}/conf/|'); \
do ${ECHO_CMD} "@unexec cmp -s %D/$$i %D/$${i%.sample} && ${RM} %D/$${i%.sample} || ${TRUE}" >> ${TMPPLIST}; \
${ECHO_CMD} "$$i" >> ${TMPPLIST} ; \
${ECHO_CMD} "@exec [ -f %D/$${i%.sample} ] || \
${CP} -p %D/%F %D/$${i%.sample}" >> ${TMPPLIST} ; \
[ -f ${ETCDIR}/conf/$${i%.sample} ] || ${CP} -p ${PREFIX}/$$i ${PREFIX}/$${i%.sample} ; \
done
${TOUCH} ${ETCDIR}/conf/.${FREESWITCH_CONF_DIST}
${ECHO_CMD} '${ETCDIR_REL}/conf/.${FREESWITCH_CONF_DIST}' >> ${TMPPLIST}
for dir in $$(cd ${WRKSRC} && ${FIND} * -type d -not -path directory\* | ${SORT} -r) ; \
do ${ECHO_CMD} "@dirrm ${ETCDIR_REL}/conf/$$dir" >> ${TMPPLIST} ; \
done
.include <bsd.port.mk>