startup-notification - Adds support for applications to use "busy" cursors while starting up ChangeLog

HOWTO


# startup-notification
# ====================
# Slackware 9.0 and 9.1's 'startup-notification' package includes version
# 0.5, 10.0 and 10.1's include 0.6, and 10.2 includes 0.8

# I include multiple versions below to cover different releases of Gnome,
# but keep in mind that I only use Gnome 2.12.x

# If you ever want to uninstall startup-notification, cd into the source
# directory, run 'make uninstall', remove the source directory, and then
# remove the tarball.

# Prerequisites (for either version):
# gawk
# grep
# sed
# XFree86 or X.org
# pkg-config


# startup-notification 0.5 (for Gnome 2.6.x, 2.8.x, or 2.10.x)
# ========================
cd
test -f installed/startup-notification-0.5.tar.bz2 &&
mv installed/startup-notification-0.5.tar.bz2 .
test ! -f startup-notification-0.5.tar.bz2 &&
wget http://ftp.gnome.org/pub/gnome/sources/startup-notification/0.5/\
startup-notification-0.5.tar.bz2

# Verify tarball w/ md5sum:
echo "193cde48ed7ceaf346bd65590acc101c  startup-notification-0.5.tar.bz2" \
| md5sum -c

mkdir -p -m 0700 src
cd src
find -maxdepth 1 -type d -name "startup-notification-*" -exec rm {} \;
tar xjvf ~/startup-notification-0.5.tar.bz2
cd startup-notification-0.5
test $UID = 0 && chown -R root:root .
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib
make

# Become root to install it
su

test -x /sbin/removepkg && /sbin/removepkg startup-notification
rm -f /usr/lib/libstartup-notification-1.*
make install
ldconfig

# Become yourself again
exit

cd
mkdir -p -m 0700 installed
rm -f installed/startup-notification-*.tar.*
mv startup-notification-0.5.tar.bz2 installed/


# startup-notification 0.8 (for Gnome 2.12.x)
# ========================
cd
test -f installed/startup-notification-0.8.tar.bz2 &&
mv installed/startup-notification-0.8.tar.bz2 .
test ! -f startup-notification-0.8.tar.bz2 &&
wget http://ftp.gnome.org/pub/gnome/sources/startup-notification/0.8/\
startup-notification-0.8.tar.bz2

# Verify tarball w/ md5sum:
echo "d9b2e9fba18843314ae42334ceb4336d  startup-notification-0.8.tar.bz2" \
| md5sum -c

mkdir -p -m 0700 src
cd src
find -maxdepth 1 -type d -name "startup-notification-*" -exec rm {} \;
tar xjvf ~/startup-notification-0.8.tar.bz2
cd startup-notification-0.8
test $UID = 0 && chown -R root:root .
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/lib
make

# Become root to install it
su

test -x /sbin/removepkg && /sbin/removepkg startup-notification
rm -f /usr/lib/libstartup-notification-1.*
make install
ldconfig

# Become yourself again
exit

cd
mkdir -p -m 0700 installed
rm -f installed/startup-notification-*.tar.*
mv startup-notification-0.8.tar.bz2 installed/

List of HOWTOs

Web page itself last updated: 2023-12-20 8:06pm (EDT -0400)
HOWTO last updated: 2006-01-09 11:37pm
Copyright © 2001-2024 Jason Englander. All Rights reserved.
[HTML5]