d16f7bfb92
PR. Thanks for contributing. Since the acroread7 port is a somewhat important port for our users, I will hand it over to emulation@ if no _active_ *committer* takes it before the ports freeze. While I'm here: - fix a little nit in the csound port (I think the intention was to create no backup file instead of creating one with a "-e" extension) - set ARCH to i386 in the amd64 case for the acroread7 port. This is a work-around to be able to install everything when a dependency is not already installed (ARCH is read-only in sub-makes, so the dependencies can't change it). This should be removed when the dependencies are fixed or converted to use bsd.linux-rpm.mk. [1] Not objected to by: portmgr (explicit: krion; silence: rest) Maintainer timeout: ~4 months Submitted by: Sangwoo Shim <sangwoos@gmail.com> [1] PR: 87985 [1]
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
# New ports collection makefile for: festdoc
|
|
# Date created: 2000-06-16
|
|
# Whom: Trevor Johnson
|
|
# 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 accessibility
|
|
MASTER_SITES= ${MASTER_SITE_FESTIVAL}
|
|
MASTER_SITE_SUBDIR= 1.4.1
|
|
DIST_SUBDIR= festival
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Documentation for Festival
|
|
|
|
NO_BUILD= yes
|
|
|
|
INFO= festival
|
|
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}
|
|
${RM} ${WRKSRC}/festival/info/festival.info.orig
|
|
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>
|