pkgsrc/lang/ruby/rdoc.mk
2011-07-22 03:36:11 +00:00

59 lines
1.4 KiB
Makefile

# $NetBSD: rdoc.mk,v 1.3 2011/07/22 03:36:11 taca Exp $
.if !defined(_RUBY_RDOC_MK)
_RUBY_RDOC_MK= # defined
#
# === Package-settable variables ===
#
# RUBY_RDOC_REQD
# Specify later version of rdoc. Ruby base packages contain:
#
# ruby18-base: rdoc 1.0.1 - 20041108
# ruby19-base: rdoc 2.5.8
#
# If a package has a trouble with these version, please specify the
# version of rdoc to RDOC_REQD.
#
#
# current rdoc versions.
#
RUBY_RDOC_VERSION= 3.8
.if !empty(RUBY_RDOC_REQD)
RUBY18_RDOC_VERS= 1.0.1
RUBY19_RDOC_VERS= 2.5.8
_RDOC_REQD_MAJOR= ${RUBY_RDOC_REQD:C/\.[0-9\.]+$//}
_RDOC_REQD_MINORS= ${RUBY_RDOC_REQD:C/^([0-9]+)\.*//}
. if ${RUBY_VER} == "18"
_RUBY_RDOC_MAJOR= ${RUBY18_RDOC_VERS:C/\.[0-9\.]+$//}
_RUBY_RDOC_MINORS= ${RUBY18_RDOC_VERS:C/^([0-9]+)\.*//}
. else
_RUBY_RDOC_MAJOR= ${RUBY19_RDOC_VERS:C/\.[0-9\.]+$//}
_RUBY_RDOC_MINORS= ${RUBY19_RDOC_VERS:C/^([0-9]+)\.*//}
. endif
_RUBY_RDOC_REQD= NO
. if ${_RDOC_REQD_MAJOR} > ${_RUBY_RDOC_MAJOR}
_RUBY_RDOC_REQD= YES
. elif ${_RDOC_REQD_MAJOR} == ${_RUBY_RDOC_MAJOR}
. if !empty(_RUBY_RDOC_MINORS) && ${_RDOC_REQD_MINORS} > ${_RUBY_RDOC_MINORS}
_RUBY_RDOC_REQD= YES
. endif
. endif
. if empty(_RUBY_RDOC_REQD:M[nN][oO])
RDOC= ${PREFIX}/bin/rdoc
. if empty(RUBY_BUILD_RI:M[nN][oO]) && empty(RUBY_BUILD_RDOC:M[nN][oO])
# rdoc will be required at runtime, too.
DEPENDS+= ${RUBY_PKGPREFIX}-rdoc>=${RUBY_RDOC_REQD}:../../devel/ruby-rdoc
. endif
. endif
.endif
.endif