diff options
author | trevor <trevor@FreeBSD.org> | 2004-04-18 20:59:46 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2004-04-18 20:59:46 +0000 |
commit | 28d6e50e27e5c9ac8dc572f4b2becd3aa821655f (patch) | |
tree | e537f092afa379df2cf24fb1904bce14e0ca14e3 /audio/csound-manual | |
parent | 302516dc91415494840779f5a1c724756d44e60f (diff) | |
download | FreeBSD-ports-28d6e50e27e5c9ac8dc572f4b2becd3aa821655f.zip FreeBSD-ports-28d6e50e27e5c9ac8dc572f4b2becd3aa821655f.tar.gz |
Fix packing list. Be a little less verbose.
Diffstat (limited to 'audio/csound-manual')
-rw-r--r-- | audio/csound-manual/Makefile | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/audio/csound-manual/Makefile b/audio/csound-manual/Makefile index 1794e9c..516a6ad 100644 --- a/audio/csound-manual/Makefile +++ b/audio/csound-manual/Makefile @@ -24,16 +24,19 @@ RUN_DEPENDS= csound:${PORTSDIR}/audio/csound NO_BUILD= yes NO_MTREE= yes PLIST= ${WRKDIR}/pkg-plist -PREFIX= ${X11BASE}/share/doc/csound -WRKSRC= ${WRKDIR}/csound-${PORTVERSION} +PREFIX= ${X11BASE} +WRKSRC= ${WRKDIR}/csound-${PORTVERSION}/manual pre-install: - ${RM} -f ${PLIST} - cd ${WRKSRC} && ${FIND} -s . -type f | \ - ${CUT} -c3-999 >> ${PLIST} \ - && ${FIND} -d * -type d | ${SED} -e 's:^:@dirrm :' >> ${PLIST} + @${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: - cd ${WRKSRC} && ${PAX} -r -w * ${PREFIX} + @${MKDIR} ${PREFIX}/share/doc/csound + cd ${WRKSRC} && ${PAX} -r -w * ${PREFIX}/share/doc/csound .include <bsd.port.mk> |