1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/textproc/ruby-sablot/Makefile

51 lines
1.2 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 07:14:01 +00:00
PORTVERSION= 0.5.2
PORTREVISION= 7
CATEGORIES= textproc ruby
2001-06-24 18:02:38 +00:00
MASTER_SITES= http://www.rubycolor.org/arc/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
2003-02-18 05:42:05 +00:00
COMMENT= Ruby interface to the Sablotron XSLT processor
LIB_DEPENDS= sablot.70:${PORTSDIR}/textproc/sablotron \
iconv.3:${PORTSDIR}/converters/libiconv \
2002-09-17 07:41:05 +00:00
expat.4:${PORTSDIR}/textproc/expat2
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
2001-06-24 18:02:38 +00:00
CONFIGURE_ARGS= --with-sablot-lib="${LOCALBASE}" \
--with-iconv="${LOCALBASE}" \
--with-expat="${LOCALBASE}"
INSTALL_TARGET= site-install
2001-10-07 07:14:01 +00: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 21:38:34 +00:00
${MKDIR} ${RUBY_MODEXAMPLESDIR}
${CP} -R ${WRKSRC}/sample/* ${RUBY_MODEXAMPLESDIR}/
${MKDIR} ${RUBY_MODDOCDIR}/ja
2001-10-07 07:14:01 +00:00
.for f in ${DOCS_EN}
2002-10-06 21:38:34 +00:00
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
2001-10-07 07:14:01 +00:00
.for f in ${DOCS_JA}
2002-10-06 21:38:34 +00:00
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
2001-10-07 07:14:01 +00:00
.endfor
.endif
.include <bsd.port.mk>