2001-03-09 17:08:49 +01:00
|
|
|
# New ports collection makefile for: Ruby-sablot
|
|
|
|
# Date created: 9 March 2001
|
|
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= sablot
|
2001-10-07 09:14:01 +02:00
|
|
|
PORTVERSION= 0.5.2
|
2006-01-31 00:20:05 +01:00
|
|
|
PORTREVISION= 9
|
2001-03-09 17:08:49 +01:00
|
|
|
CATEGORIES= textproc ruby
|
2001-06-24 20:02:38 +02:00
|
|
|
MASTER_SITES= http://www.rubycolor.org/arc/
|
2001-03-09 17:08:49 +01:00
|
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
|
|
DIST_SUBDIR= ruby
|
|
|
|
|
2008-02-21 22:20:01 +01:00
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
2003-02-18 06:42:05 +01:00
|
|
|
COMMENT= Ruby interface to the Sablotron XSLT processor
|
2001-03-09 17:08:49 +01:00
|
|
|
|
2003-03-11 10:11:34 +01:00
|
|
|
LIB_DEPENDS= sablot.70:${PORTSDIR}/textproc/sablotron \
|
2006-01-31 00:20:05 +01:00
|
|
|
expat.6:${PORTSDIR}/textproc/expat2
|
2001-03-09 17:08:49 +01:00
|
|
|
|
2004-03-30 21:56:43 +02:00
|
|
|
USE_ICONV= yes
|
2001-03-09 17:08:49 +01:00
|
|
|
USE_RUBY= yes
|
|
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
|
2001-06-24 20:02:38 +02:00
|
|
|
CONFIGURE_ARGS= --with-sablot-lib="${LOCALBASE}" \
|
|
|
|
--with-iconv="${LOCALBASE}" \
|
|
|
|
--with-expat="${LOCALBASE}"
|
2001-03-09 17:08:49 +01:00
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
|
2001-10-07 09:14:01 +02:00
|
|
|
DOCS_EN= README \
|
|
|
|
doc/sablot.html \
|
|
|
|
doc/sablot.rd
|
|
|
|
DOCS_JA= doc/sablot_ja.html \
|
|
|
|
doc/sablot.rd.ja
|
2001-03-09 17:08:49 +01:00
|
|
|
|
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2002-10-06 23:38:34 +02:00
|
|
|
${MKDIR} ${RUBY_MODEXAMPLESDIR}
|
|
|
|
${CP} -R ${WRKSRC}/sample/* ${RUBY_MODEXAMPLESDIR}/
|
|
|
|
${MKDIR} ${RUBY_MODDOCDIR}/ja
|
2001-10-07 09:14:01 +02:00
|
|
|
.for f in ${DOCS_EN}
|
2002-10-06 23:38:34 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
2001-03-09 17:08:49 +01:00
|
|
|
.endfor
|
2001-10-07 09:14:01 +02:00
|
|
|
.for f in ${DOCS_JA}
|
2002-10-06 23:38:34 +02:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
|
2001-10-07 09:14:01 +02:00
|
|
|
.endfor
|
2001-03-09 17:08:49 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|