From jylefort@brutele.be  Sun Sep  4 01:47:31 2005
Return-Path: <jylefort@brutele.be>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 5B99016A41F
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  4 Sep 2005 01:47:31 +0000 (GMT)
	(envelope-from jylefort@brutele.be)
Received: from 212.68.242.136.brutele.be (212.68.242.136.brutele.be [212.68.242.136])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 9D2F443D46
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  4 Sep 2005 01:47:30 +0000 (GMT)
	(envelope-from jylefort@brutele.be)
Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2])
	by gateway.lefort.net (Postfix) with ESMTP id C405E549A
	for <FreeBSD-gnats-submit@freebsd.org>; Sun,  4 Sep 2005 03:47:28 +0200 (CEST)
Received: by jsite.lefort.net (Postfix, from userid 1000)
	id 84E52C555; Sun,  4 Sep 2005 03:47:28 +0200 (CEST)
Message-Id: <20050904014728.84E52C555@jsite.lefort.net>
Date: Sun,  4 Sep 2005 03:47:28 +0200 (CEST)
From: Jean-Yves Lefort <jylefort@FreeBSD.org>
Reply-To: Jean-Yves Lefort <jylefort@FreeBSD.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: Add WITH_GL user variable to bsd.port.mk
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         85704
>Category:       ports
>Synopsis:       [patch] Add WITH_GL user variable to bsd.port.mk
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    portmgr
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Sep 04 01:50:10 GMT 2005
>Closed-Date:    Fri May 25 03:18:17 GMT 2007
>Last-Modified:  Fri May 25 03:18:17 GMT 2007
>Originator:     Jean-Yves Lefort
>Release:        FreeBSD 5.4-RELEASE i386
>Organization:
>Environment:
System: FreeBSD jsite.lefort.net 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Wed Jul 27 11:27:58 CEST 2005 jylefort@jsite.lefort.net:/usr/obj/usr/src/sys/JSITE i386
>Description:
The following patch adds a WITH_GL user variable (meant to be set in
/etc/make.conf), and makes USE_GL pull in the appropriate dependency
based on the value of WITH_GL. It supports USE_LINUX in the same way
USE_X_PREFIX does.

Caveats:
  - nvidia-driver conditionally provides the linux libGL using a port
    option; a linux-nvidia-driver slave port should be created instead.
  - graphics/linux_mesa3 has an expiration date (2005-10-01)
>How-To-Repeat:
>Fix:
--- bsd.port.mk.orig	Sun Sep  4 03:02:15 2005
+++ bsd.port.mk	Sun Sep  4 03:31:20 2005
@@ -284,8 +284,16 @@
 #				  case the linux X libraries are referenced.
 #
 # USE_FREETYPE	- If set, this port uses the freetype print libraries.
-# USE_GL		- If set, this port uses libGL (not needed with XFree86 4.x
-#				  which already includes this functionality).
+##
+# USE_GL		- If set, this port uses libGL. In the USE_LINUX case the
+#				  linux GL libraries are referenced.
+# WITH_GL       - Specify the libGL implementation to use.
+#				  Legal values for X_WINDOW_SYSTEM=xfree86-3 are:
+#					glx (default), mesa
+#				  Legal values for other values of X_WINDOW_SYSTEM are:
+#					dri (default), nvidia
+#				  If set to an unknown value, the port is marked BROKEN.
+##
 # USE_MESA		- If set, this port uses libGL/libglut (deprecated).
 # USE_MOTIF		- If set, this port uses a Motif toolkit.  Implies USE_XPM.
 # NO_OPENMOTIF	- If set, this port uses a custom Motif toolkit
@@ -1364,6 +1372,12 @@
 X_WINDOW_SYSTEM ?= xfree86-3
 .endif
 
+.if ${X_WINDOW_SYSTEM:L} == xfree86-3
+WITH_GL?=	glx
+.else
+WITH_GL?=	dri
+.endif
+
 # Location of mounted CDROM(s) to search for files
 CD_MOUNTPTS?=	/cdrom ${CD_MOUNTPT}
 
@@ -1645,21 +1659,53 @@
 BUILD_DEPENDS+=			imake:${X_IMAKE_PORT}
 .endif
 
+.if defined(USE_GL)
+.	if ${X_WINDOW_SYSTEM:L} == xfree86-3
+.		if ${WITH_GL} == glx
+.			if defined(USE_LINUX)
+RUN_DEPENDS+=		${LINUXBASE}/lib/libGL.so.1:${PORTSDIR}/graphics/linux_glx
+.			else
+LIB_DEPENDS+=		GL.14:${PORTSDIR}/graphics/utah-glx
+.			endif
+.		elif ${WITH_GL} == mesa
+.			if defined(USE_LINUX)
+RUN_DEPENDS+=		${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/graphics/linux_mesa3
+.			else
+LIB_DEPENDS+=		GL.14:${PORTSDIR}/graphics/mesagl
+.			endif
+.		else
+BROKEN=				"unknown GL implementation for X_WINDOW_SYSTEM=${X_WINDOW_SYSTEM}: ${WITH_GL}"
+.		endif
+.	else
+.		if ${WITH_GL} == dri
+.			if defined(USE_LINUX)
+RUN_DEPENDS+=		${LINUXBASE}/usr/X11R6/lib/libGL.so.1:${PORTSDIR}/graphics/linux_dri
+.			else
+USE_XLIB=			yes
+.			endif
+.		elif ${WITH_GL} == nvidia
+.			if defined(USE_LINUX)
+RUN_DEPENDS+=		${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver
+.			else
+LIB_DEPENDS+=		GL.1:${PORTSDIR}/x11/nvidia-driver
+.			endif
+.		else
+BROKEN=				"unknown GL implementation for X_WINDOW_SYSTEM=${X_WINDOW_SYSTEM}: ${WITH_GL}"
+.	endif
+.endif
+
 .if ${X_WINDOW_SYSTEM:L} == xfree86-3
 
 .if defined(USE_XPM)
 LIB_DEPENDS+=			Xpm.4:${PORTSDIR}/graphics/xpm
 .endif
-.if defined(USE_GL)
-LIB_DEPENDS+=			GL.14:${PORTSDIR}/graphics/mesagl
-.endif
 
 XAWVER=				6
 PKG_IGNORE_DEPENDS?=		'^XFree86-3\.'
 
 .else
 
-.if defined(USE_XPM) || defined(USE_GL)
+.if defined(USE_XPM)
 USE_XLIB=			yes
 .endif
 
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->portmgr 
Responsible-Changed-By: jylefort 
Responsible-Changed-When: Sun Sep 4 01:53:35 GMT 2005 
Responsible-Changed-Why:  
Over to maintainers. 

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

From: linimon@lonesome.com (Mark Linimon)
To: Jean-Yves Lefort <jylefort@FreeBSD.org>
Cc: FreeBSD-gnats-submit@FreeBSD.org
Subject: Re: ports/85704: Add WITH_GL user variable to bsd.port.mk
Date: Sat, 3 Sep 2005 21:04:13 -0500

 On Sun, Sep 04, 2005 at 03:47:28AM +0200, Jean-Yves Lefort wrote:
 > +# WITH_GL       - Specify the libGL implementation to use. [ ... ]
 > +#				  If set to an unknown value, the port is marked BROKEN.
 
 Desite the fact that there are other examples of using BROKEN for this
 in bsd.*.mk, they are all wrong IMHO.
 
 BROKEN will attempt to build the port on the cluster.  IGNORE will not
 attempt to build the port on the cluster.  BROKEN is supposed to be used
 for transitory failure cases, IGNORE for "you will never be able to do
 that" cases.
 
 Note that BROKEN strings are quoted and IGNORE strings are not.  This is
 also a bug IMHO, but that's a different story.
 
 mcl

From: Pav Lucistnik <pav@FreeBSD.org>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/85704: Add WITH_GL user variable to bsd.port.mk
Date: Sun, 04 Sep 2005 17:44:14 +0200

 WITH_* variables should be reserved for user tunables in individual
 ports. This begs for namespace conflict with some port that use WITH_GL
 to enable 3D part of itself...
 
 I'd propose WANT_GL_SYSTEM (modeled after WANT_FAM_SYSTEM) if this is
 user settable option, GL_SYSTEM if it's ment to be bpm internal.
 
 Also, how much sense does it make to still support XFree86 3.X in new
 code today?
 
 -- 
 Pav Lucistnik <pav@oook.cz>
               <pav@FreeBSD.org>
 
 What is the airspeed velocity of an unladen swallow?
State-Changed-From-To: open->suspended 
State-Changed-By: kris 
State-Changed-When: Sun Nov 13 20:02:06 GMT 2005 
State-Changed-Why:  
Suspended awaiting requested changes. 

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

From: Kris Kennaway <kris@obsecurity.org>
To: freebsd-gnats-submit@FreeBSD.org
Cc:  
Subject: Re: ports/85704
Date: Sun, 13 Nov 2005 15:09:34 -0500

 --UlVJffcvxoiEqYs2
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 The changes I'd like to see are the s/BROKEN/IGNORE/, and to do with
 WITH_GL.  I agree with Pav that WITH_GL isn't the best name to use for
 specifying the implementation.  However, I disagree that WANT_* should
 be used for a user control setting, since these are also supposed to
 be port-internal (see the comments in bsd.port.mk).  If another
 instance of WANT_* got through without being noticed, it should also
 be fixed.
 
 Can you clarify whether the user is supposed to be setting WITH_GL or
 whatever other name we give it?
 
 Kris
 
 
 --UlVJffcvxoiEqYs2
 Content-Type: application/pgp-signature
 Content-Disposition: inline
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.2 (FreeBSD)
 
 iD8DBQFDd51+Wry0BWjoQKURAhueAJ4qN6O407XvkBSS7jGbRP+kLgu2ogCgx80j
 y2uy6Qyqt+9Ghz9qNtaNrxM=
 =v6P1
 -----END PGP SIGNATURE-----
 
 --UlVJffcvxoiEqYs2--

From: Jean-Yves Lefort <jylefort@FreeBSD.org>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/85704: Add WITH_GL user variable to bsd.port.mk
Date: Sun, 13 Nov 2005 21:19:02 +0100

 --- bsd.port.mk.orig	Sun Nov 13 21:10:29 2005
 +++ bsd.port.mk	Sun Nov 13 21:15:27 2005
 @@ -344,8 +344,17 @@
  #				  case the linux X libraries are referenced.
  #
  # USE_FREETYPE	- If set, this port uses the freetype print libraries.
 -# USE_GL		- If set, this port uses libGL (not needed with XFree86 4.x
 -#				  which already includes this functionality).
 +##
 +# USE_GL		- If set, this port uses libGL. In the USE_LINUX case the
 +#				  linux GL libraries are referenced.
 +# WANT_GL_SYSTEM
 +#				- Specify the libGL implementation to use.
 +#				  Legal values for X_WINDOW_SYSTEM=xfree86-3 are:
 +#					glx (default), mesa
 +#				  Legal values for other values of X_WINDOW_SYSTEM are:
 +#					dri (default), nvidia
 +#				  If set to an unknown value, the port is marked IGNORE.
 +##
  # USE_MESA		- If set, this port uses libGL/libglut (deprecated).
  # USE_MOTIF		- If set, this port uses a Motif toolkit.  Implies USE_XPM.
  # NO_OPENMOTIF	- If set, this port uses a custom Motif toolkit
 @@ -1372,6 +1381,12 @@
  X_WINDOW_SYSTEM ?= xfree86-3
  .endif
  
 +.if ${X_WINDOW_SYSTEM:L} == xfree86-3
 +WANT_GL_SYSTEM?=	glx
 +.else
 +WANT_GL_SYSTEM?=	dri
 +.endif
 +
  # Location of mounted CDROM(s) to search for files
  CD_MOUNTPTS?=	/cdrom ${CD_MOUNTPT}
  
 @@ -1651,21 +1666,53 @@
  BUILD_DEPENDS+=			imake:${X_IMAKE_PORT}
  .endif
  
 +.if defined(USE_GL)
 +.	if ${X_WINDOW_SYSTEM:L} == xfree86-3
 +.		if ${WANT_GL_SYSTEM} == glx
 +.			if defined(USE_LINUX)
 +RUN_DEPENDS+=		${LINUXBASE}/lib/libGL.so.1:${PORTSDIR}/graphics/linux_glx
 +.			else
 +LIB_DEPENDS+=		GL.14:${PORTSDIR}/graphics/utah-glx
 +.			endif
 +.		elif ${WANT_GL_SYSTEM} == mesa
 +.			if defined(USE_LINUX)
 +RUN_DEPENDS+=		${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/graphics/linux_mesa3
 +.			else
 +LIB_DEPENDS+=		GL.14:${PORTSDIR}/graphics/mesagl
 +.			endif
 +.		else
 +IGNORE=				unknown GL implementation for X_WINDOW_SYSTEM=${X_WINDOW_SYSTEM}: ${WANT_GL_SYSTEM}
 +.		endif
 +.	else
 +.		if ${WANT_GL_SYSTEM} == dri
 +.			if defined(USE_LINUX)
 +RUN_DEPENDS+=		${LINUXBASE}/usr/X11R6/lib/libGL.so.1:${PORTSDIR}/graphics/linux_dri
 +.			else
 +USE_XLIB=			yes
 +.			endif
 +.		elif ${WANT_GL_SYSTEM} == nvidia
 +.			if defined(USE_LINUX)
 +RUN_DEPENDS+=		${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver
 +.			else
 +LIB_DEPENDS+=		GL.1:${PORTSDIR}/x11/nvidia-driver
 +.			endif
 +.		else
 +IGNORE=				unknown GL implementation for X_WINDOW_SYSTEM=${X_WINDOW_SYSTEM}: ${WANT_GL_SYSTEM}
 +.	endif
 +.endif
 +
  .if ${X_WINDOW_SYSTEM:L} == xfree86-3
  
  .if defined(USE_XPM)
  LIB_DEPENDS+=			Xpm.4:${PORTSDIR}/graphics/xpm
  .endif
 -.if defined(USE_GL)
 -LIB_DEPENDS+=			GL.14:${PORTSDIR}/graphics/mesagl
 -.endif
  
  XAWVER=				6
  PKG_IGNORE_DEPENDS?=		'^XFree86-3\.'
  
  .else
  
 -.if defined(USE_XPM) || defined(USE_GL)
 +.if defined(USE_XPM)
  USE_XLIB=			yes
  .endif

From: Kris Kennaway <kris@obsecurity.org>
To: Jean-Yves Lefort <jylefort@FreeBSD.org>
Cc: portmgr@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org
Subject: Re: ports/85704: Add WITH_GL user variable to bsd.port.mk
Date: Sun, 13 Nov 2005 15:23:17 -0500

 On Sun, Nov 13, 2005 at 08:20:18PM +0000, Jean-Yves Lefort wrote:
 > The following reply was made to PR ports/85704; it has been noted by GNATS.
 > 
 > From: Jean-Yves Lefort <jylefort@FreeBSD.org>
 > To: bug-followup@FreeBSD.org
 > Cc:  
 > Subject: Re: ports/85704: Add WITH_GL user variable to bsd.port.mk
 > Date: Sun, 13 Nov 2005 21:19:02 +0100
 > 
 >  --- bsd.port.mk.orig	Sun Nov 13 21:10:29 2005
 >  +++ bsd.port.mk	Sun Nov 13 21:15:27 2005
 >  @@ -344,8 +344,17 @@
 >   #				  case the linux X libraries are referenced.
 >   #
 >   # USE_FREETYPE	- If set, this port uses the freetype print libraries.
 >  -# USE_GL		- If set, this port uses libGL (not needed with XFree86 4.x
 >  -#				  which already includes this functionality).
 >  +##
 >  +# USE_GL		- If set, this port uses libGL. In the USE_LINUX case the
 >  +#				  linux GL libraries are referenced.
 >  +# WANT_GL_SYSTEM
 >  +#				- Specify the libGL implementation to use.
 >  +#				  Legal values for X_WINDOW_SYSTEM=xfree86-3 are:
 >  +#					glx (default), mesa
 >  +#				  Legal values for other values of X_WINDOW_SYSTEM are:
 >  +#					dri (default), nvidia
 >  +#				  If set to an unknown value, the port is marked IGNORE.
 >  +##
 
 OK, but you didn't answer my questions about whether WANT_* is
 appropriate here :-)
 
 Kris

From: Jean-Yves Lefort <jylefort@FreeBSD.org>
To: Kris Kennaway <kris@obsecurity.org>
Cc: portmgr@FreeBSD.org, freebsd-gnats-submit@FreeBSD.org
Subject: Re: ports/85704: Add WITH_GL user variable to bsd.port.mk
Date: Sun, 13 Nov 2005 23:05:48 +0100

 --Signature=_Sun__13_Nov_2005_23_05_48_+0100_ep_SgSzwBqdUBz_g
 Content-Type: text/plain; charset=US-ASCII
 Content-Disposition: inline
 Content-Transfer-Encoding: quoted-printable
 
 On Sun, 13 Nov 2005 15:23:17 -0500
 Kris Kennaway <kris@obsecurity.org> wrote:
 
 > On Sun, Nov 13, 2005 at 08:20:18PM +0000, Jean-Yves Lefort wrote:
 > > The following reply was made to PR ports/85704; it has been noted by GN=
 ATS.
 > >=20
 > > From: Jean-Yves Lefort <jylefort@FreeBSD.org>
 > > To: bug-followup@FreeBSD.org
 > > Cc: =20
 > > Subject: Re: ports/85704: Add WITH_GL user variable to bsd.port.mk
 > > Date: Sun, 13 Nov 2005 21:19:02 +0100
 > >=20
 > >  --- bsd.port.mk.orig	Sun Nov 13 21:10:29 2005
 > >  +++ bsd.port.mk	Sun Nov 13 21:15:27 2005
 > >  @@ -344,8 +344,17 @@
 > >   #				  case the linux X libraries are referenced.
 > >   #
 > >   # USE_FREETYPE	- If set, this port uses the freetype print libraries.
 > >  -# USE_GL		- If set, this port uses libGL (not needed with XFree86 4.x
 > >  -#				  which already includes this functionality).
 > >  +##
 > >  +# USE_GL		- If set, this port uses libGL. In the USE_LINUX case the
 > >  +#				  linux GL libraries are referenced.
 > >  +# WANT_GL_SYSTEM
 > >  +#				- Specify the libGL implementation to use.
 > >  +#				  Legal values for X_WINDOW_SYSTEM=3Dxfree86-3 are:
 > >  +#					glx (default), mesa
 > >  +#				  Legal values for other values of X_WINDOW_SYSTEM are:
 > >  +#					dri (default), nvidia
 > >  +#				  If set to an unknown value, the port is marked IGNORE.
 > >  +##
 >=20
 > OK, but you didn't answer my questions about whether WANT_* is
 > appropriate here :-)
 
 Sorry, I did not receive your previous message. WANT_GL_SYSTEM is
 meant to be set in /etc/make.conf, just like WANT_FAM_SYSTEM:
 
 WANT_GL_SYSTEM=3D		nvidia
 WANT_FAM_SYSTEM=3D	gamin
 
 --=20
 Jean-Yves Lefort
 
 jylefort@FreeBSD.org
 http://lefort.be.eu.org/
 
 --Signature=_Sun__13_Nov_2005_23_05_48_+0100_ep_SgSzwBqdUBz_g
 Content-Type: application/pgp-signature
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.2 (FreeBSD)
 
 iD8DBQFDd7i9yzD7UaO4AGoRAnZ7AJ4sveri9DrjgtRg3YofZ9Le0LQ6SwCff6qt
 NWNODp5ARvUWxAXBfvCBzP4=
 =ijoq
 -----END PGP SIGNATURE-----
 
 --Signature=_Sun__13_Nov_2005_23_05_48_+0100_ep_SgSzwBqdUBz_g--

From: Kris Kennaway <kris@obsecurity.org>
To: Jean-Yves Lefort <jylefort@FreeBSD.org>
Cc: Kris Kennaway <kris@obsecurity.org>, portmgr@FreeBSD.org,
	freebsd-gnats-submit@FreeBSD.org
Subject: Re: ports/85704: Add WITH_GL user variable to bsd.port.mk
Date: Sun, 13 Nov 2005 17:16:44 -0500

 --+QahgC5+KEYLbs62
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 Content-Transfer-Encoding: quoted-printable
 
 On Sun, Nov 13, 2005 at 11:05:48PM +0100, Jean-Yves Lefort wrote:
 > On Sun, 13 Nov 2005 15:23:17 -0500
 > Kris Kennaway <kris@obsecurity.org> wrote:
 >=20
 > > On Sun, Nov 13, 2005 at 08:20:18PM +0000, Jean-Yves Lefort wrote:
 > > > The following reply was made to PR ports/85704; it has been noted by =
 GNATS.
 > > >=20
 > > > From: Jean-Yves Lefort <jylefort@FreeBSD.org>
 > > > To: bug-followup@FreeBSD.org
 > > > Cc: =20
 > > > Subject: Re: ports/85704: Add WITH_GL user variable to bsd.port.mk
 > > > Date: Sun, 13 Nov 2005 21:19:02 +0100
 > > >=20
 > > >  --- bsd.port.mk.orig	Sun Nov 13 21:10:29 2005
 > > >  +++ bsd.port.mk	Sun Nov 13 21:15:27 2005
 > > >  @@ -344,8 +344,17 @@
 > > >   #				  case the linux X libraries are referenced.
 > > >   #
 > > >   # USE_FREETYPE	- If set, this port uses the freetype print librarie=
 s.
 > > >  -# USE_GL		- If set, this port uses libGL (not needed with XFree86 4=
 .x
 > > >  -#				  which already includes this functionality).
 > > >  +##
 > > >  +# USE_GL		- If set, this port uses libGL. In the USE_LINUX case the
 > > >  +#				  linux GL libraries are referenced.
 > > >  +# WANT_GL_SYSTEM
 > > >  +#				- Specify the libGL implementation to use.
 > > >  +#				  Legal values for X_WINDOW_SYSTEM=3Dxfree86-3 are:
 > > >  +#					glx (default), mesa
 > > >  +#				  Legal values for other values of X_WINDOW_SYSTEM are:
 > > >  +#					dri (default), nvidia
 > > >  +#				  If set to an unknown value, the port is marked IGNORE.
 > > >  +##
 > >=20
 > > OK, but you didn't answer my questions about whether WANT_* is
 > > appropriate here :-)
 >=20
 > Sorry, I did not receive your previous message. WANT_GL_SYSTEM is
 > meant to be set in /etc/make.conf, just like WANT_FAM_SYSTEM:
 >=20
 > WANT_GL_SYSTEM=3D		nvidia
 > WANT_FAM_SYSTEM=3D	gamin
 
 Both are mistakes, since WANT_* is not in the user namespace (see
 other comments in b.p.m).
 
 Kris
 
 --+QahgC5+KEYLbs62
 Content-Type: application/pgp-signature
 Content-Disposition: inline
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.2 (FreeBSD)
 
 iD8DBQFDd7tMWry0BWjoQKURArOYAKD5iLXCt2uo7AHAaLbB+mSZT5SstACfWNOv
 ngIRA1UrLPHUGiCvAG/9vN8=
 =WDts
 -----END PGP SIGNATURE-----
 
 --+QahgC5+KEYLbs62--
State-Changed-From-To: suspended->closed 
State-Changed-By: linimon 
State-Changed-When: Fri May 25 03:17:59 UTC 2007 
State-Changed-Why:  
Obsoleted by subsequent events. 

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