freebsd-ports/www/ruby-google/Makefile

40 lines
893 B
Makefile
Raw Normal View History

# New ports collection makefile for: Ruby/Google
# Date created: 13 April 2002
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= google
2006-02-15 02:21:04 +01:00
PORTVERSION= 0.6.0
CATEGORIES= www databases ruby
MASTER_SITES= http://www.caliban.org/files/ruby/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= ports@FreeBSD.org
2003-02-18 06:42:05 +01:00
COMMENT= A Ruby interface to Google's SOAP-driven Web API
USE_RUBY= yes
USE_RUBY_FEATURES= soap
USE_RUBY_SETUP= yes
RUBY_SETUP= install.rb
2002-04-23 21:42:13 +02:00
DOCS= CHANGES Changelog README google.html
EXAMPLES= examples/*
post-install:
.if !defined(NOPORTDOCS)
2002-10-06 23:38:34 +02:00
${MKDIR} ${RUBY_MODEXAMPLESDIR}
.for f in ${EXAMPLES}
2002-10-06 23:38:34 +02:00
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/
.endfor
2002-10-06 23:38:34 +02:00
${MKDIR} ${RUBY_MODDOCDIR}
.for f in ${DOCS}
2002-10-06 23:38:34 +02:00
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.endif
.include <bsd.port.mk>