From nobody@FreeBSD.org  Mon Oct 18 02:38:49 2004
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id BFD4016A4CE
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 18 Oct 2004 02:38:49 +0000 (GMT)
Received: from www.freebsd.org (www.freebsd.org [216.136.204.117])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9FA9C43D5A
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 18 Oct 2004 02:38:49 +0000 (GMT)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.12.11/8.12.11) with ESMTP id i9I2cnUd049886
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 18 Oct 2004 02:38:49 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.12.11/8.12.11/Submit) id i9I2cnaD049885;
	Mon, 18 Oct 2004 02:38:49 GMT
	(envelope-from nobody)
Message-Id: <200410180238.i9I2cnaD049885@www.freebsd.org>
Date: Mon, 18 Oct 2004 02:38:49 GMT
From: "Carlos Eduardo G. Carvalho" <cartola@openit.com.br>
To: freebsd-gnats-submit@FreeBSD.org
Subject: New port: deskutils/freemind - Freemind is an incredible thought organization tool - a mind map software
X-Send-Pr-Version: www-2.3

>Number:         72806
>Category:       ports
>Synopsis:       New port: deskutils/freemind - Freemind is an incredible thought organization tool - a mind map software
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    thierry
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Oct 18 02:40:25 GMT 2004
>Closed-Date:    Mon Nov 29 09:41:19 GMT 2004
>Last-Modified:  Mon Nov 29 09:41:19 GMT 2004
>Originator:     Carlos Eduardo G. Carvalho
>Release:        5.2.1-RELEASE
>Organization:
OpenIT Solucoes Tecnologicas
>Environment:
FreeBSD mirante1 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Sun Apr  4 00:46:00 BRT 2004     root@mirante1:/usr/src/sys/i386/compile/MIRANTE1  i386
>Description:
FreeMind is a premier free mind-mapping software written in Java. The
recent development has hopefully turned it into high productivity
tool. We are proud that the operation and navigation of FreeMind is
faster than that of Mind Manager because of one-click "fold / unfold"
and "follow link" operations.
>How-To-Repeat:
      
>Fix:
# 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:
#
#       ./deskutils/freemind/
#       ./deskutils/freemind/Makefile
#       ./deskutils/freemind/distinfo
#       ./deskutils/freemind/pkg-plist
#       ./deskutils/freemind/pkg-descr
#
echo c - ./deskutils/freemind/
mkdir -p ./deskutils/freemind/ > /dev/null 2>&1
echo x - ./deskutils/freemind/Makefile
sed 's/^X//' >./deskutils/freemind/Makefile << 'END-of-./deskutils/freemind/Makefile'
X# New ports collection makefile for:   freemind
X# Date created:        22 september 2004
X# Whom:                cartola (Carlos E. G. Carvalho)
X#
X# $FreeBSD$
X#
X# Freemind is an incredible thought organization tool
X#
X# FROM THE AUTHORS:
X#
X# FreeMind is a premier free mind-mapping software written in Java. The
X# recent development has hopefully turned it into high productivity
X# tool. We are proud that the operation and navigation of FreeMind is
X# faster than that of Mind Manager because of one-click "fold / unfold"
X# and "follow link" operations.
X#
X# So you want to write a completely new metaphysics? Why don't you use
X# FreeMind? You have a tool at hand that remarkably resembles the tray
X# slips of Robert Pirsig, described in his sequel to Zen and the Art of
X# Motorcycle Maintenance called Lila. Do you want to refactor your essays
X# in a similar way you would refactor software? Or do you want to keep
X# personal knowledge base, which is easy to manage? Why don't you try
X# FreeMind? Do you want to priorize, know where you are, where you've been
X# and where you are heading, as Stephen Covey would advise you? Have you
X# tried FreeMind to keep track of all the things that are needed for that?
X#
X# FROM THE PORTER (me):
X#
X# Freemind is usable for many different things. I'm using it to plan
X# projects, document servers and systems, plan and do html presentations
X# guides, record and mantain progress of tasks and some other things.
X#
X
XPORTNAME=      freemind
XPORTVERSION=   0.7.1
XCATEGORIES=    deskutils java
XMASTER_SITES=          ${MASTER_SITE_SOURCEFORGE}
XMASTER_SITE_SUBDIR=    freemind
XDISTFILES=     freemind-bin-0_7_1.zip
X
XMAINTAINER=    cartola@openit.com.br
XCOMMENT=       Free mind mapping software
X
XUSE_ZIP=       yes
XUSE_JAVA=      1.4+
X
XNO_BUILD=      yes
X
Xdo-extract:
X       @${MKDIR} ${WRKSRC}
X       ${UNZIP_CMD} -d ${WRKSRC} ${DISTDIR}/${DISTFILES}
X
Xdo-install:
X       ${CP} -r ${WRKSRC} ${PREFIX}
X       @(${ECHO} "#\!/bin/sh"; ${ECHO} "${JAVA_HOME}/bin/java -jar ${PREFIX}/${DISTNAME}/lib/freemind.jar \$@") > ${PREFIX}/bin/freemind
X       ${CHMOD} 755 ${PREFIX}/bin/freemind
X       @# Cleaning those dirs that are not necessary and give error
X       @# messages when removing package installed with package
X       @${RMDIR} ${PREFIX}/${DISTNAME}/doc/maps ${PREFIX}/${DISTNAME}/doc/pics
X
X.include <bsd.port.mk>
END-of-./deskutils/freemind/Makefile
echo x - ./deskutils/freemind/distinfo
sed 's/^X//' >./deskutils/freemind/distinfo << 'END-of-./deskutils/freemind/distinfo'
XMD5 (freemind-bin-0_7_1.zip) = f2f928c860ba45fd5206e54392cd12c8
XSIZE (freemind-bin-0_7_1.zip) = 402336
END-of-./deskutils/freemind/distinfo
echo x - ./deskutils/freemind/pkg-plist
sed 's/^X//' >./deskutils/freemind/pkg-plist << 'END-of-./deskutils/freemind/pkg-plist'
Xbin/freemind
Xfreemind-0.7.1/Freemind.exe
Xfreemind-0.7.1/accessories/mm2xbel.xsl
Xfreemind-0.7.1/accessories/xbel2mm.xsl
Xfreemind-0.7.1/doc/freemind.mm
Xfreemind-0.7.1/freemind.bat
Xfreemind-0.7.1/freemind.sh
Xfreemind-0.7.1/lib/freemind.jar
Xfreemind-0.7.1/license
Xfreemind-0.7.1/patterns.xml
Xfreemind-0.7.1/user.properties
X@dirrm freemind-0.7.1/accessories
X@dirrm freemind-0.7.1/doc
X@dirrm freemind-0.7.1/lib
X@dirrm freemind-0.7.1
END-of-./deskutils/freemind/pkg-plist
echo x - ./deskutils/freemind/pkg-descr
sed 's/^X//' >./deskutils/freemind/pkg-descr << 'END-of-./deskutils/freemind/pkg-descr'
X       Freemind is an incredible thought organization tool
X
X       FROM THE AUTHORS:
XFreeMind is a premier free mind-mapping software written in Java. The recent
Xdevelopment has hopefully turned it into high productivity tool. We are proud
Xthat the operation and navigation of FreeMind is faster than that of Mind
XManager because of one-click "fold / unfold" and "follow link" operations.
X
XSo you want to write a completely new metaphysics? Why don't you use FreeMind?
XYou have a tool at hand that remarkably resembles the tray slips of Robert
XPirsig, described in his sequel to Zen and the Art of Motorcycle Maintenance
Xcalled Lila. Do you want to refactor your essays in a similar way you would
Xrefactor software? Or do you want to keep personal knowledge base, which is
Xeasy to manage? Why don't you try FreeMind?
X
X       FROM THE PORTER (me):
XFreemind is usable for many different things. I'm using it to plan
Xprojects, document servers and systems, plan and do html presentations
Xguides, record and mantain progress of tasks and many other things.
X
XWWW: http://freemind.sourceforge.net/
X
X- Ported by Cartola
Xcartola@openit.com.br
END-of-./deskutils/freemind/pkg-descr
exit
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: thierry 
State-Changed-When: Thu Nov 11 22:08:07 GMT 2004 
State-Changed-Why:  

Please consider the following patch, which makes some cleaning: 

diff -urN deskutils/freemind.orig/Makefile deskutils/freemind/Makefile 
--- deskutils/freemind.orig/Makefile	Thu Nov 11 22:44:17 2004 
+++ deskutils/freemind/Makefile	Thu Nov 11 23:00:29 2004 
@@ -1,61 +1,33 @@ 
-# New ports collection makefile for:   freemind 
-# Date created:        22 september 2004 
-# Whom:                cartola (Carlos E. G. Carvalho) 
+# New ports collection makefile for:	freemind 
+# Date created:	 22 september 2004 
+# Whom:		cartola (Carlos E. G. Carvalho) 
# 
# $FreeBSD$ 
# 
-# Freemind is an incredible thought organization tool 
-# 
-# FROM THE AUTHORS: 
-# 
-# FreeMind is a premier free mind-mapping software written in Java. The 
-# recent development has hopefully turned it into high productivity 
-# tool. We are proud that the operation and navigation of FreeMind is 
-# faster than that of Mind Manager because of one-click "fold / unfold" 
-# and "follow link" operations. 
-# 
-# So you want to write a completely new metaphysics? Why don't you use 
-# FreeMind? You have a tool at hand that remarkably resembles the tray 
-# slips of Robert Pirsig, described in his sequel to Zen and the Art of 
-# Motorcycle Maintenance called Lila. Do you want to refactor your essays 
-# in a similar way you would refactor software? Or do you want to keep 
-# personal knowledge base, which is easy to manage? Why don't you try 
-# FreeMind? Do you want to priorize, know where you are, where you've been 
-# and where you are heading, as Stephen Covey would advise you? Have you 
-# tried FreeMind to keep track of all the things that are needed for that? 
-# 
-# FROM THE PORTER (me): 
-# 
-# Freemind is usable for many different things. I'm using it to plan 
-# projects, document servers and systems, plan and do html presentations 
-# guides, record and mantain progress of tasks and some other things. 
-# 
- 
-PORTNAME=      freemind 
-PORTVERSION=   0.7.1 
-CATEGORIES=    deskutils java 
-MASTER_SITES=          ${MASTER_SITE_SOURCEFORGE} 
-MASTER_SITE_SUBDIR=    freemind 
-DISTFILES=     freemind-bin-0_7_1.zip 
- 
-MAINTAINER=    cartola@openit.com.br 
-COMMENT=       Free mind mapping software 
- 
-USE_ZIP=       yes 
-USE_JAVA=      1.4+ 

-NO_BUILD=      yes 
+PORTNAME=	freemind 
+PORTVERSION=	0.7.1 
+CATEGORIES=	deskutils java 
+MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} 
+MASTER_SITE_SUBDIR=	freemind 
+DISTNAME=	${PORTNAME}-bin-${PORTVERSION:S/./_/g} 
+ 
+MAINTAINER=	cartola@openit.com.br 
+COMMENT=	Free mind mapping software 
+ 
+USE_ZIP=	yes 
+USE_JAVA=	yes 
+JAVA_VERSION=	1.4+ 

-do-extract: 
-       @${MKDIR} ${WRKSRC} 
-       ${UNZIP_CMD} -d ${WRKSRC} ${DISTDIR}/${DISTFILES} 
+NO_BUILD=	yes 
+EXTRACT_AFTER_ARGS=	-d ${WRKSRC} 

do-install: 
-       ${CP} -r ${WRKSRC} ${PREFIX} 
-       @(${ECHO} "#!/bin/sh"; ${ECHO} "${JAVA_HOME}/bin/java -jar ${PREFIX}/${DISTNAME}/lib/freemind.jar $@") > ${PREFIX}/bin/freemind 
-       ${CHMOD} 755 ${PREFIX}/bin/freemind 
-       @# Cleaning those dirs that are not necessary and give error 
-       @# messages when removing package installed with package 
-       @${RMDIR} ${PREFIX}/${DISTNAME}/doc/maps ${PREFIX}/${DISTNAME}/doc/pics 
+	${CP} -r ${WRKSRC} ${PREFIX} 
+	@(${ECHO} "#!/bin/sh"; ${ECHO} "${JAVA_HOME}/bin/java -jar ${PREFIX}/${DISTNAME}/lib/freemind.jar $@") > ${PREFIX}/bin/freemind 
+	${CHMOD} 755 ${PREFIX}/bin/freemind 
+	@# Cleaning those dirs that are not necessary and give error 
+	@# messages when removing package installed with package 
+	@${RMDIR} ${PREFIX}/${DISTNAME}/doc/maps ${PREFIX}/${DISTNAME}/doc/pics 

.include <bsd.port.mk> 

Then, there is another problem: this port installs unnecessary 
files, like a MS-Windows binary (Freemind.exe), a DOS batch file 
(freemind.bat), or a non-executable shell script (freemind.sh). 
Could you please remove them and check the remaining files? 



Responsible-Changed-From-To: freebsd-ports-bugs->thierry 
Responsible-Changed-By: thierry 
Responsible-Changed-When: Thu Nov 11 22:08:07 GMT 2004 
Responsible-Changed-Why:  

Handle. 


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

From: "Carlos E. G. Carvalho" <cartola@openit.com.br>
To: freebsd-gnats-submit@FreeBSD.org, cartola@openit.com.br,
	thierry@FreeBSD.org
Cc:  
Subject: Re: ports/72806: New port: deskutils/freemind - Freemind is an
 incredible thought organization tool - a mind map software
Date: Sun, 28 Nov 2004 17:53:33 -0200 (BRST)

   This message is in MIME format.  The first part should be readable text,
   while the remaining parts are likely unreadable without MIME-aware tools.
   Send mail to mime@docserver.cac.washington.edu for more info.
 
 --0-228661363-1101671613=:95384
 Content-Type: TEXT/PLAIN; charset=iso-8859-1
 Content-Transfer-Encoding: QUOTED-PRINTABLE
 
 =09Hi, I didn't find exact instructions on how to submit the follow
 up of this port, so here comes the modified port according to thierry
 suggestions.
 
 =09Please tell me if it was supposed to be sent in another way. As
 the "Submit Followup" link was to send an email, here it is.
 
 [ ]s,
 
 Carlos E. G. Carvalho=09=09OpenIT Solu=E7=F5es Tecnol=F3gicas
 Consultor Unix/Internet=09=09Tel. (21) 2517-6000
 http://www.OpenIT.com.br
 http://www.MyFreeBSD.com.br
 --0-228661363-1101671613=:95384
 Content-Type: APPLICATION/x-tar-gz; name="freemind.tgz"
 Content-Transfer-Encoding: BASE64
 Content-ID: <20041128175333.R95384@host1.intranet.openit.com.br>
 Content-Description: 
 Content-Disposition: attachment; filename="freemind.tgz"
 
 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
 bWADG9jABjawgQ1sYAMb2MAGFvAHuHwj1QAoAAA=
 
 --0-228661363-1101671613=:95384--
State-Changed-From-To: feedback->closed 
State-Changed-By: thierry 
State-Changed-When: Mon Nov 29 09:40:41 GMT 2004 
State-Changed-Why:  

New port added, thanks! 


http://www.freebsd.org/cgi/query-pr.cgi?pr=72806 
>Unformatted:
