forked from Lainports/freebsd-ports
PR: 253218 Submitted by: Yasuhiro Kimura <yasu@utahime.org> Approved by: meta (myself, maintainer) Relnotes: https://github.com/ruby/irb/commits/v1.3.3
38 lines
789 B
Makefile
38 lines
789 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= irb
|
|
PORTVERSION= 1.3.3
|
|
CATEGORIES= devel rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= meta@FreeBSD.org
|
|
COMMENT= Interactive Ruby
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
RUN_DEPENDS= rubygem-reline>=0.1.5:devel/rubygem-reline
|
|
|
|
USES= gem
|
|
USE_RUBY= yes
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${RUBY_VER} >= 2.7
|
|
PLIST_FILES= bin/irb \
|
|
share/man/man1/irb.1.gz
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/man/man1
|
|
${INSTALL_DATA} ${WRKSRC}/man/irb.1 ${STAGEDIR}${PREFIX}/share/man/man1
|
|
.elif ${RUBY_VER} == 2.6
|
|
# WIP: irb wrapper script is installed by ruby port so far, see bug 241554, 237833
|
|
post-install:
|
|
${RM} ${STAGEDIR}${PREFIX}/bin/irb
|
|
.else
|
|
IGNORE= ${PORTNAME} is included in lang/${RUBY_NAME}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|