Revision: 5750 Author: pebender Date: Tue Oct 27 08:41:38 2009 Log: - Updated packages lib/libcdio and lib/libcdio-mini.
http://code.google.com/p/minimyth/source/detail?r=5750 Added: /trunk/gar-minimyth/script/lib/libcdio/files/libcdio-0.82-ac_arg_enable.patch Deleted: /trunk/gar-minimyth/script/lib/libcdio/files/config.rpath /trunk/gar-minimyth/script/lib/libcdio/files/libcdio-0.81-ac_arg_enable.patch /trunk/gar-minimyth/script/lib/libcdio/files/libcdio-0.81-help2man.patch /trunk/gar-minimyth/script/lib/libcdio/files/libcdio-0.81.patch Modified: /trunk/gar-minimyth/html/minimyth/document-changelog.txt /trunk/gar-minimyth/script/lib/libcdio/Makefile /trunk/gar-minimyth/script/lib/libcdio/checksums /trunk/gar-minimyth/script/lib/libcdio/package-api.mk /trunk/gar-minimyth/script/lib/libcdio-mini/Makefile ======================================= --- /dev/null +++ /trunk/gar-minimyth/script/lib/libcdio/files/libcdio-0.82-ac_arg_enable.patch Tue Oct 27 08:41:38 2009 @@ -0,0 +1,84 @@ +diff -Naur libcdio-0.82-old/configure.ac libcdio-0.82-new/configure.ac +--- libcdio-0.82-old/configure.ac 2009-10-27 04:26:32.000000000 -0700 ++++ libcdio-0.82-new/configure.ac 2009-10-27 07:18:42.000000000 -0700 +@@ -86,7 +86,7 @@ + AM_CONDITIONAL([ENABLE_CXX_BINDINGS], [test "x$enable_cxx" != "xno"]) + + AC_ARG_ENABLE(cpp-progs, +- [ --enable-cpp-progs make C++ example programs (default enabled)]) ++ AC_HELP_STRING([--disable-cpp-progs], [make C++ example programs (default enabled)])) + AM_CONDITIONAL(ENABLE_CPP, test x"$enable_cpp_progs" = "xyes") + + AC_ARG_ENABLE(example-progs, +@@ -543,14 +543,17 @@ + fi + AC_SUBST(HAVE_JOLIET) + +-if test x$enable_rock = x; then +- enable_rock=yes +- AC_ARG_ENABLE(rock, +- [ --enable-rock include Rock-Ridge extension support (default enabled)], +- enable_rock=yes, enable_rock=no) +-fi ++AC_ARG_ENABLE(rock, ++ AC_HELP_STRING([--disable-rock], [include Rock-Ridge extension support (default enabled)]), ++ [ ++ AS_CASE(["$enableval"], ++ [yes], [enable_rock="yes"], ++ [no], [enable_rock="no"], ++ [AC_MSG_ERROR([bad value '${enableval}' for --enable-rock])]) ++ ], ++ enable_rock="yes") + +-if test "${enable_rock}" != "no" ; then ++if test "x$enable_rock" != "xno" ; then + AC_DEFINE(HAVE_ROCK, [1], + [Define 1 if you want ISO-9660 Rock-Ridge extension support.]) + HAVE_ROCK=1 +@@ -558,13 +561,16 @@ + AC_SUBST(HAVE_ROCK) + AM_CONDITIONAL(ENABLE_ROCK, test x"$enable_rock" = "xyes") + +-if test x$enable_cddb = x; then +- enable_cddb=yes +- AC_ARG_ENABLE(cddb, +- [ --enable-cddb include CDDB lookups in cd_info (default enabled)], +- enable_cddb=yes, enable_cddb=no) +-fi +-if test x$enable_cddb != "no" ; then ++AC_ARG_ENABLE(cddb, ++ AC_HELP_STRING([--disable-cddb], [include CDDB lookups in cd_info (default enabled)]), ++ [ ++ AS_CASE(["$enableval"], ++ [yes], [enable_cddb="yes"], ++ [no], [enable_cddb="no"], ++ [AC_MSG_ERROR([bad value '${enableval}' for --enable-cddb])]) ++ ], ++ enable_cddb="yes") ++if test "x$enable_cddb" != "xno" ; then + PKG_CHECK_MODULES(CDDB, libcddb >= 1.0.1, [ + HAVE_CDDB=yes + AC_DEFINE(HAVE_CDDB, [], [Define this if you have libcddb installed]) +@@ -594,13 +600,16 @@ + AM_CONDITIONAL(BUILD_CDDA_PLAYER, test "x$enable_cdda_player" = "xyes") + AC_SUBST(CDDA_PLAYER_LIBS) + +-if test x$enable_vcd_info = x; then + AC_ARG_ENABLE(vcd_info, +- [ --enable-vcd-info include Video CD Info from libvcd], +- enable_vcd_info=yes, +- enable_vcd_info=no) +-fi +-if test x$enable_vcd_info = xyes; then ++ AC_HELP_STRING([--enable-vcd-info], [include Video CD Info from libvcd (default disabled)]), ++ [ ++ AS_CASE(["$enableval"], ++ [yes], [enable_vcd_info="yes"], ++ [no], [enable_vcd_info="no"], ++ [AC_MSG_ERROR([bad value '${enableval}' for --enable-vcd-info])]) ++ ], ++ enable_vcd_info="no") ++if test "x$enable_vcd_info" = "xyes" ; then + PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.21, + [AC_DEFINE([HAVE_VCDINFO],1, + [Define this if you have libvcdinfo installed])], ======================================= --- /trunk/gar-minimyth/script/lib/libcdio/files/config.rpath Fri Apr 27 13:01:54 2007 +++ /dev/null @@ -1,614 +0,0 @@ -#! /bin/sh -# Output a system dependent set of variables, describing how to set the -# run time search path of shared libraries in an executable. -# -# Copyright 1996-2006 Free Software Foundation, Inc. -# Taken from GNU libtool, 2001 -# Originally by Gordon Matzigkeit <[email protected]>, 1996 -# -# This file is free software; the Free Software Foundation gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. -# -# The first argument passed to this file is the canonical host specification, -# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or -# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld -# should be set by the caller. -# -# The set of defined variables is at the end of this script. - -# Known limitations: -# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer -# than 256 bytes, otherwise the compiler driver will dump core. The only -# known workaround is to choose shorter directory names for the build -# directory and/or the installation directory. - -# All known linkers require a `.a' archive for static linking (except MSVC, -# which needs '.lib'). -libext=a -shrext=.so - -host="$1" -host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` -host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` -host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` - -# Code taken from libtool.m4's _LT_CC_BASENAME. - -for cc_temp in $CC""; do - case $cc_temp in - compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; - distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; - \-*) ;; - *) break;; - esac -done -cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` - -# Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC. - -wl= -if test "$GCC" = yes; then - wl='-Wl,' -else - case "$host_os" in - aix*) - wl='-Wl,' - ;; - darwin*) - case $cc_basename in - xlc*) - wl='-Wl,' - ;; - esac - ;; - mingw* | pw32* | os2*) - ;; - hpux9* | hpux10* | hpux11*) - wl='-Wl,' - ;; - irix5* | irix6* | nonstopux*) - wl='-Wl,' - ;; - newsos6) - ;; - linux*) - case $cc_basename in - icc* | ecc*) - wl='-Wl,' - ;; - pgcc | pgf77 | pgf90) - wl='-Wl,' - ;; - ccc*) - wl='-Wl,' - ;; - como) - wl='-lopt=' - ;; - *) - case `$CC -V 2>&1 | sed 5q` in - *Sun\ C*) - wl='-Wl,' - ;; - esac - ;; - esac - ;; - osf3* | osf4* | osf5*) - wl='-Wl,' - ;; - sco3.2v5*) - ;; - solaris*) - wl='-Wl,' - ;; - sunos4*) - wl='-Qoption ld ' - ;; - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - wl='-Wl,' - ;; - sysv4*MP*) - ;; - unicos*) - wl='-Wl,' - ;; - uts4*) - ;; - esac -fi - -# Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS. - -hardcode_libdir_flag_spec= -hardcode_libdir_separator= -hardcode_direct=no -hardcode_minus_L=no - -case "$host_os" in - cygwin* | mingw* | pw32*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; -esac - -ld_shlibs=yes -if test "$with_gnu_ld" = yes; then - # Set some defaults for GNU ld with shared library support. These - # are reset later if shared libraries are not supported. Putting them - # here allows them to be overridden if necessary. - # Unlike libtool, we use -rpath here, not --rpath, since the documented - # option of GNU ld is called -rpath, not --rpath. - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - case "$host_os" in - aix3* | aix4* | aix5*) - # On AIX/PPC, the GNU linker is very broken - if test "$host_cpu" != ia64; then - ld_shlibs=no - fi - ;; - amigaos*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - # Samuel A. Falvo II <[email protected]> reports - # that the semantics of dynamic libraries on AmigaOS, at least up - # to version 4, is to share data among multiple programs linked - # with the same dynamic library. Since this doesn't match the - # behavior of shared libraries on other platforms, we cannot use - # them. - ld_shlibs=no - ;; - beos*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - cygwin* | mingw* | pw32*) - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec='-L$libdir' - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - interix3*) - hardcode_direct=no - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - linux*) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - netbsd*) - ;; - solaris*) - if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then - ld_shlibs=no - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) - ld_shlibs=no - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - else - ld_shlibs=no - fi - ;; - esac - ;; - sunos4*) - hardcode_direct=yes - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - : - else - ld_shlibs=no - fi - ;; - esac - if test "$ld_shlibs" = no; then - hardcode_libdir_flag_spec= - fi -else - case "$host_os" in - aix3*) - # Note: this linker hardcodes the directories in LIBPATH if there - # are no directories specified by -L. - hardcode_minus_L=yes - if test "$GCC" = yes; then - # Neither direct hardcoding nor static linking is supported with a - # broken collect2. - hardcode_direct=unsupported - fi - ;; - aix4* | aix5*) - if test "$host_cpu" = ia64; then - # On IA64, the linker does run time linking by default, so we don't - # have to do anything special. - aix_use_runtimelinking=no - else - aix_use_runtimelinking=no - # Test if we are trying to use run time linking or normal - # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # need to do runtime linking. - case $host_os in aix4.[23]|aix4.[23].*|aix5*) - for ld_flag in $LDFLAGS; do - if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then - aix_use_runtimelinking=yes - break - fi - done - ;; - esac - fi - hardcode_direct=yes - hardcode_libdir_separator=':' - if test "$GCC" = yes; then - case $host_os in aix4.[012]|aix4.[012].*) - collect2name=`${CC} -print-prog-name=collect2` - if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null - then - # We have reworked collect2 - hardcode_direct=yes - else - # We have old collect2 - hardcode_direct=unsupported - hardcode_minus_L=yes - hardcode_libdir_flag_spec='-L$libdir' - hardcode_libdir_separator= - fi - ;; - esac - fi - # Begin _LT_AC_SYS_LIBPATH_AIX. - echo 'int main () { return 0; }' > conftest.c - ${CC} ${LDFLAGS} conftest.c -o conftest - aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } -}'` - if test -z "$aix_libpath"; then - aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } -}'` - fi - if test -z "$aix_libpath"; then - aix_libpath="/usr/lib:/lib" - fi - rm -f conftest.c conftest - # End _LT_AC_SYS_LIBPATH_AIX. - if test "$aix_use_runtimelinking" = yes; then - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - else - if test "$host_cpu" = ia64; then - hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' - else - hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" - fi - fi - ;; - amigaos*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - # see comment about different semantics on the GNU ld section - ld_shlibs=no - ;; - bsdi[45]*) - ;; - cygwin* | mingw* | pw32*) - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - # hardcode_libdir_flag_spec is actually meaningless, as there is - # no search path for DLLs. - hardcode_libdir_flag_spec=' ' - libext=lib - ;; - darwin* | rhapsody*) - hardcode_direct=no - if test "$GCC" = yes ; then - : - else - case $cc_basename in - xlc*) - ;; - *) - ld_shlibs=no - ;; - esac - fi - ;; - dgux*) - hardcode_libdir_flag_spec='-L$libdir' - ;; - freebsd1*) - ld_shlibs=no - ;; - freebsd2.2*) - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - ;; - freebsd2*) - hardcode_direct=yes - hardcode_minus_L=yes - ;; - freebsd* | kfreebsd*-gnu | dragonfly*) - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - ;; - hpux9*) - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - hpux10*) - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - hardcode_direct=yes - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - fi - ;; - hpux11*) - if test "$with_gnu_ld" = no; then - hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' - hardcode_libdir_separator=: - case $host_cpu in - hppa*64*|ia64*) - hardcode_direct=no - ;; - *) - hardcode_direct=yes - # hardcode_minus_L: Not really in the search PATH, - # but as the default location of the library. - hardcode_minus_L=yes - ;; - esac - fi - ;; - irix5* | irix6* | nonstopux*) - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - netbsd*) - hardcode_libdir_flag_spec='-R$libdir' - hardcode_direct=yes - ;; - newsos6) - hardcode_direct=yes - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - openbsd*) - hardcode_direct=yes - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - else - case "$host_os" in - openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) - hardcode_libdir_flag_spec='-R$libdir' - ;; - *) - hardcode_libdir_flag_spec='${wl}-rpath,$libdir' - ;; - esac - fi - ;; - os2*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_minus_L=yes - ;; - osf3*) - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - hardcode_libdir_separator=: - ;; - osf4* | osf5*) - if test "$GCC" = yes; then - hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' - else - # Both cc and cxx compiler support -rpath directly - hardcode_libdir_flag_spec='-rpath $libdir' - fi - hardcode_libdir_separator=: - ;; - solaris*) - hardcode_libdir_flag_spec='-R$libdir' - ;; - sunos4*) - hardcode_libdir_flag_spec='-L$libdir' - hardcode_direct=yes - hardcode_minus_L=yes - ;; - sysv4) - case $host_vendor in - sni) - hardcode_direct=yes # is this really true??? - ;; - siemens) - hardcode_direct=no - ;; - motorola) - hardcode_direct=no #Motorola manual says yes, but my tests say they lie - ;; - esac - ;; - sysv4.3*) - ;; - sysv4*MP*) - if test -d /usr/nec; then - ld_shlibs=yes - fi - ;; - sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) - ;; - sysv5* | sco3.2v5* | sco5v6*) - hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' - hardcode_libdir_separator=':' - ;; - uts4*) - hardcode_libdir_flag_spec='-L$libdir' - ;; - *) - ld_shlibs=no - ;; - esac -fi - -# Check dynamic linker characteristics -# Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER. -libname_spec='lib$name' -case "$host_os" in - aix3*) - ;; - aix4* | aix5*) - ;; - amigaos*) - ;; - beos*) - ;; - bsdi[45]*) - ;; - cygwin* | mingw* | pw32*) - shrext=.dll - ;; - darwin* | rhapsody*) - shrext=.dylib - ;; - dgux*) - ;; - freebsd1*) - ;; - kfreebsd*-gnu) - ;; - freebsd* | dragonfly*) - ;; - gnu*) - ;; - hpux9* | hpux10* | hpux11*) - case $host_cpu in - ia64*) - shrext=.so - ;; - hppa*64*) - shrext=.sl - ;; - *) - shrext=.sl - ;; - esac - ;; - interix3*) - ;; - irix5* | irix6* | nonstopux*) - case "$host_os" in - irix5* | nonstopux*) - libsuff= shlibsuff= - ;; - *) - case $LD in - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; - *) libsuff= shlibsuff= ;; - esac - ;; - esac - ;; - linux*oldld* | linux*aout* | linux*coff*) - ;; - linux*) - ;; - knetbsd*-gnu) - ;; - netbsd*) - ;; - newsos6) - ;; - nto-qnx*) - ;; - openbsd*) - ;; - os2*) - libname_spec='$name' - shrext=.dll - ;; - osf3* | osf4* | osf5*) - ;; - solaris*) - ;; - sunos4*) - ;; - sysv4 | sysv4.3*) - ;; - sysv4*MP*) - ;; - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - ;; - uts4*) - ;; -esac - -sed_quote_subst='s/\(["`$\\]\)/\\\1/g' -escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` -shlibext=`echo "$shrext" | sed -e 's,^\.,,'` -escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` - -LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF - -# How to pass a linker flag through the compiler. -wl="$escaped_wl" - -# Static library suffix (normally "a"). -libext="$libext" - -# Shared library suffix (normally "so"). -shlibext="$shlibext" - -# Flag to hardcode \$libdir into a binary during linking. -# This must work even if \$libdir does not exist. -hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec" - -# Whether we need a single -rpath flag with a separated argument. -hardcode_libdir_separator="$hardcode_libdir_separator" - -# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the -# resulting binary. -hardcode_direct="$hardcode_direct" - -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the -# resulting binary. -hardcode_minus_L="$hardcode_minus_L" - -EOF ======================================= --- /trunk/gar-minimyth/script/lib/libcdio/files/libcdio-0.81-ac_arg_enable.patch Tue Oct 28 14:55:36 2008 +++ /dev/null @@ -1,84 +0,0 @@ -diff -Naur libcdio-0.81-old/configure.ac libcdio-0.81-new/configure.ac ---- libcdio-0.81-old/configure.ac 2008-10-28 06:19:53.000000000 -0700 -+++ libcdio-0.81-new/configure.ac 2008-10-28 06:23:21.000000000 -0700 -@@ -86,7 +86,7 @@ - AM_CONDITIONAL([ENABLE_CXX_BINDINGS], [test "x$enable_cxx" != "xno"]) - - AC_ARG_ENABLE(cpp-progs, -- [ --enable-cpp-progs make C++ example programs (default enabled)]) -+ AC_HELP_STRING([--disable-cpp-progs], [make C++ example programs (default enabled)])) - AM_CONDITIONAL(ENABLE_CPP, test x"$enable_cpp_progs" = "xyes") - - AC_ARG_ENABLE(example-progs, -@@ -639,14 +639,17 @@ - fi - AC_SUBST(HAVE_JOLIET) - --if test x$enable_rock = x; then -- enable_rock=yes -- AC_ARG_ENABLE(rock, -- [ --enable-rock include Rock-Ridge extension support (default enabled)], -- enable_rock=yes, enable_rock=no) --fi -+AC_ARG_ENABLE(rock, -+ AC_HELP_STRING([--disable-rock], [include Rock-Ridge extension support (default enabled)]), -+ [ -+ AS_CASE(["$enableval"], -+ [yes], [enable_rock="yes"], -+ [no], [enable_rock="no"], -+ [AC_MSG_ERROR([bad value '${enableval}' for --enable-rock])]) -+ ], -+ enable_rock="yes") - --if test "${enable_rock}" != "no" ; then -+if test "x$enable_rock" != "xno" ; then - AC_DEFINE(HAVE_ROCK, [1], - [Define 1 if you want ISO-9660 Rock-Ridge extension support.]) - HAVE_ROCK=1 -@@ -654,13 +657,16 @@ - AC_SUBST(HAVE_ROCK) - AM_CONDITIONAL(ENABLE_ROCK, test x"$enable_rock" = "xyes") - --if test x$enable_cddb = x; then -- enable_cddb=yes -- AC_ARG_ENABLE(cddb, -- [ --enable-cddb include CDDB lookups in cd_info (default enabled)], -- enable_cddb=yes, enable_cddb=no) --fi --if test x$enable_cddb != "no" ; then -+AC_ARG_ENABLE(cddb, -+ AC_HELP_STRING([--disable-cddb], [include CDDB lookups in cd_info (default enabled)]), -+ [ -+ AS_CASE(["$enableval"], -+ [yes], [enable_cddb="yes"], -+ [no], [enable_cddb="no"], -+ [AC_MSG_ERROR([bad value '${enableval}' for --enable-cddb])]) -+ ], -+ enable_cddb="yes") -+if test "x$enable_cddb" != "xno" ; then - PKG_CHECK_MODULES(CDDB, libcddb >= 1.0.1, [ - HAVE_CDDB=yes - AC_DEFINE(HAVE_CDDB, [], [Define this if you have libcddb installed]) -@@ -690,13 +696,16 @@ - AM_CONDITIONAL(BUILD_CDDA_PLAYER, test "x$enable_cdda_player" = "xyes") - AC_SUBST(CDDA_PLAYER_LIBS) - --if test x$enable_vcd_info = x; then - AC_ARG_ENABLE(vcd_info, -- [ --enable-vcd-info include Video CD Info from libvcd], -- enable_vcd_info=yes, -- enable_vcd_info=no) --fi --if test x$enable_vcd_info = xyes; then -+ AC_HELP_STRING([--enable-vcd-info], [include Video CD Info from libvcd (default disabled)]), -+ [ -+ AS_CASE(["$enableval"], -+ [yes], [enable_vcd_info="yes"], -+ [no], [enable_vcd_info="no"], -+ [AC_MSG_ERROR([bad value '${enableval}' for --enable-vcd-info])]) -+ ], -+ enable_vcd_info="no") -+if test "x$enable_vcd_info" = "xyes" ; then - PKG_CHECK_MODULES(VCDINFO, libvcdinfo >= 0.7.21, - [AC_DEFINE([HAVE_VCDINFO],1, - [Define this if you have libvcdinfo installed])], ======================================= --- /trunk/gar-minimyth/script/lib/libcdio/files/libcdio-0.81-help2man.patch Sat Nov 8 21:32:41 2008 +++ /dev/null @@ -1,11 +0,0 @@ -diff -Naur libcdio-0.81-old/src/Makefile.am libcdio-0.81-new/src/Makefile.am ---- libcdio-0.81-old/src/Makefile.am 2008-08-31 13:47:07.000000000 -0700 -+++ libcdio-0.81-new/src/Makefile.am 2008-10-28 06:21:12.000000000 -0700 -@@ -90,6 +90,6 @@ - iso-info.help2man iso-read.help2man $(GETOPT_C) getopt.h \ - $(man_MANS) - --$(man_MANS): %.1: % %.help2man -+$(man_MANS): %.1: %.help2man - -$(HELP2MAN) --opt-include=$<.help2man --no-info --output=$@ ./$< - MOSTLYCLEANFILES = $(man_MANS) ======================================= --- /trunk/gar-minimyth/script/lib/libcdio/files/libcdio-0.81.patch Tue Oct 28 14:55:36 2008 +++ /dev/null @@ -1,47 +0,0 @@ -diff -Naur libcdio-0.81-old/configure.ac libcdio-0.81-new/configure.ac ---- libcdio-0.81-old/configure.ac 2008-10-28 06:23:21.000000000 -0700 -+++ libcdio-0.81-new/configure.ac 2008-10-28 06:24:07.000000000 -0700 -@@ -586,39 +586,12 @@ - - if test $ac_cv_member_struct_tm_tm_gmtoff = yes ; then - AC_MSG_CHECKING([whether time.h defines daylight and timezone variables]) -- AC_TRY_RUN([ --#include <time.h> -- -- -- extern char *tzname[2]; -- extern long timezone; -- extern int daylight; -- --int -- main() { -- return (timezone != 0) + daylight; --} -- ],[AC_DEFINE(HAVE_DAYLIGHT, 1, -- [Define if time.h defines extern long timezone and int daylight vars.]) -- has_daylight=yes -- ],[has_daylight=no]) -+ AC_DEFINE(HAVE_DAYLIGHT, 1, [Define if time.h defines extern long timezone and int daylight vars.]) -+ has_daylight=yes - AC_MSG_RESULT($has_daylight) - AC_MSG_CHECKING([whether time.h defines tzname variable]) -- AC_TRY_RUN([ --#include <time.h> -- -- -- extern char *tzname[2]; -- --int -- main() { -- return (tzname != NULL); --} -- ],[AC_DEFINE(HAVE_TZNAME, 1, -- [Define if time.h defines extern extern char *tzname[2] variable]) -- has_tzname=yes -- ],[has_tzname=no]) -- AC_MSG_RESULT($has_tzname) -+ has_tzname=no -+ AC_MSG_RESULT($has_tzname) - fi - - AC_ARG_ENABLE(joliet, ======================================= --- /trunk/gar-minimyth/html/minimyth/document-changelog.txt Mon Oct 26 16:56:36 2009 +++ /trunk/gar-minimyth/html/minimyth/document-changelog.txt Tue Oct 27 08:41:38 2009 @@ -5,7 +5,7 @@ MiniMyth release. For earlier changes see the yearly changelog files. -------------------------------------------------------------------------------- -Changes since 70 (2009-10-26): +Changes since 70 (2009-10-27): Current MythTV versions MythTV 0.20-softpad: version 0.20.2.softpad, release-0-20-fixes branch svn 16082 and @@ -61,6 +61,8 @@ Updated kernel-2.6.31/linux. Updated kernel-headers/linux-headers-2.6.31. Updated lib/ffmpeg. + Updated lib/libcdio. + Updated lib/libcdio-mini. Updated lib/libdaemon. Updated lib/pcre. Updated lib/SDL. ======================================= --- /trunk/gar-minimyth/script/lib/libcdio/Makefile Sun Nov 9 08:28:32 2008 +++ /trunk/gar-minimyth/script/lib/libcdio/Makefile Tue Oct 27 08:41:38 2009 @@ -2,9 +2,9 @@ GARVERSION = $(LIBCDIO_VERSION) CATEGORIES = lib MASTER_SITES = ftp://ftp.gnu.org/gnu/$(GARNAME)/ -DISTFILES = $(DISTNAME).tar.gz config.rpath -PATCHFILES = $(DISTNAME)-help2man.patch $(DISTNAME)-ac_arg_enable.patch $(DISTNAME).patch -LICENSE = LGPL2_1 +DISTFILES = $(DISTNAME).tar.gz +PATCHFILES = $(DISTNAME)-ac_arg_enable.patch +LICENSE = GPL3 DESCRIPTION = define BLURB @@ -37,10 +37,6 @@ include ../../gar.mk -extract-config.rpath: - @cp $(DOWNLOADDIR)/config.rpath $(WORKSRC)/config.rpath - @$(MAKECOOKIE) - pre-configure: @cd $(WORKSRC) ; autoreconf --verbose --install --force @$(call FIX_LIBTOOL_LIBPATH,$(WORKSRC),configure) ======================================= --- /trunk/gar-minimyth/script/lib/libcdio/checksums Sat Nov 8 21:32:41 2008 +++ /trunk/gar-minimyth/script/lib/libcdio/checksums Tue Oct 27 08:41:38 2009 @@ -1,5 +1,2 @@ -2ad1622b672ccf53a3444a0c55724d38 download/libcdio-0.81.tar.gz -99597907619baf37bf94597acacfd6aa download/libcdio-0.81-help2man.patch -9c10641f359f46301bd4b786d9506bd7 download/libcdio-0.81-ac_arg_enable.patch -e04eb8d01260b5fc130be4cb942b42fa download/libcdio-0.81.patch -8728fa856ed1722c8853ea61ca776463 download/config.rpath +1c29b18e01ab2b966162bc727bf3c360 download/libcdio-0.82.tar.gz +504d6f0eaf14abc0b5432379c91ace6d download/libcdio-0.82-ac_arg_enable.patch ======================================= --- /trunk/gar-minimyth/script/lib/libcdio/package-api.mk Tue Oct 28 14:55:36 2008 +++ /trunk/gar-minimyth/script/lib/libcdio/package-api.mk Tue Oct 27 08:41:38 2009 @@ -1,1 +1,1 @@ -LIBCDIO_VERSION = 0.81 +LIBCDIO_VERSION = 0.82 ======================================= --- /trunk/gar-minimyth/script/lib/libcdio-mini/Makefile Sun Nov 9 08:28:32 2008 +++ /trunk/gar-minimyth/script/lib/libcdio-mini/Makefile Tue Oct 27 08:41:38 2009 @@ -2,7 +2,7 @@ GARVERSION = $(LIBCDIO_VERSION) CATEGORIES = lib SOURCEPKG = lib/libcdio -LICENSE = LGPL2_1 +LICENSE = GPL3 DESCRIPTION = define BLURB --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "minimyth-commits" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/minimyth-commits?hl=en -~----------~----~----~----~------~----~------~--~---
