From ahze@brad-x.com  Sat Nov 16 18:13:36 2002
Return-Path: <ahze@brad-x.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id B728B37B404
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 16 Nov 2002 18:13:36 -0800 (PST)
Received: from TMA-1.brad-x.com (static-b2-191.highspeed.eol.ca [64.56.236.191])
	by mx1.FreeBSD.org (Postfix) with ESMTP id D3BB543E75
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 16 Nov 2002 18:13:35 -0800 (PST)
	(envelope-from ahze@brad-x.com)
Received: by TMA-1.brad-x.com (Postfix, from userid 1007)
	id BBA9A221050; Sat, 16 Nov 2002 21:14:27 -0500 (EST)
Message-Id: <20021117021427.BBA9A221050@TMA-1.brad-x.com>
Date: Sat, 16 Nov 2002 21:14:27 -0500 (EST)
From: michael johnson <ahze@rgv.net>
Reply-To: michael johnson <ahze@rgv.net>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: pnet upgrade 0.4.4 -> 0.4.6
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         45356
>Category:       ports
>Synopsis:       pnet upgrade 0.4.4 -> 0.4.6
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Nov 16 18:20:02 PST 2002
>Closed-Date:    Mon Dec 23 13:10:55 PST 2002
>Last-Modified:  Mon Dec 23 13:10:55 PST 2002
>Originator:     michael johnson
>Release:        FreeBSD 5.0-CURRENT i386
>Organization:
>Environment:
>Description:
 
 
>How-To-Repeat:
>Fix:

	
--- pnet.patch begins here ---
diff -ruN lang/pnet.orig/Makefile lang/pnet/Makefile
--- lang/pnet.orig/Makefile	Fri Nov 15 01:03:19 2002
+++ lang/pnet/Makefile	Fri Nov 15 02:39:51 2002
@@ -6,13 +6,13 @@
 #
 
 PORTNAME=	pnet
-PORTVERSION=	0.4.4
+PORTVERSION=	0.4.6
 CATEGORIES=	lang
 MASTER_SITES=	http://www.southern-storm.com.au/download/
 
 MAINTAINER=	ahze@rgv.net
 
-BUILD_DEPENDS=	treecc-0.1.4:${PORTSDIR}/lang/treecc
+BUILD_DEPENDS=	treecc-0.1.6:${PORTSDIR}/lang/treecc
 
 GNU_CONFIGURE=	yes
 USE_REINPLACE=	yes
diff -ruN lang/pnet.orig/distinfo lang/pnet/distinfo
--- lang/pnet.orig/distinfo	Fri Nov 15 01:03:19 2002
+++ lang/pnet/distinfo	Fri Nov 15 01:03:41 2002
@@ -1 +1 @@
-MD5 (pnet-0.4.4.tar.gz) = 452413ed360f4c8775a235a61fc3444b
+MD5 (pnet-0.4.6.tar.gz) = d4aac98aed7b469819cc1646463a8027
diff -ruN lang/pnet.orig/files/patch-il_system.h::cvspatch lang/pnet/files/patch-il_system.h::cvspatch
--- lang/pnet.orig/files/patch-il_system.h::cvspatch	Wed Dec 31 19:00:00 1969
+++ lang/pnet/files/patch-il_system.h::cvspatch	Fri Nov 15 01:09:45 2002
@@ -0,0 +1,15 @@
+--- include/il_system.h.orig	Fri Nov 15 01:09:09 2002
++++ include/il_system.h	Fri Nov 15 01:09:20 2002
+@@ -135,10 +135,10 @@
+ ILInt32 ILGetTimeZoneAdjust(void);
+ 
+ /* Convert a DateTime time to a time_t time */
+-time_t ILCLIToUnixTime(ILInt64 time);
++ILInt64 ILCLIToUnixTime(ILInt64 timeValue);
+ 
+ /* Convert a time_t time to a DateTime time */
+-ILInt64 ILUnixToCLITime(time_t time);
++ILInt64 ILUnixToCLITime(ILInt64 timeValue);
+ 
+ /* Get platform directory pathname information */
+ typedef struct
diff -ruN lang/pnet.orig/files/patch-time.c::cvspatch lang/pnet/files/patch-time.c::cvspatch
--- lang/pnet.orig/files/patch-time.c::cvspatch	Wed Dec 31 19:00:00 1969
+++ lang/pnet/files/patch-time.c::cvspatch	Fri Nov 15 01:14:54 2002
@@ -0,0 +1,21 @@
+--- support/time.c.orig	Fri Nov 15 01:13:50 2002
++++ support/time.c	Fri Nov 15 01:14:04 2002
+@@ -82,14 +82,14 @@
+ 	return (ILInt32)(timezone - (isdst ? 3600 : 0));
+ }
+ 
+-time_t ILCLIToUnixTime(ILInt64 time)
++ILInt64 ILCLIToUnixTime(ILInt64 timeValue)
+ {
+-	return ((time_t) ((time / 10000000) - EPOCH_ADJUST));
++	return (timeValue / (ILInt64)10000000) - EPOCH_ADJUST;
+ }
+ 
+-ILInt64 ILUnixToCLITime(time_t time)
++ILInt64 ILUnixToCLITime(ILInt64 timeValue)
+ {
+-	return (((ILInt64) time) + EPOCH_ADJUST) * 10000000;
++	return (timeValue + EPOCH_ADJUST) * (ILInt64)10000000;
+ }
+ 
+ #ifdef	__cplusplus
diff -ruN lang/pnet.orig/pkg-plist lang/pnet/pkg-plist
--- lang/pnet.orig/pkg-plist	Fri Nov 15 01:03:20 2002
+++ lang/pnet/pkg-plist	Fri Nov 15 01:32:37 2002
@@ -5,6 +5,7 @@
 bin/ilalink
 bin/ilsize
 bin/ilnative
+bin/ilheader
 bin/ilfind
 bin/ildiff
 bin/ildd
@@ -60,20 +61,21 @@
 lib/cscc/plugins/cscc-cs
 lib/cscc/plugins/cscc-c-s
 lib/cscc/plugins/cscc-csharp
-lib/cscc/lib/I18N-handlers.def
+lib/cscc/lib/cstest.dll
+lib/cscc/lib/OpenSystem.C.dll
+lib/cscc/lib/mscorlib.dll
 lib/cscc/lib/I18N.CJK.dll
+lib/cscc/lib/I18N.dll
 lib/cscc/lib/I18N.MidEast.dll
 lib/cscc/lib/I18N.Other.dll
 lib/cscc/lib/I18N.Rare.dll
 lib/cscc/lib/I18N.West.dll
-lib/cscc/lib/I18N.dll
-lib/cscc/lib/OpenSystem.C.dll
+lib/cscc/lib/I18N-handlers.def
 lib/cscc/lib/System.dll
 lib/cscc/lib/System.Xml.dll
-lib/cscc/lib/cstest.dll
-lib/cscc/lib/mscorlib.dll
 lib/cscc/lib/pnetlib.here
-@dirrm lib/cscc/lib
+@dirrm include/pnet
 @dirrm lib/cscc/plugins
+@dirrm lib/cscc/lib
 @dirrm lib/cscc
-@dirrm include/pnet
+
--- pnet.patch ends here ---


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: okazaki 
State-Changed-When: Mon Dec 23 13:10:16 PST 2002 
State-Changed-Why:  
superseded by ports/45695 

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