Update to 0.6.1.
Depend on Postgresql7. (Though it works with either 6.4/6.5 or 7.0) Take over the maintainership. At the request of: yasuf@big.or.jp (the previous MAINTAINER)
This commit is contained in:
parent
05a03e7d8c
commit
9ab9203389
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=31459
@ -5,25 +5,20 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= ruby-postgres
|
||||
PORTVERSION= 0.5.3
|
||||
PORTNAME= postgres
|
||||
PORTVERSION= 0.6.1
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.netlab.co.jp/pub/lang/ruby/contrib/ \
|
||||
ftp://ftp.TokyoNet.AD.JP/pub/misc/ruby/contrib/ \
|
||||
ftp://ftp.iij.ad.jp/pub/lang/ruby/contrib/ \
|
||||
ftp://blade.nagaokaut.ac.jp/pub/lang/ruby/contrib/ \
|
||||
ftp://ftp.krnet.ne.jp/pub/ruby/contrib/ \
|
||||
ftp://mirror.nucba.ac.jp/mirror/ruby/contrib/
|
||||
DISTNAME= postgres-${PORTVERSION}
|
||||
MASTER_SITES= http://webclub.kcom.ne.jp/mb/noborus/archive/
|
||||
PKGNAMEPREFIX= ruby-
|
||||
DIST_SUBDIR= ruby
|
||||
|
||||
MAINTAINER= yasuf@big.or.jp
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby
|
||||
RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby
|
||||
LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql
|
||||
LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql7
|
||||
|
||||
WRKSRC= ${WRKDIR}/postgres
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
CONFIGURE_ARGS+= --with-pgsql-include-dir="${PGDIR}/include" \
|
||||
--with-pgsql-lib-dir="${PGDIR}/lib"
|
||||
PLIST_SUB+= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}"
|
||||
@ -34,15 +29,23 @@ RUBY_ARCH= ${ARCH}-freebsd${OSREL}
|
||||
|
||||
PGDIR?= ${PREFIX}/pgsql
|
||||
|
||||
DOCS_EN= ChangeLog README doc/postgres.html
|
||||
DOCS_JA= README.jp doc/postgres.jp.html
|
||||
|
||||
do-configure:
|
||||
@cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${RUBY} extconf.rb ${CONFIGURE_ARGS}
|
||||
|
||||
post-install:
|
||||
${MKDIR} ${PREFIX}/share/examples/ruby/postgres
|
||||
${INSTALL_DATA} ${WRKSRC}/psql*.rb ${PREFIX}/share/examples/ruby/postgres
|
||||
${INSTALL_DATA} ${WRKSRC}/sample/* ${PREFIX}/share/examples/ruby/postgres/
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/ruby/postgres
|
||||
${INSTALL_DATA} ${WRKSRC}/README* ${WRKSRC}/*.html ${PREFIX}/share/doc/ruby/postgres
|
||||
${MKDIR} ${PREFIX}/share/doc/ruby/postgres/ja
|
||||
.for f in ${DOCS_EN}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/postgres/
|
||||
.endfor
|
||||
.for f in ${DOCS_JA}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/postgres/ja/
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1 +1 @@
|
||||
MD5 (ruby/postgres-0.5.3.tar.gz) = f34965e627807b9e9ac78e322e3d21f2
|
||||
MD5 (ruby/postgres-0.6.1.tar.gz) = 12620ad063d9a36da7faff66dace3799
|
||||
|
@ -1,4 +1,4 @@
|
||||
This is an extention module to access PostgreSQL database from Ruby.
|
||||
This library works with PostgreSQL 6.4/6.5 and 7.0.
|
||||
|
||||
- Yasuhiro Fukuma
|
||||
yasuf@big.or.jp
|
||||
WWW: http://webclub.kcom.ne.jp/mb/noborus/postgres/index.html
|
||||
|
@ -1,10 +1,15 @@
|
||||
lib/ruby/%%RUBY_VER%%/%%RUBY_ARCH%%/postgres.so
|
||||
share/examples/ruby/postgres/losample.rb
|
||||
share/examples/ruby/postgres/psql.rb
|
||||
share/examples/ruby/postgres/psqlHelp.rb
|
||||
share/examples/ruby/postgres/test1.rb
|
||||
share/examples/ruby/postgres/test2.rb
|
||||
share/examples/ruby/postgres/test4.rb
|
||||
@dirrm share/examples/ruby/postgres
|
||||
share/doc/ruby/postgres/ChangeLog
|
||||
share/doc/ruby/postgres/README
|
||||
share/doc/ruby/postgres/README.jp
|
||||
share/doc/ruby/postgres/postgres.html
|
||||
share/doc/ruby/postgres/postgres.jp.html
|
||||
share/doc/ruby/postgres/ja/README.jp
|
||||
share/doc/ruby/postgres/ja/postgres.jp.html
|
||||
@dirrm share/doc/ruby/postgres/ja
|
||||
@dirrm share/doc/ruby/postgres
|
||||
@unexec /bin/rmdir %D/share/doc/ruby >/dev/null 2>&1 || true
|
||||
|
@ -5,25 +5,20 @@
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= ruby-postgres
|
||||
PORTVERSION= 0.5.3
|
||||
PORTNAME= postgres
|
||||
PORTVERSION= 0.6.1
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= ftp://ftp.netlab.co.jp/pub/lang/ruby/contrib/ \
|
||||
ftp://ftp.TokyoNet.AD.JP/pub/misc/ruby/contrib/ \
|
||||
ftp://ftp.iij.ad.jp/pub/lang/ruby/contrib/ \
|
||||
ftp://blade.nagaokaut.ac.jp/pub/lang/ruby/contrib/ \
|
||||
ftp://ftp.krnet.ne.jp/pub/ruby/contrib/ \
|
||||
ftp://mirror.nucba.ac.jp/mirror/ruby/contrib/
|
||||
DISTNAME= postgres-${PORTVERSION}
|
||||
MASTER_SITES= http://webclub.kcom.ne.jp/mb/noborus/archive/
|
||||
PKGNAMEPREFIX= ruby-
|
||||
DIST_SUBDIR= ruby
|
||||
|
||||
MAINTAINER= yasuf@big.or.jp
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ruby:${PORTSDIR}/lang/ruby
|
||||
RUN_DEPENDS= ruby:${PORTSDIR}/lang/ruby
|
||||
LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql
|
||||
LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql7
|
||||
|
||||
WRKSRC= ${WRKDIR}/postgres
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
CONFIGURE_ARGS+= --with-pgsql-include-dir="${PGDIR}/include" \
|
||||
--with-pgsql-lib-dir="${PGDIR}/lib"
|
||||
PLIST_SUB+= RUBY_VER="${RUBY_VER}" RUBY_ARCH="${RUBY_ARCH}"
|
||||
@ -34,15 +29,23 @@ RUBY_ARCH= ${ARCH}-freebsd${OSREL}
|
||||
|
||||
PGDIR?= ${PREFIX}/pgsql
|
||||
|
||||
DOCS_EN= ChangeLog README doc/postgres.html
|
||||
DOCS_JA= README.jp doc/postgres.jp.html
|
||||
|
||||
do-configure:
|
||||
@cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${RUBY} extconf.rb ${CONFIGURE_ARGS}
|
||||
|
||||
post-install:
|
||||
${MKDIR} ${PREFIX}/share/examples/ruby/postgres
|
||||
${INSTALL_DATA} ${WRKSRC}/psql*.rb ${PREFIX}/share/examples/ruby/postgres
|
||||
${INSTALL_DATA} ${WRKSRC}/sample/* ${PREFIX}/share/examples/ruby/postgres/
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/ruby/postgres
|
||||
${INSTALL_DATA} ${WRKSRC}/README* ${WRKSRC}/*.html ${PREFIX}/share/doc/ruby/postgres
|
||||
${MKDIR} ${PREFIX}/share/doc/ruby/postgres/ja
|
||||
.for f in ${DOCS_EN}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/postgres/
|
||||
.endfor
|
||||
.for f in ${DOCS_JA}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/ruby/postgres/ja/
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1 +1 @@
|
||||
MD5 (ruby/postgres-0.5.3.tar.gz) = f34965e627807b9e9ac78e322e3d21f2
|
||||
MD5 (ruby/postgres-0.6.1.tar.gz) = 12620ad063d9a36da7faff66dace3799
|
||||
|
@ -1,4 +1,4 @@
|
||||
This is an extention module to access PostgreSQL database from Ruby.
|
||||
This library works with PostgreSQL 6.4/6.5 and 7.0.
|
||||
|
||||
- Yasuhiro Fukuma
|
||||
yasuf@big.or.jp
|
||||
WWW: http://webclub.kcom.ne.jp/mb/noborus/postgres/index.html
|
||||
|
@ -1,10 +1,15 @@
|
||||
lib/ruby/%%RUBY_VER%%/%%RUBY_ARCH%%/postgres.so
|
||||
share/examples/ruby/postgres/losample.rb
|
||||
share/examples/ruby/postgres/psql.rb
|
||||
share/examples/ruby/postgres/psqlHelp.rb
|
||||
share/examples/ruby/postgres/test1.rb
|
||||
share/examples/ruby/postgres/test2.rb
|
||||
share/examples/ruby/postgres/test4.rb
|
||||
@dirrm share/examples/ruby/postgres
|
||||
share/doc/ruby/postgres/ChangeLog
|
||||
share/doc/ruby/postgres/README
|
||||
share/doc/ruby/postgres/README.jp
|
||||
share/doc/ruby/postgres/postgres.html
|
||||
share/doc/ruby/postgres/postgres.jp.html
|
||||
share/doc/ruby/postgres/ja/README.jp
|
||||
share/doc/ruby/postgres/ja/postgres.jp.html
|
||||
@dirrm share/doc/ruby/postgres/ja
|
||||
@dirrm share/doc/ruby/postgres
|
||||
@unexec /bin/rmdir %D/share/doc/ruby >/dev/null 2>&1 || true
|
||||
|
Loading…
Reference in New Issue
Block a user