aboutsummaryrefslogtreecommitdiffstats
path: root/devel/rubygem-locale/Makefile
blob: a6e23568c3637ba699fc6229b3f2b167cbd9a28c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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=    0.7.0
CATEGORIES= devel ruby
MASTER_SITES=   ftp://ftp.iDaemons.org/pub/distfiles/
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
USE_RUBY_SETUP= yes

RUBY_SHEBANG_FILES= ${WRKSRC}/samples/*.rb

DOCS_EN=    ChangeLog README
DOCS_JA=    README.ja

post-install: doc-install

.include <bsd.port.mk>

doc-install:
.if !defined(NOPORTDOCS)
    cd ${WRKSRC}/samples; ${RUBY} makemo.rb
    ${MKDIR} ${RUBY_MODEXAMPLESDIR}
    ${CP} -R ${WRKSRC}/samples/* ${RUBY_MODEXAMPLESDIR}/
    ${MKDIR} ${RUBY_MODDOCDIR}/ja
.for f in ${DOCS_EN}
    ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.for f in ${DOCS_JA}
    ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
.endfor
.endif