mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
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]
40 lines
872 B
Makefile
40 lines
872 B
Makefile
# New ports collection makefile for: festlex-oald
|
|
# Date created: 2000-06-12
|
|
# Whom: Trevor Johnson
|
|
# based on the NetBSD port
|
|
#
|
|
# $NetBSD: Makefile,v 1.7 1999/12/28 04:19:58 wiz Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= festlex-oald
|
|
PORTVERSION= 1.4.1
|
|
CATEGORIES= audio accessibility
|
|
MASTER_SITES= ${MASTER_SITE_FESTIVAL}
|
|
MASTER_SITE_SUBDIR= ${PORTVERSION}
|
|
DISTNAME= festlex_OALD
|
|
DIST_SUBDIR= festival
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Oxford Advanced Learner's pronunciation dictionary for Festival
|
|
|
|
RUN_DEPENDS= festival:${PORTSDIR}/audio/festival
|
|
|
|
RESTRICTED= no-commercial-use
|
|
|
|
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:
|
|
${MKDIR} ${FHOME}
|
|
cd ${WRKSRC} && ${CP} -pPR * ${FHOME}
|
|
|
|
.include <bsd.port.mk>
|