1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00
freebsd-ports/textproc/eruby/Makefile
Dirk Meyer 08a5a0f3a7 - make configure work with ruby19
- set PKGNAMEPREFIX
- ugly fix for threads with ruby-1.8.7.160
- replace obsolteted funtions, experimental build with ruby19
2009-07-12 14:36:01 +00:00

66 lines
1.5 KiB
Makefile

# 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= 1
CATEGORIES= textproc www ruby
MASTER_SITES= http://www.modruby.net/archive/
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
.include <bsd.port.post.mk>