libcdio - CD input and control library ChangeLog

HOWTO


# GNU libcdio 0.80
# ================
# Prerequisites:
# Perl
# diffutils
# cdparanoia
# popt
# ncurses
# iconv
# pkg-config
# libcddb >= 1.0.1 (optional)
# VCDImager's libvcdinfo >= 0.7.21 (optional)

# libcdio can use libcddb and libcddb can use libcdio.  You may want to
# build this one, build that one, then build this one (or vice-versa) to
# make sure everything is built-in that can be.

# VCDImager's libvcsinfo can optionally use libcdio, but libcdio is
# mandatory for libvcsinfo.  So to get everything there too, build this
# first, then VCDImager, then come back here and rebuild libcdio again.

# So, if you want them all to use each other, build libcdio, then VCDImager,
# then libcddb, then libcdio again.

cd
test -f installed/libcdio-0.80.tar.gz && mv installed/libcdio-0.80.tar.gz .
test ! -f libcdio-0.80.tar.gz &&
wget http://ftp.gnu.org/gnu/libcdio/libcdio-0.80.tar.gz

# Verify tarball w/ md5sum:
# (this came from my gpg-verified tarball)
echo "6495add276ed11b7ac8a88092799ab4f  libcdio-0.80.tar.gz" | md5sum -c

# Verify tarball w/ sha1sum:
# (this also came from my gpg-verified tarball)
echo "40c1558a65a9eca2b693d1951ed2664efbe7d1ed  libcdio-0.80.tar.gz" | \
sha1sum -c

# Verify tarball w/ gpg:
( gpg --list-keys 8275EC21 > /dev/null 2>&1 || gpg --recv-keys 8275EC21 ) &&
wget -nc http://ftp.gnu.org/gnu/libcdio/libcdio-0.80.tar.gz.sig
  gpg --verify libcdio-0.80.tar.gz.sig && rm libcdio-0.80.tar.gz.sig

mkdir -p -m 0700 src
cd src
find -maxdepth 1 -type d -name "libcdio-*" -exec rm -r {} \;
tar xzvf ~/libcdio-0.80.tar.gz
cd libcdio-0.80
test $UID = 0 && chown -R root:root .
./configure
make

# Become root to install it
su

# Removed old library files and install it
( cd /usr/local/lib
  rm -f libcdio.* libcdio++.* libcdio_* libiso9660.* libiso9660++.* \
   libudf.* )
make install
ldconfig

# Make sure your non-root user can remove the source later
chown -R $USER .
chmod -R u+w .

# Become yourself again
exit

cd
mkdir -p -m 0700 installed
rm -f installed/libcdio-*.tar.*
mv libcdio-0.80.tar.gz installed/


# If you ever want to uninstall libcdio, this should do it:
cd
su
test -d src/libcdio-* && ( cd src/libcdio-* ; make uninstall )
rm -f /usr/local/info/libcdio.info
test -d /usr/local/include/cdio && rm -r /usr/local/include/cdio
( cd /usr/local/bin ; rm -f cd-drive cd-info cd-paranoia cd-read \
cdda-player iso-info iso-read )
( cd /usr/local/lib ; rm -f libcdio.* libcdio_cdda.* libcdio_paranoia.* \
libiso9660.* )
( cd /usr/local/lib/pkgconfig ; rm -f libcdio.pc libcdio_cdda.pc \
libcdio_paranoia.pc libiso9660.pc )
rm -f /usr/local/man/man1/cd-paranoia.1 \
/usr/local/man/jp/man1/cd-paranoia.1
exit
find ~/src -maxdepth 1 -type d -name "libcdio-*" -exec rm -r {} \;
rm -f ~/installed/libcdio-*.tar.*

List of HOWTOs

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