diff options
author | mi <mi@FreeBSD.org> | 2006-04-06 14:29:24 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2006-04-06 14:29:24 +0800 |
commit | 7fb14cbd342ebd6aaee908f9782d4b5faa17596c (patch) | |
tree | 4df71dce974b01f85718bb93d10cb84d267aea08 /audio/festlex-poslex/Makefile | |
parent | 70d21fad95bab001de07fbef00bba494dc6a2a38 (diff) | |
download | freebsd-ports-gnome-7fb14cbd342ebd6aaee908f9782d4b5faa17596c.tar.gz freebsd-ports-gnome-7fb14cbd342ebd6aaee908f9782d4b5faa17596c.tar.zst freebsd-ports-gnome-7fb14cbd342ebd6aaee908f9782d4b5faa17596c.zip |
Do not run-depend on festival -- it really ought to be the other way
around.
For festlex-cmu use the 2004 version found in the 1.95 directory, so that
it works with audio/festival. The others did not change since 1999.
Stop the silly practice of extracting into ${WRKDIR} and copying into
destination -- extract directly.
Replace @dirrm with @dirrmtry in a few places and unbreak by adding more
of same.
The same should be applied to other audio/fest* ports, but these are
enough to get the English-only speech out of festival.
Diffstat (limited to 'audio/festlex-poslex/Makefile')
-rw-r--r-- | audio/festlex-poslex/Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/audio/festlex-poslex/Makefile b/audio/festlex-poslex/Makefile index 78e8995be899..c736909f2727 100644 --- a/audio/festlex-poslex/Makefile +++ b/audio/festlex-poslex/Makefile @@ -9,29 +9,21 @@ PORTNAME= festlex-poslex PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio accessibility MASTER_SITES= ${MASTER_SITE_FESTIVAL} MASTER_SITE_SUBDIR= ${PORTVERSION} DISTNAME= festlex_POSLEX DIST_SUBDIR= festival +EXTRACT_ONLY= MAINTAINER= ports@FreeBSD.org COMMENT= English lexicon for Festival -RUN_DEPENDS= festival:${PORTSDIR}/audio/festival - -WRKSRC= ${WRKDIR}/festival - NO_BUILD= yes - FHOME= ${PREFIX}/share/festival -post-extract: - @ ${CHMOD} -R a+r ${WRKSRC} - @ ${FIND} ${WRKSRC} -type d -print0 | ${XARGS} -0 ${CHMOD} 755 - do-install: - cd ${WRKSRC} && ${CP} -pPR * ${FHOME} + ${TAR} -C ${FHOME:H} -xzvpf ${_DISTDIR}/${_DISTFILES} .include <bsd.port.mk> |