diff options
Diffstat (limited to 'dev-ruby/ruby-postgres')
-rw-r--r-- | dev-ruby/ruby-postgres/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ruby/ruby-postgres/Manifest | 3 | ||||
-rw-r--r-- | dev-ruby/ruby-postgres/ruby-postgres-0.7.1.ebuild | 21 |
3 files changed, 31 insertions, 1 deletions
diff --git a/dev-ruby/ruby-postgres/ChangeLog b/dev-ruby/ruby-postgres/ChangeLog new file mode 100644 index 000000000000..b027281ea027 --- /dev/null +++ b/dev-ruby/ruby-postgres/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-ruby/ruby-postgres +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-postgres/ChangeLog,v 1.1 2003/05/09 11:45:31 twp Exp $ + +*ruby-postgres-0.7.1 (09 May 2003) + + 09 May 2003; Tom Payne <twp@gentoo.org> ruby-postgres-0.7.1.ebuild : + Initial import. Ebuild submitted by Jeremy James. Bug # 20664. diff --git a/dev-ruby/ruby-postgres/Manifest b/dev-ruby/ruby-postgres/Manifest index 17daa28dcdec..c95858c5900e 100644 --- a/dev-ruby/ruby-postgres/Manifest +++ b/dev-ruby/ruby-postgres/Manifest @@ -1,2 +1,3 @@ -MD5 6d7e888255c59134c3cd24d8605fd0d0 ruby-postgres-0.7.1.ebuild 555 +MD5 1f81cd76e0778bee423adca45090a8ea ruby-postgres-0.7.1.ebuild 664 +MD5 94fd1b8ce62e25b2c4aca507b987ef7b ChangeLog 395 MD5 a2ddae4b1f9d97aa89560c3c75aa8c44 files/digest-ruby-postgres-0.7.1 70 diff --git a/dev-ruby/ruby-postgres/ruby-postgres-0.7.1.ebuild b/dev-ruby/ruby-postgres/ruby-postgres-0.7.1.ebuild new file mode 100644 index 000000000000..fb0f1f13fe18 --- /dev/null +++ b/dev-ruby/ruby-postgres/ruby-postgres-0.7.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-postgres/ruby-postgres-0.7.1.ebuild,v 1.1 2003/05/09 11:45:31 twp Exp $ + +DESCRIPTION="An extension library to access a PostgreSQL database from Ruby" +HOMEPAGE="http://www.postgresql.jp/interfaces/ruby/" +SRC_URI="http://www.postgresql.jp/interfaces/ruby/archive/${P}.tar.gz" +LICENSE="Ruby" +SLOT="0" +KEYWORDS="~alpha ~arm ~hppa ~mips ~ppc ~sparc ~x86" +DEPEND=">=dev-lang/ruby-1.3.4 + >=dev-db/postgresql-6.4" + +src_compile() { + ruby extconf.rb || die + emake || die +} + +src_install() { + einstall || die +} |