diff options
author | taca <taca> | 2004-12-01 15:32:39 +0000 |
---|---|---|
committer | taca <taca> | 2004-12-01 15:32:39 +0000 |
commit | 3d260a81243a2ad6808f4bf05eb589c148b52cf5 (patch) | |
tree | ad074753ec56afd184f9c3d365732b3dca84e922 /textproc/ruby-rdtool | |
parent | 0f5f8f21cac2ae0379cdb38acc0c45cd03c53ad5 (diff) | |
download | pkgsrc-3d260a81243a2ad6808f4bf05eb589c148b52cf5.tar.gz |
Add RUBY_RD_LIST; list of possible ruby-rdtool's package names which
made from RUBY_VERSION_LIST.
Diffstat (limited to 'textproc/ruby-rdtool')
-rw-r--r-- | textproc/ruby-rdtool/rdversion.mk | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/textproc/ruby-rdtool/rdversion.mk b/textproc/ruby-rdtool/rdversion.mk index 3996e8be8fd..341924002de 100644 --- a/textproc/ruby-rdtool/rdversion.mk +++ b/textproc/ruby-rdtool/rdversion.mk @@ -1,6 +1,19 @@ -# $NetBSD: rdversion.mk,v 1.1 2004/11/27 15:28:30 taca Exp $ +# $NetBSD: rdversion.mk,v 1.2 2004/12/01 15:32:39 taca Exp $ # + +.ifndef _RD_VERSION_MK +_RD_VERSION_MK= # defined + .include "../../lang/ruby/rubyversion.mk" RUBY_RD= ${LOCALBASE}/bin/rd2 RUBY_RD_VERSION = 0.6.14 +RUBY_RD_REQD= 0.6.14 + +# create depends list +.for f in ${RUBY_VERSION_LIST} +_RD_NAME+= ruby${f}-rdtool +.endfor +RUBY_RD_LIST= ${_RD_NAME:ts,} + +.endif |