diff options
author | trevor <trevor@FreeBSD.org> | 2003-11-05 02:20:20 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-11-05 02:20:20 +0000 |
commit | 20b2aea77b3321ca9397f50b235dc74196330cc6 (patch) | |
tree | 724d33a7e434b172ef9a6313e18ea5ad335f321c /audio/csound-manual/Makefile | |
parent | 864860d4c5548381a2ffaff076bcd156cb1cd200 (diff) | |
download | FreeBSD-ports-20b2aea77b3321ca9397f50b235dc74196330cc6.zip FreeBSD-ports-20b2aea77b3321ca9397f50b235dc74196330cc6.tar.gz |
Change to the Alternative Csound Reference Manual and fix packing
list.
to do: generate HTML, text and PDF formats from the Docbook files
with lynx, jade and htmldoc instead of downloading them
ready-made
Diffstat (limited to 'audio/csound-manual/Makefile')
-rw-r--r-- | audio/csound-manual/Makefile | 36 |
1 files changed, 10 insertions, 26 deletions
diff --git a/audio/csound-manual/Makefile b/audio/csound-manual/Makefile index e0fb013..ad92680 100644 --- a/audio/csound-manual/Makefile +++ b/audio/csound-manual/Makefile @@ -6,18 +6,14 @@ # PORTNAME= csound-manual -PORTVERSION= 4.10 +PORTVERSION= 4.23 CATEGORIES= audio -MASTER_SITES= ftp://csounds.com/manual/current/ -DISTFILES= ascii.zip \ - espanol.zip \ - html.zip \ - manual1.zip \ - manual2.zip \ - spplmnt1.zip \ - spplmnt2.zip \ - spplmtxt.zip \ - toots.zip +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= trevor@FreeBSD.org @@ -25,29 +21,17 @@ COMMENT= Manuals for Csound RUN_DEPENDS= csound:${PORTSDIR}/audio/csound -BROKEN= Files are not available for distribution anymore. \ - Owner has withdrawn the files due to bandwidth costs. - -RESTRICTED= "no redistribution; no commercial use except to make music (see http://mitpress.mit.edu/e-books/csound/fpage/FAQml/faq/faq.html)" -NO_CDROM= ${RESTRICTED} -NO_FTP= ${RESTRICTED} - NO_BUILD= yes NO_MTREE= yes PLIST= ${WRKDIR}/pkg-plist PREFIX= ${X11BASE}/share/doc/csound -USE_ZIP= yes -WRKSRC= ${WRKDIR}/manual -EXTRACT_AFTER_ARGS= -d ${WRKSRC} - -pre-extract: - ${MKDIR} ${WRKSRC} +WRKSRC= ${WRKDIR}/csound-${PORTVERSION} pre-install: ${RM} -f ${PLIST} - cd ${WRKDIR}/manual && ${FIND} -s . -type f | \ + cd ${WRKSRC} && ${FIND} -s . -type f | \ ${CUT} -c3-999 >> ${PLIST} \ - && ${FIND} * -type d | ${SED} -e 's:^:@dirrm :' >> ${PLIST} + && ${FIND} -d * -type d | ${SED} -e 's:^:@dirrm :' >> ${PLIST} do-install: cd ${WRKSRC} && pax -r -w * ${PREFIX} |