blob: 4567b8a052c16fb56e9953a7d3e3ec810ab8e479 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Created by: trevor
# $FreeBSD$
PORTNAME= mbrolavox
PORTVERSION= 3.0.1
CATEGORIES= audio accessibility
DISTFILES= #
DIST_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= Voices for MBROLA voice synthesizer
USE_ZIP= yes
NO_BUILD= yes
RESTRICTED= No commercial nor military use, no sale
WRKSRC= ${WRKDIR}/voices
PORTDATA= *
VOICESCONF= ${.CURDIR}/voices.conf
.include "Makefile.options"
.include <bsd.port.options.mk>
.for ii in ${PORT_OPTIONS}
. if defined(FILE_${ii})
MASTER_SITES+= http://www.tcts.fpms.ac.be/synthesis/mbrola/dba/${ii}/:${ii} \
http://www.festvox.org/mbrola/dba/${ii}/:${ii} \
http://mambo.ucsc.edu/psl/mbrola/dba/${ii}/:${ii}
DISTFILES+= ${FILE_${ii}}:${ii}
FILEDIRS+= ${ii}
MYFILES+= ${FILE_${ii}}
. endif
.endfor
.if empty(DISTFILES)
IGNORE= requires that at least one OPTION is selected
.endif
do-extract:
@${MKDIR} ${WRKSRC}
.for ii in ${MYFILES}
@${UNZIP_CMD} -qo ${DISTDIR}/${DIST_SUBDIR}/${ii} -d ${WRKSRC}
.endfor
do-install:
@${MKDIR} ${DATADIR}
@cd ${WRKSRC} && ${COPYTREE_SHARE} * ${DATADIR}/
# Generates OPTIONS file from voices.conf -- really for maintainer use
# Only included for compatibility with anyone who wants to modify voices.conf
Makefile.options: ${.TARGET}.unsorted
${ECHO_CMD} '# $$Free''BSD$$' > ${.TARGET}
${ECHO_CMD} "# Autogenerated from ${VOICESCONF} using make ${.TARGET}" \
>> ${.TARGET}
${SORT} ${.ALLSRC} >> ${.TARGET}
Makefile.options.unsorted: ${VOICESCONF}
: > ${.TARGET}
IFS='|'; while read opt file define default; do \
optdefine="$$optdefine $$opt"; \
${ECHO_CMD} "$${opt}_DESC= $$define" >> ${.TARGET}; \
${ECHO_CMD} "FILE_$${opt}= $$file" >> ${.TARGET}; \
case $$default in \
[Oo][Nn]) optdefault="$$optdefault $$opt" ;; \
*) ;; \
esac; \
done < ${.ALLSRC}; \
${ECHO_CMD} $$optdefine | /usr/bin/fold -sw 50 | \
${SED} 's,^[[:space:]]*,OPTIONS_DEFINE+= ,;s,[[:space:]]*$$,,' >> ${.TARGET}; \
[ -z "$$optdefault" ] || \
${ECHO_CMD} $$optdefault | /usr/bin/fold -sw 50 | \
${SED} 's,^[[:space:]]*,OPTIONS_DEFAULT+= ,' >> ${.TARGET}
.include <bsd.port.mk>
|