blob: 4c0072be9b7df3ce4c0f581678c82ca5451ad4e5 (
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
48
49
50
51
|
# New ports collection makefile for: rbbr
# Date created: 24 November 2002
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= rbbr
PORTVERSION= 0.6.0
PORTREVISION= 9
CATEGORIES= devel ruby
MASTER_SITES= SF/ruby-gnome2/${PORTNAME}/${PORTNAME}-${PORTVERSION}
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ${PORTNAME}-${PORTVERSION:S/r/rev/}
DIST_SUBDIR= ruby
MAINTAINER= ruby@FreeBSD.org
COMMENT= A GTK+2-based Ruby module browser
BUILD_DEPENDS= rubygem-gettext>0:${PORTSDIR}/devel/rubygem-gettext
RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/gtk2.so:${PORTSDIR}/x11-toolkits/ruby-gtk2 \
rubygem-gettext>0:${PORTSDIR}/devel/rubygem-gettext
USE_GETTEXT= yes
USE_RUBY= yes
USE_RUBY_SETUP= yes
RUBY_SETUP= install.rb
DOCS_EN= AUTHORS COPYING ChangeLog README
DOCS_JA= COPYING.ja README.ja
.if !defined(NOPORTDOCS)
post-install:
@${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
.include <bsd.port.pre.mk>
.if ${RUBY_VER} == 1.9
PLIST_SUB+= R19="@comment "
.else
PLIST_SUB+= R19=""
.endif
.include <bsd.port.post.mk>
|