Fedora Linux Support Community & Resources Center
Sections ›› Home | Forums | Guidelines | Forum Help | Fedora FAQ | Fedora News 

Go Back   FedoraForum.org > Fedora Support > Guides & Solutions (No Questions)

Guides & Solutions (No Questions) Post your guides here. You can also add your comments to a guide, but don't start a thread to ask a question. Use another forum for that.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 2005-06-19, 06:22 PM CDT
louise Offline
Registered User
 
Join Date: Feb 2005
Posts: 40
How to install gDesklets and StarterBar on Fedora Core 4

Make sure your /etc/yum.conf have the [Extras] repository.
Code:
[extras]
name=Fedora Extras - $releasever - $basearch
baseurl=http://download.fedora.redhat.com/pub/fedora/linux/extras/$releasever/$basearch/
Make sure you have these packages installed
Code:
~$ rpm -qa|grep -i py
pyxf86config-0.3.19-4
gnome-python2-gtkhtml2-2.10.0-2.1
python-urlgrabber-2.9.6-1
python-sqlite-1.1.6-1
gnome-python2-bonobo-2.10.0-1
python-ldap-2.0.6-4
python-2.4.1-2
python-elementtree-1.2.6-4
gnome-python2-canvas-2.10.0-1
dbus-python-0.33-3
python-devel-2.4.1-2
gnome-python2-gconf-2.10.0-1
pyOpenSSL-0.6-1.p24.4
pygtk2-2.6.0-2
PyXML-0.8.4-3
gnome-python2-gnomevfs-2.10.0-1
gnome-python2-extras-2.10.0-2.1
rpm-python-4.4.1-21
pygtk2-libglade-2.6.0-2
gnome-python2-2.10.0-1
pyparted-1.6.9-3
libxml2-python-2.6.19-1
pyorbit-2.0.1-4
pygtk2-devel-2.6.0-2
pyorbit-devel-2.0.1-4
Now you are ready to download gDesklets-0.35.2.tar.bz2
Code:
cd gDesklets-0.35.2
./configure
make
su -c "make install"
Text that it works by going to GnomeMenu->Applications->Accessories->gDesklets.
If it is not there, them start it by
Code:
gdesklets shell
Download starterbar-desklet-0.31.3.tar.gz and http://www.freedesktop.org/~lanius/pyxdg-0.14.tar.gz
Code:
tar xzf pyxdg-0.14.tar.gz
cd pyxdg-0.14
su -c "python setup.py install"
Using Nautilus drag the starterbar package into gDesklets that you opened.

Now Starterbar is installed and ready to use.

When upgrading from gDesklets 0.35.1 to gDesklets 0.35.2 I had to delete all the gDesklets settings
Code:
rm -r ~/.gdesklets
before StarterBar worked.

Last edited by louise; 2005-07-22 at 01:36 PM CDT.
Reply With Quote
  #2  
Old 2005-06-19, 06:52 PM CDT
yanik Offline
Registered User
 
Join Date: Nov 2004
Posts: 148
OK, I still can't get it to work. I have all theses packages already installed.

When I do ./configure, I end up with this:

Code:
checking for pygtk-2.0 >= 2.4.0 pyorbit-2 >= 2.0.1 gnome-python-2.0 >= 2.6.0... Package ORBit-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `ORBit-2.0.pc'
to the PKG_CONFIG_PATH environment variable
Package 'ORBit-2.0', required by 'PyORBit', not found

configure: error: Library requirements (pygtk-2.0 >= 2.4.0 pyorbit-2 >= 2.0.1 gnome-python-2.0 >= 2.6.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
But,
Code:
[root@nixbox gDesklets-0.35.1]# rpm -qa pygtk2
pygtk2-2.6.0-2
[root@nixbox gDesklets-0.35.1]# rpm -qa pyorbit
pyorbit-2.0.1-4
[root@nixbox gDesklets-0.35.1]# rpm -qa gnome-python2
gnome-python2-2.10.0-1
Do I have to adjust the PKG_CONFIG_PATH environment variable? If so, how do I do that?

Thanks

Yan
Reply With Quote
  #3  
Old 2005-06-19, 06:55 PM CDT
louise Offline
Registered User
 
Join Date: Feb 2005
Posts: 40
Are you sure you got ORBit-2.0 ???

Check by
rpm -qa|grep -i orbit
Reply With Quote
  #4  
Old 2005-06-19, 07:12 PM CDT
mjman Offline
Registered User
 
Join Date: Oct 2004
Posts: 283
you need the ORBit-devel package
Reply With Quote
  #5  
Old 2005-06-20, 09:31 PM CDT
yanik Offline
Registered User
 
Join Date: Nov 2004
Posts: 148
Yes I do have them

Code:
[root@nixbox gDesklets-0.35.1]# rpm -qa ORBit*
ORBit2-2.12.1-3
ORBit-devel-0.5.17-15
ORBit-0.5.17-15
Reply With Quote
  #6  
Old 2005-06-20, 09:50 PM CDT
yanik Offline
Registered User
 
Join Date: Nov 2004
Posts: 148
About that message, it says it's looking for ORBit-2.0.pc :

Code:
checking for pygtk-2.0 >= 2.4.0 pyorbit-2 >= 2.0.1 gnome-python-2.0 >= 2.6.0... Package ORBit-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `ORBit-2.0.pc'
to the PKG_CONFIG_PATH environment variable
Package 'ORBit-2.0', required by 'PyORBit', not found

configure: error: Library requirements (pygtk-2.0 >= 2.4.0 pyorbit-2 >= 2.0.1 gnome-python-2.0 >= 2.6.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
I do have ORBit2 installed, but if I do a
Code:
find / -name ORBit-2.0.pc
, it finds nothing.

I looked in /usr/lib/pkgconfig and ORBit.pc is there tho.

Any hints?
Reply With Quote
  #7  
Old 2005-06-20, 10:07 PM CDT
yanik Offline
Registered User
 
Join Date: Nov 2004
Posts: 148
I got it!

I installed libgnomeui-devel, libgtop2-devel and librsvg2-devel, plus about 20 dependencies (yum, my friend yum!)
Reply With Quote
  #8  
Old 2005-06-21, 02:20 AM CDT
CrowBarFu Offline
Registered User
 
Join Date: Jun 2005
Location: NY
Posts: 2
i was having the same problem as yanik, and i installed the packages you suggested and it worked...thanks!
Reply With Quote
  #9  
Old 2005-06-24, 12:24 PM CDT
nandowong's Avatar
nandowong Offline
Registered User
 
Join Date: Nov 2004
Posts: 507
is an rpm in the horizon?

if it is install with tar will it update? or do you have to rebuild it your self?
__________________
I dont pitch linux to my friends, I let windows do that for me
I like chicken
Reply With Quote
  #10  
Old 2005-06-24, 12:30 PM CDT
zeos's Avatar
zeos Offline
Registered User
 
Join Date: Jun 2004
Location: waco, tx
Age: 30
Posts: 59
http://dag.wieers.com/packages/gdesklets/

edit: missed the fc4 part of the title

Last edited by zeos; 2005-06-24 at 12:36 PM CDT.
Reply With Quote
  #11  
Old 2005-06-29, 08:45 PM CDT
Elv13 Offline
Registered User
 
Join Date: Apr 2005
Posts: 74
Code:
configure: error: Library requirements (pygtk-2.0 >= 2.4.0 pyorbit-2 >= 2.0.1 gnome-python-2.0 >= 2.6.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
i got this error, where are all package i need? every time i find 1 it need another one
Reply With Quote
  #12  
Old 2005-06-30, 09:35 AM CDT
PeterC's Avatar
PeterC Offline
Registered User
 
Join Date: Apr 2005
Location: United Kingdom
Posts: 15
Getting it installed is easy (sort of) getting it to actually do some thing is another matter


I've supposedly installed
iWeather
Corners
Gnome-startbar

Sure the gdesklets daemon starts, there’s a pretty icon in my system tray, I can open 'Manage desklets' but is there anything to run in there? Course not.

So off I go, join the gdesklets site/forum to get help, what a sorry state, most of the install help requests are months old with no responses.

Do you think I could find a HOWTO? Nope.

This is my second attempt to get gdesklets working I tried once before under FC2 with similar results however at least when you downloaded displays they showed up in the Display window under FC2. This time round I'm just stuck with the stupid 'uncategorized' folder on the left and nothing on the right.

After following the brilliant advice here and installing 35 packages I'm not a happy bunny


Rant Over:-
__________________
--
Many Thanks
Peter Cannon
AKA Dick Turpin

"There is every excuse for not knowing,
there is no excuse for not asking!"
Reply With Quote
  #13  
Old 2005-07-04, 03:35 PM CDT
mio-fc Offline
Registered User
 
Join Date: Jun 2005
Posts: 8
I've installed and its working :-) NOOOT.. Well, Clock and Goodweather runs smoothly. But the starterbar comes up with this error:

# Could not find sensor 'StarterBar'
#/home/ml/.gdesklets/Displays/starterbar-desklet-0.31.3/starterbar.display
#
#A sensor could not be found. This usually means that it has not been installed.

It's kind of annoying since I consider the starterbar as on of the really cool thing about gDesklets (and Linux in general). I would really like to get this to work, so does anyone have anybright ideas?

BR Mio
Reply With Quote
  #14  
Old 2005-07-04, 03:55 PM CDT
nandowong's Avatar
nandowong Offline
Registered User
 
Join Date: Nov 2004
Posts: 507
searched in google for a fc4 gdesklet rpm and found dries directory for it, but it only had a failed.log

so hopefully it will come along soon
__________________
I dont pitch linux to my friends, I let windows do that for me
I like chicken
Reply With Quote
  #15  
Old 2005-07-04, 05:23 PM CDT
zenora's Avatar
zenora Offline
Registered User
 
Join Date: Jun 2005
Location: Lexington, KY
Posts: 21
How about someone compile and make the gdesklet available for x86 available with all appropriate dependencies as rpm so I can yum-extend install. Isn't that precisely why yum-extend installer exists -- for eternal newbies like me :-)
I bet the elapsed time for compile/upload/distribute is not too long... and probably no more than the collective time it took to read/cut-&-paste/post these 6-7 postings on the subject.
I am waiting... for an FC4 rpm... <tick><tock><tick><tock>... sorry folks, I tried to compile ndiswrapper and that was not a success... I'm not trying this one.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
gdesklets starterbar gorak Installation Help 4 2006-04-03 09:15 PM CDT
Gdesklets fedora core 5 Salamandra General Support 0 2006-03-25 10:37 AM CST
gDesklets & StarterBar on FC3 micke Software 7 2004-12-25 05:09 AM CST
Starterbar and gDesklets egr Software 2 2004-11-29 08:29 AM CST
gDesklets in Fedora Core 2 Envious Software 5 2004-08-02 03:27 AM CDT

Automatic Translations (Powered by Powered by Google):
Afrikaans Albanian Arabic Belarusian Bulgarian Catalan Chinese Croatian Czech Danish Dutch English Estonian Filipino Finnish French Galician German Greek Hebrew Hindi Hungarian Icelandic Indonesian Italian Japanese Korean Latvian Lithuanian Macedonian Malay Maltese Norwegian Persian Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swahili Swedish Taiwanese Thai Turkish Ukrainian Vietnamese Yiddish

All times are GMT -7. The time now is 07:48 PM CST.

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
Hosting provided by ThePlanet



All trademarks, and forum posts in this site are property of their respective owner(s).

FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact | Founding Members
Designed By Ewdison Then | Powered by vBulletin ©2000-2009, Jelsoft Enterprises Ltd.
FedoraForum is Powered by Open Source Projects and Products
Translations delivered by vB Enterprise Translator