1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00

Make fetchable (Alan Eldridge wrote that he "got explicit permission

via email from the author to include it in ports").  Take maintainership.
Remove cruft.  Avoid use of "cut".  Remove comments from packing
list.
This commit is contained in:
Trevor Johnson 2004-02-17 22:31:58 +00:00
parent 671fd7f2e9
commit f3fed75671
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=101259

View File

@ -9,22 +9,14 @@
PORTNAME= invitation_to_ruby
PORTVERSION= 1.0.0
#PORTEPOCH=
CATEGORIES= devel
MASTER_SITES= ftp://ftp.one.net/pub/users/jweirich/talks/
#MASTER_SITE_SUBDIR=
#PKGNAMEPREFIX=
#PKGNAMESUFFIX=
MASTER_SITES= ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= trevor
DISTNAME= invitationtoruby
EXTRACT_SUFX= .tgz
#DISTFILES=
#DIST_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME}
#EXTRACT_ONLY=
MAINTAINER= ports@FreeBSD.org
MAINTAINER= trevor@FreeBSD.org
COMMENT= A talk given by Jim Weirich, a brief introduction to Ruby
DEPRECATED= "no longer available in original form from any website"
EXPIRATION_DATE= "April 09, 2004"
NO_BUILD= yes
@ -34,12 +26,10 @@ PLIST= ${WRKDIR}/plist
pre-install:
${RM} -f ${PLIST}
${ECHO_CMD} "@comment files" >> ${PLIST}
cd ${WRKSRC}; ${FIND} . -type f | cut -c2- \
cd ${WRKSRC}; ${FIND} * -type f \
| ${SED} 's|^|${DOCSDIR:S,${PREFIX}/,,}|' \
| ${SORT} >> ${PLIST}
${ECHO_CMD} "@comment directories" >> ${PLIST}
cd ${WRKSRC}; ${FIND} . -type d | cut -c2- \
cd ${WRKSRC}; ${FIND} * -type d \
| ${SED} 's|^|@dirrm ${DOCSDIR:S,${PREFIX}/,,}|' \
| ${SORT} -r >> ${PLIST}