freebsd-ports/textproc/ruby-htmltools/Makefile
Pav Lucistnik 180ef443a6 Ruby-htmltools tools for parsing and manipulating HTML text in Ruby.
It can be used for programmatically access outside HTML-pages.
I hope to extend it to become a web-publishing framework in the future.

PR:		ports/79432
Submitted by:	Alexander Novitsky <alecn2002@yandex.ru>
2005-04-10 13:36:29 +00:00

36 lines
1 KiB
Makefile

# New ports collection makefile for: ruby-htmltools
# Date created: 2005-03-31
# Whom: Alexander Novitsky <alecn2002@yandex.ru>
#
# $FreeBSD$
#
PORTNAME= htmltools
PORTVERSION= 1.09
CATEGORIES= textproc ruby
MASTER_SITES= http://rubyforge.org/frs/download.php/1340/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-${PORTNAME}
DIST_SUBDIR= ruby
MAINTAINER= alecn2002@yandex.ru
COMMENT= Tools for parsing and manipulating HTML text in Ruby
USE_RUBY= yes
USE_RUBY_SETUP= yes
RUBY_SETUP= install.rb
CONFIGURE_ARGS= --prefix=${PREFIX}
RUBY_INSTALL_ARGS= --prefix=${PREFIX}
NOHARM_ARGS= --no-harm
install-noharm:
@${ECHO_MSG} "===> Running ${RUBY_SETUP} to NOHARM-install (Just output, do nothing)"
cd ${WRKSRC}; \
${SETENV} ${MAKE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} install ${NOHARM_ARGS} ${RUBY_INSTALL_ARGS}
do-install:
@${ECHO_MSG} "===> Running ${RUBY_SETUP} to install"
@cd ${INSTALL_WRKSRC}; \
${SETENV} ${MAKE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} install ${RUBY_INSTALL_ARGS}
.include <bsd.port.mk>