aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/eruby/Makefile
blob: bc6f02a45ef4e81d580c608008a98f9fd082bafd (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# New ports collection makefile for:    eruby
# Date created:         14 Aug 2000
# Whom:             Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=   eruby
PORTVERSION=    1.0.5
PORTREVISION=   2
CATEGORIES= textproc www ruby
MASTER_SITES=   http://www.modruby.net/archive/ \
        ftp://ftp.dinoex.de/pub/FreeBSD/distfiles/
PKGNAMEPREFIX=  ${RUBY_PKGNAMEPREFIX}
DIST_SUBDIR=    ruby

MAINTAINER= dinoex@FreeBSD.org
COMMENT=    Interprets Ruby code embedded in a text file like PHP/ePerl/ASP/JSP

USE_RUBY=   yes

CONFIGURE_ARGS= --enable-shared --with-charset="${DEFAULT_CHARSET}"
INSTALL_TARGET= site-install
USE_LDCONFIG=   yes

DEFAULT_CHARSET?=   ISO-8859-1

MAN1=       eruby.1

RUBY_RD_FILES=  eruby.rd

DOCS_EN=    COPYING ChangeLog README.en \
        ${RUBY_RD_FILES} \
        ${RUBY_RD_HTML_FILES}
DOCS_JA=    README.ja

do-configure:
    @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${RUBY} configure.rb ${CONFIGURE_ARGS}

post-install:
.if !defined(NOPORTEXAMPLES)
    ${MKDIR} ${RUBY_MODEXAMPLESDIR}
    ${INSTALL_DATA} ${WRKSRC}/examples/* ${RUBY_MODEXAMPLESDIR}/
.endif
.if !defined(NOPORTDOCS)
    ${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 !defined(WITHOUT_PTHREADS)
.if ${RUBY_VERSION} == 1.8.7.160
# ruby18 -r rbconfig -e "p Config::CONFIG['LIBS']"  should output:
# "-lcrypt -lm  -rpath=/usr/lib:/usr/local/lib -pthread"
# but 1.8.7.160 missing pthread
CONFIGURE_ENV+= EXTRA_LDFLAGS="${EXTRA_LDFLAGS} -pthread"
.endif
.endif

.if ${RUBY_VER} == "1.9"
CONFIGURE_ENV+= EXTRA_CFLAGS="${EXTRA_CFLAGS} -DWITH_RUBY_19"
.endif

.include <bsd.port.post.mk>