forked from Lainports/freebsd-ports
PR: 252012 Submitted by: Yasuhiro Kimura <yasu@utahime.org> Relnotes: https://github.com/ruby/rdoc/commits/v6.3.0
37 lines
849 B
Makefile
37 lines
849 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= rdoc
|
|
PORTVERSION= 6.3.0
|
|
CATEGORIES= devel rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
|
COMMENT= RDoc produces HTML and command-line documentation for Ruby projects
|
|
|
|
LICENSE= GPLv2 RUBY
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.rdoc
|
|
|
|
USES= gem
|
|
USE_RUBY= yes
|
|
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${RUBY_VER} >= 2.7
|
|
PLIST_FILES= bin/rdoc bin/ri share/man/man1/ri.1.gz
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/man/man1
|
|
${INSTALL_DATA} ${WRKSRC}/man/ri.1 ${STAGEDIR}${PREFIX}/share/man/man1
|
|
|
|
.elif ${RUBY_VER} == 2.6
|
|
# WIP: rdoc wrapper script is installed by ruby port so far, see bug 241554, 237833
|
|
post-install:
|
|
${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${STAGEDIR}${PREFIX}/bin/ri
|
|
.else
|
|
IGNORE= ${PORTNAME} is included in lang/${RUBY_NAME}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|