aboutsummaryrefslogtreecommitdiff
path: root/accessibility/speech-dispatcher/Makefile
blob: e82c942cab6fb2334e309ef7425af1cbba71b2a5 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# $FreeBSD$

PORTNAME=	speech-dispatcher
PORTVERSION=	0.7.1
PORTREVISION=	3
CATEGORIES=	accessibility audio
MASTER_SITES=	http://www.freebsoft.org/pub/projects/speechd/

MAINTAINER=	avilla@FreeBSD.org
COMMENT=	Common interface to speech synthesis

LICENSE=	GPLv2 LGPL21
LICENSE_COMB=	multi

LIB_DEPENDS=	dotconf:${PORTSDIR}/devel/dotconf \
		sndfile:${PORTSDIR}/audio/libsndfile

# gnomehier is required because of share/sounds directory.
USE_GNOME=	glib20 gnomehier pkgconfig
GNU_CONFIGURE=	yes
CFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib
USE_GMAKE=	yes
USE_LDCONFIG=	${PREFIX}/lib ${PREFIX}/lib/${PORTNAME}

ETCFILES=	clients/emacs.conf clients/gnome-speech.conf \
		modules/cicero.conf modules/dtk-generic.conf \
		modules/epos-generic.conf modules/espeak-generic.conf \
		modules/espeak-mbrola-generic.conf modules/espeak.conf \
		modules/festival.conf modules/flite.conf modules/ibmtts.conf \
		modules/ivona.conf modules/llia_phon-generic.conf \
		modules/swift-generic.conf speechd.conf

PLIST_SUB+=	ETCFILES="${ETCFILES}"

PORTDOCS=	AUTHORS ChangeLog INSTALL NEWS README TODO

INFO=		spd-say speech-dispatcher ssip

OPTIONS_DEFINE=	ALSA AO ESPEAK FESTIVAL FLITE NAS PULSEAUDIO PYTHON
OPTIONS_DEFAULT=ESPEAK

ESPEAK_DESC=	eSpeak output module
FESTIVAL_DESC=	Festival output module
FLITE_DESC=	Festival Lite output module

.include <bsd.port.options.mk>

.if ${OSVERSION} < 800067 && ${ARCH} == "amd64"
CFLAGS+=	-fPIC
.endif

.if ${PORT_OPTIONS:MALSA}
LIB_DEPENDS+=	asound:${PORTSDIR}/audio/alsa-lib
CONFIGURE_ARGS+=--with-alsa
.else
CONFIGURE_ARGS+=--without-alsa
.endif

.if ${PORT_OPTIONS:MAO}
LIB_DEPENDS+=	ao:${PORTSDIR}/audio/libao
CONFIGURE_ARGS+=--with-libao
.else
CONFIGURE_ARGS+=--without-libao
.endif

.if ${PORT_OPTIONS:MESPEAK}
LIB_DEPENDS+=	espeak:${PORTSDIR}/audio/espeak
CONFIGURE_ARGS+=--with-espeak
PLIST_SUB+=	ESPEAK=""
.else
CONFIGURE_ARGS+=--without-espeak
PLIST_SUB+=	ESPEAK="@comment "
.endif

.if ${PORT_OPTIONS:MFESTIVAL}
RUN_DEPENDS+=	festival:${PORTSDIR}/audio/festival \
		${LOCALBASE}/share/festival/lib/${PORTNAME}.scm:${PORTSDIR}/audio/festival-freebsoft-utils
.endif

.if ${PORT_OPTIONS:MFLITE}
BUILD_DEPENDS+=	flite:${PORTSDIR}/audio/flite
RUN_DEPENDS+=	flite:${PORTSDIR}/audio/flite
CONFIGURE_ARGS+=--with-flite
PLIST_SUB+=	FLITE=""
.else
CONFIGURE_ARGS+=--without-flite
PLIST_SUB+=	FLITE="@comment "
.endif

.if ${PORT_OPTIONS:MNAS}
LIB_DEPENDS+=	audio:${PORTSDIR}/audio/nas
CONFIGURE_ARGS+=--with-nas
.else
CONFIGURE_ARGS+=--without-nas
.endif

.if ${PORT_OPTIONS:MPULSEAUDIO}
LIB_DEPENDS+=	pulse:${PORTSDIR}/audio/pulseaudio
CONFIGURE_ARGS+=--with-pulse
.else
CONFIGURE_ARGS+=--without-pulse
.endif

.if ${PORT_OPTIONS:MPYTHON}
USE_PYTHON=	2.5+
CONFIGURE_ARGS+=--enable-python
PLIST_SUB+=	PYTHON=""
.else
CONFIGURE_ARGS+=--disable-python
PLIST_SUB+=	PYTHON="@comment "
.endif

post-patch:
	${REINPLACE_CMD} -e 's/-pthread/${PTHREAD_LIBS}/g' \
		${WRKSRC}/ltmain.sh
	${REINPLACE_CMD} -e 's/-lpthread/${PTHREAD_LIBS}/g' \
		${WRKSRC}/configure \
		${WRKSRC}/src/audio/Makefile.in \
		${WRKSRC}/src/c/api/Makefile.in \
		${WRKSRC}/src/c/clients/spdsend/Makefile.in \
		${WRKSRC}/src/modules/Makefile.in \
		${WRKSRC}/src/server/Makefile.in
	${REINPLACE_CMD} -e '/SUBDIRS/ s/tests//' \
		${WRKSRC}/src/Makefile.in

post-install:
.for f in ${ETCFILES}
	@if [ ! -f ${ETCDIR}/${f} ]; then \
		${CP} -p ${ETCDIR}/${f}.sample ${ETCDIR}/${f}; \
	fi
.endfor
.if ${PORT_OPTIONS:MDOCS}
	${MKDIR} ${DOCSDIR}
.for f in ${PORTDOCS}
	${INSTALL_MAN} ${WRKSRC}/${f} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.mk>