mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
1beef12100
'HikiDoc' is a text-to-HTML conversion tool for web writers. HikiDoc allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid HTML (or XHTML). WWW: http://rubyforge.org/projects/hikidoc/
38 lines
809 B
Makefile
38 lines
809 B
Makefile
# New ports collection makefile for: ruby-hikidoc
|
|
# Date created: 2011-07-30
|
|
# Whom: TAKATSU Tomonari <tota@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hikidoc
|
|
PORTVERSION= 0.0.6
|
|
CATEGORIES= textproc ruby
|
|
MASTER_SITES= RF
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
EXTRACT_SUFX= .tgz
|
|
DIST_SUBDIR= ${RUBY_PKGNAMEPREFIX:S|${RUBY_SUFFIX}-||}
|
|
|
|
MAINTAINER= tota@FreeBSD.org
|
|
COMMENT= A text-to-HTML conversion tool for web writers
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_SETUP= yes
|
|
RUBY_SHEBANG_FILES= bin/hikidoc
|
|
|
|
PORTDOCS= NEWS NEWS.ja README README.ja \
|
|
TextFormattingRules TextFormattingRules.ja
|
|
|
|
PLIST_FILES= bin/hikidoc \
|
|
%%RUBY_SITELIBDIR%%/hikidoc.rb
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${INSTALL_WRKSRC}/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|