diff options
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/ruby-google/Makefile | 39 | ||||
-rw-r--r-- | www/ruby-google/distinfo | 1 | ||||
-rw-r--r-- | www/ruby-google/pkg-comment | 1 | ||||
-rw-r--r-- | www/ruby-google/pkg-descr | 13 | ||||
-rw-r--r-- | www/ruby-google/pkg-plist | 9 |
6 files changed, 64 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index af6ccbd..48950cb 100644 --- a/www/Makefile +++ b/www/Makefile @@ -313,6 +313,7 @@ SUBDIR += retawq SUBDIR += roxen SUBDIR += ruboard + SUBDIR += ruby-google SUBDIR += ruby-http-access SUBDIR += ruby-tmpl SUBDIR += ruby-webrick diff --git a/www/ruby-google/Makefile b/www/ruby-google/Makefile new file mode 100644 index 0000000..57e2e28 --- /dev/null +++ b/www/ruby-google/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: Ruby/Google +# Date created: 13 April 2002 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= google +PORTVERSION= 0.1.0 +CATEGORIES= www databases ruby +MASTER_SITES= http://www.caliban.org/files/ruby/ +PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} +DISTNAME= ruby-${PORTNAME}-${PORTVERSION} +DIST_SUBDIR= ruby + +MAINTAINER= knu@FreeBSD.org + +RUN_DEPENDS= ${RUBY_SITELIBDIR}/soap:${PORTSDIR}/net/ruby-soap + +USE_RUBY= yes +USE_RUBY_SETUP= yes +RUBY_SETUP= install.rb + +DOCS= Changelog README google.html +EXAMPLES= examples/* + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME} +.for f in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_EXAMPLESDIR}/${PORTNAME}/ +.endfor + ${MKDIR} ${RUBY_DOCDIR}/${PORTNAME} +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ +.endfor +.endif + +.include <bsd.port.mk> diff --git a/www/ruby-google/distinfo b/www/ruby-google/distinfo new file mode 100644 index 0000000..1d85092 --- /dev/null +++ b/www/ruby-google/distinfo @@ -0,0 +1 @@ +MD5 (ruby/ruby-google-0.1.0.tar.gz) = c8b094029bb8451bf1be992ca0a3b122 diff --git a/www/ruby-google/pkg-comment b/www/ruby-google/pkg-comment new file mode 100644 index 0000000..4ead2c4 --- /dev/null +++ b/www/ruby-google/pkg-comment @@ -0,0 +1 @@ +A Ruby interface to Google's SOAP-driven Web API diff --git a/www/ruby-google/pkg-descr b/www/ruby-google/pkg-descr new file mode 100644 index 0000000..290fd75 --- /dev/null +++ b/www/ruby-google/pkg-descr @@ -0,0 +1,13 @@ +Ruby/Google offers a higher-level abstraction of Google's new +SOAP-driven Web API. It allows you to programmatically query the +Google search-engine from the comfort of your favourite programming +language. + +The aim of the library is to make the details of the raw data +structures returned by the Web API irrelevant, in the process making +the API more accessible for everyday use. + +Demonstration programs are included in the archive. + +Author: Ian Macdonald <ian@caliban.org> +WWW: http://www.caliban.org/ruby/ diff --git a/www/ruby-google/pkg-plist b/www/ruby-google/pkg-plist new file mode 100644 index 0000000..9964197 --- /dev/null +++ b/www/ruby-google/pkg-plist @@ -0,0 +1,9 @@ +%%RUBY_SITELIBDIR%%/google.rb +%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/google/cache.rb +%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/google/search.rb +%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/google/spell.rb +%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/google +%%PORTDOCS%%%%RUBY_DOCDIR%%/google/Changelog +%%PORTDOCS%%%%RUBY_DOCDIR%%/google/README +%%PORTDOCS%%%%RUBY_DOCDIR%%/google/google.html +%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/google |