| Author |
Message |
morgonzola

Joined: 21 Apr 2010 Posts: 160 Location: Los Angeles, CA
|
Posted: Mon 23 Aug 2010, 01:31 Post subject:
latest version of gnome Subject description: i would do it but i don't know how |
|
so i realize there is already a gnome sfs but it seriously needs an update. i attempted to do this myself but after i got all the files from the ftp site i kinda was at a loss. so if someone can post a new gnome sfs or tell me what to do it would be most appreciated.
|
|
Back to top
|
|
 |
morgonzola

Joined: 21 Apr 2010 Posts: 160 Location: Los Angeles, CA
|
Posted: Mon 23 Aug 2010, 01:35 Post subject:
oops |
|
i just read the guidelines
dl site is here
http://ftp.gnome.org/pub/GNOME/desktop/2.30/2.30.2/
and it is for puppy 5
|
|
Back to top
|
|
 |
morgonzola

Joined: 21 Apr 2010 Posts: 160 Location: Los Angeles, CA
|
Posted: Wed 25 Aug 2010, 14:26 Post subject:
|
|
ok so update i learned some things and have gotten a version of git and some instructions on how to build the latest version (aka 3.0) and i also picked up a copy of jhbuild which i am using to build etc etc. i just figured out how to use spot so i can actually use jhbuild (it will not run in root whatever you do)
so i am getting close sort of. the tricky part is after im done getting the files and such and building, how can i make it into a sfs file so everyone can use it? i am aware of the tools that come with puppy and i haven't really done any research on them but i am more talking about am i going to need to put dependencies or other things in there to make it work?
|
|
Back to top
|
|
 |
morgonzola

Joined: 21 Apr 2010 Posts: 160 Location: Los Angeles, CA
|
Posted: Wed 25 Aug 2010, 16:38 Post subject:
|
|
ok so after some head bashing on this i am kinda lost again. i got to about here.
i run jhbuild sanitycheck as spot in terminal
it tells me
/root/.local/bin/jhbuild: line 3: import: command not found
/root/.local/bin/jhbuild: line 4: import: command not found
/root/.local/bin/jhbuild: line 5: import: command not found
/root/.local/bin/jhbuild: line 7: USE_CHECKOUT_SRC: command not found
/root/.local/bin/jhbuild: jhbuild: line 10: syntax error near unexpected token `0,'
/root/.local/bin/jhbuild: jhbuild: line 10: ` sys.path.insert(0, '/root/NewDir/jhbuild')'
what am i doing wrong?
|
|
Back to top
|
|
 |
noryb009
Joined: 20 Mar 2010 Posts: 511
|
Posted: Wed 25 Aug 2010, 16:52 Post subject:
|
|
Can you paste the content of /root/.local/bin/jhbuild?
|
|
Back to top
|
|
 |
morgonzola

Joined: 21 Apr 2010 Posts: 160 Location: Los Angeles, CA
|
Posted: Wed 25 Aug 2010, 17:03 Post subject:
|
|
#!/usr/bin/env python
import sys
import os
import __builtin__
USE_CHECKOUT_SRC = True
if USE_CHECKOUT_SRC:
sys.path.insert(0, '/root/NewDir/jhbuild')
pkgdatadir = None
datadir = None
import jhbuild
srcdir = os.path.abspath(os.path.join(os.path.dirname(jhbuild.__file__), '..'))
else:
pkgdatadir = "@pkgdatadir@"
datadir = "@datadir@"
srcdir = "@srcdir@"
if '@pythondir@' not in sys.path:
sys.path.insert(0, '@pythondir@')
try:
import jhbuild
except ImportError:
sys.path.insert(0, srcdir)
__builtin__.__dict__['PKGDATADIR'] = pkgdatadir
__builtin__.__dict__['DATADIR'] = datadir
__builtin__.__dict__['SRCDIR'] = srcdir
import jhbuild.main
jhbuild.main.main(sys.argv[1:])
|
|
Back to top
|
|
 |
|