1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/www/ruby-aws/Makefile
Philip M. Gollucci 43ad174ca7 - Update to 0.8.1
PR:             ports/147675
Approved by:    don@na.rim.or.jp (maintainer)
Submitted by:   myself (pgollucci@)
2010-06-08 22:13:10 +00:00

50 lines
1007 B
Makefile

# New ports collection makefile for: ruby-aws
# Date created: 2008-03-30
# Whom: IWATSUKI Hiroyuki <don@na.rim.or.jp>
#
# $FreeBSD$
#
PORTNAME= aws
PORTVERSION= 0.8.1
CATEGORIES= www ruby
MASTER_SITES= http://www.caliban.org/files/ruby/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= don@na.rim.or.jp
COMMENT= A Ruby interface to Amazon Web Services
CONFLICTS= ruby-amazon-[0-9]*
USE_RUBY= yes
USE_RUBY_SETUP= yes
DOCS= COPYING INSTALL NEWS README
EXAMPLES= example/*
RUBY_REQUIRE= Ruby > 180
.include <bsd.port.pre.mk>
.if !defined(RUBY_PROVIDED)
IGNORE= depends on Ruby 1.8.0 or later
.endif
post-install:
.if !defined(NOPORTEXAMPLES)
${MKDIR} ${RUBY_MODEXAMPLESDIR}/
.for f in ${EXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/
.endfor
.endif
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_MODDOCDIR}/
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.endif
.include <bsd.port.post.mk>