diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2009-11-15 10:16:20 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2009-11-15 10:16:20 +0000 |
commit | 7c386fec7591622abf101f74b570813023a390cc (patch) | |
tree | 8a0ec7e12f15a4ae58f363a3b694f8fcaca8b21f /databases | |
parent | b95981a575454de82d4534803a5af361eed87482 (diff) | |
download | ports-7c386fec7591622abf101f74b570813023a390cc.tar.gz ports-7c386fec7591622abf101f74b570813023a390cc.zip |
Notes
Diffstat (limited to 'databases')
-rw-r--r-- | databases/ruby-dbd_pg/Makefile | 1 | ||||
-rw-r--r-- | databases/ruby-dbd_pg/files/patch-Pg.rb | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/databases/ruby-dbd_pg/Makefile b/databases/ruby-dbd_pg/Makefile index 7c4c34ac755d..d9b1971bc631 100644 --- a/databases/ruby-dbd_pg/Makefile +++ b/databases/ruby-dbd_pg/Makefile @@ -7,6 +7,7 @@ PORTNAME= dbd_pg PORTVERSION= 0.3.8 +PORTREVISION= 1 CATEGORIES= databases ruby MASTER_SITES= RF MASTER_SITE_SUBDIR= ruby-dbi diff --git a/databases/ruby-dbd_pg/files/patch-Pg.rb b/databases/ruby-dbd_pg/files/patch-Pg.rb new file mode 100644 index 000000000000..8a1ab5d650de --- /dev/null +++ b/databases/ruby-dbd_pg/files/patch-Pg.rb @@ -0,0 +1,18 @@ +--- lib/dbd/Pg.rb.orig 2009-07-11 19:07:38.000000000 +0200 ++++ lib/dbd/Pg.rb 2009-11-15 10:18:13.000000000 +0100 +@@ -31,13 +31,13 @@ + + begin + require 'rubygems' +- gem 'pg' ++ gem 'postgres' + gem 'dbi' + rescue Exception => e + end + + require 'dbi' +-require 'pg' ++require 'postgres' + + module DBI + module DBD |