Revision: 20814 http://trac.macosforge.org/projects/macports/changeset/20814 Author: pguyot@kallisys.net Date: 2006-11-30 03:26:01 -0800 (Thu, 30 Nov 2006) Log Message: ----------- ruby/rb-postgres: use postgresql81 instead of postgresql8 which is deprecated. Ticket: #11005 Modified Paths: -------------- trunk/dports/ruby/rb-postgres/Portfile Modified: trunk/dports/ruby/rb-postgres/Portfile =================================================================== --- trunk/dports/ruby/rb-postgres/Portfile 2006-11-30 08:35:14 UTC (rev 20813) +++ trunk/dports/ruby/rb-postgres/Portfile 2006-11-30 11:26:01 UTC (rev 20814) @@ -4,7 +4,7 @@ PortGroup ruby 1.0 ruby.setup {postgres ruby-postgres} 0.7.1 extconf.rb {README doc sample} -revision 4 +revision 5 maintainers shu@rufuran.org description Ruby API for the PostgreSQL database long_description This is the Ruby library for accessing PostgreSQL \ @@ -15,10 +15,10 @@ checksums md5 8ef67b3f4b089248f0420baeb0e3b3c8 platforms darwin -depends_lib-append port:postgresql8 +depends_lib-append port:postgresql81 -configure.args-append --with-pgsql-include-dir=${prefix}/include/pgsql8 \ - --with-pgsql-lib-dir=${prefix}/lib/pgsql8 +configure.args-append --with-pgsql-include-dir=${prefix}/include/postgresql81 \ + --with-pgsql-lib-dir=${prefix}/lib/postgresql81 configure.env \ - POSTGRES_LIB="${prefix}/lib/pgsql8 -L${prefix}/lib -lssl -lcrypto" \ - POSTGRES_INCLUDE="${prefix}/include/pgsql8 -I${prefix}/include" + POSTGRES_LIB="${prefix}/lib/postgresql81 -L${prefix}/lib -lssl -lcrypto" \ + POSTGRES_INCLUDE="${prefix}/include/postgresql81 -I${prefix}/include"