2001-08-22 10:26:47 +02:00
|
|
|
# New ports collection makefile for: ruby-xmlscan
|
|
|
|
# Date created: 7 August 2001
|
|
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= xmlscan
|
2003-02-17 18:45:27 +01:00
|
|
|
PORTVERSION= 0.2.2
|
2001-08-22 10:26:47 +02:00
|
|
|
CATEGORIES= textproc ruby
|
2003-01-31 21:30:18 +01:00
|
|
|
MASTER_SITES= http://www.blue.sky.or.jp/atelier/ruby/xmlscan/
|
2001-08-22 10:26:47 +02:00
|
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
|
|
DIST_SUBDIR= ruby
|
|
|
|
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
|
|
|
|
USE_RUBY= yes
|
2002-06-09 08:10:04 +02:00
|
|
|
|
2003-01-31 21:30:18 +01:00
|
|
|
NO_BUILD= yes
|
|
|
|
|
|
|
|
DOCS_EN= ChangeLog \
|
|
|
|
README \
|
|
|
|
THANKS \
|
|
|
|
doc/changes.* \
|
|
|
|
doc/en/*
|
|
|
|
DOCS_JA= doc/ja/*
|
2001-08-22 10:26:47 +02:00
|
|
|
|
|
|
|
do-install:
|
2003-01-31 21:30:18 +01:00
|
|
|
${CP} -R ${WRKSRC}/lib/xmlscan ${RUBY_SITELIBDIR}/
|
2001-08-22 10:26:47 +02:00
|
|
|
.if !defined(NOPORTDOCS)
|
2003-01-31 21:30:18 +01:00
|
|
|
${MKDIR} ${RUBY_MODEXAMPLESDIR}
|
|
|
|
${CP} -R ${WRKSRC}/samples/* ${RUBY_MODEXAMPLESDIR}/
|
2002-10-06 23:38:34 +02:00
|
|
|
${MKDIR} ${RUBY_MODDOCDIR}/ja
|
2003-01-31 21:30:18 +01:00
|
|
|
.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
|
2001-08-22 10:26:47 +02:00
|
|
|
.endif
|
|
|
|
|
2002-09-21 09:11:33 +02:00
|
|
|
.include <bsd.port.mk>
|