PDA

View Full Version : ShowEQ 5.0.0.18 tarball Available via Files Section



quackrabbit
03-06-2005, 05:15 PM
I don't have access to post in the news section, so I'll just post this here for now.

ShowEQ 5.0.0.18 Tarball Released via Files Section.

It works against 3/3/05 EQ Live.

Here is an excerpt from the ChangeLog file:

BBobcat (02/20/05)
-----------------------
+ Updated version to 5.0.0.18
+ Included Purple's "-purple2" patch
+ + Deal with a now compressed protocol
+ + Increased buff slots (25)
+ + Updated world and game opcodes
+ + Updated structures
+ + Logging and console message clean up
+ + Memory cleanups
+ Included uRit1u2CBBA= zones.h update (For DoN zones)

purple (02/08/05)
-----------------------
+ Updated version to 5.0.0.17
+ Updated net layer to support EQ's new net protocol
+ First pass at new zoneopcodes.xml and worldopcodes.xml. Most things work.
+ Cleaned up everquest.h offset comments and fixed a couple struct changes
+ Edge case cleanup for con colors in player.cpp (uRit1u2CBBA)
+ More significant digits on runspeed (uRit1u2CBBA)
+ OP_SimpleMessage now is sizechecktype="match" since it's not variable length
+ Added struct for consenting with message in message shell
+ Added struct for environmental damage
+ Regenerated staticspells.h from latest spells_en.txt

The tarball for this release can be found in the ShowEQ Files section.

showeq-5.0.0.18.tar.bz2 (http://prdownloads.sourceforge.net/seq/showeq-5.0.0.18.tar.bz2?download)

To configure, compile, and install ShowEQ itself from the tar file, all you have to do is the following:
Code:

$ tar xjvf showeq-5.0.0.18.tar.bz2
$ cd showeq-5.0.0.18
$ ./configure
$ make
$ make install

Directly building from CVS is still supported, but deprecated for non-developers.

Enjoy!

tanner
03-06-2005, 11:22 PM
See http://www.showeq.net/forums/showpost.php?p=38351&postcount=5 for more details.


Format: 1.7
Date: Sun, 6 Mar 2005 22:44:13 -0600
Source: showeq
Binary: showeq-dev showeq showeq-doc
Architecture: source i386 all
Version: 5.0.0.18-0.2
Distribution: unstable
Urgency: low
Maintainer: Bob Tanner <[email protected]>
Changed-By: Robert J. Tanner <[email protected]>
Description:
showeq - realtime packet analyzer for Everquest
showeq-dev - development tools for ShowEQ
showeq-doc - documentation for showeq
Changes:
showeq (5.0.0.18-0.2) unstable; urgency=low
.
* Removed build-essential from Build-Depends
Files:
a1d67224fe1b5c6241cba22b4ed698e2 711 net optional showeq_5.0.0.18-0.2.dsc
6dd95b8a05ffa9b7483624c4cae9529c 1022980 net optional showeq_5.0.0.18-0.2.tar.gz
7680f19ac7b7679a55a4b34529986a81 74710 doc optional showeq-doc_5.0.0.18-0.2_all.deb
70807885f95b0ef96d947db77191bff9 6607124 net optional showeq_5.0.0.18-0.2_i386.deb
4138b2da2050ecd621353c1c63104ef0 80780 net optional showeq-dev_5.0.0.18-0.2_i386.deb

I<3EQ
03-07-2005, 07:24 AM
System:
- Mandrake 10.0
- Autoconf 2.59
- Automake 1.7 and 1.8 (problem occured with both)

Build problems:

- ./configure runs without error
- make errors with:


[user@localhost showeq-5.0.0.18]$ make
make all-recursive
make[1]: Entering directory `/home/dave/seqtmp/showeq-5.0.0.18'
Making all in src
make[2]: Entering directory `/home/dave/seqtmp/showeq-5.0.0.18/src'
source='main.cpp' object='main.o' libtool=no \
depfile='.deps/main.Po' tmpdepfile='.deps/main.TPo' \
depmode=none /bin/sh ../depcomp \
g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/lib/qt3//include -I/usr/X11R6/include -DPKGDATADIR=\"/usr/local/share/showeq/\" -I/usr/include/pcap -D_REENTRANT -O2 -Wall -g -ggdb -DDEBUG -finline-functions -DQT_THREAD_SUPPORT=1 -DDISPLAY_ICONS=false -DICON_DIR=\"/eq-icons/\" -g -O2 -c -o main.o `test -f 'main.cpp' || echo './'`main.cpp
../depcomp: ../depcomp: No such file or directory
make[2]: *** [main.o] Error 127
make[2]: Leaving directory `/home/dave/seqtmp/showeq-5.0.0.18/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/dave/seqtmp/showeq-5.0.0.18'
make: *** [all] Error 2


What I did to fix it:
- In my showeq-5.0.0.18 directory, I ran the following commands:


aclocal
automake -a
make


On a side note, before trying this, I tried to regenerate everything by using make -f Makefile.dist all. It errored out with the same sort of problems cvs had with certain versions of automake (versions 1.6 and 1.9 iirc). I didn't have time to look at it too closely (I'm at work atm) but it looked the same problems with doxygen.

Also, this produces a working build environment. Make runs and produces an executable. I can only assume it works because I won't be able to test it until I get home tonight.

As always, thanks for all your hard work. :)

quackrabbit
03-07-2005, 09:55 AM
Hrmm, I'm getting the same build problems from the tarballs that are built from the "make dist-all" process. I'm using Gentoo. So it's not distro specific.

Hopefully I'll catch Zaphod in IRC in the next few days to get this worked out before the next release.

In the mean time I'm sure that most have gotten 5.0.0.18 from CVS and already have it working.

CeleSEQ
03-08-2005, 10:46 AM
I'm a bit confused Quackrabbit... just to clarify, has there been any new commits in the past week or so, or were you just doing this to get a tarball out there more officially?

purple
03-08-2005, 11:15 AM
cvs hasn't changed since 5.0.0.18. I think Quack was just trying to make it so that there was a released tarball available so all the people who don't know how debug their own automake/autoconf/libtool problems stop complaining.

If he has sf access, that's actually gonna be a big help. Now you just need to teach him how to properly make the tarball, CeleSEQ!

quackrabbit
03-08-2005, 12:54 PM
What purple said.

I was just trying to be helpful, but it backfired. I'm hoping to catch Z in IRC, but so far no luck.

quackrabbit
03-08-2005, 01:44 PM
Ok, I've talked w/ CeleSEQ in IRC and I've re-created a new showeq-5.0.0.18.tar.bz2 and re-attached it to the files section.

You can download the newest showeq-5.0.0.18.tar.bz2 (http://prdownloads.sourceforge.net/seq/showeq-5.0.0.18.tar.bz2?download) (only if you can't get CVS to work for you) from here (http://prdownloads.sourceforge.net/seq/showeq-5.0.0.18.tar.bz2?download). The new md5sum is: 273e871b5166d73ae0e8ac32e28539db showeq-5.0.0.18.tar.bz2.

ralkrasta
03-09-2005, 01:30 AM
I have tried CVS and I have now tried this Tarball I went and updated my automake autoconf etc. files from that other thread. I get errors during make. Is this tarball all I need? Or do I need both CVS and tarball?

ralkrasta
03-09-2005, 03:10 AM
Hmmm... I went through the ./configure make and make install process again and somehow it just worked this time. Weird. :p

quackrabbit
03-09-2005, 07:47 AM
Cool, glad to hear it worked.

For clarification, the tarball is an alternative to using CVS - you only need to use one or the other.