22d7896c17
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories T-V. CR: D509 Approved by: portmgr (antoine)
30 lines
709 B
Makefile
30 lines
709 B
Makefile
# Created by: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xmlconfigfile
|
|
PORTVERSION= 0.9.7
|
|
CATEGORIES= textproc devel ruby
|
|
MASTER_SITES= http://www.cs.ualberta.ca/~schofiel/xml-configfile/downloads/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= xml-configfile-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Ruby module for easy handling of XML configuration files
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_FEATURES= rexml
|
|
USE_RUBY_SETUP= yes
|
|
RUBY_SETUP= install.rb
|
|
|
|
DOCS= docs CHANGES README TODO
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}
|
|
.for f in ${DOCS}
|
|
${CP} -R ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|