bbab7f59e9
- Remove all references to defunct ARCH arm - Remove all references to defunct ARCH sparc64 - Remove x11-drivers/xf86-video-sunffb which requires defunct sparc64 ARCH - Remove sysutils/afbinit requires defunct sparc64 ARCH - Remove all references to bktr driver - Remove all references to defunct FreeBSD_12 - Remove all references to OSVERSION/OSREL corresponding to 12 - Remove conditionals in Mk/Uses/cabal.mk - Remove sparc reference from Mk/Uses/qt-dist.mk - Remove BROKEN_sparc64/NOT_FOR_ARCH=sparc64 - Remove BROKEN_FreeBSD_12* from: - Remove OpenSSL patches from: - Remove conditional flags for OSVERSION >= 1300000 to fixed flags. Also move conditional flags for non sparc64/arm ARCH to fixed flags. Reviewed by: brooks, jbeich, rene, salvadore Differential Revision: https://reviews.freebsd.org/D42068
51 lines
2 KiB
Makefile
51 lines
2 KiB
Makefile
PORTNAME= RHVoice
|
|
DISTVERSION= 1.2.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= audio
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Speech synthesizer for English, Russian, Georgian, and other languages
|
|
WWW= https://github.com/RHVoice/RHVoice
|
|
|
|
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_LDCONFIG= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_TUPLE= arsenm:sanitizers-cmake:99e159e:sanitizers/cmake/thirdparty/sanitizers \
|
|
unicode-org:cldr:d1c59ae:cldr/src/third-party/cldr \
|
|
rhvoice:victoria-rus:e57c82c:victoria_rus/data/voices/victoria \
|
|
rhvoice:evgeniy-rus:dd971ee:evgeniy_rus/data/voices/evgeniy-rus \
|
|
rhvoice:evgeniy-eng:c483272:evgeniy_eng/data/voices/evgeniy-eng
|
|
|
|
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:
|
|
# create config file
|
|
${MV} ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample
|
|
# strip binaries
|
|
cd ${STAGEDIR}${PREFIX} && ${STRIP_CMD} bin/RHVoice-test bin/sd_rhvoice lib/libRHVoice.so lib/libRHVoice_audio.so lib/libRHVoice_core.so
|
|
# install accessibility/speech-dispatcher module
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib/speech-dispatcher-modules
|
|
${RLN} ${STAGEDIR}${PREFIX}/bin/sd_rhvoice ${STAGEDIR}${PREFIX}/lib/speech-dispatcher-modules
|
|
|
|
.include <bsd.port.mk>
|