From gregoryhermann at yahoo.com Sun Jan 1 21:23:36 2006 From: gregoryhermann at yahoo.com (Gregory Hermann) Date: Sun Jan 1 21:24:28 2006 Subject: [netrek-dev] New netrek client Message-ID: <20060102032336.65874.qmail@web54402.mail.yahoo.com> Windows only -- In progress - Available from http://sourceforge.net/project/showfiles.php?group_id=156216 Uses Ogre3d and CEGUI, both open-source projects as well. Source for this is available and should be portable to linux and other unix systems, (provided someone else really wants to deal with it.) Client is incomplete, though. Login/etc works, most dogfighting works, however tractoring/pressoring, bombing, cloaking are currently unimplemented. As such, an RSA key is also not available. Working on it. Hope to have something more solid in the future - Could use help, though. My artistic talents are quite limited. Any questions/etc, please let me know. Thanks! - Greg __________________________________________ Yahoo! DSL ? Something to write home about. Just $16.99/mo. or less. dsl.yahoo.com From quozl at us.netrek.org Mon Jan 2 02:19:36 2006 From: quozl at us.netrek.org (James Cameron) Date: Mon Jan 2 02:20:08 2006 Subject: [netrek-dev] Multicast server solicitation Message-ID: <20060102081936.GC27883@us.netrek.org> I've added a multicast server solicitation feature to the Netrek server, and I'm working on finishing up the changes to Cow's parsemeta.c. The feature is intended for finding servers on a local area network, but could also be extended to include a list of favourite servers that are directly queried when a client starts. It works like this; 1. client sends a multicast datagram to 224.0.0.1 UDP port 3521, same format as used for UDP query of metaservers, 2. all servers on the local area network (and the local host), receive the query in netrekd, fork an instance of tools/players, 3. tools/players reads the queue length and player count from shared memory and transmits a reply back to the client, 4. client adds the server to the list of servers displayed. Changes to newstartd.c and players.c are in CVS on SourceForge. Work is still needed on packet format. Here's the current format used by the prototype code ... s,type,n,port,players,queue[,port,players,queue] s = the literal letter 's', as a server response, type = B for Bronco, I for INL, as in existing metaserver packets, n = number of port/players/queue triplets that follow, port = port number to join players = number of players currently in game queue = number of players on queue for this port -- James Cameron mailto:quozl@us.netrek.org http://quozl.netrek.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20060102/8f12b873/attachment.pgp From quozl at us.netrek.org Mon Jan 2 22:46:23 2006 From: quozl at us.netrek.org (James Cameron) Date: Mon Jan 2 22:48:10 2006 Subject: [netrek-dev] [patch] do not report robots to metaserver Message-ID: <20060103044623.GA8668@us.netrek.org> The following patch may prevent the reporting of practice robots to the metaserver, allowing the players to better appreciate the load on a server. -- James Cameron mailto:quozl@us.netrek.org http://quozl.netrek.org/ -------------- next part -------------- Index: solicit.c =================================================================== RCS file: /cvsroot/netrek/server/Vanilla/ntserv/solicit.c,v retrieving revision 1.5 diff -u -r1.5 solicit.c --- solicit.c 2 Jan 2006 07:27:52 -0000 1.5 +++ solicit.c 3 Jan 2006 04:43:47 -0000 @@ -266,7 +266,7 @@ for (j = queues[queue].low_slot; j < queues[queue].high_slot; j++) { - if (players[j].p_status == PFREE) + if (players[j].p_status == PFREE || strstr(players[j].p_login, "robot")) nfree++; else nplayers++; From netrek at gmail.com Tue Jan 3 00:42:12 2006 From: netrek at gmail.com (Zach) Date: Tue Jan 3 00:42:09 2006 Subject: [netrek-dev] [patch] do not report robots to metaserver In-Reply-To: <20060103044623.GA8668@us.netrek.org> References: <20060103044623.GA8668@us.netrek.org> Message-ID: On 1/2/06, James Cameron wrote: > http://mailman.us.netrek.org/listinfo/netrek-dev This address is defunct: Not Found The requested URL /listinfo/netrek-dev was not found on this server. Apache/1.3.34 Server at mailman.us.netrek.org Port 80 Zach From netrek at gmail.com Tue Jan 3 00:42:12 2006 From: netrek at gmail.com (Zach) Date: Tue Jan 3 00:42:12 2006 Subject: [netrek-dev] [patch] do not report robots to metaserver In-Reply-To: <20060103044623.GA8668@us.netrek.org> References: <20060103044623.GA8668@us.netrek.org> Message-ID: On 1/2/06, James Cameron wrote: > http://mailman.us.netrek.org/listinfo/netrek-dev This address is defunct: Not Found The requested URL /listinfo/netrek-dev was not found on this server. Apache/1.3.34 Server at mailman.us.netrek.org Port 80 Zach From tanner at real-time.com Tue Jan 3 14:41:07 2006 From: tanner at real-time.com (Bob Tanner) Date: Tue Jan 3 14:42:10 2006 Subject: [netrek-dev] [patch] do not report robots to metaserver In-Reply-To: References: <20060103044623.GA8668@us.netrek.org> Message-ID: <200601031441.08574.tanner@real-time.com> On Tuesday 03 January 2006 12:42 am, Zach wrote: > On 1/2/06, James Cameron wrote: > > http://mailman.us.netrek.org/listinfo/netrek-dev > > This address is defunct: > > Not Found > The requested URL /listinfo/netrek-dev was not found on this server. > > Apache/1.3.34 Server at mailman.us.netrek.org Port 80 Fixed. -- Bob Tanner | Phone : (952)943-8700 http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 From applemansigloo at hotmail.com Thu Jan 5 01:00:36 2006 From: applemansigloo at hotmail.com (Benjamin Southall) Date: Thu Jan 5 01:02:11 2006 Subject: [netrek-dev] Re Gregory Hermann's new Netrek Client Message-ID: Dear everyone, I am going to attempt to port Gregory's Netrek Client Netrek NG to Linux / Unix. I will also offer any other help I can to support this new client. Best wishes, Hope this helps, Benjamin Southall aka Appleman1234 :) From xyzzy at speakeasy.org Thu Jan 5 19:25:02 2006 From: xyzzy at speakeasy.org (Trent Piepho) Date: Thu Jan 5 19:26:12 2006 Subject: [netrek-dev] [patch] do not report robots to metaserver In-Reply-To: <20060103044623.GA8668@us.netrek.org> References: <20060103044623.GA8668@us.netrek.org> Message-ID: On Tue, 3 Jan 2006, James Cameron wrote: > The following patch may prevent the reporting of practice robots to the > metaserver, allowing the players to better appreciate the load on a > server. If there isn't anything there yet, how about doing it better. Have the robot send an OGGV packet to the server. This is some kind of unused packet that Hadley came up with for this bot, but whatever he did with it is lost. When the server gets one, it sets the bot flag for that player. While someone can have a login with robot in it (I've seen several people who do), they can't send an oggv packet with a normal client. PS, is there an archive of the old CVS repository? From xyzzy at speakeasy.org Thu Jan 5 19:25:02 2006 From: xyzzy at speakeasy.org (Trent Piepho) Date: Thu Jan 5 19:26:15 2006 Subject: [netrek-dev] [patch] do not report robots to metaserver In-Reply-To: <20060103044623.GA8668@us.netrek.org> References: <20060103044623.GA8668@us.netrek.org> Message-ID: On Tue, 3 Jan 2006, James Cameron wrote: > The following patch may prevent the reporting of practice robots to the > metaserver, allowing the players to better appreciate the load on a > server. If there isn't anything there yet, how about doing it better. Have the robot send an OGGV packet to the server. This is some kind of unused packet that Hadley came up with for this bot, but whatever he did with it is lost. When the server gets one, it sets the bot flag for that player. While someone can have a login with robot in it (I've seen several people who do), they can't send an oggv packet with a normal client. PS, is there an archive of the old CVS repository? From quozl at us.netrek.org Thu Jan 5 23:39:39 2006 From: quozl at us.netrek.org (James Cameron) Date: Thu Jan 5 23:40:12 2006 Subject: [netrek-dev] [patch] do not report robots to metaserver In-Reply-To: References: <20060103044623.GA8668@us.netrek.org> Message-ID: <20060106053939.GA1862@us.netrek.org> On Thu, Jan 05, 2006 at 05:25:02PM -0800, Trent Piepho wrote: > If there isn't anything there yet, how about doing it better. Sure, go ahead. Getting something out in 30 seconds was all I was interested in at the time. > Have the robot send an OGGV packet to the server. [...] The handleOggV function in ntserv/socket.c is only defined if either BASEPRACTICE, NEWBIESERVER or PRETSERVER are defined. This may not be sufficient, but it could be a good start. The function sets PFBPROBOT bit in p_flags. Checking this bit may be a better approximation. > While someone can have a login with robot in it (I've seen several > people who do), they can't send an oggv packet with a normal client. I don't think people with a login of "robot" are a problem, although they may fairly soon learn that this means their slot on the server is under-reported. It will be self correcting, perhaps. > PS, is there an archive of the old CVS repository? I don't have one. Maybe Bob does? -- James Cameron mailto:quozl@us.netrek.org http://quozl.netrek.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20060106/bbd72b61/attachment.pgp From gregoryhermann at yahoo.com Sat Jan 7 18:03:13 2006 From: gregoryhermann at yahoo.com (Gregory Hermann) Date: Sat Jan 7 18:04:14 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060102032336.65874.qmail@web54402.mail.yahoo.com> Message-ID: <20060108000313.3061.qmail@web54405.mail.yahoo.com> Updated - Now supports pretty much the full default command map. Plasmas still not in, and cloaked ships render oddly - Missing visual effects for states (repair mode, bombing, tractoring, etc), however actions do occur. Hud is in with progress bars and whatnot. I hope to have more of these issue addressed in next weeks release, but I'd appreciate any feedback. Thanks! --- Gregory Hermann wrote: > Windows only -- In progress - Available from > http://sourceforge.net/project/showfiles.php?group_id=156216 > > Uses Ogre3d and CEGUI, both open-source projects as > well. Source for this is available and should be > portable to linux and other unix systems, (provided > someone else really wants to deal with it.) > > Client is incomplete, though. Login/etc works, most > dogfighting works, however tractoring/pressoring, > bombing, cloaking are currently unimplemented. > > As such, an RSA key is also not available. > > Working on it. Hope to have something more solid in > the future - Could use help, though. My artistic > talents are quite limited. > Any questions/etc, please let me know. > > Thanks! > - > Greg > > > > __________________________________________ > Yahoo! DSL ? Something to write home about. > Just $16.99/mo. or less. > dsl.yahoo.com > > > _______________________________________________ > netrek-dev mailing list > netrek-dev@mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > __________________________________________ Yahoo! DSL ? Something to write home about. Just $16.99/mo. or less. dsl.yahoo.com From fwmiller at cornfed.com Sat Jan 7 18:11:58 2006 From: fwmiller at cornfed.com (Frank W. Miller) Date: Sat Jan 7 18:12:14 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060108000313.3061.qmail@web54405.mail.yahoo.com> References: <20060108000313.3061.qmail@web54405.mail.yahoo.com> Message-ID: <1136679118.2639.2.camel@localhost.localdomain> Are there any screenshots? Thanks, FM On Sat, 2006-01-07 at 16:03 -0800, Gregory Hermann wrote: > Updated - Now supports pretty much the full default > command map. Plasmas still not in, and cloaked ships > render oddly - Missing visual effects for states > (repair mode, bombing, tractoring, etc), however > actions do occur. Hud is in with progress bars and > whatnot. I hope to have more of these issue addressed > in next weeks release, but I'd appreciate any > feedback. Thanks! > > --- Gregory Hermann wrote: > > > Windows only -- In progress - Available from > > > http://sourceforge.net/project/showfiles.php?group_id=156216 > > > > Uses Ogre3d and CEGUI, both open-source projects as > > well. Source for this is available and should be > > portable to linux and other unix systems, (provided > > someone else really wants to deal with it.) > > > > Client is incomplete, though. Login/etc works, most > > dogfighting works, however tractoring/pressoring, > > bombing, cloaking are currently unimplemented. > > > > As such, an RSA key is also not available. > > > > Working on it. Hope to have something more solid in > > the future - Could use help, though. My artistic > > talents are quite limited. > > Any questions/etc, please let me know. > > > > Thanks! > > - > > Greg > > > > > > > > __________________________________________ > > Yahoo! DSL ? Something to write home about. > > Just $16.99/mo. or less. > > dsl.yahoo.com > > > > > > _______________________________________________ > > netrek-dev mailing list > > netrek-dev@mailman.us.netrek.org > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > __________________________________________ > Yahoo! DSL ? Something to write home about. > Just $16.99/mo. or less. > dsl.yahoo.com > > > _______________________________________________ > netrek-dev mailing list > netrek-dev@mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev From gregoryhermann at yahoo.com Sat Jan 7 20:59:32 2006 From: gregoryhermann at yahoo.com (Gregory Hermann) Date: Sat Jan 7 21:00:15 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <1136679118.2639.2.camel@localhost.localdomain> Message-ID: <20060108025932.70654.qmail@web54413.mail.yahoo.com> Thanks for reminding me! Screenshots are now posted in the sourceforge project and are available at http://sourceforge.net/project/screenshots.php?group_id=156216&ssid=24947 As I said, it's a work in progress. Lots need to be done with the shaders and whatnot, but that's the "fun" stuff to implement. --- "Frank W. Miller" wrote: > > > Are there any screenshots? > > Thanks, > FM > > On Sat, 2006-01-07 at 16:03 -0800, Gregory Hermann > wrote: > > Updated - Now supports pretty much the full > default > > command map. Plasmas still not in, and cloaked > ships > > render oddly - Missing visual effects for states > > (repair mode, bombing, tractoring, etc), however > > actions do occur. Hud is in with progress bars and > > whatnot. I hope to have more of these issue > addressed > > in next weeks release, but I'd appreciate any > > feedback. Thanks! > > > > --- Gregory Hermann > wrote: > > > > > Windows only -- In progress - Available from > > > > > > http://sourceforge.net/project/showfiles.php?group_id=156216 > > > > > > Uses Ogre3d and CEGUI, both open-source projects > as > > > well. Source for this is available and should be > > > portable to linux and other unix systems, > (provided > > > someone else really wants to deal with it.) > > > > > > Client is incomplete, though. Login/etc works, > most > > > dogfighting works, however > tractoring/pressoring, > > > bombing, cloaking are currently unimplemented. > > > > > > As such, an RSA key is also not available. > > > > > > Working on it. Hope to have something more solid > in > > > the future - Could use help, though. My artistic > > > talents are quite limited. > > > Any questions/etc, please let me know. > > > > > > Thanks! > > > - > > > Greg > > > > > > > > > > > > __________________________________________ > > > Yahoo! DSL ??? Something to write home about. > > > Just $16.99/mo. or less. > > > dsl.yahoo.com > > > > > > > > > _______________________________________________ > > > netrek-dev mailing list > > > netrek-dev@mailman.us.netrek.org > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > > > > > > > __________________________________________ > > Yahoo! DSL ??? Something to write home about. > > Just $16.99/mo. or less. > > dsl.yahoo.com > > > > > > _______________________________________________ > > netrek-dev mailing list > > netrek-dev@mailman.us.netrek.org > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > _______________________________________________ > netrek-dev mailing list > netrek-dev@mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > __________________________________________ Yahoo! DSL ? Something to write home about. Just $16.99/mo. or less. dsl.yahoo.com From stephen.thorne at gmail.com Sat Jan 7 21:13:43 2006 From: stephen.thorne at gmail.com (Stephen Thorne) Date: Sat Jan 7 21:14:14 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060108025932.70654.qmail@web54413.mail.yahoo.com> References: <1136679118.2639.2.camel@localhost.localdomain> <20060108025932.70654.qmail@web54413.mail.yahoo.com> Message-ID: <3e8ca5c80601071913s3efd26afm@mail.gmail.com> On 08/01/06, Gregory Hermann wrote: > > Thanks for reminding me! Screenshots are now posted in > the sourceforge project and are available at > http://sourceforge.net/project/screenshots.php?group_id=156216&ssid=24947 > > As I said, it's a work in progress. Lots need to be > done with the shaders and whatnot, but that's the > "fun" stuff to implement. That looks awesome! I really look forward to the linux port being completed. -- Stephen Thorne Development Engineer From netrek at gmail.com Sat Jan 7 21:43:28 2006 From: netrek at gmail.com (Zach) Date: Sat Jan 7 21:44:14 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060108025932.70654.qmail@web54413.mail.yahoo.com> References: <1136679118.2639.2.camel@localhost.localdomain> <20060108025932.70654.qmail@web54413.mail.yahoo.com> Message-ID: Wow! Can I ask what tools you used to make this client? How did you create the ship models and weapons? How did you create the background? Was this done in photoshop? Are the image objects vector graphics? Will you implememt 3D ray-tracing? Are you using a toolkit like OpenGL? Is the coding done in C? C++? Java? Did you use any toolkits or is everything coded from scratch? Zach On 1/7/06, Gregory Hermann wrote: > > Thanks for reminding me! Screenshots are now posted in > the sourceforge project and are available at > http://sourceforge.net/project/screenshots.php?group_id=156216&ssid=24947 > > As I said, it's a work in progress. Lots need to be > done with the shaders and whatnot, but that's the > "fun" stuff to implement. > > --- "Frank W. Miller" wrote: > > > > > > > Are there any screenshots? > > > > Thanks, > > FM > > > > On Sat, 2006-01-07 at 16:03 -0800, Gregory Hermann > > wrote: > > > Updated - Now supports pretty much the full > > default > > > command map. Plasmas still not in, and cloaked > > ships > > > render oddly - Missing visual effects for states > > > (repair mode, bombing, tractoring, etc), however > > > actions do occur. Hud is in with progress bars and > > > whatnot. I hope to have more of these issue > > addressed > > > in next weeks release, but I'd appreciate any > > > feedback. Thanks! > > > > > > --- Gregory Hermann > > wrote: > > > > > > > Windows only -- In progress - Available from > > > > > > > > > > http://sourceforge.net/project/showfiles.php?group_id=156216 > > > > > > > > Uses Ogre3d and CEGUI, both open-source projects > > as > > > > well. Source for this is available and should be > > > > portable to linux and other unix systems, > > (provided > > > > someone else really wants to deal with it.) > > > > > > > > Client is incomplete, though. Login/etc works, > > most > > > > dogfighting works, however > > tractoring/pressoring, > > > > bombing, cloaking are currently unimplemented. > > > > > > > > As such, an RSA key is also not available. > > > > > > > > Working on it. Hope to have something more solid > > in > > > > the future - Could use help, though. My artistic > > > > talents are quite limited. > > > > Any questions/etc, please let me know. > > > > > > > > Thanks! > > > > - > > > > Greg > > > > > > > > > > > > > > > > __________________________________________ > > > > Yahoo! DSL ??" Something to write home about. > > > > Just $16.99/mo. or less. > > > > dsl.yahoo.com > > > > > > > > > > > > _______________________________________________ > > > > netrek-dev mailing list > > > > netrek-dev@mailman.us.netrek.org > > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > > > > > > > > > > > > > __________________________________________ > > > Yahoo! DSL ??" Something to write home about. > > > Just $16.99/mo. or less. > > > dsl.yahoo.com > > > > > > > > > _______________________________________________ > > > netrek-dev mailing list > > > netrek-dev@mailman.us.netrek.org > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > _______________________________________________ > > netrek-dev mailing list > > netrek-dev@mailman.us.netrek.org > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > __________________________________________ > Yahoo! DSL ? Something to write home about. > Just $16.99/mo. or less. > dsl.yahoo.com > > > _______________________________________________ > netrek-dev mailing list > netrek-dev@mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > From gregoryhermann at yahoo.com Sat Jan 7 22:19:35 2006 From: gregoryhermann at yahoo.com (Gregory Hermann) Date: Sat Jan 7 22:20:16 2006 Subject: [netrek-dev] New netrek client In-Reply-To: Message-ID: <20060108041935.95346.qmail@web54413.mail.yahoo.com> This was done using two open source projects - ogre3d and CEGui, a UI toolkit which can be made to dovetail into the Ogre3d rendering engine. It does require a hardware accelerated card of some sort, but most recent computers should be able to handle the baseline. Ogre provides a layer on top of arbitrary rendering engines so can be used for both openGL and Direct3D. Everything is fully 3d. No photoshop involved, except to create textures for the environment and ships. The models (done using blender) are still untuned, needing a better shading model and more, so it should look significantly better in its final incarnation. Coding is done in C++, so no VM required. --- Zach wrote: > Wow! Can I ask what tools you used to make this > client? > > How did you create the ship models and weapons? How > did you create the > background? Was this done in photoshop? > > Are the image objects vector graphics? Will you > implememt 3D ray-tracing? > > Are you using a toolkit like OpenGL? > > Is the coding done in C? C++? Java? Did you use any > toolkits or is > everything coded from scratch? > > Zach > > On 1/7/06, Gregory Hermann > wrote: > > > > Thanks for reminding me! Screenshots are now > posted in > > the sourceforge project and are available at > > > http://sourceforge.net/project/screenshots.php?group_id=156216&ssid=24947 > > > > As I said, it's a work in progress. Lots need to > be > > done with the shaders and whatnot, but that's the > > "fun" stuff to implement. > > > > --- "Frank W. Miller" > wrote: > > > > > > > > > > > Are there any screenshots? > > > > > > Thanks, > > > FM > > > > > > On Sat, 2006-01-07 at 16:03 -0800, Gregory > Hermann > > > wrote: > > > > Updated - Now supports pretty much the full > > > default > > > > command map. Plasmas still not in, and cloaked > > > ships > > > > render oddly - Missing visual effects for > states > > > > (repair mode, bombing, tractoring, etc), > however > > > > actions do occur. Hud is in with progress bars > and > > > > whatnot. I hope to have more of these issue > > > addressed > > > > in next weeks release, but I'd appreciate any > > > > feedback. Thanks! > > > > > > > > --- Gregory Hermann > > > wrote: > > > > > > > > > Windows only -- In progress - Available from > > > > > > > > > > > > > > > http://sourceforge.net/project/showfiles.php?group_id=156216 > > > > > > > > > > Uses Ogre3d and CEGUI, both open-source > projects > > > as > > > > > well. Source for this is available and > should be > > > > > portable to linux and other unix systems, > > > (provided > > > > > someone else really wants to deal with it.) > > > > > > > > > > Client is incomplete, though. Login/etc > works, > > > most > > > > > dogfighting works, however > > > tractoring/pressoring, > > > > > bombing, cloaking are currently > unimplemented. > > > > > > > > > > As such, an RSA key is also not available. > > > > > > > > > > Working on it. Hope to have something more > solid > > > in > > > > > the future - Could use help, though. My > artistic > > > > > talents are quite limited. > > > > > Any questions/etc, please let me know. > > > > > > > > > > Thanks! > > > > > - > > > > > Greg > > > > > > > > > > > > > > > > > > > > __________________________________________ > > > > > Yahoo! DSL ??" Something to write home > about. > > > > > Just $16.99/mo. or less. > > > > > dsl.yahoo.com > > > > > > > > > > > > > > > > _______________________________________________ > > > > > netrek-dev mailing list > > > > > netrek-dev@mailman.us.netrek.org > > > > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________________ > > > > Yahoo! DSL ??" Something to write home about. > > > > Just $16.99/mo. or less. > > > > dsl.yahoo.com > > > > > > > > > > > > > _______________________________________________ > > > > netrek-dev mailing list > > > > netrek-dev@mailman.us.netrek.org > > > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > > > _______________________________________________ > > > netrek-dev mailing list > > > netrek-dev@mailman.us.netrek.org > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > > > > > > > __________________________________________ > > Yahoo! DSL ? Something to write home about. > > Just $16.99/mo. or less. > > dsl.yahoo.com > > > > > > _______________________________________________ > > netrek-dev mailing list > > netrek-dev@mailman.us.netrek.org > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > _______________________________________________ > netrek-dev mailing list > netrek-dev@mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > __________________________________________ Yahoo! DSL ? Something to write home about. Just $16.99/mo. or less. dsl.yahoo.com From netrek at gmail.com Sat Jan 7 22:29:42 2006 From: netrek at gmail.com (Zach) Date: Sat Jan 7 22:30:14 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060108041935.95346.qmail@web54413.mail.yahoo.com> References: <20060108041935.95346.qmail@web54413.mail.yahoo.com> Message-ID: Cool. Good work Greg! Zach On 1/7/06, Gregory Hermann wrote: > This was done using two open source projects - ogre3d > and CEGui, a UI toolkit which can be made to dovetail > into the Ogre3d rendering engine. It does require a > hardware accelerated card of some sort, but most > recent computers should be able to handle the > baseline. Ogre provides a layer on top of arbitrary > rendering engines so can be used for both openGL and > Direct3D. Everything is fully 3d. No photoshop > involved, except to create textures for the > environment and ships. The models (done using blender) > are still untuned, needing a better shading model and > more, so it should look significantly better in its > final incarnation. > > Coding is done in C++, so no VM required. > > --- Zach wrote: > > > Wow! Can I ask what tools you used to make this > > client? > > > > How did you create the ship models and weapons? How > > did you create the > > background? Was this done in photoshop? > > > > Are the image objects vector graphics? Will you > > implememt 3D ray-tracing? > > > > Are you using a toolkit like OpenGL? > > > > Is the coding done in C? C++? Java? Did you use any > > toolkits or is > > everything coded from scratch? > > > > Zach > > > > On 1/7/06, Gregory Hermann > > wrote: > > > > > > Thanks for reminding me! Screenshots are now > > posted in > > > the sourceforge project and are available at > > > > > > http://sourceforge.net/project/screenshots.php?group_id=156216&ssid=24947 > > > > > > As I said, it's a work in progress. Lots need to > > be > > > done with the shaders and whatnot, but that's the > > > "fun" stuff to implement. > > > > > > --- "Frank W. Miller" > > wrote: > > > > > > > > > > > > > > > Are there any screenshots? > > > > > > > > Thanks, > > > > FM > > > > > > > > On Sat, 2006-01-07 at 16:03 -0800, Gregory > > Hermann > > > > wrote: > > > > > Updated - Now supports pretty much the full > > > > default > > > > > command map. Plasmas still not in, and cloaked > > > > ships > > > > > render oddly - Missing visual effects for > > states > > > > > (repair mode, bombing, tractoring, etc), > > however > > > > > actions do occur. Hud is in with progress bars > > and > > > > > whatnot. I hope to have more of these issue > > > > addressed > > > > > in next weeks release, but I'd appreciate any > > > > > feedback. Thanks! > > > > > > > > > > --- Gregory Hermann > > > > wrote: > > > > > > > > > > > Windows only -- In progress - Available from > > > > > > > > > > > > > > > > > > > > > http://sourceforge.net/project/showfiles.php?group_id=156216 > > > > > > > > > > > > Uses Ogre3d and CEGUI, both open-source > > projects > > > > as > > > > > > well. Source for this is available and > > should be > > > > > > portable to linux and other unix systems, > > > > (provided > > > > > > someone else really wants to deal with it.) > > > > > > > > > > > > Client is incomplete, though. Login/etc > > works, > > > > most > > > > > > dogfighting works, however > > > > tractoring/pressoring, > > > > > > bombing, cloaking are currently > > unimplemented. > > > > > > > > > > > > As such, an RSA key is also not available. > > > > > > > > > > > > Working on it. Hope to have something more > > solid > > > > in > > > > > > the future - Could use help, though. My > > artistic > > > > > > talents are quite limited. > > > > > > Any questions/etc, please let me know. > > > > > > > > > > > > Thanks! > > > > > > - > > > > > > Greg > > > > > > > > > > > > > > > > > > > > > > > > __________________________________________ > > > > > > Yahoo! DSL ??" Something to write home > > about. > > > > > > Just $16.99/mo. or less. > > > > > > dsl.yahoo.com > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > netrek-dev mailing list > > > > > > netrek-dev@mailman.us.netrek.org > > > > > > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > __________________________________________ > > > > > Yahoo! DSL ??" Something to write home about. > > > > > Just $16.99/mo. or less. > > > > > dsl.yahoo.com > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > netrek-dev mailing list > > > > > netrek-dev@mailman.us.netrek.org > > > > > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > > > > > > _______________________________________________ > > > > netrek-dev mailing list > > > > netrek-dev@mailman.us.netrek.org > > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > > > > > > > > > > > > > __________________________________________ > > > Yahoo! DSL ? Something to write home about. > > > Just $16.99/mo. or less. > > > dsl.yahoo.com > > > > > > > > > _______________________________________________ > > > netrek-dev mailing list > > > netrek-dev@mailman.us.netrek.org > > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > _______________________________________________ > > netrek-dev mailing list > > netrek-dev@mailman.us.netrek.org > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > > > __________________________________________ > Yahoo! DSL ? Something to write home about. > Just $16.99/mo. or less. > dsl.yahoo.com > > > _______________________________________________ > netrek-dev mailing list > netrek-dev@mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > From quozl at us.netrek.org Sat Jan 7 22:30:49 2006 From: quozl at us.netrek.org (James Cameron) Date: Sat Jan 7 22:33:19 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060108025932.70654.qmail@web54413.mail.yahoo.com> References: <1136679118.2639.2.camel@localhost.localdomain> <20060108025932.70654.qmail@web54413.mail.yahoo.com> Message-ID: <20060108043049.GB17034@us.netrek.org> Agreed, awesome. Let us know if there's anything hindering your progress as far as the server code base is concerned. (While of course retaining compatibility and non-borg requests from the community ... what a tightrope). -- James Cameron mailto:quozl@us.netrek.org http://quozl.netrek.org/ From niclas at acc.umu.se Sat Jan 7 22:09:57 2006 From: niclas at acc.umu.se (Niclas Fredriksson) Date: Sat Jan 7 22:40:14 2006 Subject: [netrek-dev] New netrek client In-Reply-To: References: <1136679118.2639.2.camel@localhost.localdomain> <20060108025932.70654.qmail@web54413.mail.yahoo.com> Message-ID: On Sat, 7 Jan 2006, Zach wrote: > Wow! Can I ask what tools you used to make this client? > > How did you create the ship models and weapons? How did you create the > background? Was this done in photoshop? > > Are the image objects vector graphics? Will you implememt 3D ray-tracing? > > Are you using a toolkit like OpenGL? > > Is the coding done in C? C++? Java? Did you use any toolkits or is > everything coded from scratch? If you check the project's homepage you'll find the answers to most of your questions: http://sourceforge.net/project/showfiles.php?group_id=156216 --Niclas From quozl at us.netrek.org Sun Jan 8 00:08:48 2006 From: quozl at us.netrek.org (James Cameron) Date: Sun Jan 8 00:10:15 2006 Subject: [netrek-dev] New netrek client In-Reply-To: References: <1136679118.2639.2.camel@localhost.localdomain> <20060108025932.70654.qmail@web54413.mail.yahoo.com> Message-ID: <20060108060848.GC17034@us.netrek.org> Oy, don't distract him, let the guy work. ;-) -- James Cameron mailto:quozl@us.netrek.org http://quozl.netrek.org/ From netrek at gmail.com Sun Jan 8 00:49:12 2006 From: netrek at gmail.com (Zach) Date: Sun Jan 8 00:50:15 2006 Subject: [netrek-dev] New netrek client In-Reply-To: References: <1136679118.2639.2.camel@localhost.localdomain> <20060108025932.70654.qmail@web54413.mail.yahoo.com> Message-ID: On 1/7/06, Niclas Fredriksson wrote: > > If you check the project's homepage you'll find the answers to most of > your questions: > > http://sourceforge.net/project/showfiles.php?group_id=156216 Thanks. He has to add an index.html page, if you go to http://netrekng.sf.net there is nothing there. Zach From quozl at us.netrek.org Sun Jan 8 03:27:03 2006 From: quozl at us.netrek.org (James Cameron) Date: Sun Jan 8 03:28:15 2006 Subject: [netrek-dev] New netrek client In-Reply-To: References: <1136679118.2639.2.camel@localhost.localdomain> <20060108025932.70654.qmail@web54413.mail.yahoo.com> Message-ID: <20060108092703.GA22537@us.netrek.org> On Sun, Jan 08, 2006 at 01:49:12AM -0500, Zach wrote: > Thanks. He has to add an index.html page, if you go to > http://netrekng.sf.net there is nothing there. Is that something you can manage on your own if he gives you project membership? ;-) Perhaps you could take that responsibility and make his work easier. -- James Cameron mailto:quozl@us.netrek.org http://quozl.netrek.org/ From netrek at gmail.com Sun Jan 8 03:49:13 2006 From: netrek at gmail.com (Zach) Date: Sun Jan 8 03:50:15 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060108092703.GA22537@us.netrek.org> References: <1136679118.2639.2.camel@localhost.localdomain> <20060108025932.70654.qmail@web54413.mail.yahoo.com> <20060108092703.GA22537@us.netrek.org> Message-ID: On 1/8/06, James Cameron wrote: > > Is that something you can manage on your own if he gives you project > membership? ;-) Perhaps you could take that responsibility and make > his work easier. Of course. Zach From applemansigloo at hotmail.com Sun Jan 8 20:25:00 2006 From: applemansigloo at hotmail.com (Benjamin Southall) Date: Sun Jan 8 20:26:15 2006 Subject: [netrek-dev] New netrek client In-Reply-To: Message-ID: Hi everyone, I am about halfway in porting the Makefile so that it will compile on Linux :). Any information about replacing link with ld and cl with g++, would be greatly welcomed. Thanks Benjamin Southall aka Appleman1234 :) >From: Zach >Reply-To: Netrek Development Mailing List > >To: Netrek Development Mailing List >Subject: Re: [netrek-dev] New netrek client >Date: Sun, 8 Jan 2006 04:49:13 -0500 > >On 1/8/06, James Cameron wrote: > > > > Is that something you can manage on your own if he gives you project > > membership? ;-) Perhaps you could take that responsibility and make > > his work easier. > >Of course. > >Zach > >_______________________________________________ >netrek-dev mailing list >netrek-dev@mailman.us.netrek.org >http://mailman.us.netrek.org/listinfo/netrek-dev From gregoryhermann at yahoo.com Tue Jan 17 23:55:34 2006 From: gregoryhermann at yahoo.com (Gregory Hermann) Date: Wed Jan 18 00:00:25 2006 Subject: [netrek-dev] New netrek client In-Reply-To: Message-ID: <20060118055534.40527.qmail@web54405.mail.yahoo.com> Just wanted to drop a note - New netrekng client is available. Galaxy map is now pretty accurate (still missing planet icons), sound support is in, cloak visualizations are in, a 'detail view' for planets is now in. Tractor/pressor visualizations are in, (and tractor/pressor is now keyable by shift+right mouse / shift + middle mouse) corresponding audio is now also in. Updated images will be posted shortly. (Client should now work on continuum -- Thanks Quozl!) Thanks! - Greg http://sourceforge.net/project/showfiles.php?group_id=156216 __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gregoryhermann at yahoo.com Wed Jan 18 00:25:33 2006 From: gregoryhermann at yahoo.com (Gregory Hermann) Date: Wed Jan 18 00:26:26 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060118055534.40527.qmail@web54405.mail.yahoo.com> Message-ID: <20060118062533.97185.qmail@web54409.mail.yahoo.com> New screenshot added showing 0.3: http://sourceforge.net/project/screenshots.php?group_id=156216 --- Gregory Hermann wrote: > Just wanted to drop a note - New netrekng client is > available. Galaxy map is now pretty accurate (still > missing planet icons), sound support is in, cloak > visualizations are in, a 'detail view' for planets > is > now in. Tractor/pressor visualizations are in, (and > tractor/pressor is now keyable by shift+right mouse > / > shift + middle mouse) corresponding audio is now > also > in. > > Updated images will be posted shortly. > (Client should now work on continuum -- Thanks > Quozl!) > Thanks! > - > Greg > > http://sourceforge.net/project/showfiles.php?group_id=156216 > > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam > protection around > http://mail.yahoo.com > > _______________________________________________ > netrek-dev mailing list > netrek-dev@mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From stephen.thorne at gmail.com Wed Jan 18 01:03:54 2006 From: stephen.thorne at gmail.com (Stephen Thorne) Date: Wed Jan 18 01:04:26 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060118062533.97185.qmail@web54409.mail.yahoo.com> References: <20060118055534.40527.qmail@web54405.mail.yahoo.com> <20060118062533.97185.qmail@web54409.mail.yahoo.com> Message-ID: <3e8ca5c80601172303k61826a79j@mail.gmail.com> Those screenshots are jaw dropping. -- Stephen Thorne Development Engineer From gregoryhermann at yahoo.com Wed Jan 18 22:41:17 2006 From: gregoryhermann at yahoo.com (Gregory Hermann) Date: Wed Jan 18 22:42:27 2006 Subject: [netrek-dev] New netrek client In-Reply-To: <20060118062533.97185.qmail@web54409.mail.yahoo.com> Message-ID: <20060119044117.90530.qmail@web54407.mail.yahoo.com> Did a quick update to 0.4 -- This just adds in planet detail info. (Shows armies, fuel/repair/etc.). You can get a detail view on a planet by left clicking on it in the radar, or shift-left clicking on it in the local view. Refit and plasma will hopefully be upcoming this weekend. Thanks. > > --- Gregory Hermann > wrote: > > > Just wanted to drop a note - New netrekng client > is > > available. Galaxy map is now pretty accurate > (still > > missing planet icons), sound support is in, cloak > > visualizations are in, a 'detail view' for planets > > is > > now in. Tractor/pressor visualizations are in, > (and > > tractor/pressor is now keyable by shift+right > mouse > > / > > shift + middle mouse) corresponding audio is now > > also > > in. > > > > Updated images will be posted shortly. > > (Client should now work on continuum -- Thanks > > Quozl!) > > Thanks! > > - > > Greg > > > > > http://sourceforge.net/project/showfiles.php?group_id=156216 > > > > > > > > __________________________________________________ > > Do You Yahoo!? > > Tired of spam? Yahoo! Mail has the best spam > > protection around > > http://mail.yahoo.com > > > > _______________________________________________ > > netrek-dev mailing list > > netrek-dev@mailman.us.netrek.org > > http://mailman.us.netrek.org/listinfo/netrek-dev > > > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam > protection around > http://mail.yahoo.com > > _______________________________________________ > netrek-dev mailing list > netrek-dev@mailman.us.netrek.org > http://mailman.us.netrek.org/listinfo/netrek-dev > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From vanillatrek at yahoo.com Thu Jan 19 01:10:28 2006 From: vanillatrek at yahoo.com (Zach) Date: Thu Jan 19 01:10:28 2006 Subject: [netrek-dev] Fwd: State or [sic] affairs In-Reply-To: <20060119044117.90530.qmail@web54407.mail.yahoo.com> Message-ID: <20060119071028.1783.qmail@web30413.mail.mud.yahoo.com> From: "cyberbillp" Newsgroups: rec.games.netrek Subject: State or affairs Date: 18 Jan 2006 08:46:33 -0800 I'm probing for some NeTrek info here. Perhaps some background is in order, I'll try to be brief, but I must forwarn that some of this is going to be negative. I've run a large game server for NWN for several years and have many dedicated players. Many of them come and go as their interest in NWN peaks and wanes. Recently seems more players are tiring of NWN, myself included. So I've been looking for a new game for us to play and keep our gaming experience together fresh. So....I stumbled across NeTrek. Haven't played this in about 10 years. Last time I played NeTrek I related it more to SubSpace than GEnie's Stellar Warrior, but this time I guess I looked at it differently ( I really enjoyed Stellar Warrior back in the day ). NeTrek has WinXp clients for those poor people suffering under that OS still. Plus it has a Java Client which I can run on my web site. It all looks good. The Win client from http://playnetrek.org runs great. But the Linux client is bad and won't run. I find that the Java client isn't "Blessed". This may mean I must run an unsecure server. This sounds bad. So my first question is: How "bad" is it to run a server that accepts unblessed clients? Will the game be overrun with idiots and turn the whole thing into a really bad experience or is the blessed thing just over active paranioa? On to the bad stuff. Frankly the Netrek world as far as I can see if a complete mess. Almost every blessed client I downloaded was expired. Most of the clients won't even compile under modern Linux's. Even the latest Paradise server won't compile under Slackware. The only server I can even get to run is Vanilla. I see the psycosis (sic) server is running patch level 8 and I can't even find ANY patches for download. In vanilla a robot player spawns each time the server is logged into and just sits there, inactive. A new robot is added to the game each time a player logs in. The robots can not be shot or hurt in any way. Is this a bug? Is the server setup wrong? I dunno because the server software has virtually non existant documentation. In testing, I tried taking planets, but I'm told that I can't do that in T-Mode. I learn that T-Mode means you have to have 4+4 players online. Who's the bright spark that thought that up? Isn't it more incentive to go online and actually play if you can take planets? The longer you are online playing, the more chance you have of being seen online, the more people are going to play. When you log on and half your planets are wiped out, you have a whole nights work ahead of you to catch back up. This leads me to question 2: Can NeTrek be setup to allow play like this or is T-Mode mandatory? Lastly after ALOT of searching I finally found a blessed client for Linux that actually runs. I think it's the Paradise 2000 client. This will do me for now, but how long until it expires and I'm back to looking for a client again? And from what I've seen so far that search might be a long one. I shudder to think about how hard it must be for Mac users. To summarize: http://nettrek.org is a wreck. Virtually none of the blessed clients are unexpired. The source code for the clients won't compile on half of them and if it does compile, you can't play on real servers anyways. NeTrek web sites by the dozens are full of dead links, bad/confusing info and simply out dated info. Http://playnetrek.org is good if your are a windows player. But not for linux players or server admins. I'm reluctant to start a server or start herding players players into Netrek unless I know that this is something that is really playable for a large number of people across Win/Mac/Lin platforms. Is there an actual linux Netrek server available that runs well? Which one is "standard"? What is the "standard" client for each platform (preferably the same one for all three platforms)? Even more important; where can you download blessed clients that actually run? If Netrek.org isn't being maintained, them someone needs to step forward and create a new repository of blessed clients. Digging through 15-20 years of abandoned Netrek web sites is just insurmountable for most potential players. If anyone wonders where the players are (I've read stuff like this alot), the reasons above are why. The cost of entry in time and effort is orders of magnitude to high to play a game that frankly isn't very visually appealing. This post isn't meant to knock anyones hard work. Obviously alot of effort has gone into Netrek over the years. But since I've had so much trouble getting into the game, I thought perhaps a constructive view from a total outsider might help. Maybe not. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From quozl at us.netrek.org Fri Jan 27 05:16:56 2006 From: quozl at us.netrek.org (James Cameron) Date: Fri, 27 Jan 2006 22:16:56 +1100 Subject: [netrek-dev] www.netrek.org & genocide.netrek.org Message-ID: <20060127111656.GB28132@us.netrek.org> In Dave's absence I've put a placeholder on http://www.netrek.org/ and restored what seems to be a copy of what was there on http://genocide.netrek.org/ ... though not everything seems to work. I'd heard nothing from Erik Hietbrink about http://www.netrek.org/ since his mail in January last year. Erik, are you on this list? Has anyone heard? -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From quozl at us.netrek.org Sat Jan 28 00:06:47 2006 From: quozl at us.netrek.org (James Cameron) Date: Sat, 28 Jan 2006 17:06:47 +1100 Subject: [netrek-dev] metaserver returns Message-ID: <20060128060647.GD2466@us.netrek.org> Thanks to Carlos, Dave, and Bob, the metaserver on orion.netrek.org is back. The client keys mailing address is back as well. Dave said he plans to restore the www.netrek.org content and so the temporary content may go away. -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Digital signature Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20060128/fe338bda/attachment.pgp From netrek at gmail.com Sat Jan 28 00:54:39 2006 From: netrek at gmail.com (Zach) Date: Sat, 28 Jan 2006 01:54:39 -0500 Subject: [netrek-dev] metaserver returns In-Reply-To: <20060128060647.GD2466@us.netrek.org> References: <20060128060647.GD2466@us.netrek.org> Message-ID: On 1/28/06, James Cameron wrote: > Thanks to Carlos, Dave, and Bob, the metaserver on orion.netrek.org is > back. The client keys mailing address is back as well. Dave said he > plans to restore the www.netrek.org content and so the temporary content > may go away. Great. What is the client keys address? But people are working on updating/improving the content so will Dave allow you to update the main site with the Dacs content? Zach From quozl at us.netrek.org Sun Jan 29 05:17:30 2006 From: quozl at us.netrek.org (James Cameron) Date: Sun, 29 Jan 2006 22:17:30 +1100 Subject: [netrek-dev] metaserver returns In-Reply-To: References: <20060128060647.GD2466@us.netrek.org> Message-ID: <20060129111730.GB21437@us.netrek.org> On Sat, Jan 28, 2006 at 01:54:39AM -0500, Zach wrote: > What is the client keys address? It's in the Makefile (build instructions) used by the client source code, and in the key list itself. You'll find it if you need it. > But people are working on updating/improving the content so will Dave > allow you to update the main site with the Dacs content? That's up to Dave. My work on the Darcs was only waiting for him to return, and now he has. Once he's happy that he has the original Erik-maintained content up and working, my guess is that he'll cut across to it. If he can't find a maintainer, he might ask for help. -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From netrek at gmail.com Sun Jan 29 05:34:39 2006 From: netrek at gmail.com (Zach) Date: Sun, 29 Jan 2006 06:34:39 -0500 Subject: [netrek-dev] metaserver returns In-Reply-To: <20060129111730.GB21437@us.netrek.org> References: <20060128060647.GD2466@us.netrek.org> <20060129111730.GB21437@us.netrek.org> Message-ID: On 1/29/06, James Cameron wrote: > It's in the Makefile (build instructions) used by the client source > code, and in the key list itself. You'll find it if you need it. Thanks. > That's up to Dave. My work on the Darcs was only waiting for him to > return, and now he has. Once he's happy that he has the original > Erik-maintained content up and working, my guess is that he'll cut > across to it. If he can't find a maintainer, he might ask for help. How about we have more than one mainatiner so if one is too busy or drops the ball there are other people who already have access in place to update content. Zach From tanner at real-time.com Tue Jan 31 12:08:12 2006 From: tanner at real-time.com (Bob Tanner) Date: Tue, 31 Jan 2006 12:08:12 -0600 Subject: [netrek-dev] cvs commit on sourceforge access ans syncmail problems? Message-ID: <200601311208.12600.tanner@real-time.com> I know it's been awhile for a commit to the cow repo, but I have a beta release for cow on debian sid and I wanted to commit the debian directory. $ cvs add debian Mailing netrek-vanilla-cvs at lists.sourceforge.net... Generating notification message... Generating notification message... done. Directory /cvsroot/netrek/client/cow/debian added to the repository Mailing netrek-vanilla-cvs at lists.sourceforge.net... Generating notification message... Traceback (most recent call last): File "/cvsroot/netrek/CVSROOT/syncmail", line 322, in ? main() File "/cvsroot/netrek/CVSROOT/syncmail", line 315, in main blast_mail(subject, people, specs[1:], contextlines, fromhost) File "/cvsroot/netrek/CVSROOT/syncmail", line 221, in blast_mail conn.connect(MAILHOST, MAILPORT) File "/usr/lib/python2.3/smtplib.py", line 288, in connect for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM): socket.gaierror: (-2, 'Name or service not known') Not sure if that is a sourceforge problem or a mis-config of syncmail on out part. Looking into it now. -- Bob Tanner | Phone : (952)943-8700 http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20060131/c28c2d25/attachment.pgp From tanner at real-time.com Tue Jan 31 12:18:22 2006 From: tanner at real-time.com (Bob Tanner) Date: Tue, 31 Jan 2006 12:18:22 -0600 Subject: [netrek-dev] cvs commit on sourceforge access ans syncmail problems? In-Reply-To: <200601311208.12600.tanner@real-time.com> References: <200601311208.12600.tanner@real-time.com> Message-ID: <200601311218.23457.tanner@real-time.com> On Tuesday 31 January 2006 12:08, Bob Tanner wrote: > Not sure if that is a sourceforge problem or a mis-config of syncmail on > out part. > > Looking into it now. Found the problems(!) First, syncmail was way out of date, I snarfed the recommended version and installed it into CVSROOT, of course the commit of that change failed to send an email notification (chick-n-egg problem) Next, cvs commit to cow are failing because there is no longer a netrek-cow-cvs mailing list. Entry in loginfo: ^client/cow$ $CVSROOT/CVSROOT/syncmail -u %{sVv} netrek-cow-cvs at lists.sourceforge.net Listing of mailing lists: http://sourceforge.net/mail/?group_id=968 I'm going to remove the ^client/cow entry and just let cow commits drop to the netrek-vanilla-cvs mailing list. -- Bob Tanner | Phone : (952)943-8700 http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20060131/947e8f0e/attachment.pgp From tanner at users.sourceforge.net Tue Jan 31 12:32:07 2006 From: tanner at users.sourceforge.net (Bob Tanner) Date: Tue, 31 Jan 2006 18:32:07 +0000 Subject: [netrek-dev] client/cow .cvsignore,1.3,1.4 Message-ID: Update of /cvsroot/netrek/client/cow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15422 Modified Files: .cvsignore Log Message: Ignore some of the files that cdbs creates. Index: .cvsignore =================================================================== RCS file: /cvsroot/netrek/client/cow/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- .cvsignore 21 Jun 2002 00:34:54 -0000 1.3 +++ .cvsignore 31 Jan 2006 18:32:05 -0000 1.4 @@ -24,3 +24,6 @@ rsa_box_9.c rsa_box_10.c system.mk +config.guess.cdbs-orig +config.sub.cdbs-orig + From tanner at users.sourceforge.net Tue Jan 31 12:34:08 2006 From: tanner at users.sourceforge.net (Bob Tanner) Date: Tue, 31 Jan 2006 18:34:08 +0000 Subject: [netrek-dev] client/cow system.mk.in,1.6,1.7 Message-ID: Update of /cvsroot/netrek/client/cow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16041 Modified Files: system.mk.in Log Message: cow's Makefile is pretty convoluted and under normal(?) circumstances requires 2 builds. At least under debian. Change the depends to make a 1 time build possible which makes using pbuilder easier :-) Index: system.mk.in =================================================================== RCS file: /cvsroot/netrek/client/cow/system.mk.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- system.mk.in 27 Jan 2006 09:57:27 -0000 1.6 +++ system.mk.in 31 Jan 2006 18:34:06 -0000 1.7 @@ -111,7 +111,7 @@ LFLAGS = $(EXTRALINKFLAGS) LIBRARIES = $(LMP) $(LIBS) $(EXTRALIBS) $(SDL_LIBS) $(SDL_MIXER_LIBS) -netrek: $(PMAKE) null $(ROBJ) $(MAINOBJ) $(RSAOBJ) $(INPUTOBJ) $(X11OBJ) $(WIN32OBJ) $(RANDOMOBJ) cflags.c randomize +netrek: $(RSAOBJ) $(PMAKE) null $(ROBJ) $(MAINOBJ) $(INPUTOBJ) $(X11OBJ) $(WIN32OBJ) $(RANDOMOBJ) cflags.c randomize $(CC) $(LFLAGS) -o netrek `./randomize $(ROBJ) $(RSAOBJ) $(INPUTOBJ) \ $(MAINOBJ) $(X11OBJ) $(WIN32OBJ) $(RANDOMOBJ)` $(LIBRARIES) @@ -125,7 +125,8 @@ $(LN) $(COWLIB) $(SL_LIB) $(TOUCH) done.libcow -rsa_box.c: mkkey $(SECKEYFILE) +#rsa_box.c: mkkey $(SECKEYFILE) +$(RSASRC): mkkey $(SECKEYFILE) -$(RM) $(RSASRC) ./mkkey -c -k $(SECKEYFILE) $(TOUCH) $(RSASRC) From tanner at users.sourceforge.net Tue Jan 31 12:35:04 2006 From: tanner at users.sourceforge.net (Bob Tanner) Date: Tue, 31 Jan 2006 18:35:04 +0000 Subject: [netrek-dev] client/cow Makefile,1.7,1.8 Message-ID: Update of /cvsroot/netrek/client/cow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16454 Modified Files: Makefile Log Message: Couple GNU make specific changes to make building no dep targets build by default. At least I believe the "::" does that under GNU make. Index: Makefile =================================================================== RCS file: /cvsroot/netrek/client/cow/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile 27 Jan 2006 09:57:27 -0000 1.7 +++ Makefile 31 Jan 2006 18:35:02 -0000 1.8 @@ -9,11 +9,11 @@ include $(KEYDEF) -all : netrek +all: netrek netrek: system.mk netrekI -netrekI: +netrekI:: $(MAKE) -f system.mk KEYDEF=$(KEYDEF) netrek netrek.shared: name system.mk From tanner at users.sourceforge.net Tue Jan 31 14:12:38 2006 From: tanner at users.sourceforge.net (Bob Tanner) Date: Tue, 31 Jan 2006 20:12:38 +0000 Subject: [netrek-dev] client/cow/debian control,1.2,1.3 rules,1.2,1.3 Message-ID: Update of /cvsroot/netrek/client/cow/debian In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25512/debian Modified Files: control rules Log Message: - Missed the libxt-dev Build-Depdends (pbuilder rules) - For some reason configure cannot find the X11 headers, so added the location into the configure invocation Index: rules =================================================================== RCS file: /cvsroot/netrek/client/cow/debian/rules,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- rules 31 Jan 2006 18:59:25 -0000 1.2 +++ rules 31 Jan 2006 20:12:36 -0000 1.3 @@ -30,7 +30,8 @@ include /usr/share/cdbs/1/rules/simple-patchsys.mk -DEB_CONFIGURE_EXTRA_FLAGS := --enable-unstable +DEB_CONFIGURE_EXTRA_FLAGS := --enable-unstable \ + --x-includes=/usr/X11R6/include # Generic key.def that will work for QA building # Index: control =================================================================== RCS file: /cvsroot/netrek/client/cow/debian/control,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- control 31 Jan 2006 18:59:25 -0000 1.2 +++ control 31 Jan 2006 20:12:36 -0000 1.3 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Robert J. Tanner Uploaders: James Cameron -Build-Depends: debhelper (>= 4.2.32), cdbs (>= 0.4.27), build-essential (>= 10.1), libsdl1.2-dev, libsdl-mixer1.2-dev, libgmp3-dev +Build-Depends: debhelper (>= 4.2.32), cdbs (>= 0.4.27), build-essential (>= 10.1), libsdl1.2-dev, libsdl-mixer1.2-dev, libgmp3-dev, libxt-dev Standards-Version: 3.6.2 Package: netrek-client-cow From tanner at users.sourceforge.net Tue Jan 31 14:12:38 2006 From: tanner at users.sourceforge.net (Bob Tanner) Date: Tue, 31 Jan 2006 20:12:38 +0000 Subject: [netrek-dev] client/cow config.guess,1.2,1.3 config.sub,1.2,1.3 Message-ID: Update of /cvsroot/netrek/client/cow In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25512 Modified Files: config.guess config.sub Log Message: - Missed the libxt-dev Build-Depdends (pbuilder rules) - For some reason configure cannot find the X11 headers, so added the location into the configure invocation Index: config.guess =================================================================== RCS file: /cvsroot/netrek/client/cow/config.guess,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- config.guess 20 Jun 2002 04:18:38 -0000 1.2 +++ config.guess 31 Jan 2006 20:12:35 -0000 1.3 @@ -1,9 +1,9 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -# Free Software Foundation, Inc. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2001-09-04' +timestamp='2005-08-03' # This file is free software; you can redistribute it and/or modify it [...1533 lines suppressed...] - exit 0 ;; + exit ;; c4*) echo c4-convex-bsd - exit 0 ;; + exit ;; esac fi @@ -1277,7 +1424,9 @@ the operating system you are using. It is advised that you download the most up to date version of the config scripts from - ftp://ftp.gnu.org/pub/gnu/config/ + http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess +and + http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub If the version you run ($0) is already up to date, please send the following data and any information you think might be Index: config.sub =================================================================== RCS file: /cvsroot/netrek/client/cow/config.sub,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- config.sub 20 Jun 2002 04:18:38 -0000 1.2 +++ config.sub 31 Jan 2006 20:12:36 -0000 1.3 @@ -1,9 +1,9 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2002-03-07' +timestamp='2005-07-08' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -21,14 +21,15 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. - +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. + # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # @@ -70,7 +71,7 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO @@ -83,11 +84,11 @@ while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) - echo "$timestamp" ; exit 0 ;; + echo "$timestamp" ; exit ;; --version | -v ) - echo "$version" ; exit 0 ;; + echo "$version" ; exit ;; --help | --h* | -h ) - echo "$usage"; exit 0 ;; + echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. @@ -99,7 +100,7 @@ *local*) # First pass through any local machine types. echo $1 - exit 0;; + exit ;; * ) break ;; @@ -118,7 +119,8 @@ # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in - nto-qnx* | linux-gnu* | storm-chaos* | os2-emx* | windows32-* | rtmk-nova*) + nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ + kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; @@ -144,7 +146,7 @@ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis) + -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; @@ -228,34 +230,55 @@ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ + | bfin \ | c4x | clipper \ - | d10v | d30v | dsp16xx \ - | fr30 \ + | d10v | d30v | dlx | dsp16xx \ + | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ - | m32r | m68000 | m68k | m88k | mcore \ - | mips | mips16 | mips64 | mips64el | mips64orion | mips64orionel \ - | mips64vr4100 | mips64vr4100el | mips64vr4300 \ - | mips64vr4300el | mips64vr5000 | mips64vr5000el \ - | mipsbe | mipseb | mipsel | mipsle | mipstx39 | mipstx39el \ - | mipsisa32 | mipsisa64 \ + | ip2k | iq2000 \ + | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64vr | mips64vrel \ + | mips64orion | mips64orionel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ + | ms1 \ + | msp430 \ | ns16k | ns32k \ - | openrisc | or32 \ + | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | sh | sh[34] | sh[34]eb | shbe | shle | sh64 \ - | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ + | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b \ | strongarm \ - | tahoe | thumb | tic80 | tron \ + | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xstormy16 | xtensa \ + | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; + m32c) + basic_machine=$basic_machine-unknown + ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown @@ -281,41 +304,63 @@ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ - | arm-* | armbe-* | armle-* | armv*-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ - | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c54x-* \ - | clipper-* | cydra-* \ - | d10v-* | d30v-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | fx80-* \ + | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ - | m32r-* \ + | ip2k-* | iq2000-* \ + | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | mcore-* \ - | mips-* | mips16-* | mips64-* | mips64el-* | mips64orion-* \ - | mips64orionel-* | mips64vr4100-* | mips64vr4100el-* \ - | mips64vr4300-* | mips64vr4300el-* | mipsbe-* | mipseb-* \ - | mipsle-* | mipsel-* | mipstx39-* | mipstx39el-* \ + | m88110-* | m88k-* | maxq-* | mcore-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | ms1-* \ + | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[34]-* | sh[34]eb-* | shbe-* | shle-* | sh64-* \ - | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ - | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* | tic30-* | tic54x-* | tic80-* | tron-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ - | xtensa-* \ + | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; + m32c-*) + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -332,6 +377,9 @@ basic_machine=a29k-amd os=-udi ;; + abacus) + basic_machine=abacus-unknown + ;; adobe68k) basic_machine=m68010-adobe os=-scout @@ -346,6 +394,12 @@ basic_machine=a29k-none os=-bsd ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; amdahl) basic_machine=580-amdahl os=-sysv @@ -405,12 +459,27 @@ basic_machine=j90-cray os=-unicos ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16c) + basic_machine=cr16c-unknown + os=-elf + ;; crds | unos) basic_machine=m68k-crds ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; da30 | da30-*) basic_machine=m68k-da30 ;; @@ -433,6 +502,10 @@ basic_machine=m88k-motorola os=-sysv3 ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx @@ -611,10 +684,6 @@ mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; - mmix*) - basic_machine=mmix-knuth - os=-mmixware - ;; monitor) basic_machine=m68k-rom68k os=-coff @@ -702,9 +771,12 @@ basic_machine=hppa1.1-oki os=-proelf ;; - or32 | or32-*) + openrisc | openrisc-*) basic_machine=or32-unknown - os=-coff + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson @@ -728,49 +800,55 @@ pbb) basic_machine=m68k-tti ;; - pc532 | pc532-*) + pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; - pentiumpro | p6 | 6x86 | athlon) + pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; - pentiumii | pentium2) + pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; + pentium4) + basic_machine=i786-pc + ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; - pentiumii-* | pentium2-*) + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown - ;; + ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown - ;; + ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown - ;; + ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown - ;; + ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; @@ -801,6 +879,16 @@ basic_machine=a29k-amd os=-udi ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; sequent) basic_machine=i386-sequent ;; @@ -808,6 +896,9 @@ basic_machine=sh-hitachi os=-hms ;; + sh64) + basic_machine=sh64-unknown + ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks @@ -866,7 +957,7 @@ sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; - sv1) + sv1) basic_machine=sv1-cray os=-unicos ;; @@ -874,10 +965,6 @@ basic_machine=i386-sequent os=-dynix ;; - t3d) - basic_machine=alpha-cray - os=-unicos - ;; t3e) basic_machine=alphaev5-cray os=-unicos @@ -890,6 +977,14 @@ basic_machine=tic54x-unknown os=-coff ;; + tic55x | c55x*) + basic_machine=tic55x-unknown + os=-coff + ;; + tic6x | c6x*) + basic_machine=tic6x-unknown + os=-coff + ;; tx39) basic_machine=mipstx39-unknown ;; @@ -903,6 +998,10 @@ tower | tower-32) basic_machine=m68k-ncr ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; udi29k) basic_machine=a29k-amd os=-udi @@ -924,8 +1023,8 @@ os=-vms ;; vpp*|vx|vx-*) - basic_machine=f301-fujitsu - ;; + basic_machine=f301-fujitsu + ;; vxworks960) basic_machine=i960-wrs os=-vxworks @@ -946,11 +1045,11 @@ basic_machine=hppa1.1-winbond os=-proelf ;; - windows32) - basic_machine=i386-pc - os=-windows32-msvcrt + xbox) + basic_machine=i686-pc + os=-mingw32 ;; - xps | xps100) + xps | xps100) basic_machine=xps100-honeywell ;; ymp) @@ -980,6 +1079,9 @@ romp) basic_machine=romp-ibm ;; + mmix) + basic_machine=mmix-knuth + ;; rs6000) basic_machine=rs6000-ibm ;; @@ -996,16 +1098,13 @@ we32k) basic_machine=we32k-att ;; - sh3 | sh4 | sh3eb | sh4eb) + sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sh64) - basic_machine=sh64-unknown - ;; - sparc | sparcv9 | sparcv9b) + sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; - cydra) + cydra) basic_machine=cydra-cydrome ;; orion) @@ -1020,10 +1119,6 @@ pmac | pmac-mpw) basic_machine=powerpc-apple ;; - c4x*) - basic_machine=c4x-none - os=-coff - ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; @@ -1079,18 +1174,21 @@ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ - | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \ + | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova*) + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1102,16 +1200,21 @@ ;; esac ;; + -nto-qnx*) + ;; -nto*) - os=-nto-qnx + os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; @@ -1124,6 +1227,9 @@ -opened*) os=-openedition ;; + -os400*) + os=-os400 + ;; -wince*) os=-wince ;; @@ -1145,6 +1251,9 @@ -atheos*) os=-atheos ;; + -syllable*) + os=-syllable + ;; -386bsd) os=-bsd ;; @@ -1155,7 +1264,7 @@ os=-rtmk-nova ;; -ns2 ) - os=-nextstep2 + os=-nextstep2 ;; -nsk*) os=-nsk @@ -1167,6 +1276,9 @@ -sinix*) os=-sysv4 ;; + -tpf*) + os=-tpf + ;; -triton*) os=-sysv3 ;; @@ -1194,8 +1306,17 @@ -xenix) os=-xenix ;; - -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) - os=-mint + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe ;; -none) ;; @@ -1228,11 +1349,14 @@ arm*-semi) os=-aout ;; + c4x-* | tic4x-*) + os=-coff + ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; - pdp11-*) + pdp11-*) os=-none ;; *-dec | vax-*) @@ -1271,9 +1395,15 @@ *-be) os=-beos ;; + *-haiku) + os=-haiku + ;; *-ibm) os=-aix ;; + *-knuth) + os=-mmixware + ;; *-wec) os=-proelf ;; @@ -1325,19 +1455,19 @@ *-next) os=-nextstep3 ;; - *-gould) + *-gould) os=-sysv ;; - *-highlevel) + *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; - *-sgi) + *-sgi) os=-irix ;; - *-siemens) + *-siemens) os=-sysv4 ;; *-masscomp) @@ -1406,10 +1536,16 @@ -mvs* | -opened*) vendor=ibm ;; + -os400*) + vendor=ibm + ;; -ptx*) vendor=sequent ;; - -vxsim* | -vxworks*) + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) @@ -1433,7 +1569,7 @@ esac echo $basic_machine$os -exit 0 +exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) From tanner at real-time.com Tue Jan 31 14:29:20 2006 From: tanner at real-time.com (Bob Tanner) Date: Tue, 31 Jan 2006 14:29:20 -0600 Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-1 Message-ID: <200601311429.21131.tanner@real-time.com> The beta release of cow for debian sid is in my personal repository. After someone (James?) QA build for sid and someone (James again?) QA tests the sid package, I'll make etch and sarge packages. Then I think we can announce this to r.g.n. and have a happy(?) community. Carlos, if you are on this list, these clients are blessed with my key that I used to create the redhat 7.2 and redhat 7.3 rpms, which I assume is still valid and circulating in metasever? Format: 1.7 Date: Fri, 27 Jan 2006 01:37:21 -0600 Source: netrek-client-cow Binary: netrek-client-cow Architecture: source i386 Version: 3.01pl0-1 Distribution: unstable Urgency: low Maintainer: Robert J. Tanner Changed-By: Robert J. Tanner Description: netrek-client-cow - netrek Client Changes: netrek-client-cow (3.01pl0-1) unstable; urgency=low . * Initial release Files: b8c3bd6510d850a4d16b0d683514b59a 689 non-free/x11 optional netrek-client-cow_3.01pl0-1.dsc 7414faea91183f33d7098be5ea10fc5d 1466741 non-free/x11 optional netrek-client-cow_3.01pl0-1.tar.gz 59cb2d6ff48e4772ae07e3becf518547 241238 non-free/x11 optional netrek-client-cow_3.01pl0-1_i386.deb -- Bob Tanner | Phone : (952)943-8700 http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20060131/0c050431/attachment.pgp From quozl at us.netrek.org Tue Jan 31 15:27:07 2006 From: quozl at us.netrek.org (James Cameron) Date: Wed, 1 Feb 2006 08:27:07 +1100 Subject: [netrek-dev] client/cow/debian control,1.2,1.3 rules,1.2,1.3 In-Reply-To: <200601312015.k0VKFC4u022842@enchanter.real-time.com> References: <200601312015.k0VKFC4u022842@enchanter.real-time.com> Message-ID: <20060131212707.GA5492@us.netrek.org> On Tue, Jan 31, 2006 at 08:12:38PM +0000, Bob Tanner wrote: > - For some reason configure cannot find the X11 headers, so added the > location into the configure invocation Had that myself, configure was looking for X11/Intrinsic.h which is in package libxt-dev. The source wasn't using X11/Intrinsic.h though, as far as I could tell. -- James Cameron mailto:quozl at us.netrek.org http://quozl.netrek.org/ From netrek at gmail.com Tue Jan 31 21:04:02 2006 From: netrek at gmail.com (Zach) Date: Tue, 31 Jan 2006 22:04:02 -0500 Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-1 In-Reply-To: <200601311429.21131.tanner@real-time.com> References: <200601311429.21131.tanner@real-time.com> Message-ID: Bob's been busy! Zach From tanner at real-time.com Tue Jan 31 21:42:19 2006 From: tanner at real-time.com (Bob Tanner) Date: Tue, 31 Jan 2006 21:42:19 -0600 Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-1 In-Reply-To: <20060201025458.GA10831@us.netrek.org> References: <200601311429.21131.tanner@real-time.com> <20060201025458.GA10831@us.netrek.org> Message-ID: <200601312142.20263.tanner@real-time.com> On Tuesday 31 January 2006 20:54, James Cameron wrote: > > The beta release of cow for debian sid is in my personal repository. > > Where's that? http://faq.eqenchanters.org, look left side, netrek as one of the projects. Pasting in here as well. Where can I download the netrek cow client Debian packages? Add the following to your /etc/apt/sources.list Unstable (sid) deb ftp://ftp.real-time.com/linux/real-time sid custom main non-free contrib deb-src ftp://ftp.real-time.com/linux/real-time sid custom main non-free contrib Stable (sarge) deb ftp://ftp.real-time.com/linux/real-time sarge custom main non-free contrib deb-src ftp://ftp.real-time.com/linux/real-time sarge custom main non-free contrib Testing (etch) deb ftp://ftp.real-time.com/linux/real-time etch custom main non-free contrib deb-src ftp://ftp.real-time.com/linux/real-time etch custom main non-free contrib Installation % sudo apt-get update % sudo apt-get install netrek-client-cow -- Bob Tanner | Phone : (952)943-8700 http://www.real-time.com, Minnesota, Linux | Fax : (952)943-8500 Key fingerprint = AB15 0BDF BCDE 4369 5B42 1973 7CF1 A709 2CC1 B288 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/netrek-dev/attachments/20060131/4ac34d55/attachment.pgp From netrek at gmail.com Tue Jan 31 23:34:45 2006 From: netrek at gmail.com (Zach) Date: Wed, 1 Feb 2006 00:34:45 -0500 Subject: [netrek-dev] Uploaded netrek-client-cow 3.01pl0-1 In-Reply-To: <200601312142.20263.tanner@real-time.com> References: <200601311429.21131.tanner@real-time.com> <20060201025458.GA10831@us.netrek.org> <200601312142.20263.tanner@real-time.com> Message-ID: Do you have instructions on how you packaged the CoW client for Debian? If so it would be helpful for those interested in packaging other netrek clients for Debian release. Thanks, Zach On 1/31/06, Bob Tanner wrote: > > Where can I download the netrek cow client Debian packages? > Add the following to your /etc/apt/sources.list > > Unstable (sid) > deb ftp://ftp.real-time.com/linux/real-time sid custom main non-free contrib > deb-src ftp://ftp.real-time.com/linux/real-time sid custom main non-free > contrib