freebsd-ports/audio/csound-manual/Makefile
Alexander Leidinger d16f7bfb92 Reset maintainership to ports@ after ~4 months without any response to any
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]
2006-02-11 21:03:14 +00:00

42 lines
1.1 KiB
Makefile

# New ports collection makefile for: csound-manual
# Date created: 2000-10-11
# Whom: trevor
#
# $FreeBSD$
#
PORTNAME= csound-manual
PORTVERSION= 4.23
CATEGORIES= audio
MASTER_SITES= http://www.kevindumpscore.com/download/ \
ftp://ftp.cs.bath.ac.uk/pub/dream/documentation/manuals/
DISTFILES= manual-docbook-${PORTVERSION}.tar.gz \
manual-html-${PORTVERSION}.tar.gz \
manual-pdf-${PORTVERSION}.tar.gz \
manual-text-${PORTVERSION}.tar.gz
DIST_SUBDIR= csound
MAINTAINER= ports@FreeBSD.org
COMMENT= Manuals for Csound
RUN_DEPENDS= csound:${PORTSDIR}/audio/csound
NO_BUILD= yes
NO_MTREE= yes
PLIST= ${WRKDIR}/pkg-plist
PREFIX= ${X11BASE}
WRKSRC= ${WRKDIR}/csound-${PORTVERSION}/manual
pre-install:
@${RM} -f ${PLIST}
cd ${WRKSRC} && ${FIND} -s * -type f | \
${SED} -e 's:^:share/doc/csound/:' >> ${PLIST} \
&& ${FIND} -d * -type d | \
${SED} -e 's:^:@dirrm share/doc/csound/:' >> ${PLIST}
${ECHO_CMD} @dirrm share/doc/csound >> ${PLIST}
do-install:
@${MKDIR} ${PREFIX}/share/doc/csound
cd ${WRKSRC} && ${PAX} -r -w * ${PREFIX}/share/doc/csound
.include <bsd.port.mk>