When using port-lib-depends-check when updating some recent ruby ports, I noticied that they were missing a WANTLIB for pthread. c and m are automatically added to WANTLIB for both ruby 1.8 and ruby 1.9 C extension ports, but on ruby 1.9, C extensions are linked to libpthread as well, so it should be added to WANTLIB automatically.
Here's a diff that adds pthread to WANTLIB automatically for ruby 1.9 C extension ports and REVISION bumps all such ports. Note that there is no REVISION bump for nokogiri, pg, or sequel_pg. I plan to commit this first, and then commit version updates for those directly after. Tested on amd64. Will probably be committing within the next few weeks. Thanks, Jeremy Index: lang/ruby/ruby.port.mk =================================================================== RCS file: /cvs/ports/lang/ruby/ruby.port.mk,v retrieving revision 1.52 diff -N -u -p lang/ruby/ruby.port.mk --- lang/ruby/ruby.port.mk 24 Oct 2012 22:51:26 -0000 1.52 +++ lang/ruby/ruby.port.mk 20 Dec 2012 17:31:41 -0000 @@ -294,6 +294,9 @@ MODRUBY_WANTLIB_m?= Yes . if ${MODRUBY_WANTLIB_m:L:Myes} WANTLIB+= m . endif +. if ${MODRUBY_REV} == 1.9 +WANTLIB+= pthread +. endif LIB_DEPENDS+= ${MODRUBY_LIB_DEPENDS} . if ${MODRUBY_REV} == rbx Index: audio/ruby-id3lib/Makefile =================================================================== RCS file: /cvs/ports/audio/ruby-id3lib/Makefile,v retrieving revision 1.19 diff -N -u -p audio/ruby-id3lib/Makefile --- audio/ruby-id3lib/Makefile 23 Sep 2012 16:57:32 -0000 1.19 +++ audio/ruby-id3lib/Makefile 20 Dec 2012 17:31:50 -0000 @@ -5,7 +5,7 @@ COMMENT= Ruby interface to the id3lib C++ library VERSION= 0.6.0 DISTNAME= id3lib-ruby-${VERSION} PKGNAME= id3lib-${VERSION} -REVISION = 2 +REVISION = 3 CATEGORIES= audio # Ruby License Index: audio/ruby-vorbis_comment/Makefile =================================================================== RCS file: /cvs/ports/audio/ruby-vorbis_comment/Makefile,v retrieving revision 1.7 diff -N -u -p audio/ruby-vorbis_comment/Makefile --- audio/ruby-vorbis_comment/Makefile 23 Sep 2012 16:57:32 -0000 1.7 +++ audio/ruby-vorbis_comment/Makefile 20 Dec 2012 17:31:50 -0000 @@ -4,7 +4,7 @@ COMMENT = ruby library for reading/writing vorbis comm DISTNAME = vorbis_comment-1.0.1 CATEGORIES = audio -REVISION = 4 +REVISION = 5 HOMEPAGE= http://vorbiscomment.rubyforge.org/ Index: converters/ruby-json/Makefile =================================================================== RCS file: /cvs/ports/converters/ruby-json/Makefile,v retrieving revision 1.19 diff -N -u -p converters/ruby-json/Makefile --- converters/ruby-json/Makefile 31 Oct 2012 22:04:08 -0000 1.19 +++ converters/ruby-json/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,6 +3,7 @@ COMMENT= JSON implementation for Ruby DISTNAME= json-1.7.5 +REVISION = 0 CATEGORIES= converters HOMEPAGE= http://json.rubyforge.org/ Index: databases/ruby-amalgalite/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-amalgalite/Makefile,v retrieving revision 1.8 diff -N -u -p databases/ruby-amalgalite/Makefile --- databases/ruby-amalgalite/Makefile 23 Sep 2012 16:57:32 -0000 1.8 +++ databases/ruby-amalgalite/Makefile 20 Dec 2012 17:31:50 -0000 @@ -6,7 +6,7 @@ COMMENT = ruby SQLite3 embedded database library DISTNAME = amalgalite-1.1.2 CATEGORIES = databases -REVISION = 1 +REVISION = 2 HOMEPAGE = http://copiousfreetime.rubyforge.org/amalgalite/ Index: databases/ruby-do_mysql/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-do_mysql/Makefile,v retrieving revision 1.8 diff -N -u -p databases/ruby-do_mysql/Makefile --- databases/ruby-do_mysql/Makefile 23 Sep 2012 16:57:33 -0000 1.8 +++ databases/ruby-do_mysql/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= ruby-data_objects driver for MySQL DISTNAME= do_mysql-0.10.8 -REVISION = 0 +REVISION = 1 CATEGORIES= databases # MIT Index: databases/ruby-do_postgres/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-do_postgres/Makefile,v retrieving revision 1.9 diff -N -u -p databases/ruby-do_postgres/Makefile --- databases/ruby-do_postgres/Makefile 23 Sep 2012 16:57:33 -0000 1.9 +++ databases/ruby-do_postgres/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= DataObjects driver for PostgreSQL DISTNAME= do_postgres-0.10.8 -REVISION = 0 +REVISION = 1 CATEGORIES= databases # MIT Index: databases/ruby-do_sqlite3/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-do_sqlite3/Makefile,v retrieving revision 1.16 diff -N -u -p databases/ruby-do_sqlite3/Makefile --- databases/ruby-do_sqlite3/Makefile 23 Sep 2012 16:57:33 -0000 1.16 +++ databases/ruby-do_sqlite3/Makefile 20 Dec 2012 17:31:50 -0000 @@ -5,7 +5,7 @@ COMMENT = DataObjects driver for SQLite3 VERSION = 0.10.8 DISTNAME = do_sqlite3-${VERSION} CATEGORIES = databases -REVISION = 1 +REVISION = 2 # MIT PERMIT_PACKAGE_CDROM = Yes Index: databases/ruby-ldap/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-ldap/Makefile,v retrieving revision 1.27 diff -N -u -p databases/ruby-ldap/Makefile --- databases/ruby-ldap/Makefile 23 Sep 2012 16:57:33 -0000 1.27 +++ databases/ruby-ldap/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= Ruby interface to some common LDAP libraries PKGNAME= ldap-0.9.12 -REVISION = 0 +REVISION = 1 DISTNAME= ruby-${PKGNAME} CATEGORIES= databases Index: databases/ruby-mysql/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-mysql/Makefile,v retrieving revision 1.23 diff -N -u -p databases/ruby-mysql/Makefile --- databases/ruby-mysql/Makefile 23 Sep 2012 16:57:33 -0000 1.23 +++ databases/ruby-mysql/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= access a MySQL database from Ruby DISTNAME= mysql-2.8.1 -REVISION= 10 +REVISION= 11 CATEGORIES= databases HOMEPAGE= http://tmtm.org/mysql/ruby/ Index: databases/ruby-mysql2/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-mysql2/Makefile,v retrieving revision 1.9 diff -N -u -p databases/ruby-mysql2/Makefile --- databases/ruby-mysql2/Makefile 23 Sep 2012 16:57:33 -0000 1.9 +++ databases/ruby-mysql2/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= modern, simple and very fast Mysql library for Ruby DISTNAME= mysql2-0.3.11 -REVISION = 0 +REVISION = 1 CATEGORIES= databases HOMEPAGE= http://github.com/brianmario/mysql2 Index: databases/ruby-mysqlplus/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-mysqlplus/Makefile,v retrieving revision 1.7 diff -N -u -p databases/ruby-mysqlplus/Makefile --- databases/ruby-mysqlplus/Makefile 23 Sep 2012 16:57:33 -0000 1.7 +++ databases/ruby-mysqlplus/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= enhanced ruby mysql driver, supporting async and threading DISTNAME= mysqlplus-0.1.2 -REVISION = 3 +REVISION = 4 CATEGORIES= databases HOMEPAGE= http://github.com/oldmoe/mysqlplus Index: databases/ruby-sqlite3/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-sqlite3/Makefile,v retrieving revision 1.26 diff -N -u -p databases/ruby-sqlite3/Makefile --- databases/ruby-sqlite3/Makefile 23 Sep 2012 16:57:33 -0000 1.26 +++ databases/ruby-sqlite3/Makefile 20 Dec 2012 17:31:50 -0000 @@ -4,7 +4,7 @@ COMMENT= access a SQLite3 database from ruby VERSION= 1.3.6 DISTNAME= sqlite3-${VERSION} -REVISION = 0 +REVISION = 1 CATEGORIES= databases Index: databases/ruby-swift/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-swift/Makefile,v retrieving revision 1.6 diff -N -u -p databases/ruby-swift/Makefile --- databases/ruby-swift/Makefile 3 Sep 2012 18:05:25 -0000 1.6 +++ databases/ruby-swift/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,6 +3,7 @@ COMMENT = fast database API and ORM for ruby 1.9 DISTNAME = swift-0.14.0 +REVISION = 0 CATEGORIES = databases MAINTAINER = Jeremy Evans <jer...@openbsd.org> Index: databases/ruby-tiny_tds/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-tiny_tds/Makefile,v retrieving revision 1.5 diff -N -u -p databases/ruby-tiny_tds/Makefile --- databases/ruby-tiny_tds/Makefile 23 Sep 2012 16:57:33 -0000 1.5 +++ databases/ruby-tiny_tds/Makefile 20 Dec 2012 17:31:50 -0000 @@ -4,7 +4,7 @@ COMMENT = simple and fast ruby binding to FreeTDS DISTNAME = tiny_tds-0.4.5 CATEGORIES = databases -REVISION = 1 +REVISION = 2 HOMEPAGE = https://github.com/rails-sqlserver/tiny_tds Index: devel/ruby-fastthread/Makefile =================================================================== RCS file: /cvs/ports/devel/ruby-fastthread/Makefile,v retrieving revision 1.14 diff -N -u -p devel/ruby-fastthread/Makefile --- devel/ruby-fastthread/Makefile 23 Sep 2012 16:57:33 -0000 1.14 +++ devel/ruby-fastthread/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= optimized replacement for Ruby thread.rb primitives DISTNAME= fastthread-1.0.7 -REVISION= 6 +REVISION= 7 CATEGORIES= devel # Ruby's license Index: devel/ruby-ffi/Makefile =================================================================== RCS file: /cvs/ports/devel/ruby-ffi/Makefile,v retrieving revision 1.10 diff -N -u -p devel/ruby-ffi/Makefile --- devel/ruby-ffi/Makefile 23 Sep 2012 16:57:33 -0000 1.10 +++ devel/ruby-ffi/Makefile 20 Dec 2012 17:31:50 -0000 @@ -4,7 +4,7 @@ COMMENT = cross-platform dynamic library loading for r DISTNAME = ffi-1.0.9 CATEGORIES = devel -REVISION = 2 +REVISION = 3 HOMEPAGE= http://github.com/ffi/ffi Index: devel/ruby-home_run/Makefile =================================================================== RCS file: /cvs/ports/devel/ruby-home_run/Makefile,v retrieving revision 1.8 diff -N -u -p devel/ruby-home_run/Makefile --- devel/ruby-home_run/Makefile 23 Sep 2012 16:57:33 -0000 1.8 +++ devel/ruby-home_run/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT = fast Date/DateTime classes for ruby DISTNAME = home_run-1.0.6 -REVISION = 0 +REVISION = 1 CATEGORIES = devel HOMEPAGE= http://github.com/jeremyevans/home_run Index: devel/ruby-kgio/Makefile =================================================================== RCS file: /cvs/ports/devel/ruby-kgio/Makefile,v retrieving revision 1.10 diff -N -u -p devel/ruby-kgio/Makefile --- devel/ruby-kgio/Makefile 13 Oct 2012 10:47:17 -0000 1.10 +++ devel/ruby-kgio/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,6 +3,7 @@ COMMENT = kinder, gentler I/O for Ruby DISTNAME = kgio-2.7.4 +REVISION = 0 CATEGORIES = devel MAINTAINER = Jeremy Evans <jer...@openbsd.org> Index: devel/ruby-ncurses/Makefile =================================================================== RCS file: /cvs/ports/devel/ruby-ncurses/Makefile,v retrieving revision 1.35 diff -N -u -p devel/ruby-ncurses/Makefile --- devel/ruby-ncurses/Makefile 9 Oct 2012 10:24:06 -0000 1.35 +++ devel/ruby-ncurses/Makefile 20 Dec 2012 17:31:50 -0000 @@ -5,6 +5,7 @@ COMMENT= Ruby interface to ncurses VERSION= 1.2.1 DISTNAME= ncurses-ruby-${VERSION} PKGNAME= ncurses-${VERSION} +REVISION = 0 CATEGORIES= devel HOMEPAGE= https://github.com/eclubb/ncurses-ruby Index: devel/ruby-prof/Makefile =================================================================== RCS file: /cvs/ports/devel/ruby-prof/Makefile,v retrieving revision 1.6 diff -N -u -p devel/ruby-prof/Makefile --- devel/ruby-prof/Makefile 23 Sep 2012 16:57:34 -0000 1.6 +++ devel/ruby-prof/Makefile 20 Dec 2012 17:31:50 -0000 @@ -4,7 +4,7 @@ COMMENT = fast code profiler for Ruby DISTNAME = ruby-${PKGNAME} PKGNAME = prof-0.10.6 -REVISION= 1 +REVISION= 2 CATEGORIES = devel HOMEPAGE = http://ruby-prof.rubyforge.org/ Index: devel/ruby-rcov/Makefile =================================================================== RCS file: /cvs/ports/devel/ruby-rcov/Makefile,v retrieving revision 1.13 diff -N -u -p devel/ruby-rcov/Makefile --- devel/ruby-rcov/Makefile 23 Sep 2012 16:57:34 -0000 1.13 +++ devel/ruby-rcov/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= code coverage tool for Ruby DISTNAME= rcov-0.9.9 -REVISION= 1 +REVISION= 2 CATEGORIES= devel MAINTAINER= Jeremy Evans <jer...@openbsd.org> Index: devel/ruby-subset_sum/Makefile =================================================================== RCS file: /cvs/ports/devel/ruby-subset_sum/Makefile,v retrieving revision 1.5 diff -N -u -p devel/ruby-subset_sum/Makefile --- devel/ruby-subset_sum/Makefile 23 Sep 2012 16:57:34 -0000 1.5 +++ devel/ruby-subset_sum/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT = simple subset sum problem solver for ruby DISTNAME = subset_sum-1.0.1 -REVISION = 2 +REVISION = 3 CATEGORIES = devel HOMEPAGE= http://subset-sum.rubyforge.org/ Index: graphics/ruby-rmagick/Makefile =================================================================== RCS file: /cvs/ports/graphics/ruby-rmagick/Makefile,v retrieving revision 1.21 diff -N -u -p graphics/ruby-rmagick/Makefile --- graphics/ruby-rmagick/Makefile 23 Sep 2012 16:57:34 -0000 1.21 +++ graphics/ruby-rmagick/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT = Ruby interface to ImageMagick DISTNAME = rmagick-2.13.1 -REVISION = 3 +REVISION = 4 CATEGORIES = graphics HOMEPAGE = http://rmagick.rubyforge.org/ Index: net/ruby-eventmachine/Makefile =================================================================== RCS file: /cvs/ports/net/ruby-eventmachine/Makefile,v retrieving revision 1.13 diff -N -u -p net/ruby-eventmachine/Makefile --- net/ruby-eventmachine/Makefile 23 Sep 2012 16:57:34 -0000 1.13 +++ net/ruby-eventmachine/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= event-driven I/O for Ruby using the Reactor pattern DISTNAME= eventmachine-0.12.8 -REVISION = 5 +REVISION = 6 CATEGORIES= net devel HOMEPAGE= http://rubyeventmachine.com/ Index: security/ruby-bcrypt/Makefile =================================================================== RCS file: /cvs/ports/security/ruby-bcrypt/Makefile,v retrieving revision 1.16 diff -N -u -p security/ruby-bcrypt/Makefile --- security/ruby-bcrypt/Makefile 31 Oct 2012 22:04:42 -0000 1.16 +++ security/ruby-bcrypt/Makefile 20 Dec 2012 17:31:50 -0000 @@ -5,6 +5,7 @@ COMMENT = Ruby binding for the bcrypt() password hashi VERSION = 3.0.1 DISTNAME = bcrypt-ruby-${VERSION} PKGNAME = bcrypt-${VERSION} +REVISION = 0 CATEGORIES = security MAINTAINER = Jeremy Evans <jer...@openbsd.org> Index: sysutils/ruby-libvirt/Makefile =================================================================== RCS file: /cvs/ports/sysutils/ruby-libvirt/Makefile,v retrieving revision 1.1.1.1 diff -N -u -p sysutils/ruby-libvirt/Makefile --- sysutils/ruby-libvirt/Makefile 26 Oct 2012 18:06:27 -0000 1.1.1.1 +++ sysutils/ruby-libvirt/Makefile 20 Dec 2012 17:31:50 -0000 @@ -4,6 +4,7 @@ COMMENT= Ruby bindings for libvirt DISTNAME= ruby-libvirt-0.4.0 PKGNAME= ${DISTNAME:S/ruby-//} +REVISION = 0 CATEGORIES= sysutils HOMEPAGE= http://libvirt.org/ruby/ Index: textproc/ruby-fast-stemmer/Makefile =================================================================== RCS file: /cvs/ports/textproc/ruby-fast-stemmer/Makefile,v retrieving revision 1.4 diff -N -u -p textproc/ruby-fast-stemmer/Makefile --- textproc/ruby-fast-stemmer/Makefile 23 Sep 2012 16:57:35 -0000 1.4 +++ textproc/ruby-fast-stemmer/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= fast Porter stemmer for ruby DISTNAME= fast-stemmer-1.0.0 -REVISION= 1 +REVISION= 2 CATEGORIES= textproc HOMEPAGE= http://github.com/romanbsd/fast-stemmer Index: textproc/ruby-hpricot/Makefile =================================================================== RCS file: /cvs/ports/textproc/ruby-hpricot/Makefile,v retrieving revision 1.15 diff -N -u -p textproc/ruby-hpricot/Makefile --- textproc/ruby-hpricot/Makefile 23 Sep 2012 16:57:35 -0000 1.15 +++ textproc/ruby-hpricot/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= flexible HTML parser DISTNAME= hpricot-0.8.4 -REVISION = 0 +REVISION = 1 CATEGORIES= textproc HOMEPAGE= http://code.whytheluckystiff.net/hpricot/ Index: textproc/ruby-rdiscount/Makefile =================================================================== RCS file: /cvs/ports/textproc/ruby-rdiscount/Makefile,v retrieving revision 1.4 diff -N -u -p textproc/ruby-rdiscount/Makefile --- textproc/ruby-rdiscount/Makefile 23 Sep 2012 16:57:35 -0000 1.4 +++ textproc/ruby-rdiscount/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT = discount implementation of John Gruber's Markdown DISTNAME = rdiscount-1.6.5 -REVISION= 1 +REVISION= 2 CATEGORIES = textproc # BSD Index: textproc/ruby-redcarpet/Makefile =================================================================== RCS file: /cvs/ports/textproc/ruby-redcarpet/Makefile,v retrieving revision 1.3 diff -N -u -p textproc/ruby-redcarpet/Makefile --- textproc/ruby-redcarpet/Makefile 23 Sep 2012 16:57:35 -0000 1.3 +++ textproc/ruby-redcarpet/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT= fast, safe and extensible Markdown to (X)HTML parser DISTNAME= redcarpet-2.1.1 -REVISION = 0 +REVISION = 1 CATEGORIES= textproc Index: textproc/ruby-redcloth/Makefile =================================================================== RCS file: /cvs/ports/textproc/ruby-redcloth/Makefile,v retrieving revision 1.16 diff -N -u -p textproc/ruby-redcloth/Makefile --- textproc/ruby-redcloth/Makefile 23 Sep 2012 16:57:35 -0000 1.16 +++ textproc/ruby-redcloth/Makefile 20 Dec 2012 17:31:50 -0000 @@ -4,7 +4,7 @@ COMMENT = module for using Textile in Ruby DISTNAME = RedCloth-4.2.7 PKGNAME = ${DISTNAME:L} -REVISION= 2 +REVISION= 3 CATEGORIES = textproc HOMEPAGE = http://redcloth.org/ Index: www/ruby-passenger/Makefile =================================================================== RCS file: /cvs/ports/www/ruby-passenger/Makefile,v retrieving revision 1.25 diff -N -u -p www/ruby-passenger/Makefile --- www/ruby-passenger/Makefile 11 Oct 2012 10:39:08 -0000 1.25 +++ www/ruby-passenger/Makefile 20 Dec 2012 17:31:50 -0000 @@ -6,7 +6,7 @@ COMMENT-standalone = ruby web application server PASS_VERSION = 3.0.11 NGINX_VERSION = 1.2.3 DISTNAME = passenger-${PASS_VERSION} -REVISION = 2 +REVISION = 3 FULLPKGNAME-main = ${MODRUBY_PKG_PREFIX}-${DISTNAME} FULLPKGNAME-standalone = ${MODRUBY_PKG_PREFIX}-passenger-standalone-${PASS_VERSION}.${NGINX_VERSION} FULLPKGPATH-main = ${BASE_PKGPATH},-main Index: www/ruby-rainbows/Makefile =================================================================== RCS file: /cvs/ports/www/ruby-rainbows/Makefile,v retrieving revision 1.9 diff -N -u -p www/ruby-rainbows/Makefile --- www/ruby-rainbows/Makefile 13 Oct 2012 10:50:14 -0000 1.9 +++ www/ruby-rainbows/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,6 +3,7 @@ COMMENT = ruby-unicorn for sleepy apps and slow clients DISTNAME = rainbows-4.4.1 +REVISION = 0 CATEGORIES = www HOMEPAGE = http://rainbows.rubyforge.org/ Index: www/ruby-raindrops/Makefile =================================================================== RCS file: /cvs/ports/www/ruby-raindrops/Makefile,v retrieving revision 1.5 diff -N -u -p www/ruby-raindrops/Makefile --- www/ruby-raindrops/Makefile 13 Oct 2012 10:48:40 -0000 1.5 +++ www/ruby-raindrops/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,6 +3,7 @@ COMMENT = real-time stats toolkit for Rack HTTP servers DISTNAME = raindrops-0.10.0 +REVISION = 0 CATEGORIES = www MAINTAINER = Jeremy Evans <jer...@openbsd.org> Index: www/ruby-thin/Makefile =================================================================== RCS file: /cvs/ports/www/ruby-thin/Makefile,v retrieving revision 1.14 diff -N -u -p www/ruby-thin/Makefile --- www/ruby-thin/Makefile 23 Sep 2012 16:57:36 -0000 1.14 +++ www/ruby-thin/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,7 +3,7 @@ COMMENT = fast and very simple Ruby web server DISTNAME = thin-1.3.0 -REVISION = 0 +REVISION = 1 CATEGORIES = www HOMEPAGE = http://code.macournoyer.com/thin/ Index: www/ruby-unicorn/Makefile =================================================================== RCS file: /cvs/ports/www/ruby-unicorn/Makefile,v retrieving revision 1.9 diff -N -u -p www/ruby-unicorn/Makefile --- www/ruby-unicorn/Makefile 13 Oct 2012 10:49:49 -0000 1.9 +++ www/ruby-unicorn/Makefile 20 Dec 2012 17:31:50 -0000 @@ -3,6 +3,7 @@ COMMENT = ruby-rack HTTP server for Unix and fast clients DISTNAME = unicorn-4.4.0 +REVISION = 0 CATEGORIES = www HOMEPAGE = http://unicorn.bogomips.org/ Index: databases/ruby-bdb/Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-bdb/Makefile,v retrieving revision 1.31 diff -N -u -p databases/ruby-bdb/Makefile --- databases/ruby-bdb/Makefile 12 Oct 2012 14:12:28 -0000 1.31 +++ databases/ruby-bdb/Makefile 20 Dec 2012 19:28:21 -0000 @@ -2,7 +2,7 @@ COMMENT= ruby interface to Berkeley DB DISTNAME= bdb-0.6.5 -REVISION= 5 +REVISION= 6 CATEGORIES= databases HOMEPAGE= http://rubyforge.org/projects/bdb/ ? databases/ruby-bdb/patches Index: net/ruby-pcaprub-msf/Makefile =================================================================== RCS file: /cvs/ports/net/ruby-pcaprub-msf/Makefile,v retrieving revision 1.7 diff -N -u -p net/ruby-pcaprub-msf/Makefile --- net/ruby-pcaprub-msf/Makefile 23 Sep 2012 16:57:35 -0000 1.7 +++ net/ruby-pcaprub-msf/Makefile 20 Dec 2012 19:28:21 -0000 @@ -4,7 +4,7 @@ COMMENT = Ruby interface to LBL pcap library (Metaspl DISTNAME = pcaprub-msf-r7343 PKGNAME = pcaprub-msf-7343 -REVISION = 4 +REVISION = 5 CATEGORIES = net EXTRACT_SUFX = .tgz