Date: Sat, 16 Nov 2002 21:14:27 -0500 (EST) From: michael johnson <ahze@rgv.net> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/45356: pnet upgrade 0.4.4 -> 0.4.6 Message-ID: <20021117021427.BBA9A221050@TMA-1.brad-x.com>
next in thread | raw e-mail | index | archive | help
>Number: 45356 >Category: ports >Synopsis: pnet upgrade 0.4.4 -> 0.4.6 >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 16 18:20:02 PST 2002 >Closed-Date: >Last-Modified: >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: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021117021427.BBA9A221050>