From root@deepvision.tsua.net  Thu Aug  7 00:29:57 2008
Return-Path: <root@deepvision.tsua.net>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id EDDC21065675
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  7 Aug 2008 00:29:57 +0000 (UTC)
	(envelope-from root@deepvision.tsua.net)
Received: from deepvision.tsua.net (s2.sdv.com.ua [212.40.43.22])
	by mx1.freebsd.org (Postfix) with ESMTP id AE0728FC1C
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  7 Aug 2008 00:29:57 +0000 (UTC)
	(envelope-from root@deepvision.tsua.net)
Received: from root by deepvision.tsua.net with local (Exim 4.69 (FreeBSD))
	(envelope-from <root@deepvision.tsua.net>)
	id 1KQt3l-000Kgx-25; Thu, 07 Aug 2008 03:08:53 +0300
Message-Id: <E1KQt3l-000Kgx-25@deepvision.tsua.net>
Date: Thu, 07 Aug 2008 03:08:53 +0300
From: Alex Samorukov <samm@os2.kiev.ua>
To: FreeBSD-gnats-submit@freebsd.org
Cc: samm@os2.kiev.ua
Subject: [NEW PORT] converters/o3read: Standalone converter for the OpenOffice.org writer and scalc formats
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         126320
>Category:       ports
>Synopsis:       [NEW PORT] converters/o3read: Standalone converter for the OpenOffice.org writer and scalc formats
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    amdmi3
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 07 00:40:01 UTC 2008
>Closed-Date:    Thu Aug 21 19:25:45 UTC 2008
>Last-Modified:  Thu Aug 21 19:30:01 UTC 2008
>Originator:     Alex Samorukov
>Release:        FreeBSD 6.3-RELEASE-p1 i386
>Organization:
NetArt Grouo
>Environment:
System: FreeBSD deepvision.tsua.net 6.3-RELEASE-p1 FreeBSD 6.3-RELEASE-p1 #4: Fri Mar 28 05:16:52 EET 2008
>Description:
This is a standalone converter for the OpenOffice.org swriter (*.sxw,*.odt)
and  scalc (*.sxc) formats. 
It doesn't depend on Open Office or any other external tools or libraries.
There are three output modules:
    * o3read displays a dump of the parse tree
    * o3totxt creates plain text
    * o3tohtml creates html code 
Example: unzip -p document.odt content.xml | o3totxt

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- o3read-0.0.4.shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	tmp
#	tmp/Makefile
#	tmp/distinfo
#	tmp/pkg-descr
#
echo c - tmp
mkdir -p tmp > /dev/null 2>&1
echo x - tmp/Makefile
sed 's/^X//' >tmp/Makefile << 'END-of-tmp/Makefile'
X# ex:ts=8
X# New ports collection makefile for:	o3read
X# Date created:                 Aug 07, 2008
X# Whom:				samm
X#
X# $FreeBSD$
X
XPORTNAME=	o3read
XPORTVERSION=	0.0.4
XCATEGORIES=	converters
XMASTER_SITES=	http://siag.nu/pub/o3read/ \
X		${MASTER_SITE_GENTOO}
XMASTER_SITE_SUBDIR=	distfiles
X
XMAINTAINER=	samm@os2.kiev.ua
XCOMMENT=	Standalone converter for the OpenOffice.org writer and scalc formats
X
XMAN1=		o3read.1 utf8tolatin1.1
XMLINKS=		o3read.1 o3totxt.1 o3read.1 o3tohtml.1
XPORTDOCS=	README COPYING ChangeLog
XPLIST_FILES=	bin/o3read bin/o3totxt bin/o3tohtml bin/utf8tolatin1
X
Xdo-install:
X	@${INSTALL_PROGRAM} ${WRKSRC}/o3read ${PREFIX}/bin
X	@${INSTALL_PROGRAM} ${WRKSRC}/o3totxt ${PREFIX}/bin
X	@${INSTALL_PROGRAM} ${WRKSRC}/o3tohtml ${PREFIX}/bin
X	@${INSTALL_PROGRAM} ${WRKSRC}/utf8tolatin1 ${PREFIX}/bin
X	@${INSTALL_MAN} ${WRKSRC}/o3read.1 ${MANPREFIX}/man/man1
X	@${INSTALL_MAN} ${WRKSRC}/utf8tolatin1.1 ${MANPREFIX}/man/man1
X.if !defined(NOPORTDOCS)
X	@${MKDIR} ${DOCSDIR}
X.for FILE in ${PORTDOCS}
X	@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
X.endfor
X.endif
X
X.include <bsd.port.mk>
END-of-tmp/Makefile
echo x - tmp/distinfo
sed 's/^X//' >tmp/distinfo << 'END-of-tmp/distinfo'
XMD5 (o3read-0.0.4.tar.gz) = 583361b559ccf5a764edb586795d1b06
XSHA256 (o3read-0.0.4.tar.gz) = 3704b448099d3396bec4cf503c298628c815703aae12bfcddbac4444bc786430
XSIZE (o3read-0.0.4.tar.gz) = 21075
END-of-tmp/distinfo
echo x - tmp/pkg-descr
sed 's/^X//' >tmp/pkg-descr << 'END-of-tmp/pkg-descr'
XThis is a standalone converter for the OpenOffice.org swriter (*.sxw,*.odt)
Xand  scalc (*.sxc) formats. 
XIt doesn't depend on Open Office or any other external tools or libraries.
XThere are three output modules:
X    * o3read displays a dump of the parse tree
X    * o3totxt creates plain text
X    * o3tohtml creates html code 
XExample: unzip -p document.odt content.xml | o3totxt
END-of-tmp/pkg-descr
exit
--- o3read-0.0.4.shar ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 
Responsible-Changed-By: amdmi3 
Responsible-Changed-When: Tue Aug 12 15:24:22 UTC 2008 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126320 
State-Changed-From-To: open->feedback 
State-Changed-By: amdmi3 
State-Changed-When: Tue Aug 12 15:24:36 UTC 2008 
State-Changed-Why:  
Please make it respect CC/CFLAGS. Also WWW is missing in pkg-descr. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126320 
State-Changed-From-To: feedback->closed 
State-Changed-By: amdmi3 
State-Changed-When: Thu Aug 21 19:25:44 UTC 2008 
State-Changed-Why:  
New port added. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126320 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/126320: commit references a PR
Date: Thu, 21 Aug 2008 19:25:44 +0000 (UTC)

 amdmi3      2008-08-21 19:25:30 UTC
 
   FreeBSD ports repository
 
   Modified files:
     converters           Makefile 
   Added files:
     converters/o3read    Makefile distinfo pkg-descr 
     converters/o3read/files patch-Makefile 
   Log:
   This is a standalone converter for the OpenOffice.org swriter (*.sxw,*.odt)
   and  scalc (*.sxc) formats.
   It doesn't depend on Open Office or any other external tools or libraries.
   There are three output modules:
       * o3read displays a dump of the parse tree
       * o3totxt creates plain text
       * o3tohtml creates html code
   Example: unzip -p document.odt content.xml | o3totxt
   
   WWW: http://siag.nu/o3read/
   
   PR:             ports/126320
   Submitted by:   Alex Samorukov <samm at os2 dot kiev dot ua>
   
   Revision  Changes    Path
   1.149     +1 -0      ports/converters/Makefile
   1.1       +37 -0     ports/converters/o3read/Makefile (new)
   1.1       +3 -0      ports/converters/o3read/distinfo (new)
   1.1       +13 -0     ports/converters/o3read/files/patch-Makefile (new)
   1.1       +10 -0     ports/converters/o3read/pkg-descr (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
