mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-29 21:39:24 +00:00
596ebf8a49
Overall changes: Use tabs instead of sequential spaces. Note Author as well as WWW in DESCR. Do not install examples when NOPORTDOCS. Make RUBY, RUBY_VER and RUBY_ARCH variables overridable. ruby-date2: share/doc/ruby/date2/examples/ -> share/examples/ruby/date2/cal.rb textproc/ruby-html-parser: databases/ruby-mysql: devel/ruby-optparse: devel/ruby-property: Install modules under lib/ruby/site_ruby/${RUBY_VER}/ instead of lib/ruby/site_ruby/ or lib/ruby/${RUBY_VER}/ textproc/ruby-rdtool: Install documents in .rd format too. Format optparse's rd file. (Since ruby-rdtool depends on optparse, it cannot be done during optparse's build process. So ruby-rdtool should take care of that when it is installed. :)
74 lines
2.1 KiB
Makefile
74 lines
2.1 KiB
Makefile
# New ports collection makefile for: ruby
|
|
# Date created: 04 September 1997
|
|
# Whom: Eiji-usagi-MATSUmoto <usagi@ruby.club.or.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ruby
|
|
PORTVERSION= 1.4.5
|
|
CATEGORIES= lang ipv6 # ruby
|
|
MASTER_SITES= ftp://ftp.netlab.co.jp/pub/lang/ruby/${BRANCH_NAME}/ \
|
|
ftp://ftp.TokyoNet.AD.JP/pub/misc/ruby/${BRANCH_NAME}/ \
|
|
ftp://ftp.iij.ad.jp/pub/lang/ruby/${BRANCH_NAME}/ \
|
|
ftp://blade.nagaokaut.ac.jp/pub/lang/ruby/${BRANCH_NAME}/ \
|
|
ftp://ftp.krnet.ne.jp/pub/ruby/${BRANCH_NAME}/ \
|
|
ftp://mirror.nucba.ac.jp/mirror/ruby/${BRANCH_NAME}/
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= yasuf@bsdclub.org
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_SHLIB= yes
|
|
CONFIGURE_ARGS= --enable-shared
|
|
MAN1= ruby.1
|
|
PLIST_SUB= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}"
|
|
|
|
RUBY_VER?= 1.4
|
|
RUBY_ARCH?= ${ARCH}-freebsd${OSREL}
|
|
|
|
BRANCH_NAME= 1.4
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/ruby
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/ruby
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} >= 400014
|
|
CONFIGURE_ARGS+= --enable-ipv6
|
|
.endif
|
|
|
|
post-patch:
|
|
${RM} -f ${WRKSRC}/ext/tcltklib/MANIFEST
|
|
${RM} -f ${WRKSRC}/ext/tk/MANIFEST
|
|
${RM} -rf ${WRKSRC}/lib/irb ${WRKSRC}/sample/irb.rb
|
|
|
|
post-install:
|
|
strip ${PREFIX}/bin/ruby
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/sample/* ${EXAMPLESDIR}
|
|
${MKDIR} ${EXAMPLESDIR}/misc
|
|
${INSTALL_DATA} ${WRKSRC}/misc/* ${EXAMPLESDIR}/misc
|
|
${MKDIR} ${EXAMPLESDIR}/curses
|
|
${INSTALL_DATA} ${WRKSRC}/ext/curses/hello.rb ${WRKSRC}/ext/curses/rain.rb ${WRKSRC}/ext/curses/view.rb ${EXAMPLESDIR}/curses
|
|
${MKDIR} ${EXAMPLESDIR}/pty
|
|
${INSTALL_DATA} ${WRKSRC}/ext/pty/expect_sample.rb ${WRKSRC}/ext/pty/script.rb ${WRKSRC}/ext/pty/shl.rb ${EXAMPLESDIR}/pty
|
|
${MKDIR} ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README* ${DOCDIR}
|
|
${MKDIR} ${DOCDIR}/etc
|
|
${INSTALL_DATA} ${WRKSRC}/ext/etc/etc.txt* ${DOCDIR}/etc
|
|
${MKDIR} ${DOCDIR}/md5
|
|
${INSTALL_DATA} ${WRKSRC}/ext/md5/md5.txt* ${DOCDIR}/md5
|
|
${MKDIR} ${DOCDIR}/pty
|
|
${INSTALL_DATA} ${WRKSRC}/ext/pty/README* ${DOCDIR}/pty
|
|
${MKDIR} ${DOCDIR}/readline
|
|
${INSTALL_DATA} ${WRKSRC}/ext/readline/README ${DOCDIR}/readline
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
test:
|
|
@(cd ${WRKSRC}; make test)
|
|
|
|
.include <bsd.port.post.mk>
|