You are not logged in.

#1 2008-05-30 17:16:32

trotos
Member
Registered: 2008-05-29
Posts: 28

[Request] Sparky 3.113

Need this one for now, actualy I might need more biology related programs since I'm setting up an Arch for the Institute, hpfully I'll get some help,


Linux 2.6.9     x86     sparky-linux2.6.tar.gz     3.113     10/13/06

the worst part is the x86 since I have a x64 arch installation. It will not be to much of a problem to setup a x686i if it cannot be done eitherwise.

http://www.cgl.ucsf.edu/home/sparky/

P.S. I'm trully happy that I was able to find molmol in AUR!!!

Offline

#2 2008-05-30 20:29:15

Stefan Husmann
Member
From: Germany
Registered: 2007-08-07
Posts: 1,391

Re: [Request] Sparky 3.113

This package does not use autoconf/automake and has no configure script. It is very difficult to build.

Offline

#3 2008-05-31 11:17:36

trotos
Member
Registered: 2008-05-29
Posts: 28

Re: [Request] Sparky 3.113

....those are bad news...
So one question thow is irelevant, if I use an alternate UNIX O/S as openSolaris will I be able to use it?

Thank you for your time

Offline

#4 2008-05-31 12:26:55

ghostHack
Member
From: Bristol UK
Registered: 2008-02-29
Posts: 261

Re: [Request] Sparky 3.113

Just because a project does not have a configure script does not mean that it is difficult to build, this one is actually quite easy.  The provided build script is only really used to define the make options for different platforms and then call 'make', since we know our platform we can bypass the build script and specify the make options directly.  Try the following PKGBUILD

pkgname=sparky
pkgver=3.115
pkgrel=1
pkgdesc="NMR assignment and integration software"
arch=(i686 x86_64)
url="http://www.cgl.ucsf.edu/home/sparky/"
license=('Custom')
depends=('tk' 'tcl' 'python' 'tcsh')
makedepends=('gcc' 'gcc-libs')
source=(http://www.cgl.ucsf.edu/home/sparky/distrib-$pkgver/$pkgname-source-$pkgver.tar.gz)
md5sums=('cbc10f03e823b38969822353687b8aa0')

build() {

    cd $startdir/src/sparky
    mkdir sparky-obj

    # compile sparky with python support
    make SPARKY=$startdir/src/$pkgname \
        SPARKY_OBJ=$startdir/src/$pkgname/sparky-obj \
        SPARKY_SCRIPT=sparky PYTHON_DIR=$startdir/src/$pkgname/python \
        PYTHON_PREFIX=/usr PYTHON_VERSION=2.5 TCLTK_VERSION=8.5 TK_PREFIX=/usr \
        CFLAGS='-march=native -mtune=native -O2 -pipe -fPIC' \
        CXXFLAGS="-march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long" \
        EXTRALIBS=-ldl LDSHARED=-shared \
        STANDARDS="-D_POSIX_SOURCE -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED -D_FILE_OFFSET_BITS=64"

    # 'install' sparky to /opt
    mkdir $startdir/pkg/opt

    make SPARKY=$startdir/src/$pkgname \
        SPARKY_OBJ=$startdir/src/$pkgname/sparky-obj \
        SPARKY_INSTALL=$startdir/pkg/opt/$pkgname \
        SPARKY_SCRIPT=sparky \
        PYTHON_PREFIX=/usr TCLTK_VERSION=8.5 TK_PREFIX=/usr \
        install

    # sparky expects the csh interpreter to be in /bin, on arch is is in /usr/bin so make minor
    # change to the sparky run-script
    sed -i s@bin/csh@usr/bin/csh@ $startdir/pkg/opt/sparky/bin/sparky
    # the sparky script also expects tk8.4 but we have 8.5
    sed -i s/8.4/8.5/ $startdir/pkg/opt/sparky/bin/sparky
}

I might not have captured all the dependencies so let me know if you have trouble.

EDIT: The original author expects sparky to be installed all together in /usr/local which is why I have put it in /opt rather than try to split it up.  You may want to add /opt/sparky/bin to your user's $PATH

Last edited by ghostHack (2008-05-31 12:29:49)

Offline

#5 2008-06-02 07:33:27

trotos
Member
Registered: 2008-05-29
Posts: 28

Re: [Request] Sparky 3.113

awesome

I'll try it and provide some info. Also it will be good if I confirm installation to Apply it to the AUR repositions(?).

Offline

#6 2008-06-02 15:50:47

trotos
Member
Registered: 2008-05-29
Posts: 28

Re: [Request] Sparky 3.113

So the progress, akkording to your

pacman -S tcsh
resolving dependencies...
looking for inter-conflicts...

Targets: tcsh-6.15.01-2

Total Download Size:    0.24 MB
Total Installed Size:   0.45 MB

Proceed with installation? [Y/n] Y
:: Retrieving packages from extra...
 tcsh-6.15.01-2-x86_64    242.3K  156.0K/s 00:00:02 [##############################################################] 100%
checking package integrity...
(1/1) checking for file conflicts                   [##############################################################] 100%
(1/1) installing tcsh                               [##############################################################] 100%
updating /etc/shells... done.
pacman -S tk tcl
resolving dependencies...
looking for inter-conflicts...

Targets: tcl-8.5.2-1  tk-8.5.2-1

Total Download Size:    4.00 MB
Total Installed Size:   8.58 MB

Proceed with installation? [Y/n] Y
:: Retrieving packages from extra...
 tcl-8.5.2-1-x86_64         2.2M  428.7K/s 00:00:05 [##############################################################] 100%
 tk-8.5.2-1-x86_64       1887.7K  442.5K/s 00:00:04 [##############################################################] 100%
checking package integrity...
(2/2) checking for file conflicts                   [##############################################################] 100%
(1/2) installing tcl                                [##############################################################] 100%
(2/2) installing tk                                 [##############################################################] 100%

then stored the file sparky-source-3.115.tar.gz with the PKGBUILD you intoduced, into a common folder did makepkg as:

makepkg
==> Making package: sparky 3.115-1  (Mon Jun  2 18:33:39 EEST 2008)
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
  -> Found sparky-source-3.115.tar.gz in build dir
==> Validating source files with md5sums...
    sparky-source-3.115.tar.gz ... Passed
==> Extracting Sources...
  -> bsdtar -x -f sparky-source-3.115.tar.gz
==> Entering fakeroot environment...
==> Starting build()...
cd /home/trotos/Desktop/sparky/src/sparky/sparky-obj && make -f /home/trotos/Desktop/sparky/src/sparky/c++/Makefile -e all
make[1]: Entering directory `/home/trotos/Desktop/sparky/src/sparky/sparky-obj'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -I/usr/include/python2.5 -I/usr/lib/python2.5/config -I/usr/include -c /home/trotos/Desktop/sparky/src/sparky/c++/python.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/assignguess.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/assigncopy.cc
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc: In function 'Notifier_Callback* notifier_callback(Session&, const Stringy&, PyObject*)':
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc:743: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc:743: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc:743: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc:743: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc:743: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc:743: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc:743: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc: In function 'PyObject* python_none()':
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc:2887: warning: the address of '_Py_NoneStruct' will never be NULL
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/attacheddata.cc
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc: In member function 'PyObject* Attribute_Method::setattr(PyObject*, PyObject*)':
/home/trotos/Desktop/sparky/src/sparky/c++/python.cc:4026: warning: suggest explicit braces to avoid ambiguous 'else'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/atom.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/axismap.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/binaryIO.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/blockfile.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/brukerfile.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/color.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/command.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/condition.cc
/home/trotos/Desktop/sparky/src/sparky/c++/command.cc: In function 'void add_standard_menu_accelerators(Command_Dispatcher&)':
/home/trotos/Desktop/sparky/src/sparky/c++/command.cc:287: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/contour.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/contourplane.cc
/home/trotos/Desktop/sparky/src/sparky/c++/contour.cc: In function 'void draw_contours(Spectrum*, const SRegion&, const Contour_Levels&, const Contour_Levels&, bool, Drawing_Routines&, Contour_Cache*, Wait*)':
/home/trotos/Desktop/sparky/src/sparky/c++/contour.cc:112: warning: suggest explicit braces to avoid ambiguous 'else'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/contourstream.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/crosspeak.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/dataregion.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/felixfile.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/format.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/grid.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/group.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/integrate.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/label.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/line.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/linefit.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/lusolve.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/list.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/memalloc.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/memcache.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/model.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/molecule.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/notifier.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/nmrdata.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/num.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/objectid.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/ornament.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/paths.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/peak.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/peakgp.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/peakpick.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/print.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/project.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/rectangle.cc
/home/trotos/Desktop/sparky/src/sparky/c++/print.cc:107: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/print.cc:107: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/print.cc: In function 'void ornament_print_region(FILE*, View*, Rectangle, double, double, bool, bool, bool)':
/home/trotos/Desktop/sparky/src/sparky/c++/print.cc:1354: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/project.cc: In member function 'void Project::unsynchronize_view_axis(const view_axis&)':
/home/trotos/Desktop/sparky/src/sparky/c++/project.cc:409: warning: suggest explicit braces to avoid ambiguous 'else'
/home/trotos/Desktop/sparky/src/sparky/c++/project.cc: In member function 'CrossPeak* Project::single_peak_selected()':
/home/trotos/Desktop/sparky/src/sparky/c++/project.cc:993: warning: suggest explicit braces to avoid ambiguous 'else'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/region.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/reporter.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/resonance.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/savefile.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/session.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/simplex.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/spectrum.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/spectrumdata.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/spoint.cc
/home/trotos/Desktop/sparky/src/sparky/c++/spectrum.cc:66: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/spectrum.cc:66: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/spectrum.cc:66: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/stringc.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/subarray.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/system-unix.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/table.cc
/home/trotos/Desktop/sparky/src/sparky/c++/stringc.cc:19: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc
In file included from /home/trotos/Desktop/sparky/src/sparky/c++/system-unix.cc:25:
/home/trotos/Desktop/sparky/src/sparky/c++/system-all.cc: In function 'Stringy tilde_expand(const Stringy&)':
/home/trotos/Desktop/sparky/src/sparky/c++/system-all.cc:210: warning: suggest explicit braces to avoid ambiguous 'else'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiassign.cc
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1239: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1239: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1240: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1240: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1240: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1240: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1241: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1241: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1242: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1242: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1243: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1243: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1243: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1244: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1244: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1244: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1244: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsffile.cc:1247: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uiassign.cc: In constructor 'assignment_dialog::assignment_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiassign.cc:127: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiassigncopy.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiassigncopy.cc: In constructor 'assignment_copy_dialog::assignment_copy_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiassigncopy.cc:72: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uicolor.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uicomponents.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uicontour.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uicolor.cc: In constructor 'color_dialog::color_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uicolor.cc:62: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uicscale.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uicontour.cc: In constructor 'contour_dialog::contour_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uicontour.cc:85: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uidatalocation.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uidialog.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uidrawing.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uidatalocation.cc: In constructor 'data_location_dialog::data_location_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uidatalocation.cc:54: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiepanel.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uifile.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiguess.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uihelp.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiintegrate.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiguess.cc: In constructor 'guess_dialog::guess_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiguess.cc:80: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uilabel.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uimain.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiintegrate.cc: In constructor 'integration_dialog::integration_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiintegrate.cc:91: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uilabel.cc: In constructor 'label_dialog::label_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uilabel.cc:97: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uimenu.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uimidas.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uimode.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uimidas.cc: In constructor 'midas_dialog::midas_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uimidas.cc:140: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uinote.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiornament.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uinote.cc: In constructor 'note_dialog::note_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uinote.cc:55: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiornamentsize.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiornament.cc: In constructor 'ornament_dialog::ornament_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiornament.cc:100: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uiornament.cc:109: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uiornamentsize.cc: In constructor 'ornament_size_dialog::ornament_size_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiornamentsize.cc:68: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uioverlay.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uipeak.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uioverlay.cc: In constructor 'overlay_dialog::overlay_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uioverlay.cc:55: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uipkpanel.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uipeak.cc: In constructor 'peak_list_dialog::peak_list_dialog(Session&, const List&, const Peak_List_Options&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uipeak.cc:180: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uipeak.cc: In static member function 'static void peak_list_dialog::ornaments_changed_cb(void*, void*)':
/home/trotos/Desktop/sparky/src/sparky/c++/uipeak.cc:237: warning: suggest explicit braces to avoid ambiguous 'else'
/home/trotos/Desktop/sparky/src/sparky/c++/uipeak.cc: In function 'View* preferred_view(Session&, Spectrum*)':
/home/trotos/Desktop/sparky/src/sparky/c++/uipeak.cc:384: warning: suggest explicit braces to avoid ambiguous 'else'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uipick.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiplop.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uipick.cc: In constructor 'pick_dialog::pick_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uipick.cc:71: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uiplop.cc: In constructor 'peak_list_options_dialog::peak_list_options_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiplop.cc:186: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uipredefined.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uipredefined.cc: In constructor 'predefined_resonance_dialog::predefined_resonance_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uipredefined.cc:58: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uipreference.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiprint.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uipreference.cc: In constructor 'preference_dialog::preference_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uipreference.cc:56: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uiprint.cc: In constructor 'print_dialog::print_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiprint.cc:101: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uiprint.cc: In static member function 'static void print_dialog::format_cb(void*, void*, void*)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiprint.cc:156: warning: suggest explicit braces to avoid ambiguous 'else'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiregion.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uirename.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiregion.cc: In constructor 'region_dialog::region_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiregion.cc:107: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uiregion.cc:113: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uiregion.cc:120: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uirename.cc: In constructor 'rename_dialog::rename_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uirename.cc:100: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiresonances.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uirpanel.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiresonances.cc: In constructor 'resonance_list_dialog::resonance_list_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiresonances.cc:79: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiscale.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uishifts.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uislice.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uishifts.cc: In constructor 'resonance_table_dialog::resonance_table_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uishifts.cc:110: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uispectrum.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uisync.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uispectrum.cc: In constructor 'spectrum_dialog::spectrum_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uispectrum.cc:92: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/uisync.cc: In constructor 'sync_dialog::sync_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uisync.cc:68: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiview.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiviewopt.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiview.cc: In member function 'virtual void View::buttonup(double, double)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiview.cc:913: warning: suggest explicit braces to avoid ambiguous 'else'
/home/trotos/Desktop/sparky/src/sparky/c++/uiview.cc: In member function 'virtual void View::drag(double, double)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiview.cc:1084: warning: suggest explicit braces to avoid ambiguous 'else'
/home/trotos/Desktop/sparky/src/sparky/c++/uiviewopt.cc: In constructor 'view_dialog::view_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiviewopt.cc:89: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiviewdepth.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiviewdepth.cc: In constructor 'view_depth_dialog::view_depth_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiviewdepth.cc:74: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiviewlist.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiviewwin.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiviewlist.cc: In constructor 'hide_dialog::hide_dialog(Session&)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiviewlist.cc:71: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/uiwait.cc
/home/trotos/Desktop/sparky/src/sparky/c++/uiviewwin.cc: In member function 'void View_Window::show_view(bool)':
/home/trotos/Desktop/sparky/src/sparky/c++/uiviewwin.cc:262: warning: suggest explicit braces to avoid ambiguous 'else'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/undo.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/utility.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -I/usr/include -c /home/trotos/Desktop/sparky/src/sparky/c++/winsystem-unix.cc
gcc -march=native -mtune=native -O2 -pipe -fPIC -I/usr/include -I/usr/include/python2.5 -I/usr/lib/python2.5/config -c /home/trotos/Desktop/sparky/src/sparky/c++/_tkinter.c
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/main.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/ucsfdata.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/nihfile.cc
/home/trotos/Desktop/sparky/src/sparky/c++/ucsfdata.cc: In function 'int main(int, char**)':
/home/trotos/Desktop/sparky/src/sparky/c++/ucsfdata.cc:129: warning: suggest explicit braces to avoid ambiguous 'else'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsfdata.cc: In function 'bool parse_subregion(int, char**, IRegion*)':
/home/trotos/Desktop/sparky/src/sparky/c++/ucsfdata.cc:279: warning: suggest explicit braces to avoid ambiguous 'else'
/home/trotos/Desktop/sparky/src/sparky/c++/ucsfdata.cc: In function 'bool parse_cell_size(int, char**, IPoint*)':
/home/trotos/Desktop/sparky/src/sparky/c++/ucsfdata.cc:302: warning: suggest explicit braces to avoid ambiguous 'else'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/pipe2ucsf.cc
/home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc: In function 'bool read_transmitter_frequency(const procpar&, const Stringy&, double*)':
/home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc:540: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc:540: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc:540: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc:540: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc:541: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc:541: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc:541: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/varianfile.cc:541: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/pipe2ucsf.cc:33: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/vnmr2ucsf.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/bruk2ucsf.cc
/home/trotos/Desktop/sparky/src/sparky/c++/vnmr2ucsf.cc:33: warning: deprecated conversion from string constant to 'char*'
/home/trotos/Desktop/sparky/src/sparky/c++/bruk2ucsf.cc:34: warning: deprecated conversion from string constant to 'char*'
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/peaks2ucsf.cc
g++ -march=native -mtune=native -O2 -pipe -fPIC -Wall -O -ansi -pedantic -Wno-long-long -c /home/trotos/Desktop/sparky/src/sparky/c++/matrix2ucsf.cc
g++ -shared -o spy.so python.o assignguess.o assigncopy.o attacheddata.o atom.o axismap.o binaryIO.o blockfile.o brukerfile.o color.o command.o condition.o contour.o contourplane.o contourstream.o crosspeak.o dataregion.o felixfile.o format.o grid.o group.o integrate.o label.o line.o linefit.o lusolve.o list.o memalloc.o memcache.o model.o molecule.o notifier.o nmrdata.o num.o objectid.o ornament.o paths.o peak.o peakgp.o peakpick.o print.o project.o rectangle.o region.o reporter.o resonance.o savefile.o session.o simplex.o spectrum.o spectrumdata.o spoint.o stringc.o subarray.o system-unix.o table.o ucsffile.o uiassign.o uiassigncopy.o uicolor.o uicomponents.o uicontour.o uicscale.o uidatalocation.o uidialog.o uidrawing.o uiepanel.o uifile.o uiguess.o uihelp.o uiintegrate.o uilabel.o uimain.o uimenu.o uimidas.o uimode.o uinote.o uiornament.o uiornamentsize.o uioverlay.o uipeak.o uipkpanel.o uipick.o uiplop.o uipredefined.o uipreference.o uiprint.o uiregion.o uirename.o uiresonances.o uirpanel.o uiscale.o uishifts.o uislice.o uispectrum.o uisync.o uiview.o uiviewopt.o uiviewdepth.o uiviewlist.o uiviewwin.o uiwait.o undo.o utility.o winsystem-unix.o  -L/usr/lib -ltk8.5 -ltcl8.5 -lX11 -lm -ldl
/home/trotos/Desktop/sparky/src/sparky/c++/peaks2ucsf.cc:116: warning: deprecated conversion from string constant to 'char*'
g++ -shared -o _tkinter.so _tkinter.o  -L/usr/lib -ltk8.5 -ltcl8.5 -lX11
g++ -o sparky-no-python main.o assignguess.o assigncopy.o attacheddata.o atom.o axismap.o binaryIO.o blockfile.o brukerfile.o color.o command.o condition.o contour.o contourplane.o contourstream.o crosspeak.o dataregion.o felixfile.o format.o grid.o group.o integrate.o label.o line.o linefit.o lusolve.o list.o memalloc.o memcache.o model.o molecule.o notifier.o nmrdata.o num.o objectid.o ornament.o paths.o peak.o peakgp.o peakpick.o print.o project.o rectangle.o region.o reporter.o resonance.o savefile.o session.o simplex.o spectrum.o spectrumdata.o spoint.o stringc.o subarray.o system-unix.o table.o ucsffile.o uiassign.o uiassigncopy.o uicolor.o uicomponents.o uicontour.o uicscale.o uidatalocation.o uidialog.o uidrawing.o uiepanel.o uifile.o uiguess.o uihelp.o uiintegrate.o uilabel.o uimain.o uimenu.o uimidas.o uimode.o uinote.o uiornament.o uiornamentsize.o uioverlay.o uipeak.o uipkpanel.o uipick.o uiplop.o uipredefined.o uipreference.o uiprint.o uiregion.o uirename.o uiresonances.o uirpanel.o uiscale.o uishifts.o uislice.o uispectrum.o uisync.o uiview.o uiviewopt.o uiviewdepth.o uiviewlist.o uiviewwin.o uiwait.o undo.o utility.o winsystem-unix.o  -L/usr/lib -ltk8.5 -ltcl8.5 -lX11 -lm -ldl
g++ -o ucsfdata ucsfdata.o binaryIO.o blockfile.o brukerfile.o list.o memalloc.o memcache.o nihfile.o nmrdata.o num.o spoint.o subarray.o stringc.o system-unix.o table.o ucsffile.o utility.o varianfile.o  -lm -ldl
g++ -o pipe2ucsf pipe2ucsf.o binaryIO.o blockfile.o brukerfile.o list.o memalloc.o memcache.o nihfile.o nmrdata.o num.o spoint.o subarray.o stringc.o system-unix.o table.o ucsffile.o utility.o varianfile.o  -lm -ldl
system-unix.o: In function `temporary_file_name()':
system-unix.cc:(.text+0x146a): warning: the use of `tmpnam' is dangerous, better use `mkstemp'
g++ -o vnmr2ucsf vnmr2ucsf.o binaryIO.o blockfile.o brukerfile.o list.o memalloc.o memcache.o nihfile.o nmrdata.o num.o spoint.o subarray.o stringc.o system-unix.o table.o ucsffile.o utility.o varianfile.o  -lm -ldl
system-unix.o: In function `temporary_file_name()':
system-unix.cc:(.text+0x146a): warning: the use of `tmpnam' is dangerous, better use `mkstemp'
g++ -o bruk2ucsf bruk2ucsf.o binaryIO.o blockfile.o brukerfile.o list.o memalloc.o memcache.o nihfile.o nmrdata.o num.o spoint.o subarray.o stringc.o system-unix.o table.o ucsffile.o utility.o varianfile.o  -lm -ldl
system-unix.o: In function `temporary_file_name()':
system-unix.cc:(.text+0x146a): warning: the use of `tmpnam' is dangerous, better use `mkstemp'
g++ -o peaks2ucsf peaks2ucsf.o binaryIO.o blockfile.o brukerfile.o list.o memalloc.o memcache.o nihfile.o nmrdata.o num.o spoint.o subarray.o stringc.o system-unix.o table.o ucsffile.o utility.o varianfile.o  -lm -ldl
system-unix.o: In function `temporary_file_name()':
system-unix.cc:(.text+0x146a): warning: the use of `tmpnam' is dangerous, better use `mkstemp'
g++ -o matrix2ucsf matrix2ucsf.o binaryIO.o blockfile.o brukerfile.o list.o memalloc.o memcache.o nihfile.o nmrdata.o num.o spoint.o subarray.o stringc.o system-unix.o table.o ucsffile.o utility.o varianfile.o  -lm -ldl
system-unix.o: In function `temporary_file_name()':
system-unix.cc:(.text+0x146a): warning: the use of `tmpnam' is dangerous, better use `mkstemp'
system-unix.o: In function `temporary_file_name()':
system-unix.cc:(.text+0x146a): warning: the use of `tmpnam' is dangerous, better use `mkstemp'
system-unix.o: In function `temporary_file_name()':
system-unix.cc:(.text+0x146a): warning: the use of `tmpnam' is dangerous, better use `mkstemp'
make[1]: Leaving directory `/home/trotos/Desktop/sparky/src/sparky/sparky-obj'
mkdir /home/trotos/Desktop/sparky/pkg/opt/sparky
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky
mkdir /home/trotos/Desktop/sparky/pkg/opt/sparky/bin
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/bin
mkdir /home/trotos/Desktop/sparky/pkg/opt/sparky/python2.5
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/python2.5
cd /home/trotos/Desktop/sparky/src/sparky/sparky-obj && \
        make -f /home/trotos/Desktop/sparky/src/sparky/c++/Makefile -e install-nopython
cd /home/trotos/Desktop/sparky/src/sparky ; \cp -R example /home/trotos/Desktop/sparky/pkg/opt/sparky
cd /home/trotos/Desktop/sparky/src/sparky/lib && make -f Makefile -e install
make[1]: Entering directory `/home/trotos/Desktop/sparky/src/sparky/lib'
mkdir /home/trotos/Desktop/sparky/pkg/opt/sparky/lib
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/lib
make[1]: Entering directory `/home/trotos/Desktop/sparky/src/sparky/sparky-obj'
\cp sparky-no-python ucsfdata pipe2ucsf vnmr2ucsf bruk2ucsf peaks2ucsf matrix2ucsf /home/trotos/Desktop/sparky/pkg/opt/sparky/bin
\cp /usr/lib/libtcl8.5.so /home/trotos/Desktop/sparky/pkg/opt/sparky/lib
cd /home/trotos/Desktop/sparky/pkg/opt/sparky/bin ; \
        chmod 755 sparky-no-python ucsfdata pipe2ucsf vnmr2ucsf bruk2ucsf peaks2ucsf matrix2ucsf
make[1]: Leaving directory `/home/trotos/Desktop/sparky/src/sparky/sparky-obj'
cd /home/trotos/Desktop/sparky/pkg/opt/sparky/bin ; \
        \cp /home/trotos/Desktop/sparky/src/sparky/bin/sparky sparky ; \
        chmod 755 sparky
\cp /usr/lib/libtk8.5.so /home/trotos/Desktop/sparky/pkg/opt/sparky/lib
cd /home/trotos/Desktop/sparky/src/sparky/manual && make -f Makefile -e install
cd /home/trotos/Desktop/sparky/src/sparky ; \cp LICENSE README /home/trotos/Desktop/sparky/pkg/opt/sparky
cd /home/trotos/Desktop/sparky/pkg/opt/sparky ; chmod 644 LICENSE README
echo "Not packaging Python with Sparky."
Not packaging Python with Sparky.
make[1]: Entering directory `/home/trotos/Desktop/sparky/src/sparky/manual'
echo 'Postscript Sparky manual needs updating'
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/lib/libtcl8.5.so
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/lib/libtk8.5.so
\cp -r /usr/lib/tcl8.5 /usr/lib/tk8.5 \
                /home/trotos/Desktop/sparky/pkg/opt/sparky/lib
mkdir /home/trotos/Desktop/sparky/pkg/opt/sparky/manual
Postscript Sparky manual needs updating
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/manual
mkdir /home/trotos/Desktop/sparky/pkg/opt/sparky/manual/images
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/manual/images
gzip -c manual.ps > manual-postscript.gz
\cp Sparky print-prolog.ps /home/trotos/Desktop/sparky/pkg/opt/sparky/lib
cd /home/trotos/Desktop/sparky/pkg/opt/sparky/lib ; \
        chmod 644 Sparky print-prolog.ps
make[1]: Leaving directory `/home/trotos/Desktop/sparky/src/sparky/lib'
\cp overview.html intro.html views.html peaks.html extensions.html autoassign.html misc.html files.html install.html newstuff.html changelog.html indx.html index.html manual.html manual-postscript.gz PQR2.1.html /home/trotos/Desktop/sparky/pkg/opt/sparky/manual
cd /home/trotos/Desktop/sparky/pkg/opt/sparky/manual ; \
        chmod 644 overview.html intro.html views.html peaks.html extensions.html autoassign.html misc.html files.html install.html newstuff.html changelog.html indx.html index.html manual.html manual-postscript.gz PQR2.1.html
cd images ; \
        \cp assign.gif assigngraph.gif assignlist.gif c30.gif chemshift.gif chimera.gif chimera-dialog.gif color-key-8.gif contour-scale.gif g28-2d.gif g28-3d.gif g28-both.gif g28-key.gif integ.gif k15-fixed.gif k15-problem.gif levels.gif modes.gif n15hsqc.gif peaklist.gif pick.gif reslist.gif run-autoassign.gif s47-fixed.gif s47-gap.gif s47-list.gif spingraph.gif spingraphopt.gif stripmatch.gif stripplot.gif strips.gif stripspect.gif view.gif y35.gif /home/trotos/Desktop/sparky/pkg/opt/sparky/manual/images
cd /home/trotos/Desktop/sparky/pkg/opt/sparky/manual/images ; \
        chmod 644 assign.gif assigngraph.gif assignlist.gif c30.gif chemshift.gif chimera.gif chimera-dialog.gif color-key-8.gif contour-scale.gif g28-2d.gif g28-3d.gif g28-both.gif g28-key.gif integ.gif k15-fixed.gif k15-problem.gif levels.gif modes.gif n15hsqc.gif peaklist.gif pick.gif reslist.gif run-autoassign.gif s47-fixed.gif s47-gap.gif s47-list.gif spingraph.gif spingraphopt.gif stripmatch.gif stripplot.gif strips.gif stripspect.gif view.gif y35.gif
make[1]: Leaving directory `/home/trotos/Desktop/sparky/src/sparky/manual'
cd /home/trotos/Desktop/sparky/src/sparky/sparky-obj && \
        make -f /home/trotos/Desktop/sparky/src/sparky/c++/Makefile -e install-python
make[1]: Entering directory `/home/trotos/Desktop/sparky/src/sparky/sparky-obj'
mkdir /home/trotos/Desktop/sparky/pkg/opt/sparky/python
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/python
mkdir /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky
mkdir /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk
\cp spy.so /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/spy.so
\cp _tkinter.so /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk
chmod 755 /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/_tkinter.so
make[1]: Leaving directory `/home/trotos/Desktop/sparky/src/sparky/sparky-obj'
cd /home/trotos/Desktop/sparky/src/sparky/python && make -f Makefile -e install
make[1]: Entering directory `/home/trotos/Desktop/sparky/src/sparky/python'
\cp README /home/trotos/Desktop/sparky/pkg/opt/sparky/python
\cp __init__.py align.py assigngraph.py atomnames.py atoms.py autoassign.py axes.py centerview.py chemshift.py chimeraview.py copylinewidth.py corma.py cormaspectrum.py curvefit.py distance.py expectedpeaks.py foldspectrum.py hcpeaks.py linewidthplot.py mardigras.py midas.py midasconstraint.py midaspick.py mirror.py movepeaks.py noesy.py noesyassign.py openspectra.py pdb.py peaklist.py peaktable.py pythonshell.py pyutil.py readpeaks.py regionrmsd.py relax.py reposition.py restrictedpick.py sequence.py shiftstats.py sparky_init.py sparky_site.py spingraph.py spinlayout.py sputil.py start_in_chimera.py strips.py subprocess.py tkutil.py volumeerror.py xeasy.py xplor.py /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky
\cp lib-tk/*.py /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk
chmod 644 /home/trotos/Desktop/sparky/pkg/opt/sparky/python/README
cd /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky ; chmod 644 __init__.py align.py assigngraph.py atomnames.py atoms.py autoassign.py axes.py centerview.py chemshift.py chimeraview.py copylinewidth.py corma.py cormaspectrum.py curvefit.py distance.py expectedpeaks.py foldspectrum.py hcpeaks.py linewidthplot.py mardigras.py midas.py midasconstraint.py midaspick.py mirror.py movepeaks.py noesy.py noesyassign.py openspectra.py pdb.py peaklist.py peaktable.py pythonshell.py pyutil.py readpeaks.py regionrmsd.py relax.py reposition.py restrictedpick.py sequence.py shiftstats.py sparky_init.py sparky_site.py spingraph.py spinlayout.py sputil.py start_in_chimera.py strips.py subprocess.py tkutil.py volumeerror.py xeasy.py xplor.py
chmod 644 /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/*.py
/usr/bin/python2.5 /usr/lib/python2.5/compileall.py /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky
Listing /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/__init__.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/align.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/assigngraph.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/atomnames.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/atoms.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/autoassign.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/axes.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/centerview.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/chemshift.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/chimeraview.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/copylinewidth.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/corma.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/cormaspectrum.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/curvefit.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/distance.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/expectedpeaks.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/foldspectrum.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/hcpeaks.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/linewidthplot.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/mardigras.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/midas.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/midasconstraint.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/midaspick.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/mirror.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/movepeaks.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/noesy.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/noesyassign.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/openspectra.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/pdb.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/peaklist.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/peaktable.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/pythonshell.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/pyutil.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/readpeaks.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/regionrmsd.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/relax.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/reposition.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/restrictedpick.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/sequence.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/shiftstats.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/sparky_init.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/sparky_site.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/spingraph.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/spinlayout.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/sputil.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/start_in_chimera.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/strips.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/subprocess.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/tkutil.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/volumeerror.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/xeasy.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/sparky/xplor.py ...
/usr/bin/python2.5 /usr/lib/python2.5/compileall.py /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk
Listing /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/Canvas.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/Dialog.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/FileDialog.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/FixTk.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/ScrolledText.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/SimpleDialog.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/Tix.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/Tkconstants.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/Tkdnd.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/Tkinter.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/tkColorChooser.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/tkCommonDialog.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/tkFileDialog.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/tkFont.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/tkMessageBox.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/tkSimpleDialog.py ...
Compiling /home/trotos/Desktop/sparky/pkg/opt/sparky/python/lib-tk/turtle.py ...
make[1]: Leaving directory `/home/trotos/Desktop/sparky/src/sparky/python'
==> Tidying install...
  -> Removing info/doc files...
  -> Compressing man pages...
  -> Stripping debugging symbols from binaries and libraries...
==> Creating package...
  -> Generating .PKGINFO file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: sparky (Mon Jun  2 18:34:28 EEST 2008)

has it gone smoothly?

hmmmm now where is the executable file? also it needs some python bindings to work "better" which is installed

Offline

#7 2008-06-02 20:55:49

ghostHack
Member
From: Bristol UK
Registered: 2008-02-29
Posts: 261

Re: [Request] Sparky 3.113

It looks like the package built ok, if you installed the resulting package with pacman -U then the sparky script should be /opt/sparky/bin/sparky.

Which python bindings are you referring to?

Offline

Board footer

Powered by FluxBB