freebsd-ports/textproc/ruby-sablot/Makefile

51 lines
1.1 KiB
Makefile
Raw Normal View History

# 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
CATEGORIES= textproc ruby
2001-06-24 20:02:38 +02:00
MASTER_SITES= http://www.rubycolor.org/arc/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DIST_SUBDIR= ruby
MAINTAINER= gahr@FreeBSD.org
2003-02-18 06:42:05 +01:00
COMMENT= Ruby interface to the Sablotron XSLT processor
LIB_DEPENDS= sablot.70:${PORTSDIR}/textproc/sablotron \
2006-01-31 00:20:05 +01:00
expat.6:${PORTSDIR}/textproc/expat2
USE_ICONV= yes
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}"
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
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}/
.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
.endif
.include <bsd.port.mk>