summaryrefslogtreecommitdiff
path: root/audio/rhvoice/Makefile
blob: fcd047288195583e3c539193e90d83ad57dbe4e2 (plain)
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
# $FreeBSD$

PORTNAME=	RHVoice
DISTVERSION=	0.7.1-4
DISTVERSIONSUFFIX=	-g1083ce5
PORTREVISION=	3
CATEGORIES=	audio

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	Speech synthesizer for English, Russian, Georgian, and other languages

LICENSE=	LGPL21+ GPLv3+ # the main code is under LGPL21+, MAGE library is under GPLv3+, voices are licensed for use by individuals only, no commercial use
LICENSE_COMB=	multi
LICENSE_FILE_LGPL21+ =	${WRKSRC}/licenses/lgpl-2.1.txt
LICENSE_FILE_GPLv3+ =	${WRKSRC}/licenses/gpl-3.0.txt

USES=		compiler:c++0x pkgconfig scons
USE_GITHUB=	yes
GH_ACCOUNT=	Olga-Yakovleva
USE_LDCONFIG=	yes

OPTIONS_RADIO=	AUDIO
OPTIONS_RADIO_AUDIO=	PULSEAUDIO AO PORTAUDIO # only one of them works at a time
OPTIONS_DEFAULT=	AO

PULSEAUDIO_LIB_DEPENDS=	libpulse.so:audio/pulseaudio
AO_LIB_DEPENDS=		libao.so:audio/libao
PORTAUDIO_LIB_DEPENDS=	libportaudio.so:audio/portaudio

post-patch-PULSEAUDIO-off:
	@${REINPLACE_CMD} 's|conf.CheckPKG("libpulse-simple")|False and &|' ${WRKSRC}/SConstruct

post-patch-AO-off:
	@${REINPLACE_CMD} 's|conf.CheckPKG("ao")|False and &|' ${WRKSRC}/SConstruct

post-patch-PORTAUDIO-off:
	@${REINPLACE_CMD} 's|conf.CheckPKG("portaudio-2.0")|False and &|' ${WRKSRC}/SConstruct

post-install:
	${MV} ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample

.include <bsd.port.mk>