freebsd-ports/devel/ruby-gettext/Makefile
Akinori MUSHA 3338a6102c This module depends on the iconv module.
PR:		ports/98747
Submitted by:	sem
2006-08-24 07:46:49 +00:00

53 lines
1.2 KiB
Makefile

# New ports collection makefile for: Ruby GetText Package
# Date created: 4 February 2002
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= gettext
PORTVERSION= 1.7.0
CATEGORIES= devel ruby
MASTER_SITES= ${MASTER_SITE_RUBYFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-${PORTNAME}-package-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
COMMENT= A Ruby implementation of the gettext library
BUILD_DEPENDS= racc:${PORTSDIR}/devel/ruby-racc
USE_GETTEXT= yes
USE_RUBY= yes
USE_RUBY_FEATURES= racc-runtime iconv
USE_RUBY_SETUP= yes
RUBY_SHEBANG_FILES= ${WRKSRC}/samples/*.rb
DOCSDIR= ${RUBY_MODDOCDIR}
PORTDOCS= ChangeLog NEWS README doc
RUBY_REQUIRE= Ruby >= 184
.include <bsd.port.pre.mk>
.if !defined(RUBY_PROVIDED)
IGNORE= requires Ruby 1.8.4 or later
.endif
post-install: doc-install
doc-install:
.if !defined(NOPORTDOCS)
cd ${WRKSRC}/samples; ${RUBY} makemo.rb
${MKDIR} ${RUBY_MODEXAMPLESDIR}
${CP} -R ${WRKSRC}/samples/* ${RUBY_MODEXAMPLESDIR}/
${MKDIR} ${RUBY_MODDOCDIR}
.for f in ${PORTDOCS}
${CP} -R ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.endif
.include <bsd.port.post.mk>