Sophie

Sophie

distrib > Mandriva > 8.2 > i586 > media > contrib > by-pkgid > 6350c0f7373895c67ee437123000ac22 > files > 14

libdv1-devel-0.9-2mdk.i586.rpm

This is LibDV, a GPL codec for DV video.  

See http://libdv.sourceforge.net/

LibDV now uses the GNU "Autotools" for building.  

BUILDING from CVS checkout
==========================

The CVS repository does not contain files generated by the autotools,
so you need to run the bootstrap script*:

  ./bootstrap

You can ignore the following error messages:

  automake: configure.in: installing `config/install-sh'
      error while copying

  automake: configure.in: installing `config/mkinstalldirs'
      error while copying

  automake: configure.in: installing `config/missing'
      error while copying


After that, you can do this to build the library and the example
player:

  ./configure --enable-maintainer-mode
  make

The maintainer-mode is if you are on a system that has recent
autotools installed, and you wish to make changes to the build
scripts.

The makefile generated by the autotools is very large, so the more
useful targets don't jump out at you.  Here are a few.

Build a "tar.gz" distribution file:

  make dist 

Build a rpm package file.  This requires you run as root, or you
setup your ~/.rpmmacros to allow building rpms without root:

  make rpm 

Clean up objects and binaries:

  make clean 

Clean up including files generated by autotools, which should return
the working directory state to be like it as after a CVS checkout:

  make maintainer-clean 


* The autotools book (http://sources.redhat.com/autobook/) recommends
  "bootstrap" instead of autogen.sh.