From owner-svn-ports-head@FreeBSD.ORG Mon Jun 10 01:27:06 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E4C345EB; Mon, 10 Jun 2013 01:27:06 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id D58D012C5; Mon, 10 Jun 2013 01:27:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5A1R6I5055610; Mon, 10 Jun 2013 01:27:06 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5A1R553055605; Mon, 10 Jun 2013 01:27:05 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201306100127.r5A1R553055605@svn.freebsd.org> From: Steve Wills Date: Mon, 10 Jun 2013 01:27:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r320428 - in head/textproc: . rubygem-rdtool X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 01:27:07 -0000 Author: swills Date: Mon Jun 10 01:27:05 2013 New Revision: 320428 URL: http://svnweb.freebsd.org/changeset/ports/320428 Log: RDtool converts RD to HTML, man, etc. RD is a multipurpose documentation format created for documentating Ruby and output of Ruby world. Briefly, RD is to Ruby as POD is to Perl. WWW: https://github.com/uwabami/rdtool PR: ports/173375 Submitted by: Shin-ya Murakami Added: head/textproc/rubygem-rdtool/ head/textproc/rubygem-rdtool/Makefile (contents, props changed) head/textproc/rubygem-rdtool/distinfo (contents, props changed) head/textproc/rubygem-rdtool/pkg-descr (contents, props changed) head/textproc/rubygem-rdtool/pkg-message (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jun 10 01:21:22 2013 (r320427) +++ head/textproc/Makefile Mon Jun 10 01:27:05 2013 (r320428) @@ -1311,6 +1311,7 @@ SUBDIR += rubygem-rak SUBDIR += rubygem-rchardet SUBDIR += rubygem-rdiscount + SUBDIR += rubygem-rdtool SUBDIR += rubygem-ri_cal SUBDIR += rubygem-rttool SUBDIR += rubygem-sanitize Added: head/textproc/rubygem-rdtool/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-rdtool/Makefile Mon Jun 10 01:27:05 2013 (r320428) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= rdtool +PORTVERSION= 0.6.38 +CATEGORIES= textproc ruby +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= RD to HTML/man/etc. converter (RD is to Ruby as POD is to Perl) + +RUN_DEPENDS= rubygem-racc>=1.4.6:${PORTSDIR}/devel/rubygem-racc + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes +USE_RAKE= yes +PLIST_FILES= bin/rd2 bin/rdswap.rb + +post-install: + @${CAT} ${PKGMESSAGE} + +.include Added: head/textproc/rubygem-rdtool/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-rdtool/distinfo Mon Jun 10 01:27:05 2013 (r320428) @@ -0,0 +1,2 @@ +SHA256 (rubygem/rdtool-0.6.38.gem) = d9d32e215c1958847001ca5940ad42aa8bcbdf984436f1235b9dbd300e4c74bc +SIZE (rubygem/rdtool-0.6.38.gem) = 115712 Added: head/textproc/rubygem-rdtool/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-rdtool/pkg-descr Mon Jun 10 01:27:05 2013 (r320428) @@ -0,0 +1,7 @@ +RDtool converts RD to HTML, man, etc. + +RD is a multipurpose documentation format created for documentating +Ruby and output of Ruby world. Briefly, RD is to Ruby as POD is to +Perl. + +WWW: https://github.com/uwabami/rdtool Added: head/textproc/rubygem-rdtool/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-rdtool/pkg-message Mon Jun 10 01:27:05 2013 (r320428) @@ -0,0 +1,4 @@ +************************************************************ +If you are an Emacs/XEmacs user, also install +textproc/ruby-rd-mode.el that helps you edit RD files. +************************************************************