From corecode@corecode.ath.cx  Tue Jan 15 07:20:45 2002
Return-Path: <corecode@corecode.ath.cx>
Received: from mailout07.sul.t-online.com (mailout07.sul.t-online.com [194.25.134.83])
	by hub.freebsd.org (Postfix) with ESMTP id A98C837B402
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 15 Jan 2002 07:20:43 -0800 (PST)
Received: from fwd10.sul.t-online.de 
	by mailout07.sul.t-online.com with smtp 
	id 16QVK2-0004To-02; Tue, 15 Jan 2002 16:16:22 +0100
Received: from spirit.corecode.ath.cx (320050403952-0001@[217.82.63.130]) by fmrl10.sul.t-online.com
	with esmtp id 16QVJp-1LBZJ2C; Tue, 15 Jan 2002 16:16:09 +0100
Received: from elevation.zuhause.stoert.net (elevation.zuhause.stoert.net [192.168.66.46])
	by spirit.corecode.ath.cx (8.11.6/8.11.6) with ESMTP id g0FFG8g07535
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 15 Jan 2002 16:16:08 +0100 (CET)
	(envelope-from corecode@elevation.zuhause.stoert.net)
Received: (from corecode@localhost)
	by elevation.zuhause.stoert.net (8.11.6/8.11.6) id g0FFG7o18734;
	Tue, 15 Jan 2002 16:16:07 +0100 (CET)
	(envelope-from corecode)
Message-Id: <200201151516.g0FFG7o18734@elevation.zuhause.stoert.net>
Date: Tue, 15 Jan 2002 16:16:07 +0100 (CET)
From: "Simon 'corecode' Schubert" <corecode@corecode.ath.cx>
Reply-To: "Simon 'corecode' Schubert" <corecode@corecode.ath.cx>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: Maintainer update: mail/sylpheed-claws to 0.7.0
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         33922
>Category:       ports
>Synopsis:       Maintainer update: mail/sylpheed-claws to 0.7.0
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jan 15 07:30:00 PST 2002
>Closed-Date:    Wed Jan 16 22:46:15 PST 2002
>Last-Modified:  Wed Jan 16 22:46:43 PST 2002
>Originator:     Simon 'corecode' Schubert
>Release:        FreeBSD 4.5-RC i386
>Organization:
>Environment:
System: FreeBSD elevation.zuhause.stoert.net 4.5-RC FreeBSD 4.5-RC #7: Fri Jan 11 17:39:59 CET 2002 root@elevation.zuhause.stoert.net:/usr/obj/usr/src/sys/ELEVATION i386


	
>Description:

	-update to new upstream version 0.7.0
	-change/add several portbuilding options
	
>How-To-Repeat:
	
>Fix:


diff -ruN /usr/ports/mail/sylpheed-claws/Makefile sylpheed-claws/Makefile
--- /usr/ports/mail/sylpheed-claws/Makefile	Wed Jan  9 15:23:03 2002
+++ sylpheed-claws/Makefile	Tue Jan 15 15:58:31 2002
@@ -5,12 +5,11 @@
 # $FreeBSD: ports/mail/sylpheed-claws/Makefile,v 1.2 2002/01/09 02:15:36 pat Exp $
 #
 
-PORTNAME=	sylpheed
-PORTVERSION=	0.6.6
+PORTNAME=	sylpheed-claws
+PORTVERSION=	0.7.0
 CATEGORIES=	mail news ipv6
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	sylpheed-claws
-PKGNAMESUFFIX=	-claws
 DISTNAME=	sylpheed-${PORTVERSION}claws
 
 MAINTAINER=	corecode@corecode.ath.cx
@@ -23,27 +22,31 @@
 CONFIGURE_ARGS=	--program-suffix="-claws" --with-included-gettext \
 		--enable-ipv6
 
-CONFIGURE_ENV=	CFLAGS="${CFLAGS}"
+CONFIGURE_ENV=	CFLAGS="${CFLAGS}" LIBS="-L${X11BASE}/lib -L${LOCALBASE}/lib"
 
-.if defined(WITH_PIXBUF)
+.if defined(WITH_PIXBUF) || defined(WITH_ALL)
 LIB_DEPENDS+=		gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
 CONFIGURE_ARGS+=	--disable-imlib
 .else
 USE_IMLIB=		yes
 CONFIGURE_ARGS+=	--disable-gdk-pixbuf
 .endif
-.if defined(WITH_GPGME)
+.if defined(WITH_GPGME) || defined(WITH_ALL)
 LIB_DEPENDS+=		gpgme.4:${PORTSDIR}/security/gpgme
 RUN_DEPENDS+=		gpg:${PORTSDIR}/security/gnupg
 CONFIGURE_ARGS+=	--enable-gpgme
 .endif
-.if defined(WITH_COMPFACE)
+.if defined(WITH_COMPFACE) || defined(WITH_ALL)
 LIB_DEPENDS+=		compface.1:${PORTSDIR}/mail/faces
-CONFIGURE_ENV+=		LIBS="-L${X11BASE}/lib"
 .else
 CONFIGURE_ARGS+=	--disable-compface
 .endif
-.if defined(WITH_PSPELL)
+.if defined(WITH_JCONV) || defined(WITH_ALL)
+LIB_DEPENDS+=		jconv.0:${PORTSDIR}/japanese/libjconv
+.else
+CONFIGURE_ARGS+=	--disable-jconv
+.endif
+.if defined(WITH_PSPELL) || defined(WITH_ALL)
 LIB_DEPENDS+=		pspell.4:${PORTSDIR}/textproc/pspell
 CONFIGURE_ARGS+=	--enable-pspell
 .endif
@@ -53,42 +56,42 @@
 .endif
 
 pre-everything::
-.if !defined(WITH_PIXBUF)
-	@${ECHO_MSG}
-	@${ECHO_MSG} "You can enable GDK Pixbuf support by defining WITH_PIXBUF."
-.endif
-.if defined(WITH_GPGME)
-	@${ECHO_MSG}
-	@${ECHO_MSG} "WARNING: GnuPG support using GPGME is still experimental."
-.else
-	@${ECHO_MSG}
-	@${ECHO_MSG} "You can enable GnuPG support using GPGME by defining WITH_GPGME."
-	@${ECHO_MSG} "WARNING: GnuPG support is still experimental."
-.endif
-.if !defined(WITH_COMPFACE)
-	@${ECHO_MSG}
-	@${ECHO_MSG} "You can enable compface (X-Face) support by defining WITH_COMPFACE."
-.endif
-.if !defined(WITH_PSPELL)
-	@${ECHO_MSG}
-	@${ECHO_MSG} "You can enable pspell support by defining WITH_PSPELL."
+	@${ECHO} ""
+	@${ECHO} "You may define the following build options:"
+	@${ECHO} ""
+	@${ECHO} "      WITH_ALL       Enable all options below"
+	@${ECHO} "      WITH_PIXBUF    Enable GDK Pixbuf support"
+	@${ECHO} "      WITH_GPGME     Enable GnuPG support using GPGME"
+	@${ECHO} "      WITH_COMPFACE  Enable compface (X-Face) support"
+	@${ECHO} "      WITH_JCONV     Enable enhanced charset conversion"
+	@${ECHO} "      WITH_PSPELL    Enable spell-checking support"
+	@${ECHO} "      WITHOUT_SSL    Disable OpenSSL support"
+	@${ECHO} ""
+
+post-patch:
+	@${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" \
+		${WRKSRC}/tools/README.sylprint ${WRKSRC}/tools/sylprint.pl
+.if defined(NOPORTDOCS)
+	@${PERL} -pi -e 's|^(SUBDIRS = .*)manual (.*)|\1\2|' ${WRKSRC}/Makefile.in
 .endif
-.if !defined(WITHOUT_SSL)
-	@${ECHO_MSG}
-	@${ECHO_MSG} "You can disable OpenSSL support by defining WITHOUT_SSL."
-.endif
-	@${ECHO_MSG}
 
 pre-build:
-	${LN} -sf ${LOCALBASE}/bin/${LIBTOOL} ${WRKSRC}/libtool
+	@${LN} -sf ${LOCALBASE}/bin/${LIBTOOL} ${WRKSRC}/libtool
 
 post-install:
 .if !defined(NOPORTDOCS)
-	@${MKDIR} ${PREFIX}/share/doc/sylpheed-claws
-.for i in NEWS README README.claws README.jp RELEASE_NOTES.claws TODO TODO.jp
-	@${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed-claws
+.for i in README README.jp README.claws RELEASE_NOTES.claws TODO TODO.jp tools/README.sylprint
+	@${INSTALL_MAN} ${WRKSRC}/${i} ${DOCSDIR}
 .endfor
+	@${INSTALL_MAN} ${WRKSRC}/tools/README ${DOCSDIR}/README.tools
 .endif
+	@${MKDIR} ${DATADIR}
+.for i in eud2gc.py filter_conv.pl gif2xface.pl ldif-to-xml.py newscache_clean.pl
+	@${INSTALL_SCRIPT} ${WRKSRC}/tools/${i} ${DATADIR}
+.endfor
+	@${INSTALL_SCRIPT} ${WRKSRC}/tools/sylpheed-switcher ${PREFIX}/bin
+	@${INSTALL_SCRIPT} ${WRKSRC}/tools/sylprint.pl ${PREFIX}/bin
+	@${INSTALL_DATA} ${WRKSRC}/tools/sylprint.rc ${PREFIX}/etc/sylprint.rc.example
 	@${MKDIR} ${PREFIX}/share/pixmaps
 	@${INSTALL_DATA} ${WRKSRC}/sylpheed.png ${PREFIX}/share/pixmaps/sylpheed-claws.png
 
diff -ruN /usr/ports/mail/sylpheed-claws/distinfo sylpheed-claws/distinfo
--- /usr/ports/mail/sylpheed-claws/distinfo	Fri Jan  4 06:30:16 2002
+++ sylpheed-claws/distinfo	Mon Jan 14 23:36:28 2002
@@ -1 +1 @@
-MD5 (sylpheed-0.6.6claws.tar.gz) = b7c62a120808fc87e3c3fc009bd63703
+MD5 (sylpheed-0.7.0claws.tar.gz) = ff76b9e3f0f43bdacf05f3a25addcd40
diff -ruN /usr/ports/mail/sylpheed-claws/files/patch-configure sylpheed-claws/files/patch-configure
--- /usr/ports/mail/sylpheed-claws/files/patch-configure	Fri Jan  4 06:30:18 2002
+++ sylpheed-claws/files/patch-configure	Tue Jan 15 15:54:57 2002
@@ -1,5 +1,5 @@
---- ./configure.orig	Sat Dec 15 14:28:30 2001
-+++ ./configure	Fri Dec 21 01:02:01 2001
+--- configure.orig	Mon Jan 14 16:15:33 2002
++++ configure	Tue Jan 15 15:53:11 2002
 @@ -756,7 +756,7 @@
  fi
  
@@ -8,4 +8,22 @@
 +PACKAGE=sylpheed-claws
  
  MAJOR_VERSION=0
- MINOR_VERSION=6
+ MINOR_VERSION=7
+@@ -1056,7 +1056,7 @@
+ fi
+ 
+ 
+-if test -d "$gnomedir"; then
++if false; then
+   SYLPHEED_GNOME_TRUE=
+   SYLPHEED_GNOME_FALSE='#'
+ else
+@@ -7419,7 +7419,7 @@
+ localedir='${prefix}/${DATADIRNAME}/locale'
+ 
+ 
+-manualdir='${prefix}/${DATADIRNAME}/${PACKAGE}/manual'
++manualdir='${prefix}/${DATADIRNAME}/doc/${PACKAGE}/manual'
+ 
+ 
+ # Check whether --with-glib-prefix or --without-glib-prefix was given.
diff -ruN /usr/ports/mail/sylpheed-claws/files/patch-tools-README.sylprint sylpheed-claws/files/patch-tools-README.sylprint
--- /usr/ports/mail/sylpheed-claws/files/patch-tools-README.sylprint	Thu Jan  1 01:00:00 1970
+++ sylpheed-claws/files/patch-tools-README.sylprint	Tue Jan 15 01:57:51 2002
@@ -0,0 +1,18 @@
+--- tools/README.sylprint.orig	Sun Jan  6 17:05:30 2002
++++ tools/README.sylprint	Tue Jan 15 00:19:12 2002
+@@ -144,11 +144,12 @@
+ 	sylprint.pl
+ 		The script itself.
+ 
+-	sylprint.rc
++	%%PREFIX%%/etc/sylprint.rc
++	~/.sylpheed/sylprint.rc
+ 		Stores user default preferred configuration for the
+ 		script. Settings in this file may be overriden by
+-		command line options. Must be stored in the same
+-		directory of the script and/or in the ~/.sylpheed
++		command line options. Must be stored in the local
++		configuration directory and/or in the ~/.sylpheed
+ 		one (Sylpheed user's configuration directory).
+ 	
+ 	/tmp/sylprint.username.number
diff -ruN /usr/ports/mail/sylpheed-claws/files/patch-tools-sylprint.pl sylpheed-claws/files/patch-tools-sylprint.pl
--- /usr/ports/mail/sylpheed-claws/files/patch-tools-sylprint.pl	Thu Jan  1 01:00:00 1970
+++ sylpheed-claws/files/patch-tools-sylprint.pl	Tue Jan 15 01:58:08 2002
@@ -0,0 +1,14 @@
+--- tools/sylprint.pl.orig	Tue Jan  8 20:34:37 2002
++++ tools/sylprint.pl	Tue Jan 15 00:13:15 2002
+@@ -36,10 +36,7 @@
+ # get user config
+ if (defined($ARGV[1]) && $ARGV[1] eq '-r') { $a++; }
+ else {
+-	@spp = split('/',$0); 
+-	$spp[$#spp] = ''; 
+-	$spp = join('/',@spp);  
+-	$rcf="$spp$rc"; 
++	$rcf="%%PREFIX%%/etc/$rc"; 
+ 	if (-x $rcf) { do $rcf; }
+ 	$rcf="$ENV{'HOME'}/.sylpheed/$rc";
+ 	if (-x $rcf) { do $rcf; }
diff -ruN /usr/ports/mail/sylpheed-claws/pkg-descr sylpheed-claws/pkg-descr
--- /usr/ports/mail/sylpheed-claws/pkg-descr	Fri Jan  4 06:30:16 2002
+++ sylpheed-claws/pkg-descr	Tue Jan 15 15:13:27 2002
@@ -9,11 +9,11 @@
 * allow colour labeling of emails based on filtering rules
 * automatic mailing list reply, allow ignoring of mail threads
 * selectable fonts, compface support, spell checking, SMTP AUTH
-* Revision of the quotation format and forwarding format
 * encryption/decryption of GPG/PGP ascii-armored messages is supported
-* dynamic signatures are enabled
 * folder properties: associate certain options per folder,
 	'Request Return Receipt', 'Default To', and 'Default account'
+* subject simplification for changing the display of subject lines via RegExp
+* Undo/Redo
 and more...
 
 WWW: http://sylpheed-claws.sourceforge.net/
diff -ruN /usr/ports/mail/sylpheed-claws/pkg-plist sylpheed-claws/pkg-plist
--- /usr/ports/mail/sylpheed-claws/pkg-plist	Fri Jan  4 06:30:16 2002
+++ sylpheed-claws/pkg-plist	Tue Jan 15 15:08:21 2002
@@ -1,12 +1,53 @@
 bin/sylpheed-claws
+bin/sylpheed-switcher
+bin/sylprint.pl
+etc/sylprint.rc.example
 lib/charset.alias
-%%PORTDOCS%%share/doc/sylpheed-claws/NEWS
 %%PORTDOCS%%share/doc/sylpheed-claws/README
 %%PORTDOCS%%share/doc/sylpheed-claws/README.claws
 %%PORTDOCS%%share/doc/sylpheed-claws/README.jp
+%%PORTDOCS%%share/doc/sylpheed-claws/README.sylprint
+%%PORTDOCS%%share/doc/sylpheed-claws/README.tools
 %%PORTDOCS%%share/doc/sylpheed-claws/RELEASE_NOTES.claws
 %%PORTDOCS%%share/doc/sylpheed-claws/TODO
 %%PORTDOCS%%share/doc/sylpheed-claws/TODO.jp
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-1.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-10.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-11.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-12.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-13.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-14.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-15.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-16.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-17.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-2.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-3.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-4.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-5.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-6.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-7.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-8.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-9.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-1.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-10.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-11.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-12.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-13.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-14.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-15.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-16.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-17.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-2.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-3.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-4.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-5.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-6.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-7.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-8.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-9.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed.html
+%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed.sgml
 share/locale/cs/LC_MESSAGES/sylpheed-claws.mo
 share/locale/de/LC_MESSAGES/sylpheed-claws.mo
 share/locale/el/LC_MESSAGES/sylpheed-claws.mo
@@ -23,46 +64,14 @@
 share/locale/ru/LC_MESSAGES/sylpheed-claws.mo
 share/locale/sv/LC_MESSAGES/sylpheed-claws.mo
 share/pixmaps/sylpheed-claws.png
-share/sylpheed-claws/manual/en/sylpheed-1.html
-share/sylpheed-claws/manual/en/sylpheed-10.html
-share/sylpheed-claws/manual/en/sylpheed-11.html
-share/sylpheed-claws/manual/en/sylpheed-12.html
-share/sylpheed-claws/manual/en/sylpheed-13.html
-share/sylpheed-claws/manual/en/sylpheed-14.html
-share/sylpheed-claws/manual/en/sylpheed-15.html
-share/sylpheed-claws/manual/en/sylpheed-16.html
-share/sylpheed-claws/manual/en/sylpheed-17.html
-share/sylpheed-claws/manual/en/sylpheed-2.html
-share/sylpheed-claws/manual/en/sylpheed-3.html
-share/sylpheed-claws/manual/en/sylpheed-4.html
-share/sylpheed-claws/manual/en/sylpheed-5.html
-share/sylpheed-claws/manual/en/sylpheed-6.html
-share/sylpheed-claws/manual/en/sylpheed-7.html
-share/sylpheed-claws/manual/en/sylpheed-8.html
-share/sylpheed-claws/manual/en/sylpheed-9.html
-share/sylpheed-claws/manual/en/sylpheed.html
-share/sylpheed-claws/manual/ja/sylpheed-1.html
-share/sylpheed-claws/manual/ja/sylpheed-10.html
-share/sylpheed-claws/manual/ja/sylpheed-11.html
-share/sylpheed-claws/manual/ja/sylpheed-12.html
-share/sylpheed-claws/manual/ja/sylpheed-13.html
-share/sylpheed-claws/manual/ja/sylpheed-14.html
-share/sylpheed-claws/manual/ja/sylpheed-15.html
-share/sylpheed-claws/manual/ja/sylpheed-16.html
-share/sylpheed-claws/manual/ja/sylpheed-17.html
-share/sylpheed-claws/manual/ja/sylpheed-2.html
-share/sylpheed-claws/manual/ja/sylpheed-3.html
-share/sylpheed-claws/manual/ja/sylpheed-4.html
-share/sylpheed-claws/manual/ja/sylpheed-5.html
-share/sylpheed-claws/manual/ja/sylpheed-6.html
-share/sylpheed-claws/manual/ja/sylpheed-7.html
-share/sylpheed-claws/manual/ja/sylpheed-8.html
-share/sylpheed-claws/manual/ja/sylpheed-9.html
-share/sylpheed-claws/manual/ja/sylpheed.html
-share/sylpheed-claws/manual/ja/sylpheed.sgml
-@dirrm share/sylpheed-claws/manual/ja
-@dirrm share/sylpheed-claws/manual/en
-@dirrm share/sylpheed-claws/manual
-@dirrm share/sylpheed-claws
-@unexec rmdir %D/share/pixmaps 2>/dev/null || true
+share/sylpheed-claws/eud2gc.py
+share/sylpheed-claws/filter_conv.pl
+share/sylpheed-claws/gif2xface.pl
+share/sylpheed-claws/ldif-to-xml.py
+share/sylpheed-claws/newscache_clean.pl
+%%PORTDOCS%%@dirrm share/doc/sylpheed-claws/manual/ja
+%%PORTDOCS%%@dirrm share/doc/sylpheed-claws/manual/en
+%%PORTDOCS%%@dirrm share/doc/sylpheed-claws/manual
 %%PORTDOCS%%@dirrm share/doc/sylpheed-claws
+@unexec rmdir %D/share/pixmaps 2>/dev/null || true
+@dirrm share/sylpheed-claws
	


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: pat 
State-Changed-When: Wed Jan 16 22:46:15 PST 2002 
State-Changed-Why:  
Port updated, Thanks! 

http://www.FreeBSD.org/cgi/query-pr.cgi?pr=33922 
>Unformatted:
