diff options
author | trevor <trevor@FreeBSD.org> | 2004-03-15 22:21:04 +0000 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2004-03-15 22:21:04 +0000 |
commit | 863ebcb5cb4c2d5038fd84aa9d110189a880adc5 (patch) | |
tree | 2e61b3eaca744c938ee00a4fbced910ce97b21ff /devel | |
parent | b25d55d6895681f2fd4d9ed6ecccadc902ae2795 (diff) | |
download | FreeBSD-ports-863ebcb5cb4c2d5038fd84aa9d110189a880adc5.zip FreeBSD-ports-863ebcb5cb4c2d5038fd84aa9d110189a880adc5.tar.gz |
Fix packing list (with pointy hat for me).
Diffstat (limited to 'devel')
-rw-r--r-- | devel/invitation_to_ruby/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/devel/invitation_to_ruby/Makefile b/devel/invitation_to_ruby/Makefile index f159aad..efc0089 100644 --- a/devel/invitation_to_ruby/Makefile +++ b/devel/invitation_to_ruby/Makefile @@ -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} |