summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2017-05-04 07:48:27 +0000
committertaca <taca@pkgsrc.org>2017-05-04 07:48:27 +0000
commit590b9001fdb099104d322a305121a109f0c68508 (patch)
tree80ae606053ba1e02ceaad287966689f9223be2a0 /lang
parentc4d841e3d71470206094b8eb044b8aa629b263a5 (diff)
downloadpkgsrc-590b9001fdb099104d322a305121a109f0c68508.tar.gz
Remove rdoc.mk now.
Diffstat (limited to 'lang')
-rw-r--r--lang/ruby/rdoc.mk44
1 files changed, 0 insertions, 44 deletions
diff --git a/lang/ruby/rdoc.mk b/lang/ruby/rdoc.mk
deleted file mode 100644
index 97490f16724..00000000000
--- a/lang/ruby/rdoc.mk
+++ /dev/null
@@ -1,44 +0,0 @@
-# $NetBSD: rdoc.mk,v 1.20 2014/03/14 19:33:10 taca Exp $
-
-.if !defined(_RUBY_RDOC_MK)
-_RUBY_RDOC_MK= # defined
-
-#
-# === Package-settable variables ===
-#
-# RUBY_RDOC_REQD
-# Specify minimum version of rdoc.
-#
-
-.if !empty(RUBY_RDOC_REQD)
-
-. if empty(RUBY_VER)
-. include "../../lang/ruby/rubyversion.mk"
-. endif
-
-_RDOC_REQD_MAJOR= ${RUBY_RDOC_REQD:C/\.[0-9\.]+$//}
-_RDOC_REQD_MINORS= ${RUBY_RDOC_REQD:C/^([0-9]+)\.*//}
-
-_RUBY_RDOC_MAJOR= ${RUBY_RDOC_VERSION:C/\.[0-9\.]+$//}
-_RUBY_RDOC_MINORS= ${RUBY_RDOC_VERSION:C/^([0-9]+)\.*//}
-
-_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