From tts7500@webmta1.inetd.co.jp  Tue Aug 28 19:40:54 2007
Return-Path: <tts7500@webmta1.inetd.co.jp>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 5D38416A417
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 28 Aug 2007 19:40:54 +0000 (UTC)
	(envelope-from tts7500@webmta1.inetd.co.jp)
Received: from bmail.inetd.co.jp (bmail.inetd.co.jp [211.13.206.141])
	by mx1.freebsd.org (Postfix) with ESMTP id 13D6513C461
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 28 Aug 2007 19:40:53 +0000 (UTC)
	(envelope-from tts7500@webmta1.inetd.co.jp)
Received: from www2.inetd.co.jp (www2.inetd.co.jp [211.13.206.150])
	by bmail.inetd.co.jp (Postfix) with ESMTP id B90AF2B3B4C
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 29 Aug 2007 04:40:51 +0900 (JST)
Received: from www2.inetd.co.jp (4012@localhost [127.0.0.1])
	by www2.inetd.co.jp (8.13.8/8.13.1) with ESMTP id l7SJepL9056234
	for <FreeBSD-gnats-submit@freebsd.org>; Wed, 29 Aug 2007 04:40:51 +0900 (JST)
	(envelope-from tts7500@www2.inetd.co.jp)
Message-Id: <200708281940.l7SJepEd056233@www2.inetd.co.jp>
Date: Wed, 29 Aug 2007 04:40:51 +0900 (JST)
From: TAKATSU Tomonari <tota@rtfm.jp>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [NEW PORT] textproc/metauml: A MetaPost library for typesetting UML diagrams
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         115910
>Category:       ports
>Synopsis:       [NEW PORT] textproc/metauml: A MetaPost library for typesetting UML diagrams
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    clsung
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Aug 28 19:50:01 GMT 2007
>Closed-Date:    Wed Aug 29 07:00:02 GMT 2007
>Last-Modified:  Wed Aug 29 07:00:20 GMT 2007
>Originator:     TAKATSU Tomonari
>Release:        FreeBSD 6.2-STABLE i386
>Organization:
>Environment:
System: FreeBSD photon.rtfm.jp 6.2-STABLE FreeBSD 6.2-STABLE #0: Fri Jul 13 23:22:01 JST 2007
>Description:
MetaUML is a GNU GPL MetaPost library for typesetting UML diagrams,
using a human-friendly textual notation.

Here's what you can do with MetaUML (also see the FAQ):

    * Create UML diagrams readily usable in a LaTeX article or book.
    * Create independent PDF-s
    * Create jpeg-s, png-s etc.

WWW:	http://metauml.sourceforge.net/

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

--- metauml-0.2.5.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:
#
#	metauml
#	metauml/pkg-descr
#	metauml/Makefile
#	metauml/pkg-plist
#	metauml/distinfo
#
echo c - metauml
mkdir -p metauml > /dev/null 2>&1
echo x - metauml/pkg-descr
sed 's/^X//' >metauml/pkg-descr << 'END-of-metauml/pkg-descr'
XMetaUML is a GNU GPL MetaPost library for typesetting UML diagrams,
Xusing a human-friendly textual notation.
X
XHere's what you can do with MetaUML (also see the FAQ):
X
X    * Create UML diagrams readily usable in a LaTeX article or book.
X    * Create independent PDF-s
X    * Create jpeg-s, png-s etc.
X
XWWW:	http://metauml.sourceforge.net/
END-of-metauml/pkg-descr
echo x - metauml/Makefile
sed 's/^X//' >metauml/Makefile << 'END-of-metauml/Makefile'
X# New ports collection makefile for:	metauml
X# Date created:		2007-08-29
X# Whom:			TAKATSU Tomonari <tota@rtfm.jp>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	metauml
XPORTVERSION=	0.2.5
XCATEGORIES=	textproc
XMASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
XMASTER_SITE_SUBDIR=	${PORTNAME}
XDISTNAME=	${PORTNAME}_lib_${PORTVERSION}
XEXTRACT_SUFX=	.tgz
X
XMAINTAINER=	tota@rtfm.jp
XCOMMENT=	A MetaPost library for typesetting UML diagrams
X
XBUILD_DEPENDS=	mktexlsr:${PORTSDIR}/print/teTeX-base
XRUN_DEPENDS=	latex:${PORTSDIR}/print/teTeX-base
X
XWRKSRC=	${WRKDIR}/${PORTNAME}_lib
X
XPLIST_SUB=	TEXMFDIR=${TEXMFDIR} MKTEXLSR=${MKTEXLSR} MPDIR=${MPDIR}
X
XTEXMFDIR=	share/texmf
XMKTEXLSR=	${LOCALBASE}/bin/mktexlsr
XMPDIR=		${TEXMFDIR}/metapost/${PORTNAME}
X
XNO_BUILD=	yes
X
Xdo-install:
X	${MKDIR} ${PREFIX}/${MPDIR}
X	${INSTALL_DATA} ${WRKSRC}/thrunk/*.mp ${PREFIX}/${MPDIR}
X
Xpost-install:
X	${MKTEXLSR} ${PREFIX}/${TEXMFDIR}
X
X.include <bsd.port.mk>
END-of-metauml/Makefile
echo x - metauml/pkg-plist
sed 's/^X//' >metauml/pkg-plist << 'END-of-metauml/pkg-plist'
X%%MPDIR%%/metauml.mp
X%%MPDIR%%/metauml_activity.mp
X%%MPDIR%%/metauml_base.mp
X%%MPDIR%%/metauml_behavioral_common.mp
X%%MPDIR%%/metauml_class.mp
X%%MPDIR%%/metauml_class_assoc.mp
X%%MPDIR%%/metauml_class_clipart.mp
X%%MPDIR%%/metauml_class_relations.mp
X%%MPDIR%%/metauml_component.mp
X%%MPDIR%%/metauml_component_relations.mp
X%%MPDIR%%/metauml_defaults.mp
X%%MPDIR%%/metauml_instance.mp
X%%MPDIR%%/metauml_links.mp
X%%MPDIR%%/metauml_note.mp
X%%MPDIR%%/metauml_package.mp
X%%MPDIR%%/metauml_package_relations.mp
X%%MPDIR%%/metauml_paths.mp
X%%MPDIR%%/metauml_skin_simple.mp
X%%MPDIR%%/metauml_state.mp
X%%MPDIR%%/metauml_stereotype.mp
X%%MPDIR%%/metauml_templates.mp
X%%MPDIR%%/metauml_usecase.mp
X%%MPDIR%%/metauml_usecase_clipart.mp
X%%MPDIR%%/util_commons.mp
X%%MPDIR%%/util_group.mp
X%%MPDIR%%/util_infrastructure.mp
X%%MPDIR%%/util_log.mp
X%%MPDIR%%/util_margins.mp
X%%MPDIR%%/util_object.mp
X%%MPDIR%%/util_picture.mp
X%%MPDIR%%/util_picture_stack.mp
X%%MPDIR%%/util_positioning.mp
X%%MPDIR%%/util_shade.mp
X@dirrm %%MPDIR%%
X@exec %%MKTEXLSR%% %D/%%TEXMFDIR%%
X@unexec %%MKTEXLSR%% %D/%%TEXMFDIR%%
END-of-metauml/pkg-plist
echo x - metauml/distinfo
sed 's/^X//' >metauml/distinfo << 'END-of-metauml/distinfo'
XMD5 (metauml_lib_0.2.5.tgz) = 3dabc2acafe41d19e5fc24a25dc0972a
XSHA256 (metauml_lib_0.2.5.tgz) = ae43c06977dbd9ae579bdc04cdc809af4cd81a733f3f7282145ca34a4da04052
XSIZE (metauml_lib_0.2.5.tgz) = 35462
END-of-metauml/distinfo
exit
--- metauml-0.2.5.shar ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->clsung 
Responsible-Changed-By: clsung 
Responsible-Changed-When: Wed Aug 29 00:08:32 UTC 2007 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=115910 
State-Changed-From-To: open->closed 
State-Changed-By: clsung 
State-Changed-When: Wed Aug 29 07:00:00 UTC 2007 
State-Changed-Why:  
New port added. Thank You. 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/115910: commit references a PR
Date: Wed, 29 Aug 2007 06:59:45 +0000 (UTC)

 clsung      2007-08-29 06:59:38 UTC
 
   FreeBSD ports repository
 
   Modified files:
     textproc             Makefile 
   Added files:
     textproc/metauml     Makefile distinfo pkg-descr pkg-plist 
   Log:
   MetaUML is a GNU GPL MetaPost library for typesetting UML diagrams,
   using a human-friendly textual notation.
   
   Here's what you can do with MetaUML (also see the FAQ):
   
       * Create UML diagrams readily usable in a LaTeX article or book.
       * Create independent PDF-s
       * Create jpeg-s, png-s etc.
   
   WWW:    http://metauml.sourceforge.net/
   
   PR:             ports/115910
   Submitted by:   TAKATSU Tomonari <tota at rtfm.jp>
   
   Revision  Changes    Path
   1.1178    +1 -0      ports/textproc/Makefile
   1.1       +39 -0     ports/textproc/metauml/Makefile (new)
   1.1       +3 -0      ports/textproc/metauml/distinfo (new)
   1.1       +10 -0     ports/textproc/metauml/pkg-descr (new)
   1.1       +36 -0     ports/textproc/metauml/pkg-plist (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:
