5e6df99a14
Reported by: portscout
41 lines
1.4 KiB
Makefile
41 lines
1.4 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= RHVoice
|
|
DISTVERSION= 1.0.0
|
|
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|' ${WRKSRC}/SConstruct
|
|
|
|
post-patch-AO-off:
|
|
@${REINPLACE_CMD} 's|conf.CheckPKG("ao")|False|' ${WRKSRC}/SConstruct
|
|
|
|
post-patch-PORTAUDIO-off:
|
|
@${REINPLACE_CMD} 's|conf.CheckPKG("portaudio-2.0")|False|' ${WRKSRC}/SConstruct
|
|
|
|
post-install:
|
|
${MV} ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample
|
|
cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} bin/RHVoice-test bin/sd_rhvoice lib/libRHVoice.so lib/libRHVoice_audio.so lib/libRHVoice_core.so
|
|
|
|
.include <bsd.port.mk>
|