cd
test -f installed/f-spot-0.2.1.tar.bz2 &&
mv installed/f-spot-0.2.1.tar.bz2 .
test ! -f f-spot-0.2.1.tar.bz2 &&
wget http://ftp.gnome.org/pub/gnome/sources/f-spot/0.2/f-spot-0.2.1.tar.bz2
# /usr/local/share/pixmaps/f-spot-logo.png can be used as a desktop icon
# I'm not sure why (I didn't really investigate...), but to start F-spot,
# I had to run it like so: "dbus-launch f-spot"
# If you ever want to uninstall F-Spot, this should do it:
cd
su
test -d src/f-spot-* && ( cd src/f-spot-* ; make uninstall )
( cd /usr/local/bin ; rm -f f-spot f-spot-import )
test -d /usr/local/lib/f-spot && rm -r /usr/local/lib/f-spot
( cd /usr/local/share/applications
rm -f f-spot.desktop f-spot-view.desktop )
rm -f /usr/local/share/pixmaps/f-spot-logo.png
exit
find ~/src -maxdepth 1 -type d -name "f-spot-*" -exec rm -r {} \;
rm -f ~/installed/f-spot-*.tar.*