mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
bab74078a9
commit includes the various ports festival can work with. Big thanks to Trevor for putting in all the time to port these! PR: 21182, 21183, 21184, 21185, 21186, 21187, 21188, 21189 21190, 21191, 21192, 21193, 21194, 21195, 21196, 21197 21198, 21199, 21200, 21201 Submitted by: Trevor Johnson <trevor@jpj.net> Obtained from: NetBSD pkgsrc
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# New ports collection makefile for: festdoc
|
|
# Date created: 2000-06-16
|
|
# Whom: Trevor Johnson <trevor@jpj.net>
|
|
# based on the NetBSD port
|
|
#
|
|
# $NetBSD: Makefile,v 1.7 2000/01/05 17:56:46 wiz Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= festdoc
|
|
PORTVERSION= 1.4.0.1
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.speech.cs.cmu.edu/festival/cstr/festival/1.4.1/ \
|
|
ftp://ftp.cstr.ed.ac.uk/pub/festival/1.4.1/
|
|
DIST_SUBDIR= festival
|
|
|
|
MAINTAINER= trevor@jpj.net
|
|
|
|
NO_BUILD= yes
|
|
|
|
INFO_FILES= festival.info
|
|
FDOC= ${PREFIX}/share/doc/festival
|
|
|
|
post-extract:
|
|
${CHMOD} -R a+r ${WRKSRC}
|
|
${FIND} ${WRKSRC} -type d -print0 | xargs -0 ${CHMOD} 755
|
|
${RM} ${WRKSRC}/festival/src-manual/c3750.htm~
|
|
${RM} ${WRKSRC}/speechtools/c16909.htm~
|
|
${RMDIR} ${WRKSRC}/festival/src-manual/images_gen
|
|
|
|
do-install:
|
|
${MKDIR} ${FDOC}
|
|
cd ${WRKSRC} && info=`find . -name '*.info*' -type f` && \
|
|
${CP} $$info ${PREFIX}/info && \
|
|
${CP} -r ${WRKSRC}/* ${FDOC} && \
|
|
cd ${FDOC} && \
|
|
${RM} -f $$info && \
|
|
${RMDIR} festival/info
|
|
|
|
.include <bsd.port.mk>
|