1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Fix packing list (with pointy hat for me).

This commit is contained in:
Trevor Johnson 2004-03-15 22:21:04 +00:00
parent 91255164ff
commit 3babd53e4f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=104121

View File

@ -18,8 +18,6 @@ EXTRACT_SUFX= .tgz
MAINTAINER= trevor@FreeBSD.org
COMMENT= A talk given by Jim Weirich, a brief introduction to Ruby
BROKEN= "Broken pkg-plist"
NO_BUILD= yes
NO_CDROM= \
"no commercial use--see \<URL:http://creativecommons.org/licenses/by-nc/1.0/\>"
@ -30,10 +28,10 @@ PLIST= ${WRKDIR}/plist
pre-install:
${RM} -f ${PLIST}
cd ${WRKSRC}; ${FIND} * -type f \
cd ${WRKSRC}; ${FIND} . -type f | ${CUT} -c2- \
| ${SED} 's|^|${DOCSDIR:S,${PREFIX}/,,}|' \
| ${SORT} >> ${PLIST}
cd ${WRKSRC}; ${FIND} * -type d \
cd ${WRKSRC}; ${FIND} . -type d | ${CUT} -c2- \
| ${SED} 's|^|@dirrm ${DOCSDIR:S,${PREFIX}/,,}|' \
| ${SORT} -r >> ${PLIST}