mp3splt-gtk-0.7.2/0000755000175000017500000000000011753562412010714 500000000000000mp3splt-gtk-0.7.2/m4/0000775000175000017500000000000011753562406011241 500000000000000mp3splt-gtk-0.7.2/m4/.svn/0000775000175000017500000000000011753304304012114 500000000000000mp3splt-gtk-0.7.2/m4/.svn/tmp/0000755000175000017500000000000011753000444012710 500000000000000mp3splt-gtk-0.7.2/m4/.svn/tmp/props/0000755000175000017500000000000011660041414014052 500000000000000mp3splt-gtk-0.7.2/m4/.svn/tmp/text-base/0000755000175000017500000000000011660041414014603 500000000000000mp3splt-gtk-0.7.2/m4/.svn/tmp/prop-base/0000755000175000017500000000000011660041414014577 500000000000000mp3splt-gtk-0.7.2/m4/.svn/dir-prop-base0000474000175000017500000000006411235156541014425 00000000000000K 10 svn:ignore V 26 *.m4 Makefile Makefile.in END mp3splt-gtk-0.7.2/m4/.svn/props/0000775000175000017500000000000011235156541013262 500000000000000mp3splt-gtk-0.7.2/m4/.svn/entries0000444000175000017500000000107311753000444013423 0000000000000010 dir 986 https://mp3splt.svn.sourceforge.net/svnroot/mp3splt/mp3splt-project/trunk/mp3splt-gtk/m4 https://mp3splt.svn.sourceforge.net/svnroot/mp3splt 2009-05-26T21:40:11.598055Z 504 io_alex_2004 has-props 37759d02-7f1a-0410-b56a-dabfdd8c31e4 mp3splt.m4 file 2010-10-10T16:18:47.000000Z 3cf8a51904e5587827cc868693761afc 2009-05-26T21:40:11.598055Z 504 io_alex_2004 3493 Makefile.am file 2010-10-10T16:18:47.000000Z 182209c153437e37cc1c9cb3d46f0fc6 2009-05-02T11:55:56.994296Z 470 io_alex_2004 260 mp3splt-gtk-0.7.2/m4/.svn/text-base/0000775000175000017500000000000011454363547014024 500000000000000mp3splt-gtk-0.7.2/m4/.svn/text-base/Makefile.am.svn-base0000474000175000017500000000040411454363547017512 00000000000000EXTRA_DIST = \ codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 \ inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 \ lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 \ ulonglong.m4 mp3splt.m4 mp3splt-gtk-0.7.2/m4/.svn/text-base/mp3splt.m4.svn-base0000474000175000017500000000664511454363547017337 00000000000000# Alexandru Munteanu # Slightly modified 'ogg.m4' AC_DEFUN([MP3SPLT_CHECK], [ AC_ARG_WITH(mp3splt, [AC_HELP_STRING([--with-mp3splt=PFX], [ Prefix where libmp3splt is installed (optional). ]) ], mp3splt_prefix="$withval", mp3splt_prefix="") AC_ARG_WITH(mp3splt-libraries, [AC_HELP_STRING([--with-mp3splt-libraries=DIR], [ Directory where libmp3splt library is installed (optional). ]) ], mp3splt_libraries="$withval", mp3splt_libraries="") AC_ARG_WITH(mp3splt-includes, [AC_HELP_STRING([--with-mp3splt-includes=DIR], [ Directory where libmp3splt header files are installed (optional). ]) ], mp3splt_includes="$withval", mp3splt_includes="") AC_ARG_ENABLE(mp3splttest, [AC_HELP_STRING([--disable-mp3splttest], [ Do not try to compile and run a test mp3splt program. ]) ], , enable_mp3splttest=yes) if test "x$mp3splt_libraries" != "x"; then MP3SPLT_LIBS="-L$mp3splt_libraries" elif test "x$mp3splt_prefix" != "x"; then MP3SPLT_LIBS="-L$mp3splt_prefix/lib" elif test "x$prefix" != "xNONE"; then MP3SPLT_LIBS="-L$prefix/lib" fi MP3SPLT_LIBS="$MP3SPLT_LIBS -lmp3splt" if test "x$mp3splt_includes" != "x"; then MP3SPLT_CFLAGS="-I$mp3splt_includes" elif test "x$mp3splt_prefix" != "x"; then MP3SPLT_CFLAGS="-I$mp3splt_prefix/include" elif test "x$prefix" != "xNONE"; then mp3splt_CFLAGS="-I$prefix/include" fi AC_MSG_CHECKING(for libmp3splt) no_mp3splt="" if test "x$enable_mp3splttest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $MP3SPLT_CFLAGS" LIBS="$LIBS $MP3SPLT_LIBS" rm -f conf.mp3splttest AC_TRY_RUN([ #include #include #include #include int main () { system("touch conf.mp3splttest"); return 0; } ],, no_mp3splt=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi if test "x$no_mp3splt" = "x" ; then AC_MSG_RESULT(yes) ifelse([$1], , :, [$1]) else AC_MSG_RESULT(no) if test -f conf.mp3splttest ; then : else echo "*** Could not run libmp3splt test program, checking why..." CFLAGS="$CFLAGS $MP3SPLT_CFLAGS" LIBS="$LIBS $MP3SPLT_LIBS" AC_TRY_LINK([ #include #include ], [ return 0; ], [ echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding libmp3splt or finding the wrong" echo "*** version of libmp3splt. If it is not finding libmp3splt, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"], [ echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means libmp3splt was incorrectly installed" echo "*** or that you have moved libmp3splt since it was installed." ]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi MP3SPLT_CFLAGS="" MP3SPLT_LIBS="" ifelse([$2], , :, [$2]) fi AC_SUBST(MP3SPLT_CFLAGS) AC_SUBST(MP3SPLT_LIBS) rm -f conf.mp3splttest ]) mp3splt-gtk-0.7.2/m4/.svn/prop-base/0000775000175000017500000000000011235156541014007 500000000000000mp3splt-gtk-0.7.2/m4/.svn/all-wcprops0000474000175000017500000000055711454363547014244 00000000000000K 25 svn:wc:ra_dav:version-url V 66 /svnroot/mp3splt/!svn/ver/504/mp3splt-project/trunk/mp3splt-gtk/m4 END mp3splt.m4 K 25 svn:wc:ra_dav:version-url V 77 /svnroot/mp3splt/!svn/ver/504/mp3splt-project/trunk/mp3splt-gtk/m4/mp3splt.m4 END Makefile.am K 25 svn:wc:ra_dav:version-url V 78 /svnroot/mp3splt/!svn/ver/470/mp3splt-project/trunk/mp3splt-gtk/m4/Makefile.am END mp3splt-gtk-0.7.2/m4/lib-link.m40000664000175000017500000005534311241331367013126 00000000000000# lib-link.m4 serial 4 (gettext-0.12) dnl Copyright (C) 2001-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and dnl augments the CPPFLAGS variable. AC_DEFUN([AC_LIB_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) define([Name],[translit([$1],[./-], [___])]) define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ac_cv_lib[]Name[]_libs="$LIB[]NAME" ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" ac_cv_lib[]Name[]_cppflags="$INC[]NAME" ]) LIB[]NAME="$ac_cv_lib[]Name[]_libs" LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" INC[]NAME="$ac_cv_lib[]Name[]_cppflags" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the dnl results of this search when this library appears as a dependency. HAVE_LIB[]NAME=yes undefine([Name]) undefine([NAME]) ]) dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode) dnl searches for libname and the libraries corresponding to explicit and dnl implicit dependencies, together with the specified include files and dnl the ability to compile and link the specified testcode. If found, it dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) define([Name],[translit([$1],[./-], [___])]) define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME dnl accordingly. AC_LIB_LINKFLAGS_BODY([$1], [$2]) dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, dnl because if the user has installed lib[]Name and not disabled its use dnl via --without-lib[]Name-prefix, he wants to use it. ac_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ ac_save_LIBS="$LIBS" LIBS="$LIBS $LIB[]NAME" AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no]) LIBS="$ac_save_LIBS" ]) if test "$ac_cv_lib[]Name" = yes; then HAVE_LIB[]NAME=yes AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.]) AC_MSG_CHECKING([how to link with lib[]$1]) AC_MSG_RESULT([$LIB[]NAME]) else HAVE_LIB[]NAME=no dnl If $LIB[]NAME didn't lead to a usable library, we don't need dnl $INC[]NAME either. CPPFLAGS="$ac_save_CPPFLAGS" LIB[]NAME= LTLIB[]NAME= fi AC_SUBST([HAVE_LIB]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) undefine([Name]) undefine([NAME]) ]) dnl Determine the platform dependent parameters needed to use rpath: dnl libext, shlibext, hardcode_libdir_flag_spec, hardcode_libdir_separator, dnl hardcode_direct, hardcode_minus_L. AC_DEFUN([AC_LIB_RPATH], [ AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done ]) wl="$acl_cv_wl" libext="$acl_cv_libext" shlibext="$acl_cv_shlibext" hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" hardcode_direct="$acl_cv_hardcode_direct" hardcode_minus_L="$acl_cv_hardcode_minus_L" dnl Determine whether the user wants rpath handling at all. AC_ARG_ENABLE(rpath, [ --disable-rpath do not hardcode runtime library paths], :, enable_rpath=yes) ]) dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. AC_DEFUN([AC_LIB_LINKFLAGS_BODY], [ define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib$1-prefix], [ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib --without-lib$1-prefix don't search for lib$1 in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi ]) dnl Search the library and its dependencies in $additional_libdir and dnl $LDFLAGS. Using breadth-first-seach. LIB[]NAME= LTLIB[]NAME= INC[]NAME= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='$1 $2' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" dnl See if it was already located by an earlier AC_LIB_LINKFLAGS dnl or AC_LIB_HAVE_LINKFLAGS call. uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" else dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined dnl that this library doesn't exist. So just drop it. : fi else dnl Search the library lib$name in $additional_libdir and $LDFLAGS dnl and the already constructed $LIBNAME/$LTLIBNAME. found_dir= found_la= found_so= found_a= if test $use_additional = yes; then if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then found_dir="$additional_libdir" found_so="$additional_libdir/lib$name.$shlibext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi else if test -f "$additional_libdir/lib$name.$libext"; then found_dir="$additional_libdir" found_a="$additional_libdir/lib$name.$libext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then found_dir="$dir" found_so="$dir/lib$name.$shlibext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi else if test -f "$dir/lib$name.$libext"; then found_dir="$dir" found_a="$dir/lib$name.$libext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then dnl Found the library. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then dnl Linking with a shared library. We attempt to hardcode its dnl directory into the executable's runpath, unless it's the dnl standard /usr/lib. if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then dnl No hardcoding is needed. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl Use an explicit option to hardcode DIR into the resulting dnl binary. dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi dnl The hardcoding into $LIBNAME is system dependent. if test "$hardcode_direct" = yes; then dnl Using DIR/libNAME.so during linking hardcodes DIR into the dnl resulting binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then dnl Use an explicit option to hardcode DIR into the resulting dnl binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else dnl Rely on "-L$found_dir". dnl But don't add it if it's already contained in the LDFLAGS dnl or the already constructed $LIBNAME haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" fi if test "$hardcode_minus_L" != no; then dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl We cannot use $hardcode_runpath_var and LD_RUN_PATH dnl here, because this doesn't fit in flags passed to the dnl compiler. So give up. No hardcoding. This affects only dnl very old systems. dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then dnl Linking with a static library. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" else dnl We shouldn't come here, but anyway it's good to have a dnl fallback. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" fi fi dnl Assume the include files are nearby. additional_includedir= case "$found_dir" in */lib | */lib/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then dnl Potentially add $additional_includedir to $INCNAME. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's /usr/local/include and we are using GCC on Linux, dnl 3. if it's already present in $CPPFLAGS or the already dnl constructed $INCNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INC[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $INCNAME. INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" fi fi fi fi fi dnl Look for dependencies. if test -n "$found_la"; then dnl Read the .la file. It defines the variables dnl dlname, library_names, old_library, dependency_libs, current, dnl age, revision, installed, dlopen, dlpreopen, libdir. save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" dnl We use only dependency_libs. for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's /usr/local/lib and we are using GCC on Linux, dnl 3. if it's already present in $LDFLAGS or the already dnl constructed $LIBNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/lib"; then haveit= if test "X$additional_libdir" = "X/usr/local/lib"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LIBNAME. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LTLIBNAME. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) dnl Handle this in the next round. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) dnl Handle this in the next round. Throw away the .la's dnl directory; it is already contained in a preceding -L dnl option. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) dnl Most likely an immediate library name. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" ;; esac done fi else dnl Didn't find the library; assume it is in the system directories dnl known to the linker and runtime loader. (All the system dnl directories known to the linker should also be known to the dnl runtime loader, otherwise the system is severely misconfigured.) LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user must dnl pass all path elements in one option. We can arrange that for a dnl single library, but not when more than one $LIBNAMEs are used. alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" done dnl Note: hardcode_libdir_flag_spec uses $libdir and $wl. acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" else dnl The -rpath options are cumulative. for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then dnl When using libtool, the option that works for both libraries and dnl executables is -R. The -R options are cumulative. for found_dir in $ltrpathdirs; do LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" done fi ]) dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, dnl unless already present in VAR. dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes dnl contains two or three consecutive elements that belong together. AC_DEFUN([AC_LIB_APPENDTOVAR], [ for element in [$2]; do haveit= for x in $[$1]; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then [$1]="${[$1]}${[$1]:+ }$element" fi done ]) mp3splt-gtk-0.7.2/m4/inttypes_h.m40000664000175000017500000000210311241331367013575 00000000000000# inttypes_h.m4 serial 5 (gettext-0.12) dnl Copyright (C) 1997-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_INTTYPES_H_WITH_UINTMAX if exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([jm_AC_HEADER_INTTYPES_H], [ AC_CACHE_CHECK([for inttypes.h], jm_ac_cv_header_inttypes_h, [AC_TRY_COMPILE( [#include #include ], [uintmax_t i = (uintmax_t) -1;], jm_ac_cv_header_inttypes_h=yes, jm_ac_cv_header_inttypes_h=no)]) if test $jm_ac_cv_header_inttypes_h = yes; then AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1, [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) mp3splt-gtk-0.7.2/m4/mp3splt.m40000664000175000017500000000664511454363547013043 00000000000000# Alexandru Munteanu # Slightly modified 'ogg.m4' AC_DEFUN([MP3SPLT_CHECK], [ AC_ARG_WITH(mp3splt, [AC_HELP_STRING([--with-mp3splt=PFX], [ Prefix where libmp3splt is installed (optional). ]) ], mp3splt_prefix="$withval", mp3splt_prefix="") AC_ARG_WITH(mp3splt-libraries, [AC_HELP_STRING([--with-mp3splt-libraries=DIR], [ Directory where libmp3splt library is installed (optional). ]) ], mp3splt_libraries="$withval", mp3splt_libraries="") AC_ARG_WITH(mp3splt-includes, [AC_HELP_STRING([--with-mp3splt-includes=DIR], [ Directory where libmp3splt header files are installed (optional). ]) ], mp3splt_includes="$withval", mp3splt_includes="") AC_ARG_ENABLE(mp3splttest, [AC_HELP_STRING([--disable-mp3splttest], [ Do not try to compile and run a test mp3splt program. ]) ], , enable_mp3splttest=yes) if test "x$mp3splt_libraries" != "x"; then MP3SPLT_LIBS="-L$mp3splt_libraries" elif test "x$mp3splt_prefix" != "x"; then MP3SPLT_LIBS="-L$mp3splt_prefix/lib" elif test "x$prefix" != "xNONE"; then MP3SPLT_LIBS="-L$prefix/lib" fi MP3SPLT_LIBS="$MP3SPLT_LIBS -lmp3splt" if test "x$mp3splt_includes" != "x"; then MP3SPLT_CFLAGS="-I$mp3splt_includes" elif test "x$mp3splt_prefix" != "x"; then MP3SPLT_CFLAGS="-I$mp3splt_prefix/include" elif test "x$prefix" != "xNONE"; then mp3splt_CFLAGS="-I$prefix/include" fi AC_MSG_CHECKING(for libmp3splt) no_mp3splt="" if test "x$enable_mp3splttest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $MP3SPLT_CFLAGS" LIBS="$LIBS $MP3SPLT_LIBS" rm -f conf.mp3splttest AC_TRY_RUN([ #include #include #include #include int main () { system("touch conf.mp3splttest"); return 0; } ],, no_mp3splt=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi if test "x$no_mp3splt" = "x" ; then AC_MSG_RESULT(yes) ifelse([$1], , :, [$1]) else AC_MSG_RESULT(no) if test -f conf.mp3splttest ; then : else echo "*** Could not run libmp3splt test program, checking why..." CFLAGS="$CFLAGS $MP3SPLT_CFLAGS" LIBS="$LIBS $MP3SPLT_LIBS" AC_TRY_LINK([ #include #include ], [ return 0; ], [ echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding libmp3splt or finding the wrong" echo "*** version of libmp3splt. If it is not finding libmp3splt, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"], [ echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means libmp3splt was incorrectly installed" echo "*** or that you have moved libmp3splt since it was installed." ]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi MP3SPLT_CFLAGS="" MP3SPLT_LIBS="" ifelse([$2], , :, [$2]) fi AC_SUBST(MP3SPLT_CFLAGS) AC_SUBST(MP3SPLT_LIBS) rm -f conf.mp3splttest ]) mp3splt-gtk-0.7.2/m4/Makefile0000644000175000017500000003060611753562406012624 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # m4/Makefile. Generated from Makefile.in by configure. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in 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. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. pkgdatadir = $(datadir)/mp3splt-gtk pkgincludedir = $(includedir)/mp3splt-gtk pkglibdir = $(libdir)/mp3splt-gtk pkglibexecdir = $(libexecdir)/mp3splt-gtk am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = x86_64-unknown-linux-gnu host_triplet = x86_64-unknown-linux-gnu subdir = m4 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/gnome-doc-utils.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/mp3splt.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = ${SHELL} /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/build-aux/missing --run aclocal-1.11 AMTAR = $${TAR-tar} AM_DEFAULT_VERBOSITY = 1 AUDACIOUS_CFLAGS = AUDACIOUS_LIBS = -laudclient AUTOCONF = ${SHELL} /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/build-aux/missing --run autoconf AUTOHEADER = ${SHELL} /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/build-aux/missing --run autoheader AUTOMAKE = ${SHELL} /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/build-aux/missing --run automake-1.11 AWK = gawk CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -I/usr/include -I/usr/local/include -I/tmp/temp/usr/include -I/home/ion/hacking/mp3splt-project/mp3splt-project/trunk/libmp3splt/include -DGTK_DISABLE_SINGLE_INCLUDES -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGSEAL_ENABLE CPP = gcc -E CPPFLAGS = CYGPATH_W = echo DEFS = -DHAVE_CONFIG_H DEPDIR = .deps DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper DOC_USER_FORMATS = DOXYGEN = /usr/bin/doxygen ECHO_C = ECHO_N = -n ECHO_T = EGREP = /bin/grep -E EXEEXT = FAKE_GTK_CFLAGS = -DGSEAL_ENABLE -pthread -I/usr/include/gtk-3.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 FAKE_GTK_LIBS = -pthread -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lrt -lglib-2.0 GMSGFMT = /usr/bin/msgfmt GRAPHVIZ = /usr/bin/dot GREP = /bin/grep GST_CFLAGS = -pthread -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/libxml2 GST_LIBS = -pthread -lgstbase-0.10 -lgstreamer-0.10 -lgobject-2.0 -lgmodule-2.0 -lgthread-2.0 -lrt -lxml2 -lglib-2.0 GTK_CFLAGS = -DGSEAL_ENABLE -pthread -I/usr/include/gtk-3.0 -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 GTK_LIBS = -pthread -lgtk-3 -lgdk-3 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo-gobject -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgmodule-2.0 -lrt -lglib-2.0 HELP_DIR = ${datadir}/gnome/help INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s INTLLIBS = LDFLAGS = -L/usr/lib -L/usr/local/lib -L/tmp/temp/usr/lib -L/home/ion/hacking/mp3splt-project/mp3splt-project/trunk/libmp3splt/src/.libs LIBICONV = -liconv LIBINTL = LIBOBJS = LIBS = LN_S = ln -s LOCALEDIR = LTLIBICONV = -liconv LTLIBINTL = LTLIBOBJS = MAINT = MAKEINFO = ${SHELL} /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/build-aux/missing --run makeinfo MKDIR_P = /bin/mkdir -p MKINSTALLDIRS = $(top_builddir)/build-aux/mkinstalldirs MP3SPLT_CFLAGS = MP3SPLT_LIBS = -L/usr/lib -lmp3splt MSGFMT = /usr/bin/msgfmt MSGMERGE = /usr/bin/msgmerge OBJEXT = o OMF_DIR = ${datadir}/omf PACKAGE = mp3splt-gtk PACKAGE_BUGREPORT = mp3splt.sf.net PACKAGE_NAME = mp3splt-gtk PACKAGE_STRING = mp3splt-gtk 0.7.2 PACKAGE_TARNAME = mp3splt-gtk PACKAGE_URL = PACKAGE_VERSION = 0.7.2 PATH_SEPARATOR = : PKG_CONFIG = /usr/bin/pkg-config PKG_CONFIG_LIBDIR = PKG_CONFIG_PATH = POSUB = po SET_MAKE = SHELL = /bin/sh STRIP = USE_NLS = yes VERSION = 0.7.2 XGETTEXT = /usr/bin/xgettext abs_builddir = /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/m4 abs_srcdir = /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/m4 abs_top_builddir = /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk abs_top_srcdir = /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk ac_ct_CC = gcc am__include = include am__leading_dot = . am__quote = am__tar = $${TAR-tar} chof - "$$tardir" am__untar = $${TAR-tar} xf - bindir = ${exec_prefix}/bin build = x86_64-unknown-linux-gnu build_alias = build_cpu = x86_64 build_os = linux-gnu build_vendor = unknown builddir = . datadir = ${datarootdir} datarootdir = ${prefix}/share docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} dvidir = ${docdir} exec_prefix = ${prefix} host = x86_64-unknown-linux-gnu host_alias = host_cpu = x86_64 host_os = linux-gnu host_vendor = unknown htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info install_sh = ${SHELL} /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/build-aux/install-sh libdir = ${exec_prefix}/lib libexecdir = ${exec_prefix}/libexec localedir = ${datarootdir}/locale localstatedir = ${prefix}/var mandir = ${datarootdir}/man mkdir_p = /bin/mkdir -p oldincludedir = /usr/include pdfdir = ${docdir} prefix = /usr program_transform_name = s,x,x, psdir = ${docdir} sbindir = ${exec_prefix}/sbin sharedstatedir = ${prefix}/com srcdir = . sysconfdir = ${prefix}/etc target_alias = top_build_prefix = ../ top_builddir = .. top_srcdir = .. EXTRA_DIST = \ codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 \ inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 \ lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 \ ulonglong.m4 mp3splt.m4 all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu m4/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mp3splt-gtk-0.7.2/m4/po.m40000664000175000017500000004060111241331370012024 00000000000000# po.m4 serial 2 (gettext-0.13) dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. dnl Checks for all prerequisites of the po subdirectory. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_MKINSTALLDIRS])dnl AC_REQUIRE([AM_NLS])dnl dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) dnl Search for GNU xgettext 0.12 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1], :) dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. dnl Test whether we really found GNU msgfmt. if test "$GMSGFMT" != ":"; then dnl If it is no GNU msgfmt we define it as : so that the dnl Makefiles still can work. if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` AC_MSG_RESULT( [found $GMSGFMT program is not GNU msgfmt; ignore it]) GMSGFMT=":" fi fi dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. dnl Test whether we really found GNU xgettext. if test "$XGETTEXT" != ":"; then dnl If it is no GNU xgettext we define it as : so that the dnl Makefiles still can work. if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else AC_MSG_RESULT( [found xgettext program is not GNU xgettext; ignore it]) XGETTEXT=":" fi dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po fi AC_OUTPUT_COMMANDS([ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Postprocesses a Makefile in a directory containing PO files. AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], [ # When this code is run, in config.status, two variables have already been # set: # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, # - LINGUAS is the value of the environment variable LINGUAS at configure # time. changequote(,)dnl # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Find a way to echo strings without interpreting backslash. if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then gt_echo='echo' else if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then gt_echo='printf %s\n' else echo_func () { cat < "$ac_file.tmp" if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` cat >> "$ac_file.tmp" <> "$ac_file.tmp" <, 1995. # Check whether LC_MESSAGES is available in . AC_DEFUN([AM_LC_MESSAGES], [ AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your file defines LC_MESSAGES.]) fi ]) mp3splt-gtk-0.7.2/m4/inttypes.m40000664000175000017500000000171711241331367013300 00000000000000# inttypes.m4 serial 1 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_INTTYPES_H if exists and doesn't clash with # . AC_DEFUN([gt_HEADER_INTTYPES_H], [ AC_CACHE_CHECK([for inttypes.h], gt_cv_header_inttypes_h, [ AC_TRY_COMPILE( [#include #include ], [], gt_cv_header_inttypes_h=yes, gt_cv_header_inttypes_h=no) ]) if test $gt_cv_header_inttypes_h = yes; then AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H, 1, [Define if exists and doesn't clash with .]) fi ]) mp3splt-gtk-0.7.2/m4/lib-ld.m40000664000175000017500000000675611241331367012574 00000000000000# lib-ld.m4 serial 3 (gettext-0.13) dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl Subroutines of libtool.m4, dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision dnl with libtool.m4. dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld, [# I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by GCC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]* | [A-Za-z]:[\\/]*)] [re_direlt='/[^/][^/]*/\.\./'] # Canonicalize the path of ld ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(acl_cv_path_LD, [if test -z "$LD"; then IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi]) LD="$acl_cv_path_LD" if test -n "$LD"; then AC_MSG_RESULT($LD) else AC_MSG_RESULT(no) fi test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) AC_LIB_PROG_LD_GNU ]) mp3splt-gtk-0.7.2/m4/wint_t.m40000664000175000017500000000153111241331370012711 00000000000000# wint_t.m4 serial 1 (gettext-0.12) dnl Copyright (C) 2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether has the 'wint_t' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_WINT_T], [ AC_CACHE_CHECK([for wint_t], gt_cv_c_wint_t, [AC_TRY_COMPILE([#include wint_t foo = (wchar_t)'\0';], , gt_cv_c_wint_t=yes, gt_cv_c_wint_t=no)]) if test $gt_cv_c_wint_t = yes; then AC_DEFINE(HAVE_WINT_T, 1, [Define if you have the 'wint_t' type.]) fi ]) mp3splt-gtk-0.7.2/m4/inttypes-pri.m40000664000175000017500000000222711241331367014065 00000000000000# inttypes-pri.m4 serial 1 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. # Define PRI_MACROS_BROKEN if exists and defines the PRI* # macros to non-string values. This is the case on AIX 4.3.3. AC_DEFUN([gt_INTTYPES_PRI], [ AC_REQUIRE([gt_HEADER_INTTYPES_H]) if test $gt_cv_header_inttypes_h = yes; then AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], gt_cv_inttypes_pri_broken, [ AC_TRY_COMPILE([#include #ifdef PRId32 char *p = PRId32; #endif ], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes) ]) fi if test "$gt_cv_inttypes_pri_broken" = yes; then AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1, [Define if exists and defines unusable PRI* macros.]) fi ]) mp3splt-gtk-0.7.2/m4/iconv.m40000664000175000017500000000665311241331367012543 00000000000000# iconv.m4 serial AM4 (gettext-0.11.3) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_func_iconv=yes) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_lib_iconv=yes am_cv_func_iconv=yes) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST(LIBICONV) AC_SUBST(LTLIBICONV) ]) AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL(am_cv_proto_iconv, [ AC_TRY_COMPILE([ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([$]{ac_t:- }[$]am_cv_proto_iconv) AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, [Define as const if the declaration of iconv() needs const.]) fi ]) mp3splt-gtk-0.7.2/m4/gnome-doc-utils.m40000644000000000000000000000357211735522677014412 00000000000000dnl Do not call GNOME_DOC_DEFINES directly. It is split out from dnl GNOME_DOC_INIT to allow gnome-doc-utils to bootstrap off itself. AC_DEFUN([GNOME_DOC_DEFINES], [ AC_ARG_WITH([help-dir], AC_HELP_STRING([--with-help-dir=DIR], [path to help docs]),, [with_help_dir='${datadir}/gnome/help']) HELP_DIR="$with_help_dir" AC_SUBST(HELP_DIR) AC_ARG_WITH([omf-dir], AC_HELP_STRING([--with-omf-dir=DIR], [path to OMF files]),, [with_omf_dir='${datadir}/omf']) OMF_DIR="$with_omf_dir" AC_SUBST(OMF_DIR) AC_ARG_WITH([help-formats], AC_HELP_STRING([--with-help-formats=FORMATS], [list of formats]),, [with_help_formats='']) DOC_USER_FORMATS="$with_help_formats" AC_SUBST(DOC_USER_FORMATS) AC_ARG_ENABLE([scrollkeeper], [AC_HELP_STRING([--disable-scrollkeeper], [do not make updates to the scrollkeeper database])],, enable_scrollkeeper=yes) AM_CONDITIONAL([ENABLE_SK],[test "$gdu_cv_have_gdu" = "yes" -a "$enable_scrollkeeper" = "yes"]) dnl disable scrollkeeper automatically for distcheck DISTCHECK_CONFIGURE_FLAGS="--disable-scrollkeeper $DISTCHECK_CONFIGURE_FLAGS" AC_SUBST(DISTCHECK_CONFIGURE_FLAGS) AM_CONDITIONAL([HAVE_GNOME_DOC_UTILS],[test "$gdu_cv_have_gdu" = "yes"]) ]) # GNOME_DOC_INIT ([MINIMUM-VERSION],[ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND]) # AC_DEFUN([GNOME_DOC_INIT], [AC_REQUIRE([AC_PROG_LN_S])dnl if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi AC_SUBST([AM_DEFAULT_VERBOSITY]) ifelse([$1],,[gdu_cv_version_required=0.3.2],[gdu_cv_version_required=$1]) AC_MSG_CHECKING([gnome-doc-utils >= $gdu_cv_version_required]) PKG_CHECK_EXISTS([gnome-doc-utils >= $gdu_cv_version_required], [gdu_cv_have_gdu=yes],[gdu_cv_have_gdu=no]) if test "$gdu_cv_have_gdu" = "yes"; then AC_MSG_RESULT([yes]) ifelse([$2],,[:],[$2]) else AC_MSG_RESULT([no]) ifelse([$3],,[AC_MSG_ERROR([gnome-doc-utils >= $gdu_cv_version_required not found])],[$3]) fi GNOME_DOC_DEFINES ]) mp3splt-gtk-0.7.2/m4/gettext.m40000664000175000017500000004513011241331367013102 00000000000000# gettext.m4 serial 28 (gettext-0.13) dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value `$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define(gt_included_intl, ifelse([$1], [external], [no], [yes])) define(gt_libtool_suffix_prefix, ifelse([$1], [use-libtool], [l], [])) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if test "$gt_cv_func_gnugettext_libc" != "yes"; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) dnl Set USE_NLS. AM_NLS ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH(included-gettext, [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT($nls_cv_force_use_gnu_gettext) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. dnl Add a version number to the cache macros. define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext], 2, 1))) define([gt_cv_func_gnugettext_libc], [gt_cv_func_gnugettext]gt_api_version[_libc]) define([gt_cv_func_gnugettext_libintl], [gt_cv_func_gnugettext]gt_api_version[_libintl]) AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc, [AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings;], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings], gt_cv_func_gnugettext_libc=yes, gt_cv_func_gnugettext_libc=no)]) if test "$gt_cv_func_gnugettext_libc" != "yes"; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], gt_cv_func_gnugettext_libintl, [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias ();], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], gt_cv_func_gnugettext_libintl=yes, gt_cv_func_gnugettext_libintl=no) dnl Now see whether libintl exists and depends on libiconv. if test "$gt_cv_func_gnugettext_libintl" != yes && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias ();], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" gt_cv_func_gnugettext_libintl=yes ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if test "$gt_cv_func_gnugettext_libc" = "yes" \ || { test "$gt_cv_func_gnugettext_libintl" = "yes" \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE(ENABLE_NLS, 1, [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi AC_MSG_CHECKING([whether to use NLS]) AC_MSG_RESULT([$USE_NLS]) if test "$USE_NLS" = "yes"; then AC_MSG_CHECKING([where the gettext function comes from]) if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext_libintl" = "yes"; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi AC_MSG_RESULT([$gt_source]) fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext_libintl" = "yes"; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE(HAVE_GETTEXT, 1, [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE(HAVE_DCGETTEXT, 1, [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST(BUILD_INCLUDED_LIBINTL) AC_SUBST(USE_INCLUDED_LIBINTL) AC_SUBST(CATOBJEXT) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST(DATADIRNAME) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST(INSTOBJEXT) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST(GENCAT) dnl For backward compatibility. Some Makefiles may be using this. if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi AC_SUBST(INTLOBJS) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST(INTLLIBS) dnl Make all documented variables known to autoconf. AC_SUBST(LIBINTL) AC_SUBST(LTLIBINTL) AC_SUBST(POSUB) ]) dnl Checks for all prerequisites of the intl subdirectory, dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS, dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL. AC_DEFUN([AM_INTL_SUBDIR], [ AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_MKINSTALLDIRS])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_RANLIB])dnl AC_REQUIRE([AC_ISC_POSIX])dnl AC_REQUIRE([AC_HEADER_STDC])dnl AC_REQUIRE([AC_C_CONST])dnl AC_REQUIRE([bh_C_SIGNED])dnl AC_REQUIRE([AC_C_INLINE])dnl AC_REQUIRE([AC_TYPE_OFF_T])dnl AC_REQUIRE([AC_TYPE_SIZE_T])dnl AC_REQUIRE([jm_AC_TYPE_LONG_LONG])dnl AC_REQUIRE([gt_TYPE_LONGDOUBLE])dnl AC_REQUIRE([gt_TYPE_WCHAR_T])dnl AC_REQUIRE([gt_TYPE_WINT_T])dnl AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) AC_REQUIRE([jm_AC_HEADER_STDINT_H]) AC_REQUIRE([gt_TYPE_INTMAX_T]) AC_REQUIRE([gt_PRINTF_POSIX]) AC_REQUIRE([AC_FUNC_ALLOCA])dnl AC_REQUIRE([AC_FUNC_MMAP])dnl AC_REQUIRE([jm_GLIBC21])dnl AC_REQUIRE([gt_INTDIV0])dnl AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])dnl AC_REQUIRE([gt_HEADER_INTTYPES_H])dnl AC_REQUIRE([gt_INTTYPES_PRI])dnl AC_REQUIRE([gl_XSIZE])dnl AC_CHECK_TYPE([ptrdiff_t], , [AC_DEFINE([ptrdiff_t], [long], [Define as the type of the result of subtracting two pointers, if the system doesn't define it.]) ]) AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h]) AC_CHECK_FUNCS([asprintf fwprintf getcwd getegid geteuid getgid getuid \ mempcpy munmap putenv setenv setlocale snprintf stpcpy strcasecmp strdup \ strtoul tsearch wcslen __argz_count __argz_stringify __argz_next \ __fsetlocking]) dnl Use the _snprintf function only if it is declared (because on NetBSD it dnl is defined as a weak alias of snprintf; we prefer to use the latter). gt_CHECK_DECL(_snprintf, [#include ]) gt_CHECK_DECL(_snwprintf, [#include ]) dnl Use the *_unlocked functions only if they are declared. dnl (because some of them were defined without being declared in Solaris dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built dnl on Solaris 2.5.1 to run on Solaris 2.6). dnl Don't use AC_CHECK_DECLS because it isn't supported in autoconf-2.13. gt_CHECK_DECL(feof_unlocked, [#include ]) gt_CHECK_DECL(fgets_unlocked, [#include ]) gt_CHECK_DECL(getc_unlocked, [#include ]) case $gt_cv_func_printf_posix in *yes) HAVE_POSIX_PRINTF=1 ;; *) HAVE_POSIX_PRINTF=0 ;; esac AC_SUBST([HAVE_POSIX_PRINTF]) if test "$ac_cv_func_asprintf" = yes; then HAVE_ASPRINTF=1 else HAVE_ASPRINTF=0 fi AC_SUBST([HAVE_ASPRINTF]) if test "$ac_cv_func_snprintf" = yes; then HAVE_SNPRINTF=1 else HAVE_SNPRINTF=0 fi AC_SUBST([HAVE_SNPRINTF]) if test "$ac_cv_func_wprintf" = yes; then HAVE_WPRINTF=1 else HAVE_WPRINTF=0 fi AC_SUBST([HAVE_WPRINTF]) AM_ICONV AM_LANGINFO_CODESET if test $ac_cv_header_locale_h = yes; then AM_LC_MESSAGES fi dnl intl/plural.c is generated from intl/plural.y. It requires bison, dnl because plural.y uses bison specific features. It requires at least dnl bison-1.26 because earlier versions generate a plural.c that doesn't dnl compile. dnl bison is only needed for the maintainer (who touches plural.y). But in dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put dnl the rule in general Makefile. Now, some people carelessly touch the dnl files or have a broken "make" program, hence the plural.c rule will dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not dnl present or too old. AC_CHECK_PROGS([INTLBISON], [bison]) if test -z "$INTLBISON"; then ac_verc_fail=yes else dnl Found it, now check the version. AC_MSG_CHECKING([version of bison]) changequote(<<,>>)dnl ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) changequote([,])dnl ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac AC_MSG_RESULT([$ac_prog_version]) fi if test $ac_verc_fail = yes; then INTLBISON=: fi ]) dnl gt_CHECK_DECL(FUNC, INCLUDES) dnl Check whether a function is declared. AC_DEFUN([gt_CHECK_DECL], [ AC_CACHE_CHECK([whether $1 is declared], ac_cv_have_decl_$1, [AC_TRY_COMPILE([$2], [ #ifndef $1 char *p = (char *) $1; #endif ], ac_cv_have_decl_$1=yes, ac_cv_have_decl_$1=no)]) if test $ac_cv_have_decl_$1 = yes; then gt_value=1 else gt_value=0 fi AC_DEFINE_UNQUOTED([HAVE_DECL_]translit($1, [a-z], [A-Z]), [$gt_value], [Define to 1 if you have the declaration of `$1', and to 0 if you don't.]) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) mp3splt-gtk-0.7.2/m4/longlong.m40000664000175000017500000000164311241331370013230 00000000000000# longlong.m4 serial 4 dnl Copyright (C) 1999-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_LONG_LONG if 'long long' works. AC_DEFUN([jm_AC_TYPE_LONG_LONG], [ AC_CACHE_CHECK([for long long], ac_cv_type_long_long, [AC_TRY_LINK([long long ll = 1LL; int i = 63;], [long long llmax = (long long) -1; return ll << i | ll >> i | llmax / ll | llmax % ll;], ac_cv_type_long_long=yes, ac_cv_type_long_long=no)]) if test $ac_cv_type_long_long = yes; then AC_DEFINE(HAVE_LONG_LONG, 1, [Define if you have the 'long long' type.]) fi ]) mp3splt-gtk-0.7.2/m4/codeset.m40000664000175000017500000000157611241331367013052 00000000000000# codeset.m4 serial AM1 (gettext-0.10.40) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([AM_LANGINFO_CODESET], [ AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset, [AC_TRY_LINK([#include ], [char* cs = nl_langinfo(CODESET);], am_cv_langinfo_codeset=yes, am_cv_langinfo_codeset=no) ]) if test $am_cv_langinfo_codeset = yes; then AC_DEFINE(HAVE_LANGINFO_CODESET, 1, [Define if you have and nl_langinfo(CODESET).]) fi ]) mp3splt-gtk-0.7.2/m4/wchar_t.m40000664000175000017500000000155311241331370013040 00000000000000# wchar_t.m4 serial 1 (gettext-0.12) dnl Copyright (C) 2002-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether has the 'wchar_t' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_WCHAR_T], [ AC_CACHE_CHECK([for wchar_t], gt_cv_c_wchar_t, [AC_TRY_COMPILE([#include wchar_t foo = (wchar_t)'\0';], , gt_cv_c_wchar_t=yes, gt_cv_c_wchar_t=no)]) if test $gt_cv_c_wchar_t = yes; then AC_DEFINE(HAVE_WCHAR_T, 1, [Define if you have the 'wchar_t' type.]) fi ]) mp3splt-gtk-0.7.2/m4/Makefile.am0000664000175000017500000000040411454363547013216 00000000000000EXTRA_DIST = \ codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 \ inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 \ lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 \ ulonglong.m4 mp3splt.m4 mp3splt-gtk-0.7.2/m4/Makefile.in0000644000175000017500000002453211753562401013225 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in 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. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = m4 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/gnome-doc-utils.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/mp3splt.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUDACIOUS_CFLAGS = @AUDACIOUS_CFLAGS@ AUDACIOUS_LIBS = @AUDACIOUS_LIBS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@ DOC_USER_FORMATS = @DOC_USER_FORMATS@ DOXYGEN = @DOXYGEN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FAKE_GTK_CFLAGS = @FAKE_GTK_CFLAGS@ FAKE_GTK_LIBS = @FAKE_GTK_LIBS@ GMSGFMT = @GMSGFMT@ GRAPHVIZ = @GRAPHVIZ@ GREP = @GREP@ GST_CFLAGS = @GST_CFLAGS@ GST_LIBS = @GST_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HELP_DIR = @HELP_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LOCALEDIR = @LOCALEDIR@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MP3SPLT_CFLAGS = @MP3SPLT_CFLAGS@ MP3SPLT_LIBS = @MP3SPLT_LIBS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = \ codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 \ inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 \ lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 \ ulonglong.m4 mp3splt.m4 all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu m4/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu m4/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mp3splt-gtk-0.7.2/m4/printf-posix.m40000664000175000017500000000310611241331370014047 00000000000000# printf-posix.m4 serial 2 (gettext-0.13.1) dnl Copyright (C) 2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether the printf() function supports POSIX/XSI format strings with dnl positions. AC_DEFUN([gt_PRINTF_POSIX], [ AC_REQUIRE([AC_PROG_CC]) AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings], gt_cv_func_printf_posix, [ AC_TRY_RUN([ #include #include /* The string "%2$d %1$d", with dollar characters protected from the shell's dollar expansion (possibly an autoconf bug). */ static char format[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\0' }; static char buf[100]; int main () { sprintf (buf, format, 33, 55); return (strcmp (buf, "55 33") != 0); }], gt_cv_func_printf_posix=yes, gt_cv_func_printf_posix=no, [ AC_EGREP_CPP(notposix, [ #if defined __NetBSD__ || defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__ notposix #endif ], gt_cv_func_printf_posix="guessing no", gt_cv_func_printf_posix="guessing yes") ]) ]) case $gt_cv_func_printf_posix in *yes) AC_DEFINE(HAVE_POSIX_PRINTF, 1, [Define if your printf() function supports format strings with positions.]) ;; esac ]) mp3splt-gtk-0.7.2/m4/nls.m40000664000175000017500000000350511241331370012204 00000000000000# nls.m4 serial 1 (gettext-0.12) dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE(nls, [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT($USE_NLS) AC_SUBST(USE_NLS) ]) AC_DEFUN([AM_MKINSTALLDIRS], [ dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly dnl find the mkinstalldirs script in another subdir but $(top_srcdir). dnl Try to locate it. MKINSTALLDIRS= if test -n "$ac_aux_dir"; then case "$ac_aux_dir" in /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;; *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;; esac fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi AC_SUBST(MKINSTALLDIRS) ]) mp3splt-gtk-0.7.2/m4/stdint_h.m40000664000175000017500000000205311241331370013221 00000000000000# stdint_h.m4 serial 3 (gettext-0.12) dnl Copyright (C) 1997-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_STDINT_H_WITH_UINTMAX if exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([jm_AC_HEADER_STDINT_H], [ AC_CACHE_CHECK([for stdint.h], jm_ac_cv_header_stdint_h, [AC_TRY_COMPILE( [#include #include ], [uintmax_t i = (uintmax_t) -1;], jm_ac_cv_header_stdint_h=yes, jm_ac_cv_header_stdint_h=no)]) if test $jm_ac_cv_header_stdint_h = yes; then AC_DEFINE_UNQUOTED(HAVE_STDINT_H_WITH_UINTMAX, 1, [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) mp3splt-gtk-0.7.2/m4/xsize.m40000664000175000017500000000103111241331370012542 00000000000000# xsize.m4 serial 2 dnl Copyright (C) 2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. AC_DEFUN([gl_XSIZE], [ dnl Prerequisites of lib/xsize.h. AC_REQUIRE([gl_SIZE_MAX]) AC_CHECK_HEADERS(stdint.h) ]) mp3splt-gtk-0.7.2/m4/progtest.m40000664000175000017500000000563411241331370013264 00000000000000# progtest.m4 serial 3 (gettext-0.12) dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1996. # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [ # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, [case "[$]$1" in [[\\/]]* | ?:[[\\/]]*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in ifelse([$5], , $PATH, [$5]); do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) fi AC_SUBST($1)dnl ]) mp3splt-gtk-0.7.2/m4/longdouble.m40000664000175000017500000000230011241331370013532 00000000000000# longdouble.m4 serial 1 (gettext-0.12) dnl Copyright (C) 2002-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether the compiler supports the 'long double' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_LONGDOUBLE], [ AC_CACHE_CHECK([for long double], gt_cv_c_long_double, [if test "$GCC" = yes; then gt_cv_c_long_double=yes else AC_TRY_COMPILE([ /* The Stardent Vistra knows sizeof(long double), but does not support it. */ long double foo = 0.0; /* On Ultrix 4.3 cc, long double is 4 and double is 8. */ int array [2*(sizeof(long double) >= sizeof(double)) - 1]; ], , gt_cv_c_long_double=yes, gt_cv_c_long_double=no) fi]) if test $gt_cv_c_long_double = yes; then AC_DEFINE(HAVE_LONG_DOUBLE, 1, [Define if you have the 'long double' type.]) fi ]) mp3splt-gtk-0.7.2/m4/isc-posix.m40000664000175000017500000000213311241331367013330 00000000000000# isc-posix.m4 serial 2 (gettext-0.11.2) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. # This file is not needed with autoconf-2.53 and newer. Remove it in 2005. # This test replaces the one in autoconf. # Currently this macro should have the same name as the autoconf macro # because gettext's gettext.m4 (distributed in the automake package) # still uses it. Otherwise, the use in gettext.m4 makes autoheader # give these diagnostics: # configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX # configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX undefine([AC_ISC_POSIX]) AC_DEFUN([AC_ISC_POSIX], [ dnl This test replaces the obsolescent AC_ISC_POSIX kludge. AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"]) ] ) mp3splt-gtk-0.7.2/m4/size_max.m40000664000175000017500000000407211241331370013227 00000000000000# size_max.m4 serial 2 dnl Copyright (C) 2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([gl_SIZE_MAX], [ AC_CHECK_HEADERS(stdint.h) dnl First test whether the system already has SIZE_MAX. AC_MSG_CHECKING([for SIZE_MAX]) result= AC_EGREP_CPP([Found it], [ #include #if HAVE_STDINT_H #include #endif #ifdef SIZE_MAX Found it #endif ], result=yes) if test -z "$result"; then dnl Define it ourselves. Here we assume that the type 'size_t' is not wider dnl than the type 'unsigned long'. dnl The _AC_COMPUTE_INT macro works up to LONG_MAX, since it uses 'expr', dnl which is guaranteed to work from LONG_MIN to LONG_MAX. _AC_COMPUTE_INT([~(size_t)0 / 10], res_hi, [#include ], result=?) _AC_COMPUTE_INT([~(size_t)0 % 10], res_lo, [#include ], result=?) _AC_COMPUTE_INT([sizeof (size_t) <= sizeof (unsigned int)], fits_in_uint, [#include ], result=?) if test "$fits_in_uint" = 1; then dnl Even though SIZE_MAX fits in an unsigned int, it must be of type dnl 'unsigned long' if the type 'size_t' is the same as 'unsigned long'. AC_TRY_COMPILE([#include extern size_t foo; extern unsigned long foo; ], [], fits_in_uint=0) fi if test -z "$result"; then if test "$fits_in_uint" = 1; then result="$res_hi$res_lo"U else result="$res_hi$res_lo"UL fi else dnl Shouldn't happen, but who knows... result='~(size_t)0' fi fi AC_MSG_RESULT([$result]) if test "$result" != yes; then AC_DEFINE_UNQUOTED([SIZE_MAX], [$result], [Define as the maximum value of type 'size_t', if the system doesn't define it.]) fi ]) mp3splt-gtk-0.7.2/m4/intdiv0.m40000664000175000017500000000356511241331367013001 00000000000000# intdiv0.m4 serial 1 (gettext-0.11.3) dnl Copyright (C) 2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([gt_INTDIV0], [ AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_CACHE_CHECK([whether integer division by zero raises SIGFPE], gt_cv_int_divbyzero_sigfpe, [ AC_TRY_RUN([ #include #include static void #ifdef __cplusplus sigfpe_handler (int sig) #else sigfpe_handler (sig) int sig; #endif { /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ exit (sig != SIGFPE); } int x = 1; int y = 0; int z; int nan; int main () { signal (SIGFPE, sigfpe_handler); /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) signal (SIGTRAP, sigfpe_handler); #endif /* Linux/SPARC yields signal SIGILL. */ #if defined (__sparc__) && defined (__linux__) signal (SIGILL, sigfpe_handler); #endif z = x / y; nan = y / y; exit (1); } ], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no, [ # Guess based on the CPU. case "$host_cpu" in alpha* | i[34567]86 | m68k | s390*) gt_cv_int_divbyzero_sigfpe="guessing yes";; *) gt_cv_int_divbyzero_sigfpe="guessing no";; esac ]) ]) case "$gt_cv_int_divbyzero_sigfpe" in *yes) value=1;; *) value=0;; esac AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value, [Define if integer division by zero raises signal SIGFPE.]) ]) mp3splt-gtk-0.7.2/m4/ulonglong.m40000664000175000017500000000204211241331370013407 00000000000000# ulonglong.m4 serial 3 dnl Copyright (C) 1999-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_UNSIGNED_LONG_LONG if 'unsigned long long' works. AC_DEFUN([jm_AC_TYPE_UNSIGNED_LONG_LONG], [ AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long, [AC_TRY_LINK([unsigned long long ull = 1ULL; int i = 63;], [unsigned long long ullmax = (unsigned long long) -1; return ull << i | ull >> i | ullmax / ull | ullmax % ull;], ac_cv_type_unsigned_long_long=yes, ac_cv_type_unsigned_long_long=no)]) if test $ac_cv_type_unsigned_long_long = yes; then AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1, [Define if you have the 'unsigned long long' type.]) fi ]) mp3splt-gtk-0.7.2/m4/signed.m40000664000175000017500000000140111241331370012652 00000000000000# signed.m4 serial 1 (gettext-0.10.40) dnl Copyright (C) 2001-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([bh_C_SIGNED], [ AC_CACHE_CHECK([for signed], bh_cv_c_signed, [AC_TRY_COMPILE(, [signed char x;], bh_cv_c_signed=yes, bh_cv_c_signed=no)]) if test $bh_cv_c_signed = no; then AC_DEFINE(signed, , [Define to empty if the C compiler doesn't support this keyword.]) fi ]) mp3splt-gtk-0.7.2/m4/lib-prefix.m40000664000175000017500000001250711241331367013461 00000000000000# lib-prefix.m4 serial 3 (gettext-0.13) dnl Copyright (C) 2001-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't dnl require excessive bracketing. ifdef([AC_HELP_STRING], [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], [AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed dnl to access previously installed libraries. The basic assumption is that dnl a user will want packages to use other packages he previously installed dnl with the same --prefix option. dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate dnl libraries, but is otherwise very convenient. AC_DEFUN([AC_LIB_PREFIX], [ AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib-prefix], [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib --without-lib-prefix don't search for libraries in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi ]) if test $use_additional = yes; then dnl Potentially add $additional_includedir to $CPPFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's already present in $CPPFLAGS, dnl 3. if it's /usr/local/include and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= for x in $CPPFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $CPPFLAGS. CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" fi fi fi fi dnl Potentially add $additional_libdir to $LDFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's already present in $LDFLAGS, dnl 3. if it's /usr/local/lib and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/lib"; then haveit= for x in $LDFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_libdir" = "X/usr/local/lib"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LDFLAGS. LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" fi fi fi fi fi ]) dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, dnl acl_final_exec_prefix, containing the values to which $prefix and dnl $exec_prefix will expand at the end of the configure script. AC_DEFUN([AC_LIB_PREPARE_PREFIX], [ dnl Unfortunately, prefix and exec_prefix get only finally determined dnl at the end of configure. if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" ]) dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the dnl variables prefix and exec_prefix bound to the values they will have dnl at the end of the configure script. AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], [ acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" $1 exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" ]) mp3splt-gtk-0.7.2/m4/uintmax_t.m40000664000175000017500000000235011241331370013415 00000000000000# uintmax_t.m4 serial 7 (gettext-0.12) dnl Copyright (C) 1997-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. AC_PREREQ(2.13) # Define uintmax_t to 'unsigned long' or 'unsigned long long' # if it is not already defined in or . AC_DEFUN([jm_AC_TYPE_UINTMAX_T], [ AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) AC_REQUIRE([jm_AC_HEADER_STDINT_H]) if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) test $ac_cv_type_unsigned_long_long = yes \ && ac_type='unsigned long long' \ || ac_type='unsigned long' AC_DEFINE_UNQUOTED(uintmax_t, $ac_type, [Define to unsigned long or unsigned long long if and don't define.]) else AC_DEFINE(HAVE_UINTMAX_T, 1, [Define if you have the 'uintmax_t' type in or .]) fi ]) mp3splt-gtk-0.7.2/m4/intmax.m40000664000175000017500000000217211241331367012715 00000000000000# intmax.m4 serial 1 (gettext-0.12) dnl Copyright (C) 2002-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether the system has the 'intmax_t' type, but don't attempt to dnl find a replacement if it is lacking. AC_DEFUN([gt_TYPE_INTMAX_T], [ AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) AC_REQUIRE([jm_AC_HEADER_STDINT_H]) AC_CACHE_CHECK(for intmax_t, gt_cv_c_intmax_t, [AC_TRY_COMPILE([ #include #include #if HAVE_STDINT_H_WITH_UINTMAX #include #endif #if HAVE_INTTYPES_H_WITH_UINTMAX #include #endif ], [intmax_t x = -1;], gt_cv_c_intmax_t=yes, gt_cv_c_intmax_t=no)]) if test $gt_cv_c_intmax_t = yes; then AC_DEFINE(HAVE_INTMAX_T, 1, [Define if you have the 'intmax_t' type in or .]) fi ]) mp3splt-gtk-0.7.2/m4/glibc21.m40000664000175000017500000000172711241331367012645 00000000000000# glibc21.m4 serial 2 (fileutils-4.1.3, gettext-0.10.40) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. # Test for the GNU C Library, version 2.1 or newer. # From Bruno Haible. AC_DEFUN([jm_GLIBC21], [ AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer, ac_cv_gnu_library_2_1, [AC_EGREP_CPP([Lucky GNU user], [ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) Lucky GNU user #endif #endif ], ac_cv_gnu_library_2_1=yes, ac_cv_gnu_library_2_1=no) ] ) AC_SUBST(GLIBC21) GLIBC21="$ac_cv_gnu_library_2_1" ] ) mp3splt-gtk-0.7.2/po/0000755000175000017500000000000011753562413011333 500000000000000mp3splt-gtk-0.7.2/po/es_CL.po0000644000175000017500000005603511753562412012610 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Munteanu Alexandru # This file is distributed under the same license as the PACKAGE package. # # Translators: # Ricardo A. Hermosilla Carrillo , 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net\n" "POT-Creation-Date: 2012-05-13 00:32+0200\n" "PO-Revision-Date: 2012-05-11 08:29+0000\n" "Last-Translator: Ricardo A. Hermosilla Carrillo \n" "Language-Team: LANGUAGE \n" "Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #: src/xmms_control.c:82 src/gstreamer_control.c:254 #: src/snackamp_control.c:328 msgid "stereo" msgstr "estéreo" #: src/xmms_control.c:86 src/gstreamer_control.c:258 #: src/snackamp_control.c:332 msgid "mono" msgstr "mono" #: src/xmms_control.c:89 src/gstreamer_control.c:223 #: src/snackamp_control.c:335 msgid "Kbps" msgstr "Kbps." #: src/xmms_control.c:90 src/gstreamer_control.c:224 #: src/snackamp_control.c:336 msgid "Khz" msgstr "Khz" #: src/tree_tab.c:553 msgid "_part" msgstr "" #: src/tree_tab.c:564 #, c-format msgid "%s_part%d" msgstr "" #: src/tree_tab.c:708 src/tree_tab.c:1114 msgid " error: you already have the splitpoint in table" msgstr " error: usted ya tiene el punto de división en la tabla" #: src/tree_tab.c:791 src/tree_tab.c:870 src/tree_tab.c:1124 #: src/freedb_tab.c:466 src/freedb_tab.c:488 msgid "description here" msgstr "descripción aquí" #: src/tree_tab.c:1273 src/tree_tab.c:1695 msgid "Set trim splitpoints using silence detection" msgstr "" #: src/tree_tab.c:1299 src/tree_tab.c:1371 src/preferences_tab.c:721 msgid "Threshold level (dB):" msgstr "Umbral (dB):" #: src/tree_tab.c:1345 src/tree_tab.c:1705 msgid "Set splitpoints from silence detection" msgstr "Establecer puntos de divisiones desde detección de silencio" #: src/tree_tab.c:1388 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end):" msgstr "" "Punto de corte de desplazamiento (0 es el inicio de silencio y 1 el final):" #: src/tree_tab.c:1405 msgid "Number of tracks (0 means all tracks):" msgstr "Número de pistas (0 significa todas las pistas):" #: src/tree_tab.c:1420 msgid "Minimum silence length (seconds):" msgstr "Duración mínima de silencio (segundos):" #: src/tree_tab.c:1434 msgid "Minimum track length (seconds):" msgstr "" #: src/tree_tab.c:1445 msgid "_Remove silence between tracks" msgstr "_Remover silencio entre pistas" #: src/tree_tab.c:1633 msgid "Minutes:" msgstr "Minutos:" #: src/tree_tab.c:1638 msgid "Seconds:" msgstr "Segundos:" #: src/tree_tab.c:1644 msgid "Hundredths:" msgstr "Centésimas:" #: src/tree_tab.c:1650 src/player_tab.c:1052 msgid "_Add" msgstr "_Añadir" #: src/tree_tab.c:1656 msgid "Add splitpoint" msgstr "Añadir punto e división" #: src/tree_tab.c:1660 msgid "_Remove" msgstr "_Remover" #: src/tree_tab.c:1666 msgid "Remove rows" msgstr "Eliminar filas" #: src/tree_tab.c:1670 msgid "R_emove all" msgstr "R_emover todo" #: src/tree_tab.c:1676 msgid "Remove all rows" msgstr "Eliminar todas las filas" #: src/tree_tab.c:1689 msgid "_Trim splitpoints" msgstr "" #: src/tree_tab.c:1699 msgid "_Silence detection" msgstr "Detección de _Silencio" #: src/tree_tab.c:1827 src/mp3splt-gtk.c:399 msgid " finished" msgstr " terminado" #: src/tree_tab.c:1842 msgid " cannot split preview last splitpoint" msgstr " vista previa no disponible para el último punto de división" #: src/tree_tab.c:1883 msgid " cannot preview, not connected to player" msgstr " vista previa no disponible, no está conectado al reproductor" #: src/tree_tab.c:1948 msgid "Keep" msgstr "Mantener" #: src/tree_tab.c:1962 src/split_files.c:111 msgid "Filename" msgstr "Nombre de archivo" #: src/tree_tab.c:1976 msgid "Secs" msgstr "Segs" #: src/tree_tab.c:1990 msgid "Mins" msgstr "Mins" #: src/tree_tab.c:2004 msgid "Hundr" msgstr "Cents" #: src/tree_tab.c:2014 msgid "Length" msgstr "Duración" #: src/tree_tab.c:2025 msgid "LiveP" msgstr "LiveP" #: src/tree_tab.c:2036 msgid "SplitP" msgstr "SplitP" #: src/split_files.c:339 msgid "_Queue files to player" msgstr "_Enlistar archivos al reproductor" #: src/split_files.c:349 msgid "_Delete selected files" msgstr "El_iminar archivos seleccionados" #: src/split_files.c:359 msgid "D_elete all files" msgstr "Eli_minar todos los archivos" #: src/preferences_tab.c:476 msgid "Choose language (requires restart)" msgstr "Elija idioma (requiere reiniciar)" #: src/preferences_tab.c:511 msgid "Choose split directory" msgstr "Elija un directorio para dividir" #: src/preferences_tab.c:663 msgid "Br_owse dir" msgstr "E_xaminar directorio" #: src/preferences_tab.c:671 msgid "_Song dir" msgstr "Dir _Canción" #: src/preferences_tab.c:676 msgid "Directory for split files" msgstr "Directorio para dividir archivos" #: src/preferences_tab.c:685 msgid "_Splitpoint name from filename (testing)" msgstr "" #: src/preferences_tab.c:691 msgid "_Create directories from filenames " msgstr "_Crear directorios desde nombres de archivo" #: src/preferences_tab.c:697 msgid "F_rame mode (useful for mp3 VBR) (mp3 only)" msgstr "Modo ma_rco (útil para mp3 VBR) (mp3 solamente)" #: src/preferences_tab.c:704 msgid "_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)" msgstr "" "Modo _Auto-ajustar (utiliza detección de silencios para auto-ajustar puntos " "de división)" #: src/preferences_tab.c:736 msgid "Cutpoint offset (0 is the begin of silence and 1 the end):" msgstr "" "Punto de corte de desplazamiento (0 es el inicio de silencio y 1 el final):" #: src/preferences_tab.c:753 msgid "Gap level (seconds around splitpoint to search for silence):" msgstr "" "Nivel de Omisión (segundos en punto de división para buscar un silencio):" #: src/preferences_tab.c:772 msgid "Set _default split options" msgstr "Establecer opciones de división por _defecto" #: src/preferences_tab.c:778 msgid "Split options" msgstr "Opciones de División" #: src/preferences_tab.c:846 msgid "Player:" msgstr "" #: src/preferences_tab.c:868 msgid "Refresh player every " msgstr "" #: src/preferences_tab.c:879 msgid "milliseconds." msgstr "" #: src/preferences_tab.c:884 msgid "Higher refresh rate decreases CPU usage - default is 200." msgstr "" #: src/preferences_tab.c:888 msgid "Player options" msgstr "Opciones del reproductor" #: src/preferences_tab.c:936 msgid "Default format" msgstr "Formato predeterminado" #: src/preferences_tab.c:940 msgid "Custom format" msgstr "Formato personalizado" #: src/preferences_tab.c:957 msgid "" " @f - file name\n" " @a - artist name\n" " @p - performer of each song (does not always exist)\n" " @b - album title\n" " @t - song title\n" " @g - genre\n" " @n - track number" msgstr "" #: src/preferences_tab.c:970 msgid "Output filename format" msgstr "Nombre de archivo del formato de salida" #: src/preferences_tab.c:1015 msgid "Original file tags" msgstr "Etiquetas originales del archivo" #: src/preferences_tab.c:1018 msgid "Default tags (cddb or cue tags)" msgstr "Etiquetas predefinidas (etiquetas cue o cddb)" #: src/preferences_tab.c:1021 msgid "No tags" msgstr "No hay ninguna etiqueta" #: src/preferences_tab.c:1024 msgid "Extract tags from filename" msgstr "Extraer las etiquetas del nombre de archivo" #: src/preferences_tab.c:1031 msgid "Split files tags" msgstr "Dividir etiquetas de los archivos" #: src/preferences_tab.c:1053 msgid "No change" msgstr "Sin cambios" #: src/preferences_tab.c:1054 msgid "lowercase" msgstr "minúsculas" #: src/preferences_tab.c:1055 msgid "UPPERCASE" msgstr "MAYÚSCULAS" #: src/preferences_tab.c:1056 msgid "First uppercase" msgstr "Primero mayúsculas" #: src/preferences_tab.c:1057 msgid "Word Uppercase" msgstr "La palabra en mayúsculas" #: src/preferences_tab.c:1078 msgid ": " msgstr "" #: src/preferences_tab.c:1085 msgid ": " msgstr "" #: src/preferences_tab.c:1093 msgid ": " msgstr "" #: src/preferences_tab.c:1100 msgid "<genre>: " msgstr "" #: src/preferences_tab.c:1107 msgid "<comment>: " msgstr "" #: src/preferences_tab.c:1114 msgid "<year>: " msgstr "" #: src/preferences_tab.c:1121 msgid "<track>: " msgstr "" #: src/preferences_tab.c:1147 msgid "Regular expression:" msgstr "Expresión regular:" #: src/preferences_tab.c:1150 msgid "" "Above enter PERL-like regular expression using named subgroups.\n" "Following names are recognized:\n" " (?<artist>) - artist name\n" " (?<album>) - album title\n" " (?<title>) - track title\n" " (?<tracknum>) - current track number\n" " (?<year>) - year of emission\n" " (?<genre>) - genre\n" " (?<comment>) - comment" msgstr "" #: src/preferences_tab.c:1174 msgid "_Replace underscores by spaces" msgstr "_Reemplazar guión bajo por espacios" #: src/preferences_tab.c:1182 msgid "Artist text properties:" msgstr "Propiedades del artista:" #: src/preferences_tab.c:1186 msgid "Album text properties:" msgstr "Propiedades del álbum:" #: src/preferences_tab.c:1190 msgid "Title text properties:" msgstr "Propiedades del título:" #: src/preferences_tab.c:1194 msgid "Comment text properties:" msgstr "Propiedades del comentario:" #: src/preferences_tab.c:1197 msgid "Genre tag:" msgstr "" #: src/preferences_tab.c:1200 msgid "Comment tag:" msgstr "Etiqueta del comentario:" #: src/preferences_tab.c:1202 msgid "Regular expression test" msgstr "" #: src/preferences_tab.c:1217 msgid "_Test" msgstr "" #: src/preferences_tab.c:1222 msgid "Sample filename:" msgstr "Nombre de archivo de la muestra:" #: src/preferences_tab.c:1226 msgid "Sample result:" msgstr "Resultado de la muestra:" #: src/preferences_tab.c:1237 msgid "ID3v1 & ID3v2 tags" msgstr "etiquetas ID3v1 y ID3v2" #: src/preferences_tab.c:1244 msgid "ID3v2 tags" msgstr "ID3v2" #: src/preferences_tab.c:1250 msgid "ID3v1 tags" msgstr "ID3v1" #: src/preferences_tab.c:1256 msgid "Same tags version as the input file" msgstr "Mismas etiquetas que el archivo de entrada" #: src/preferences_tab.c:1261 msgid "<b>Tags version (mp3 only)</b>" msgstr "<b>Versión Etiquetas (sólo mp3)</b>" #: src/preferences_tab.c:1303 src/main_win.c:560 msgid "Split" msgstr "Dividir" #: src/preferences_tab.c:1309 msgid "Tags" msgstr "Etiquetas" #: src/preferences_tab.c:1315 msgid "Output" msgstr "Salida" #: src/preferences_tab.c:1321 src/main_win.c:709 msgid "Player" msgstr "Reproductor" #: src/preferences_tab.c:1328 msgid "Language" msgstr "Idioma" #: src/player_tab.c:664 src/player_tab.c:698 msgid "Cannot connect to player" msgstr "No se puede conectar al reproductor" #: src/player_tab.c:675 msgid "" "\n" " Cannot connect to snackAmp player.\n" " Please download and install snackamp from\n" "\thttp://snackamp.sourceforge.net\n" "\n" " Verify that snackamp is running.\n" " Verify that your snackamp version is >= 3.1.3\n" "\n" " Verify that you have enabled socket interface in snackamp:\n" " You have to go to\n" "\tTools->Preferences->Miscellaneous\n" " from the snackamp menu and check\n" "\tEnable Socket Interface\n" " Only default port is supported for now(8775)\n" " After that, restart snackamp and mp3splt-gtk should work.\n" msgstr "" "\n" "No se puede conectar al reproductor snackAmp.\n" "Por favor, descargue e instale el reproductor desde\n" "http://snackamp.sourceforge.net\n" "\n" "Verifique que snackamp se está ejecutando.\n" "Verifique que la versión del programa es >= 3.1.3\n" "\n" "Verifique que tiene habilitada la interfaz socket en snackAmp:\n" "Tiene que ir a:\n" "Herramientas->Preferencias->Otros\n" "desde el menú del programa y marcar la casilla\n" "Habilitar Interfaz Socket\n" "Sólo se admite el puerto por defecto por ahora (8775)\n" "Después de eso, reinicie snackAmp y mp3split-gtk funcionará.\n" #: src/player_tab.c:690 msgid "" "\n" " Cannot connect to Audacious player.\n" " Verify that you have installed audacious.\n" "\n" " Put in your PATH variable the directory where the audacious executable is.\n" " If you don't know how to do that, start audacious manually and then try to " "connect.\n" msgstr "" "\n" "No se puede conectar al reproductor Audacious.\n" "Verifique que lo tiene instalado.\n" "\n" "Ponga en su variable PATH el directorio dónde se encuentra instalado " "Audacious.\n" "Si no sabe cómo hacer esto, inicie Audacious manualmente y luego intente " "conectar.\n" #: src/player_tab.c:977 msgid "Previous" msgstr "Anterior" #: src/player_tab.c:995 msgid "Play" msgstr "Reproducir" #: src/player_tab.c:1011 msgid "Pause" msgstr "Pausa" #: src/player_tab.c:1028 msgid "Stop" msgstr "Detener" #: src/player_tab.c:1045 msgid "Next" msgstr "Siguiente" #: src/player_tab.c:1060 msgid "Add splitpoint from player" msgstr "Añadir punto de división desde el reproductor" #: src/player_tab.c:1064 msgid "Amplitude _wave" msgstr "" #: src/player_tab.c:1071 msgid "Shows the amplitude level wave" msgstr "Muestra el nivel de amplitud de onda" #: src/player_tab.c:1075 msgid "_Connect" msgstr "_Conectar" #: src/player_tab.c:1078 msgid "Connect to player" msgstr "Conectar al reproductor" #: src/player_tab.c:1082 msgid "_Disconnect" msgstr "_Desconectar" #: src/player_tab.c:1085 msgid "Disconnect from player" msgstr "Desconectar el reproductor" #: src/player_tab.c:1221 #, c-format msgid "before %s" msgstr "antes de %s" #: src/player_tab.c:2671 msgid " left click on splitpoint selects it, right click erases it" msgstr " clic en el punto de división lo selecciona, clic derecho lo elimina" #: src/player_tab.c:2676 msgid "" " left click + move changes song position, right click + move changes zoom" msgstr "" " clic + mover cambia la posición de la canción, clic derecho + mover cambia " "el zoom" #: src/player_tab.c:2682 msgid "" " left click on point + move changes point position, right click play preview" msgstr "" " clic en el punto + mover cambia la posición del punto, clic derecho " "reproduce la vista previa" #: src/player_tab.c:2687 msgid " left click on rectangle checks/unchecks 'keep splitpoint'" msgstr " clic en el rectángulo marca/desmarca 'mantener punto de división'" #: src/player_tab.c:2877 msgid " quick preview..." msgstr " vista previa rápida..." #: src/player_tab.c:3246 msgid "Splitpoints _view" msgstr "" #: src/player_tab.c:3414 msgid "History" msgstr "Historial" #: src/player_tab.c:3548 msgid "_Erase selected entries" msgstr "_Eliminar entradas seleccionadas" #: src/player_tab.c:3557 msgid "E_rase all history" msgstr "Elimina_r todo el historial" #: src/player_tab.c:3601 msgid "H_istory" msgstr "" #: src/player_tab.c:3674 msgid " quick preview finished, song paused" msgstr " vista previa rápida terminada, canción pausada" #: src/player_tab.c:3820 msgid "Choose File" msgstr "Escoja un Archivo" #: src/player_tab.c:3832 src/multiple_files.c:130 msgid "mp3 and ogg files (*.mp3 *.ogg)" msgstr "archivos mp3 y ogg (*.mp3 *.ogg)" #: src/player_tab.c:3840 src/multiple_files.c:138 msgid "mp3 files (*.mp3)" msgstr "mp3 (*.mp3)" #: src/player_tab.c:3846 src/multiple_files.c:144 msgid "ogg files (*.ogg)" msgstr "ogg (*.ogg)" #: src/player_tab.c:3987 msgid "_Browse" msgstr "_Examinar" #: src/player_tab.c:3991 msgid "Select file" msgstr "Seleccionar archivo" #: src/player_tab.c:3998 msgid "_Fix ogg stream" msgstr "_Corregir flujo ogg" #: src/main_win.c:147 msgid " info: stopping the split process before exiting" msgstr " Info: deteniendo el proceso de división antes de salir" #: src/main_win.c:313 msgid "Error launching external command" msgstr "" #: src/main_win.c:345 msgid "using" msgstr "utilizando" #: src/main_win.c:349 msgid "release of " msgstr "" #: src/main_win.c:446 msgid " info: stopping the split process.. please wait" msgstr " Info: deteniendo el proceso de división .. por favor espere" #: src/main_win.c:485 msgid " error: no file selected" msgstr " error: no hay ningún archivo seleccionado" #: src/main_win.c:490 msgid " error: split in progress..." msgstr " error: división en proceso..." #: src/main_win.c:502 src/main_win.c:506 msgid "Split !" msgstr "¡Dividir!" #: src/main_win.c:548 msgid "_File" msgstr "_Archivo" #: src/main_win.c:549 msgid "_Help" msgstr "_Ayuda" #: src/main_win.c:552 msgid "_Open..." msgstr "_Abrir..." #: src/main_win.c:552 msgid "Open" msgstr "Abrir" #: src/main_win.c:555 msgid "_Import splitpoints..." msgstr "_Importar puntos de división..." #: src/main_win.c:555 msgid "Import" msgstr "Importar" #: src/main_win.c:557 msgid "_Export splitpoints..." msgstr "" #: src/main_win.c:557 msgid "Export" msgstr "" #: src/main_win.c:560 msgid "_Split !" msgstr "_Dividir!" #: src/main_win.c:562 msgid "Messages _history" msgstr "_Historial de mensajes" #: src/main_win.c:562 src/main_win.c:807 src/messages.c:201 msgid "Messages history" msgstr "Historial de mensajes" #: src/main_win.c:565 msgid "_Quit" msgstr "_Salir" #: src/main_win.c:565 msgid "Quit" msgstr "Salir" #: src/main_win.c:569 msgid "_Contents" msgstr "_Contenidos" #: src/main_win.c:569 msgid "Contents" msgstr "Contenidos" #: src/main_win.c:573 msgid "_About" msgstr "_Acerca de" #: src/main_win.c:573 msgid "About" msgstr "Acerca de" #: src/main_win.c:723 msgid "Splitpoints" msgstr "Puntos de división" #: src/main_win.c:735 msgid "Split files" msgstr "" #: src/main_win.c:748 msgid "FreeDB" msgstr "FreeDB" #: src/main_win.c:759 msgid "Type of split" msgstr "Tipo de división" #: src/main_win.c:772 msgid "Preferences" msgstr "Preferencias" #: src/main_win.c:789 msgid "S_top" msgstr "De_tener" #: src/freedb_tab.c:127 #, c-format msgid "%s Revision %d" msgstr "%s Revisión %d" #: src/freedb_tab.c:164 msgid "Album title" msgstr "Título del Ãlbum" #: src/freedb_tab.c:250 src/freedb_tab.c:345 msgid "please wait... contacting tracktype.org" msgstr "por favor espere... conectando a tracktype.org" #: src/freedb_tab.c:545 msgid "Search tracktype.org:" msgstr "Buscar en tracktype.org" #: src/freedb_tab.c:556 msgid "_Search" msgstr "_Buscar" #: src/freedb_tab.c:589 msgid "_Add splitpoints" msgstr "_Añadir puntos de división" #: src/freedb_tab.c:596 msgid "Set splitpoints to the splitpoints table" msgstr "Establecer puntos de división a la tabla" #: src/special_split.c:197 src/special_split.c:271 #, c-format msgid "Split every %2d seconds." msgstr "" #: src/special_split.c:208 src/special_split.c:305 #, c-format msgid "Split in %2d equal time tracks." msgstr "" #: src/special_split.c:243 msgid "Normal" msgstr "Normal" #: src/special_split.c:253 msgid "Time" msgstr "Tiempo" #: src/special_split.c:287 msgid "Equal time tracks" msgstr "Pistas con el mismo tiempo" #: src/special_split.c:320 msgid "Trim using silence detection" msgstr "" #: src/special_split.c:336 src/special_split.c:361 msgid "Threshold level (dB) : " msgstr "" #: src/special_split.c:345 msgid "Silence - split with silence detection" msgstr "Silencio - dividir con detección de silencio" #: src/special_split.c:371 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end) : " msgstr "" #: src/special_split.c:381 msgid "Number of tracks (0 means all tracks) : " msgstr "" #: src/special_split.c:391 msgid "Minimum silence length (seconds) : " msgstr "" #: src/special_split.c:401 msgid "Minimum track length (seconds) : " msgstr "" #: src/special_split.c:409 msgid "Remove silence between tracks" msgstr "Remover silencio entre pistas" #: src/special_split.c:430 msgid "Wrap - split files created with mp3wrap or albumwrap (mp3 only)" msgstr "Envolver - dividir archivos creados con mp3wrap o albumwrap (sólo MP3)" #: src/special_split.c:440 msgid "Error mode (mp3 only)" msgstr "Modo Error (sólo mp3)" #: src/special_split.c:465 msgid "Single file" msgstr "Archivo único" #: src/special_split.c:473 msgid "Batch processing" msgstr "Procesamiento por lotes" #: src/special_split.c:507 msgid "Split mode" msgstr "Modo división" #: src/special_split.c:511 msgid "File mode" msgstr "Modo archivo" #: src/messages.c:180 msgid "Enable _debug messages" msgstr "" #: src/messages.c:187 msgid "C_lear" msgstr "_Limpiar" #: src/multiple_files.c:88 msgid "Complete filename" msgstr "" #: src/multiple_files.c:109 msgid "Choose file or directory" msgstr "Seleccione un archivo o directorio" #: src/multiple_files.c:151 msgid "All Files" msgstr "Todos los archivos" #: src/multiple_files.c:292 msgid "_Add files" msgstr "_Añadir archivos" #: src/multiple_files.c:300 msgid "_Remove selected entries" msgstr "_Remover entradas seleccionadas" #: src/multiple_files.c:309 msgid "R_emove all entries" msgstr "R_emover todas las entradas" #: src/gstreamer_control.c:97 #, c-format msgid "gstreamer error: %s" msgstr "Error gstreamer: %s" #: src/gstreamer_control.c:125 #, c-format msgid "Warning: %s" msgstr "Advertencia: %s" #: src/gstreamer_control.c:153 #, c-format msgid "Info: %s" msgstr "Información: %s" #: src/gstreamer_control.c:412 msgid " error: cannot create gstreamer playbin\n" msgstr " error: No se puede crear playbin gstreamer\n" #: src/mp3splt-gtk.c:166 #, c-format msgid " File '%s' created" msgstr " Archivo '%s' creado" #: src/mp3splt-gtk.c:193 #, c-format msgid " preparing \"%s\" (%d of %d)" msgstr " preparando \"%s\" (%d de %d)" #: src/mp3splt-gtk.c:199 #, c-format msgid " creating \"%s\" (%d of %d)" msgstr " creando \"%s\" (%d de %d)" #: src/mp3splt-gtk.c:205 msgid " searching for sync errors..." msgstr " buscando por errores de sincronización..." #: src/mp3splt-gtk.c:209 #, c-format msgid "S: %02d, Level: %.2f dB; scanning for silence..." msgstr "S: %02d, Nivel: %.2f dB; escaneando por silencios..." #: src/mp3splt-gtk.c:372 msgid " error: no files found in multiple files mode" msgstr " error: no hay archivos encontrados en el modo múltiples archivos" #: src/mp3splt-gtk.c:587 #, c-format msgid "Trying to set the output directory to %s.\n" msgstr "Intentando establecer directorio de salida a %s.\n" #: src/mp3splt-gtk.c:596 #, c-format msgid "Error: The specified output directory is inaccessible!\n" msgstr "Error: El directorio de salida especificado no es accesible!\n" #: src/mp3splt-gtk.c:602 #, c-format msgid "Option -%c requires an argument.\n" msgstr "Opción -%c requiere un argumento.\n" #: src/mp3splt-gtk.c:604 #, c-format msgid "Unknown option `-%c'.\n" msgstr "Opción '-%c' desconocida.\n" #: src/mp3splt-gtk.c:607 #, c-format msgid "Unknown option character `\\x%x'.\n" msgstr "Carácter de opción desconocido: '\\x%x'.\n" #: src/mp3splt-gtk.c:659 #, c-format msgid "Cannot open input file %s\n" msgstr "No se puede abrir el archivo de entrada %s\n" #: src/utilities.c:126 #, c-format msgid "Processing file '%s' ..." msgstr "Procesando archivo '%s'..." #: src/import.c:71 msgid "Choose file to import" msgstr "Escoja un archivo a importar" #: src/import.c:148 msgid "CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)" msgstr "CDDB (*.cddb), CUE (*.cue), Etiquetas Audacity (*.txt)" #: src/import.c:152 msgid "CDDB files (*.cddb)" msgstr "Archivos CDDB (*.cddb)" #: src/import.c:154 msgid "CUE files (*.cue)" msgstr "Archivos CUE (*.cue)" #: src/import.c:156 msgid "Audacity labels files (*.txt)" msgstr "Archivos de etiquetas Audacity (*.txt)" #: src/import.c:158 msgid "All files" msgstr "Todos los archivos" #: src/export.c:199 msgid "Select cue file name" msgstr "" #: src/export.c:212 msgid "cue files (*.cue)" msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/ru_RU.gmo����������������������������������������������������������������������0000644�0001750�0001750�00000040140�11753562413�013012� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����º������ì��û���¼ ������¨��­���©�����W�����j�� ���ƒ��I�����L���×��:���$��;���_��$���›�����À�����Ò�� ���á��)���ë�� ��������6�����T�����j�����‚�����—�����¶��C��¼����������������*�� ���A�� ���M�� ���W�����a�����y�����—�� ���¨��3���´�����è�����ü���������������.�� ���I�����U�����n�����„�� ���›�����¨�����Á�����Ó�����å�� ���î��<���ü�����9�����K�����Z�����z�����‘�����¤�� ���¶�����×��7���í�����%�����,��+���G�� ���s�����}�����†�����–��<����� ���Ú�����å�����í�� ���ó�����ÿ�� ����� ��������(�����/�����8�����=�����B�����F�����O�����V�����h��#���y��!��������¿�����Ä�����Í�� ���Ò�����Ü�����ä��(���ë��&��������;��!���@�����b�����u�����|�����‚�����‡�� ���Ž�����š�����£�����¼�� ���Á�����Í�����á�����ù����� �� ��������)�����G��#���M�����q�����‚�����‘�����§�����°�����µ�� ���Ê�����Ö�����ñ��&����� ���7�����C�����I�� ���Q�� ���]�� ���h�����t�����y�����~�����–�����¬�����±�����È��*���å�� ����� ��������(��!���?�� ���a�����m�����|�����ƒ�� ���ˆ�����“��E���¤�����ê�����ò�� ���û��#��������)�� ���@�����L�����d�����{����������‘�����—�����®�����·�����Î�����Ô�����Ü�����õ����������3�����;�� ���N�����X��(���a�����Š����������¢�� ���¨�����²�����Ä�����Õ�� ���é�����ó�����ø����������*��'���<�����d�����k��Ö��q�� ��H!�����S"��(���n"�����—"��–���®"��¡���E#�� ���ç#��‰���ˆ$��g���%��#���z%�����ž%�����±%��N���Á%��@���&��/���Q&��&���&��3���¨&��.���Ü&��1��� '�����='��,��S'��0���€)��B���±)��1���ô)�����&*�����F*�����X*��3���j*��&���ž*��#���Å*�����é*��7���+�����=+�����V+�����m+��<���+��8���¼+�����õ+��/���,��/���?,��J���o,��#���º,��6���Þ,�����-��&���4-�����[-��-���j-��`���˜-�� ���ù-��%���.��7���@.��&���x.��%���Ÿ.��<���Å.��@���/��*���C/��W���n/�����Æ/��4���Õ/��Y��� 0�����d0�����z0��,���Œ0�����¹0��u���À0�����61�����I1�����X1�����]1�����w1�����1�����ž1�� ���­1�����º1�� ���Ò1�����Þ1�����ñ1�����ø1�����2��"���2��!���=2��A���_2��E���¡2�����ç2�� ���î2�����ü2�����3�����)3�����;3��=���P3��O���Ž3�����Þ3��0���í3��&���4�� ���E4�� ���P4�����[4�� ���j4�����u4�����ˆ4��&���4�� ���Ä4�����Ï4��#���å4��0��� 5��(���:5��"���c5�����†5��;���¢5�� ���Þ5��2���è5��#���6��"���?6�����b6�����6�����6��?���’6�����Ò6��3���ì6��A��� 7��<���b7�����Ÿ7�����±7�����Æ7��!���Ù7�����û7�����8�����;8�����P8��$���Y8��)���~8�� ���¨8��7���³8��D���ë8��M���09�����~9�����š9��)���­9��7���×9�� ���:��+���0:�����\:�����s:�����„:��1���¡:��|���Ó:�� ���P;�����\;�����o;��?���;��.���¿;�����î;��1���<��@���5<�� ���v<��*���€<�����«<��>���»<�����ú<��)��� =�� ���4=�����@=��/���O=��7���=��@���·=�� ���ø=��$���>��#���)>�����M>��e���b>�����È>��1���Ü>�� ���?�����?�����"?��/���9?�����i?�����„?�����•?��#���ž?�����Â?�����Ù?��G���ð?�� ���8@�����E@�����}���©�������������¢���v������{���¬���2������³���5���H���œ���´�������������������k���z���*���!���U���‰���Š���C�����������S���¦���¹����������µ���ƒ���Ÿ���‡���#�����������e���²���|���¸������� ���–���x�����������>���”������ ������u������� ���=������������������¶������O���‹���o���F���p��� ���­���g���$�������b�������&���q������T�����������(���^�������™���Z���0������—���B���›�������s���•����������3���¥�����������\�����������-���������� ���h���L����������c������������E���X���%��������������¯���P��� ���±�����������~������8���ˆ���„���;���i�������t�������G���[�����������7���®�������·���¨���y���N���ª�����������Œ���w���Ž���l�������Y���?���<������I���9���¡���`���£���€���+���_���‘����������@���A�����������f���V���‚����������,�������«���r���º������˜���)�����������.���§�����������"���M���…���d���m�������1������J�������:����������°�������†������K������/�������’���6���¤���������]���R���j���4������ �������“�����������Q�������a�������D���n����������š�����������W���'�������ž���� @f - file name @a - artist name @p - performer of each song (does not always exist) @b - album title @t - song title @g - genre @n - track number� File '%s' created� error: no file selected� finished� left click + move changes song position, right click + move changes zoom� left click on point + move changes point position, right click play preview� left click on rectangle checks/unchecks 'keep splitpoint'� left click on splitpoint selects it, right click erases it� quick preview finished, song paused� quick preview...�%s Revision %d�%s_part%d�<b>Choose language (requires restart)</b>�<b>Directory for split files</b>�<b>Output filename format</b>�<b>Player options</b>�<b>Split files tags</b>�<b>Split options</b>�<b>Tags version (mp3 only)</b>�About�Above enter PERL-like regular expression using named subgroups. Following names are recognized: (?<artist>) - artist name (?<album>) - album title (?<title>) - track title (?<tracknum>) - current track number (?<year>) - year of emission (?<genre>) - genre (?<comment>) - comment�Add splitpoint�Add splitpoint from player�Album text properties:�Album title�All Files�All files�Artist text properties:�Audacity labels files (*.txt)�Batch processing�Br_owse dir�CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)�CDDB files (*.cddb)�CUE files (*.cue)�C_lear�Cannot connect to player�Cannot open input file %s �Choose File�Choose file or directory�Choose file to import�Choose split directory�Comment tag:�Comment text properties:�Complete filename�Connect to player�Contents�Custom format�Cutpoint offset (0 is the begin of silence,and 1 the end) : �D_elete all files�Default format�Default tags (cddb or cue tags)�Disconnect from player�E_rase all history�Equal time tracks�Error launching external command�Error mode (mp3 only)�Error: The specified output directory is inaccessible! �Export�Extract tags from filename�F_rame mode (useful for mp3 VBR) (mp3 only)�File mode�Filename�First uppercase�FreeDB�Gap level (seconds around splitpoint to search for silence):�Genre tag:�History�Hundr�Hundredths:�ID3v1 & ID3v2 tags�ID3v1 tags�ID3v2 tags�Import�Info: %s�Kbps�Keep�Khz�Language�Length�Messages _history�Messages history�Minimum silence length (seconds) : �Minimum silence length (seconds):�Mins�Minutes:�Next�No change�No tags�Normal�Number of tracks (0 means all tracks) : �Number of tracks (0 means all tracks):�Open�Option -%c requires an argument. �Original file tags�Output�Pause�Play�Player�Preferences�Previous�Processing file '%s' ...�Quit�R_emove all�R_emove all entries�Regular expression test�Regular expression:�Remove all rows�Remove rows�Remove silence between tracks�S_top�Same tags version as the input file�Sample filename:�Sample result:�Search tracktype.org:�Seconds:�Secs�Select cue file name�Select file�Set _default split options�Shows the amplitude level wave�Silence - split with silence detection�Single file�Split�Split !�Split files�Split mode�Splitpoints�Stop�Tags�Threshold level (dB) : �Threshold level (dB):�Time�Title text properties:�Trim using silence detection�Trying to set the output directory to %s. �Type of split�UPPERCASE�Unknown option `-%c'. �Unknown option character `\x%x'. �Warning: %s�Word Uppercase�_About�_Add�_Add files�_Add splitpoints�_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)�_Browse�_Connect�_Contents�_Create directories from filenames �_Delete selected files�_Disconnect�_Erase selected entries�_Export splitpoints...�_File�_Fix ogg stream�_Help�_Import splitpoints...�_Open...�_Queue files to player�_Quit�_Remove�_Remove selected entries�_Remove silence between tracks�_Replace underscores by spaces�_Search�_Silence detection�_Song dir�_Split !�_Splitpoint name from filename (testing)�_Test�_Trim splitpoints�_part�before %s�cue files (*.cue)�description here�gstreamer error: %s�lowercase�mono�mp3 and ogg files (*.mp3 *.ogg)�mp3 files (*.mp3)�ogg files (*.ogg)�please wait... contacting tracktype.org�stereo�using�Project-Id-Version: mp3splt-gtk Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net POT-Creation-Date: 2012-05-13 00:32+0200 PO-Revision-Date: 2012-05-11 08:29+0000 Last-Translator: optimix <io_fx@yahoo.fr> Language-Team: LANGUAGE <LL@li.org> Language: ru_RU MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2) � @f — Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð° @a — Ð¸Ð¼Ñ Ð¸ÑÐ¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»Ñ @p — иÑполнитель каждой пеÑни @b — название альбома @t — название пеÑни @g — жанр @n — номер дорожки�Файл '%s' Ñоздан�ошибка: файл не выбран�завершенный� щелчок левой клавишей мыши и перемещение менÑет позицию, правой — менÑет маÑштаб� щелчок левой клавишей мыши по точке менÑет её позицию, правой — включает проÑлушивание� щелчок левой клавишей мыши по прÑмоугольнику переключает Ñохранение точки разделениÑ� щелчок левой клавишей мыши выделÑет точку разделениÑ, правой — удалÑет её�быÑтрый проÑмотр закончен, проигрование приоÑтановлено�быÑтрый проÑмотр ...�%s верÑÐ¸Ñ %d�%s_чаÑть%d�<b>Выбрать Ñзык (необходима перезагрузка)</b>�<b>Каталог Ð´Ð»Ñ Ñ€Ð°Ð·Ð´ÐµÐ»Ñ‘Ð½Ð½Ñ‹Ñ… файлов</b>�<b>Выходной формат файла</b>�<b>ÐаÑтройки плеера</b>�<b>Теги разделённых файлов</b>�<b>Параметры разделениÑ</b>�<b>ВерÑÐ¸Ñ Ñ‚ÐµÐ³Ð¾Ð² (только MP3)</b>�О программе�Введите выше регулÑрное выражение по правилам PERL, иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð¸Ð¼ÐµÐ½Ð¾Ð²Ð°Ð½Ð½Ñ‹Ðµ подгруппы. РаÑпознаютÑÑ Ñледующшие имена: (?<artist>) — Ð¸Ð¼Ñ Ð¸ÑÐ¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»Ñ (?<album>) — название альбома (?<title>) — назщвание дорожки (?<tracknum>) — номер текущей дорожки (?<year>) — год выпуÑка (?<genre>) — жанр (?<comment>) — комментарий�Добавить точку разделениÑ�Добавить точку Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð¸Ð· плеера�СвойÑтва Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ Ð°Ð»ÑŒÐ±Ð¾Ð¼Ð°:�Ðазвание альбома�Ð’Ñе файлы�Ð’Ñе файлы�СвойÑтва имени иÑполнителÑ:�Файлы меток Audacity (*.txt)�ÐŸÐ°ÐºÐµÑ‚Ð½Ð°Ñ Ð¾Ð±Ñ€Ð°Ð±Ð¾Ñ‚ÐºÐ°�Обзор каталога�CDDB (*.cddb), CUE (*.cue), Метки Audacity (*.txt)�Файлы CDDB (*.cddb)�Файлы CUE (*.cue)�О_чиÑтить�Ðе удаетÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒÑÑ Ðº плееру�Ðе могу открыть входной файл %s �Выберите Файл�Выберите файл или каталог�Выберите файл Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°�Выберите каталог Ð´Ð»Ñ Ñ€Ð°Ð·Ð´ÐµÐ»Ñ‘Ð½Ð½Ñ‹Ñ… файлов�Метки комментариев�СвойÑтва текÑта комментариев�Полное Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°�Подключение к плееру�Контент�ПользовательÑкий формат�Смещение точки разреза (0 — начало тишины. 1 — конец): �Удалить вÑе файлы�Формат по умолчанию �Теги по умолчанию (CDDB или из Cue)�Отключение от плеера�У_далить вÑÑŽ иÑторию�ÐžÐ´Ð¸Ð½Ð°ÐºÐ¾Ð²Ð°Ñ Ð´Ð»Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ñть дорожек�Ошибка при запуÑке внешней команды�Режим ошибок (только mp3)�Ошибка: указанный выходной каталог недоÑтупен! �ЭкÑпорт�Извлечь метки из имени файла�По_кадровый режим (иÑпользовать Ð´Ð»Ñ VBR) (только MP3)�Режим файла�Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°�Первый заглавный Ñимвол�FreeDB�Ðа Ñколько Ñекунд вокруг точки Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð¸Ñкать иÑкать тишину:�Тег жанра:�ИÑториÑ�мÑ�МиллиÑекунды:�Теги ID3v1 и ID3v2�Теги ID3v1�Теги ID3v2�Импорт�ИнформациÑ:%s�Кбит/Ñ�Сохранить�КГц�Язык�ДлительноÑть�_ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ñообщений�ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ñообщений�Мин. длительноÑть тишины (Ñекунды) : �ÐœÐ¸Ð½Ð¸Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ Ð´Ð»Ð¸Ð½Ð° задержки (Ñекунды): �мин�Минуты:�СледующаÑ�Без изменений�Ðет меток�Ðормальный�КоличеÑтво дорожек (0 значит вÑе): �КоличеÑтво дорожек (0 означает вÑе дорожки):�Открыть�ÐžÐ¿Ñ†Ð¸Ñ -%c требует значение. �ИÑходные теги файлов�Вывод�Пауза�Слушать�Плеер�Параметры�ПредыдущаÑ�Обработка файла '%s' ...�ВЫход�Удалить вÑе�У_далить вÑе запиÑи�ТеÑÑ‚ регулÑрных выражений�РегулÑрное выражение:�Удалить вÑе Ñтроки�Удалить Ñтроки�Убрать задержку между дорожками�_Стоп�Та же, что у иÑходных файлов�Пример имени файла:�Пример результата:�ПоиÑк в tracktype.org:�Секунды:�С�Выберите Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð° c раÑширением cue�Выделить файл�_Вернуть иÑходные параметры�Показывает уровень амплитуды волны�Тишина — разделить, Ð½Ð°Ð¹Ð´Ñ Ñ‚Ð¸ÑˆÐ¸Ð½Ñƒ�Один файл�Разделение�Разделить�Разделённые файлы�Режим разделениÑ�Точки разделениÑ�ОÑтановить�Теги�Уровень порога (Дб): �Пороговый уровень (дБ):�ВремÑ�СвойÑтва Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ ÐºÐ¾Ð¼Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ð¸:�Обрезать Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ вычиÑÐ»ÐµÐ½Ð¸Ñ Ñ‚Ð¸ÑˆÐ¸Ð½Ñ‹�Попытка уÑтановить выходной каталог на %s. �Тип разделениÑ�ЗÐГЛÐÐ’ÐЫЕ�ÐеизвеÑÑ‚Ð½Ð°Ñ Ð¾Ð¿Ñ†Ð¸Ñ `-%c'. �ÐеизвеÑтный Ñимвол опции `\x%x'. �Предупреждение: %s�Слово из заглавных букв�_О программе�Добавить�_Добавить файлы�_Добавить точки разделениÑ�Режим _автокоррекции точек Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ñ‚Ð¸ÑˆÐ¸Ð½Ñ‹�_Обзор�Сединение�_Контент�_Создать каталоги по именам файлов�Удалить выделенные файлы�Отключение�_Удалить выделенные запиÑи�_ЭкÑпортировать точки разделениÑ...�_Файл�_ФикÑированный ogg поток�_Справка�_Импортировать точки разделениÑ...�_Открыть�СпиÑок файлов в плеере�_Выход�Удалить�_Удалить выбранные запиÑи�Убрать задержку между треками�_Заменить Ð¿Ð¾Ð´Ñ‡Ñ‘Ñ€ÐºÐ¸Ð²Ð°Ð½Ð¸Ñ Ð½Ð° пробелы�_ПоиÑк�О_пределение тишины�Каталог композиции�_Разделить!�_Ð˜Ð¼Ñ Ñ‚Ð¾Ñ‡ÐºÐ¸ Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð¾Ñ‚ имени файла (ÑкÑпериментально)�_Проверить�О_брезать точки разделениÑ�_чаÑть�до %s�cue файлы (*.cue)�здеÑÑŒ могло быть опиÑание�Ошибка GStreamer: %s�Ñтрочные�моно�mp3 и ogg файлы (*.mp3 *.ogg)�mp3 файлы (*.mp3)�ogg файлы (*.ogg)�ПожалуйÑта, подождите ... cвÑзь Ñ tracktype.org�Ñтерео�иÑпользование���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/Makevars�����������������������������������������������������������������������0000664�0001750�0001750�00000003605�11235156561�012753� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Makefile variables for PO directory in any package using GNU gettext. VERSION = 0.2 PACKAGE = mp3splt-gtk # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = \ --keyword=_ --flag=_:1:pass-c-format \ --keyword=N_ --flag=N_:1:pass-c-format # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Munteanu Alexandru # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = io_alex_2004@users.sourceforge.net # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = ���������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/de_DE.gmo����������������������������������������������������������������������0000644�0001750�0001750�00000034604�11753562412�012725� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����¾������ ����ü ���������ó�����Ú��õ�����Ð��(���ã��%��� �����2��(���L�����u��-���Ž�����¼��0���Ù�� ��� ��0�����/���E��I���u��L���¿��:��� ��;���G�����ƒ��$���ž�����Ã�����Õ�����ó��)����� ���,�����M�����k����������™�����®�����Í�����Ó�����â�����ý�� ����� ��� �� ���*�����4�����L�����j�� ���{��3���‡�����»�����Ï�����á�����è������� ��������(�����A�����W�� ���n�����{�����”�����¦�� ���¯��:���½��:���ø�����3�����E�����T�����t�����‹�����ž�����°��7���Æ�����þ�������+��� �� ���L�����V�����_�����o��<���v�����³�����»�� ���Á�����Í�� ���à�� ���ë�����ö�����ý���������� ��������������������$�����*�����<��!���M�����o�����t�����}�� ���‚�����Œ�����”��&���›�����Â��!���Ç�����é�����ü���������� ������� ��������!�����*�����C�� ���H�����T�����h�����|�� ���Œ�����˜��0���¶�����ç��#���í����������"�����1�����G�����P�����U�� ���j�����v��&���‘��(���¸�����á��&������ ���'�����3�����9�� ���A�����L�� ���S�����_�����d�����i����������„��*���›�� ���Æ�� ���Ô�����Þ��!���õ�� ��������#��?���2�����r�����y�� ���~�����‰��E���š�����à�����è�� ���ñ��#���û����� �� ���6 �����B �����Z �����q �����w �����‡ ����� �����¤ �����­ �����Ä �����Ê �����Ò �����ë ����� !�����)!�����1!�� ���D!�����N!�� ���W!�����a!�����s!�����„!�� ���˜!�����¢!�����§!�����Ç!�����Ù!��'���ë!�����"�����"��”�� "��J��µ#��+���%�����,'��>���G'��3���†'�����º'��4���Ú'�� ���(��2���0(�����c(��'���~(�����¦(��7���¯(��1���ç(��u���)��Y���)��;���é)��J���%*��#���p*��,���”*�����Á*��.���Õ*�����+��+���+�����?+�����_+�����~+��#���˜+�����¼+��!���Ô+�����ö+�����û+�����,�����2,�� ���K,�� ���V,�� ���c,�����p,�����,�����«,�����¾,��3���Î,�����-�����-�� ���,-��-���6-��,���d-�� ���‘-�����Ÿ-�����¹-�����×-�� ���ò-������.�����.�����;.�����B.��;���T.��6���.�����Ç.�����ß.�� ���î.��&���/�����6/�����P/�����f/��F���/�� ���È/�����Ô/��4���ò/�� ���'0�� ���20�� ���<0�����]0��<���d0�����¡0�����©0�� ���°0�����½0�� ���Ó0�� ���Þ0�� ���é0�����õ0�����þ0�����1�����1�����1�����1�����!1�����'1�����>1��$���T1�����y1�����}1�����†1�����1�� ���Ÿ1�����ª1��#���±1�����Õ1��#���Ý1�����2�����2�����2�� ���$2�� ���/2�� ���92�� ���G2��!���Q2�����s2�����{2�����Š2�����£2�����¸2�����Î2�� ���ß2��5����3�����63��$���<3�����a3�����u3�����ˆ3�� ���¢3�����¬3��(���°3�� ���Ù3��$���ç3��.��� 4��&���;4�����b4��7���}4�����µ4�����Ä4�����Ì4�� ���Ô4�����â4�����é4�����ø4�����ý4�����5�����5�����5��5���/5�� ���e5�����q5�����5��%���5�� ���Ã5�����Ï5��C���ä5�����(6�� ���.6�����;6�����P6��K���l6�� ���¸6�� ���Å6�����Ð6�� ���Ø6�����ù6�����7�� ���-7��!���N7�����p7�����w7�����’7�����™7�����µ7��)���¾7�����è7�� ���ñ7�� ���û7��!���8��(���>8�����g8�����o8�� ���€8�����8�����–8�����8�����±8�����Å8�����Ú8�����ê8��"���ï8�����9�����&9��-���:9�����h9�����o9�����=�����������1���f���¯����������’��������������Q�������!���O������k����������������� ���]���l�����������i������L���2���œ�������@������;���£�����������”�������§���`���0��������������� �������R���w�������˜���F�����������G���b���e��� ���M���n������{���)���²���#���/���*���5��������������­������¬�������g���������������|���›�������������%���m������N���\�������d�������T���-���7������«���<������s���µ�������j�����������´�������E���ˆ�������C���4���+���?��� ���>���&���¡���š�������»���z��� ���'���Œ���®������ž���}�����������y�������¾���W�������‚���°������¥���S���:���‘���,���ƒ�������$���a�������[���“���v���I���™���J�������������ª������¶���‹���D���t���8���¦���V���U�����������_���Ž���p��������������¹���³���¢�������A���3���¤�������Š���~�������Z���•�������B����������º���€��������������o���(�������u���H�����������©���������X���†���½���Ÿ���6���h���¼���±���c�������"���^���������������x������„�������¸������Y���.�������·���…���P�����������K���r���—���‰���‡���q������ ���–�������¨���������� ������9������� Cannot connect to Audacious player. Verify that you have installed audacious. Put in your PATH variable the directory where the audacious executable is. If you don't know how to do that, start audacious manually and then try to connect. � Cannot connect to snackAmp player. Please download and install snackamp from http://snackamp.sourceforge.net Verify that snackamp is running. Verify that your snackamp version is >= 3.1.3 Verify that you have enabled socket interface in snackamp: You have to go to Tools->Preferences->Miscellaneous from the snackamp menu and check Enable Socket Interface Only default port is supported for now(8775) After that, restart snackamp and mp3splt-gtk should work. � File '%s' created� cannot preview, not connected to player� cannot split preview last splitpoint� creating "%s" (%d of %d)� error: cannot create gstreamer playbin � error: no file selected� error: no files found in multiple files mode� error: split in progress...� error: you already have the splitpoint in table� finished� info: stopping the split process before exiting� info: stopping the split process.. please wait� left click + move changes song position, right click + move changes zoom� left click on point + move changes point position, right click play preview� left click on rectangle checks/unchecks 'keep splitpoint'� left click on splitpoint selects it, right click erases it� preparing "%s" (%d of %d)� quick preview finished, song paused� quick preview...� searching for sync errors...�%s Revision %d�<b>Choose language (requires restart)</b>�<b>Directory for split files</b>�<b>Output filename format</b>�<b>Player options</b>�<b>Split files tags</b>�<b>Split options</b>�<b>Tags version (mp3 only)</b>�About�Add splitpoint�Add splitpoint from player�Album text properties:�Album title�All Files�All files�Artist text properties:�Audacity labels files (*.txt)�Batch processing�Br_owse dir�CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)�CDDB files (*.cddb)�CUE files (*.cue)�C_lear�Cannot connect to player�Cannot open input file %s �Choose File�Choose file or directory�Choose file to import�Choose split directory�Comment tag:�Comment text properties:�Connect to player�Contents�Custom format�Cutpoint offset (0 is the begin of silence and 1 the end):�Cutpoint offset (0 is the begin of silence,and 1 the end):�D_elete all files�Default format�Default tags (cddb or cue tags)�Disconnect from player�E_rase all history�Equal time tracks�Error mode (mp3 only)�Error: The specified output directory is inaccessible! �Export�Extract tags from filename�F_rame mode (useful for mp3 VBR) (mp3 only)�File mode�Filename�First uppercase�FreeDB�Gap level (seconds around splitpoint to search for silence):�History�Hundr�Hundredths:�ID3v1 & ID3v2 tags�ID3v1 tags�ID3v2 tags�Import�Info: %s�Kbps�Keep�Khz�Language�Length�LiveP�Messages _history�Messages history�Minimum silence length (seconds):�Mins�Minutes:�Next�No change�No tags�Normal�Number of tracks (0 means all tracks):�Open�Option -%c requires an argument. �Original file tags�Output�Pause�Play�Player�Preferences�Previous�Processing file '%s' ...�Quit�R_emove all�R_emove all entries�Regular expression:�Remove all rows�Remove rows�Remove silence between tracks�S: %02d, Level: %.2f dB; scanning for silence...�S_top�Same tags version as the input file�Sample filename:�Sample result:�Search tracktype.org:�Seconds:�Secs�Select cue file name�Select file�Set _default split options�Set splitpoints from silence detection�Set splitpoints to the splitpoints table�Shows the amplitude level wave�Silence - split with silence detection�Single file�Split�Split !�Split mode�SplitP�Splitpoints�Stop�Tags�Threshold level (dB):�Time�Title text properties:�Trying to set the output directory to %s. �Type of split�UPPERCASE�Unknown option `-%c'. �Unknown option character `\x%x'. �Warning: %s�Word Uppercase�Wrap - split files created with mp3wrap or albumwrap (mp3 only)�_About�_Add�_Add files�_Add splitpoints�_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)�_Browse�_Connect�_Contents�_Create directories from filenames �_Delete selected files�_Disconnect�_Erase selected entries�_Export splitpoints...�_File�_Fix ogg stream�_Help�_Import splitpoints...�_Open...�_Queue files to player�_Quit�_Remove�_Remove selected entries�_Remove silence between tracks�_Replace underscores by spaces�_Search�_Silence detection�_Song dir�_Split !�before %s�cue files (*.cue)�description here�gstreamer error: %s�lowercase�mono�mp3 and ogg files (*.mp3 *.ogg)�mp3 files (*.mp3)�ogg files (*.ogg)�please wait... contacting tracktype.org�stereo�using�Project-Id-Version: mp3splt-gtk Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net POT-Creation-Date: 2012-05-13 00:32+0200 PO-Revision-Date: 2012-05-11 08:29+0000 Last-Translator: Peter Pall <gunter@peterpall.de> Language-Team: LANGUAGE <LL@li.org> Language: de_DE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1) � Keine Verbindung zum Audacious-Wiedergabeprogramm. Stellen Sie sicher, dass Audacious installiert ist. Fügen Sie den Installationsort der ausführbaren Audacious-Datei zur Variable PATH hinzu. Falls Sie nicht wissen, wie Sie das tun können, starten Sie Audacious manuell und versuchen Sie, eine Verbindung herzustellen. � Keine Verbindung zum SnackAmp-Wiedergabprogramm. Bitte laden Sie SnackAmp von http://snackamp.sourceforge.net herunter und installieren Sie es. Stellen Sie sicher, dass SnackAmp mindestens in Version 3.1.3 vorliegt und läuft Stellen Sie sicher, dass Sie die Socket-Schnittstelle in SnacAmp aktiviert haben: Wählen Sie Tools->Preferences->Miscellaneous im SnackAmp-Menü und aktivieren Sie Enable Socket Interface Derzeit wird nur der Standardport unterstützt(8775) Danach starten Sie SnackAmp neu und mp3splt-gtk sollte funktionieren. �Datei »%s« wurde erzeugt� Vorschau nicht möglich: Keine Verbindung zum Abspielprogramm� Vorschau für letzten Teilungspunkt nicht möglich�»%s« wird erzeugt (%d von %d)�Fehler: gstreamer-playbin kann nicht erzeugt werden � Fehler: Keine Datei ausgewählt� Fehler: Keine Dateien für Mehrfachmodus gefunden� Fehler: Teilung läuft...� Fehler: Schnittpunkt existiert bereits� Beendet� Info: Teilungsvorgang wird vor dem Beenden abgebrochen� Info: Teilungsvorgang wird beendet, bitte warten�Linksklick + Verschieben ändert die Position des Titels, Rechtsklick + Verschieben ändert den Vergrößerungsfaktor�Linksklick + Verschieben ändert die Position des Punktes, Rechtsklick spielt Vorschau ab�Linksklick aktiviert/deaktiviert »Teilungspunkt behalten«�Linksklick auf Teilungspunkt wählt aus, Rechtsklick löscht Teilungspunkt�»%s« wird vorbereitet (%d von %d)�Schnellvorschau beendet, Wiedergabe pausiert� Schnellvorschau...� Nach Synchronisationsfehlern wird gesucht …�%s Revision %d�<b>Sprache wählen (erfordert Neustart)</b>�<b>Ordner für Dateiausgabe</b>�<b>Format der Ausgabedatei</b>�<b>Wiedergabeoptionen</b>�<b>Tags in ausgegebenen Dateien</b>�<b>Teilungsoptionen</b>�<b>Tag-Version (nur für mp3)</b>�Info�Schnittpunkt hinzufügen�Schnittpunkt hier hinzufügen�Albumtext-Eigenschaften:�Albumtitel�Alle Dateien�Alle Dateien�Künstlertext-Eigenschaften:�Audacity-Labeldateien (*.txt)�Stapelverarbeitung�_Ordner wählen�CDDB (*.cddb), CUE (*.cue), Audacity-Labels (*.txt)�CDDB-Dateien (*.cddb)�CUE-Dateien (*.cue)�_Löschen�Keine Verbindung zum Abspielprogramm möglich�Eingabedatei %s kann nicht geöffnet werden �Datei wählen�Datei oder Ordner wählen�Datei zum Importieren wählen�Wählen des Ausgabeordners�Kommentar-Tag�Kommentartext-Eigenschaften:�Zum Abspielprogramm verbinden�Inhalt�Benutzerdefiniert�Teilungspunkt-Versatz (0 ist Beginn der Stille und 1 Ende):�Schnittpunkt-Versatz (0=Beginn der Stille und 1=Ende):�Alle Dateien _entfernen�Standardformat�Vorgegebene Tags (cddb oder cue)�Verbindung zum Abspielprogramm trennen�_Gesamte Chronik löschen�Titel gleicher Länge�Fehlermodus (nur für mp3)�Fehler: Zugriff aud den angegebenen Ausgabeordner ist nicht möglich! �Exportieren�Tags aus Dateinamen entpacken�F_rame-Modus (nützlich für mp3-VBR) (nur für mp3)�Dateimodus�Dateiname�Großschreibung/erster Buchstabe�FreeDB�Pause (Sekunden um den Teilungspunkt zur Suche nach Stille):�Chronik�1/100s�Hundertstel:�ID3v1- und ID3v2-Tags�ID3v1-Tags�ID3v2-Tags�Importieren�Info: %s�kbit/s�Behalten�kHz�Sprache�Länge�LiveP�C_hronik der Meldungen�Chronik der Meldungen�Mindestlänge der Stille (Sekunden):�Min�Minuten:�Nächste�Keine Änderung�Keine Tags�Normal�Anzahl der Titel (0 bedeutet alle):�Öffnen�Option -%c benötigt ein Argument. �Originale Datei-Tags�Ausgabe�Pause�Wiedergabe�Abspieler�Einstellungen�Vorherige�Datei »%s« wird verarbeitet …�Beenden�_Alle löschen�Alle _Einträge löschen�Regulärer Ausdruck:�Alle Spalten löschen�Spalten löschen�Stille zwischen Titeln entfernen�S: %02d, Pegel: %.2f dB; nach Stille wird gesucht …�S_top�Gleiche Tag-Version wie Eingabedatei�Beispiel-Dateiname:�Beispiel-Ergebnis:�Suchen auf tracktype.org:�Sekunden:�Sek�Wählen eines Namens für die .cue-Datei�Datei wählen�Standard-_Teilungsoptionen festlegen�Schnittpunte mittels Stille-detektion erzeugen�Teilungspunkte zur Tabelle hinzufügen�Zeigt die Audio-Pegelkurve�Stille - Schnittpunte mittels Stille-Erkennung erzeugen�Einzelne Datei�Teilung�Teilen!�Teilungsmodus�SplitP�Teilungspunkte�Stop�Tags�Schwelle (dB):�Zeit�Titeltext-Eigenschaften:�Es wird versucht, %s als Ausgabeordner zu verwenden. �Teilungstyp�GROSSSCHREIBUNG�Unbekannte Option »-%c«. �Unbekanntes Optionszeichen »\x%x«. �Warnung: %s�Großschreibung/Wort�Wrap - mit mp3wrap oder albumwrap erzeugte Dateien teilen (nur mp3)�_Info�_Hinzufügen�Dateien _hinzufügen�Teilungspunkte hinzu_fügen�_Automatische Feinabstimmung der Schnittpunkte mittels der Stille-Detektion�_Durchsuchen�_Verbinden�_Inhalt�_Ordner aus Dateinamen erstellen�Ausgewählte _Dateien entfernen�Verbindung _trennen�Ausgewählte _Einträge löschen�_Exportiere die Teilungspunkte...�_Datei�Ogg-Datenstrom _reparieren�_Hilfe�Teilungspunkte h_inzufügen�_Öffnen�Zur Wiedergabe-_Warteschlange hinzufügen�_Beenden�_Löschen�Ausgewählte _Einträge löschen�_Stille zwischen Titeln entfernen�Unterstriche du_rch Leerzeichen ersetzen�_Suchen�_Stille erkennen�Titel_ordner�_Teilen!�vor %s�cue-Dateien (*.cue)�Bitte Name eingeben�Gstreamer-Fehler: %s�kleinschreibung�Mono�mp3- und ogg-Dateien (*.mp3 *.ogg)�mp3-Dateien (*.mp3)�ogg-Dateien (*.ogg)�Bitte warten - tracktype.org wird kontaktiert�Stereo�unter Verwendung von�����������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/cs.po��������������������������������������������������������������������������0000644�0001750�0001750�00000060541�11753562412�012225� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Munteanu Alexandru # This file is distributed under the same license as the PACKAGE package. # # Translators: # fri <pavelfric@seznam.cz>, 2011. # Pavel Fric <fripohled.blogspot.com>, 2011. # <pavelfric@seznam.cz>, 2011, 2012. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net\n" "POT-Creation-Date: 2012-05-13 00:32+0200\n" "PO-Revision-Date: 2012-05-11 08:29+0000\n" "Last-Translator: fri <pavelfric@seznam.cz>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" #: src/xmms_control.c:82 src/gstreamer_control.c:254 #: src/snackamp_control.c:328 msgid "stereo" msgstr "Stereo" #: src/xmms_control.c:86 src/gstreamer_control.c:258 #: src/snackamp_control.c:332 msgid "mono" msgstr "Mono" #: src/xmms_control.c:89 src/gstreamer_control.c:223 #: src/snackamp_control.c:335 msgid "Kbps" msgstr "kbit/s" #: src/xmms_control.c:90 src/gstreamer_control.c:224 #: src/snackamp_control.c:336 msgid "Khz" msgstr "kHz" #: src/tree_tab.c:553 msgid "_part" msgstr "_part" #: src/tree_tab.c:564 #, c-format msgid "%s_part%d" msgstr "%s_part%d" #: src/tree_tab.c:708 src/tree_tab.c:1114 msgid " error: you already have the splitpoint in table" msgstr " Chyba: bod rozdÄ›lení již existuje" #: src/tree_tab.c:791 src/tree_tab.c:870 src/tree_tab.c:1124 #: src/freedb_tab.c:466 src/freedb_tab.c:488 msgid "description here" msgstr "Zadejte, prosím, název" #: src/tree_tab.c:1273 src/tree_tab.c:1695 msgid "Set trim splitpoints using silence detection" msgstr "Nastavit zastÅ™ižení bodů rozdÄ›lení s pomocí zjiÅ¡tÄ›ní ticha" #: src/tree_tab.c:1299 src/tree_tab.c:1371 src/preferences_tab.c:721 msgid "Threshold level (dB):" msgstr "Úroveň prahu (dB):" #: src/tree_tab.c:1345 src/tree_tab.c:1705 msgid "Set splitpoints from silence detection" msgstr "Nastavit body rozdÄ›lení s pomocí zjiÅ¡tÄ›ní ticha" #: src/tree_tab.c:1388 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end):" msgstr "Odsazení bodu rozdÄ›lení (0=zaÄátek ticha 1=konec):" #: src/tree_tab.c:1405 msgid "Number of tracks (0 means all tracks):" msgstr "PoÄet skladeb (0 znamená vÅ¡echny skladby):" #: src/tree_tab.c:1420 msgid "Minimum silence length (seconds):" msgstr "Nejmenší délka ticha (sekundy):" #: src/tree_tab.c:1434 msgid "Minimum track length (seconds):" msgstr "Nejmenší délka skladby (sekundy):" #: src/tree_tab.c:1445 msgid "_Remove silence between tracks" msgstr "_Odstranit ticho mezi skladbami" #: src/tree_tab.c:1633 msgid "Minutes:" msgstr "Minuty:" #: src/tree_tab.c:1638 msgid "Seconds:" msgstr "Sekundy:" #: src/tree_tab.c:1644 msgid "Hundredths:" msgstr "Setina:" #: src/tree_tab.c:1650 src/player_tab.c:1052 msgid "_Add" msgstr "_PÅ™idat" #: src/tree_tab.c:1656 msgid "Add splitpoint" msgstr "PÅ™idat bod rozdÄ›lení" #: src/tree_tab.c:1660 msgid "_Remove" msgstr "_Odstranit" #: src/tree_tab.c:1666 msgid "Remove rows" msgstr "Odstranit řádky" #: src/tree_tab.c:1670 msgid "R_emove all" msgstr "Odstranit _vÅ¡e" #: src/tree_tab.c:1676 msgid "Remove all rows" msgstr "Odstranit vÅ¡echny řádky" #: src/tree_tab.c:1689 msgid "_Trim splitpoints" msgstr "ZastÅ™ihnout body rozdÄ›lení" #: src/tree_tab.c:1699 msgid "_Silence detection" msgstr "_ZjiÅ¡tÄ›ní ticha" #: src/tree_tab.c:1827 src/mp3splt-gtk.c:399 msgid " finished" msgstr " DokonÄeno" #: src/tree_tab.c:1842 msgid " cannot split preview last splitpoint" msgstr " Náhled na poslední bod rozdÄ›lení není možný" #: src/tree_tab.c:1883 msgid " cannot preview, not connected to player" msgstr " Náhled není možný: Žádné spojení s pÅ™ehrávacím programem" #: src/tree_tab.c:1948 msgid "Keep" msgstr "Ponechat" #: src/tree_tab.c:1962 src/split_files.c:111 msgid "Filename" msgstr "Název souboru" #: src/tree_tab.c:1976 msgid "Secs" msgstr "Sek" #: src/tree_tab.c:1990 msgid "Mins" msgstr "Min" #: src/tree_tab.c:2004 msgid "Hundr" msgstr "1/100s" #: src/tree_tab.c:2014 msgid "Length" msgstr "Délka" #: src/tree_tab.c:2025 msgid "LiveP" msgstr "LiveP" #: src/tree_tab.c:2036 msgid "SplitP" msgstr "SplitP" #: src/split_files.c:339 msgid "_Queue files to player" msgstr "_ZaÅ™adit soubory pro pÅ™ehrání" #: src/split_files.c:349 msgid "_Delete selected files" msgstr "_Smazat vybrané soubory" #: src/split_files.c:359 msgid "D_elete all files" msgstr "S_mazat vÅ¡echny soubory" #: src/preferences_tab.c:476 msgid "<b>Choose language (requires restart)</b>" msgstr "<b>Vybrat jazyk (vyžaduje nové spuÅ¡tÄ›ní)</b>" #: src/preferences_tab.c:511 msgid "Choose split directory" msgstr "Vybrat výstupní adresář" #: src/preferences_tab.c:663 msgid "Br_owse dir" msgstr "_Vybrat adresář" #: src/preferences_tab.c:671 msgid "_Song dir" msgstr "Adresář _pro skladbu" #: src/preferences_tab.c:676 msgid "<b>Directory for split files</b>" msgstr "<b>Adresář pro rozdÄ›lené soubory</b>" #: src/preferences_tab.c:685 msgid "_Splitpoint name from filename (testing)" msgstr "_Bod rozdÄ›lení z názvu souboru (zkuÅ¡ební)" #: src/preferences_tab.c:691 msgid "_Create directories from filenames " msgstr "_VytvoÅ™it adresáře z názvů souborů" #: src/preferences_tab.c:697 msgid "F_rame mode (useful for mp3 VBR) (mp3 only)" msgstr "Režim F_rame (užiteÄný pro mp3-VBR) (jen pro mp3)" #: src/preferences_tab.c:704 msgid "_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)" msgstr "_Automatické pÅ™esné nastavení bodu rozdÄ›lení pomocí zjiÅ¡tÄ›ní ticha" #: src/preferences_tab.c:736 msgid "Cutpoint offset (0 is the begin of silence and 1 the end):" msgstr "Odsazení bodu rozdÄ›lení (0=zaÄátek ticha 1=konec):" #: src/preferences_tab.c:753 msgid "Gap level (seconds around splitpoint to search for silence):" msgstr "PÅ™estávka (sekundy okolo bodu rozdÄ›lení k prohledání na ticho):" #: src/preferences_tab.c:772 msgid "Set _default split options" msgstr "Nastavit výchozí volby pro rozdÄ›lení" #: src/preferences_tab.c:778 msgid "<b>Split options</b>" msgstr "<b>Volby pro rozdÄ›lení</b>" #: src/preferences_tab.c:846 msgid "Player:" msgstr "" #: src/preferences_tab.c:868 msgid "Refresh player every " msgstr "" #: src/preferences_tab.c:879 msgid "milliseconds." msgstr "" #: src/preferences_tab.c:884 msgid "Higher refresh rate decreases CPU usage - default is 200." msgstr "" #: src/preferences_tab.c:888 msgid "<b>Player options</b>" msgstr "<b>Volby pro pÅ™ehrávaÄ</b>" #: src/preferences_tab.c:936 msgid "Default format" msgstr "Výchozí formát" #: src/preferences_tab.c:940 msgid "Custom format" msgstr "Vlastní formát" #: src/preferences_tab.c:957 msgid "" " @f - file name\n" " @a - artist name\n" " @p - performer of each song (does not always exist)\n" " @b - album title\n" " @t - song title\n" " @g - genre\n" " @n - track number" msgstr "" " @f - název souboru\n" " @a - jméno umÄ›lce\n" " @p - úÄinkující u každé skladby (ne vždy je)\n" " @b - název alba\n" " @t - název písnÄ›\n" " @g - žánr\n" " @n - Äíslo skladby" #: src/preferences_tab.c:970 msgid "<b>Output filename format</b>" msgstr "<b>Formát výstupního souboru</b>" #: src/preferences_tab.c:1015 msgid "Original file tags" msgstr "Původní znaÄky k souboru" #: src/preferences_tab.c:1018 msgid "Default tags (cddb or cue tags)" msgstr "Výchozí znaÄky (cddb nebo znaÄky cue)" #: src/preferences_tab.c:1021 msgid "No tags" msgstr "Žádné znaÄky" #: src/preferences_tab.c:1024 msgid "Extract tags from filename" msgstr "Vytáhnout znaÄky z názvu souboru" #: src/preferences_tab.c:1031 msgid "<b>Split files tags</b>" msgstr "<b>ZnaÄky v rozdÄ›lených souborech</b>" #: src/preferences_tab.c:1053 msgid "No change" msgstr "Žádná zmÄ›na" #: src/preferences_tab.c:1054 msgid "lowercase" msgstr "Malá písmena" #: src/preferences_tab.c:1055 msgid "UPPERCASE" msgstr "VELKà PÃSMENA" #: src/preferences_tab.c:1056 msgid "First uppercase" msgstr "První písmeno velké" #: src/preferences_tab.c:1057 msgid "Word Uppercase" msgstr "Písmena slov velká" #: src/preferences_tab.c:1078 msgid "<artist>: " msgstr "<artist>: " #: src/preferences_tab.c:1085 msgid "<album>: " msgstr "<album>: " #: src/preferences_tab.c:1093 msgid "<title>: " msgstr "<title>: " #: src/preferences_tab.c:1100 msgid "<genre>: " msgstr "<genre>: " #: src/preferences_tab.c:1107 msgid "<comment>: " msgstr "<comment>: " #: src/preferences_tab.c:1114 msgid "<year>: " msgstr "<year>: " #: src/preferences_tab.c:1121 msgid "<track>: " msgstr "<track>: " #: src/preferences_tab.c:1147 msgid "Regular expression:" msgstr "Regulární výraz:" #: src/preferences_tab.c:1150 msgid "" "Above enter PERL-like regular expression using named subgroups.\n" "Following names are recognized:\n" " (?<artist>) - artist name\n" " (?<album>) - album title\n" " (?<title>) - track title\n" " (?<tracknum>) - current track number\n" " (?<year>) - year of emission\n" " (?<genre>) - genre\n" " (?<comment>) - comment" msgstr "" "Výše zadejte regulární výraz jako PERL za použití jmenovaných podskupin.\n" "Jsou rozpoznána následující klíÄová slova:\n" " (?<artist>) - jméno umÄ›lce\n" " (?<album>) - název alba\n" " (?<title>) - název skladby\n" " (?<tracknum>) - Äíslo souÄasné skladby\n" " (?<year>) - rok vydání\n" " (?<genre>) - žánr\n" " (?<comment>) - poznámka" #: src/preferences_tab.c:1174 msgid "_Replace underscores by spaces" msgstr "_Nahradit podtržítka mezerami" #: src/preferences_tab.c:1182 msgid "Artist text properties:" msgstr "Vlastnosti textu umÄ›lce:" #: src/preferences_tab.c:1186 msgid "Album text properties:" msgstr "Vlastnosti textu alba:" #: src/preferences_tab.c:1190 msgid "Title text properties:" msgstr "Vlastnosti textu názvu:" #: src/preferences_tab.c:1194 msgid "Comment text properties:" msgstr "Vlastnosti textu poznámky:" #: src/preferences_tab.c:1197 msgid "Genre tag:" msgstr "ZnaÄka žánru:" #: src/preferences_tab.c:1200 msgid "Comment tag:" msgstr "ZnaÄka poznámky:" #: src/preferences_tab.c:1202 msgid "Regular expression test" msgstr "ZkouÅ¡ka regulárního výrazu" #: src/preferences_tab.c:1217 msgid "_Test" msgstr "_ZkouÅ¡ka" #: src/preferences_tab.c:1222 msgid "Sample filename:" msgstr "Název souboru s příkladem:" #: src/preferences_tab.c:1226 msgid "Sample result:" msgstr "Výsledek příkladu:" #: src/preferences_tab.c:1237 msgid "ID3v1 & ID3v2 tags" msgstr "ZnaÄky ID3v1 a ID3v2" #: src/preferences_tab.c:1244 msgid "ID3v2 tags" msgstr "ZnaÄky ID3v2" #: src/preferences_tab.c:1250 msgid "ID3v1 tags" msgstr "ZnaÄky ID3v1" #: src/preferences_tab.c:1256 msgid "Same tags version as the input file" msgstr "Stejná verze znaÄky jako u vstupního souboru" #: src/preferences_tab.c:1261 msgid "<b>Tags version (mp3 only)</b>" msgstr "<b>Verze znaÄky (jen pro mp3)</b>" #: src/preferences_tab.c:1303 src/main_win.c:560 msgid "Split" msgstr "RozdÄ›lení" #: src/preferences_tab.c:1309 msgid "Tags" msgstr "ZnaÄky" #: src/preferences_tab.c:1315 msgid "Output" msgstr "Výstup" #: src/preferences_tab.c:1321 src/main_win.c:709 msgid "Player" msgstr "PÅ™ehrávaÄ" #: src/preferences_tab.c:1328 msgid "Language" msgstr "Jazyk" #: src/player_tab.c:664 src/player_tab.c:698 msgid "Cannot connect to player" msgstr "Žádné spojení s pÅ™ehrávacím programem" #: src/player_tab.c:675 msgid "" "\n" " Cannot connect to snackAmp player.\n" " Please download and install snackamp from\n" "\thttp://snackamp.sourceforge.net\n" "\n" " Verify that snackamp is running.\n" " Verify that your snackamp version is >= 3.1.3\n" "\n" " Verify that you have enabled socket interface in snackamp:\n" " You have to go to\n" "\tTools->Preferences->Miscellaneous\n" " from the snackamp menu and check\n" "\tEnable Socket Interface\n" " Only default port is supported for now(8775)\n" " After that, restart snackamp and mp3splt-gtk should work.\n" msgstr "" "\n" " Žádné spojení s pÅ™ehrávacím programem SnackAmp.\n" " StáhnÄ›te si, prosím, SnackAmp ze stránek\n" "\thttp://snackamp.sourceforge.net\n" " a nainstalujte jej.\n" "\n" " UjistÄ›te se, že SnackAmp běží\n" " a že jej máte alespoň ve verzi 3.1.3\n" "\n" " UjistÄ›te se, že máte v SnacAmpu zapnuto\n" " rozhraní zdířky (socket): Musíte jít do\n" "\tNástroje->Nastavení->Různé\n" " v nabídce SnackAmpu a zapnout povolení rozhraní\n" "\tzdířky (socket)\n" " Nyní je podporována pouze výchozí přípojka (8775)\n" " Potom spusÅ¥te SnackAmp znovu a mp3splt-gtk\n" " by mÄ›l pracovat.\n" #: src/player_tab.c:690 msgid "" "\n" " Cannot connect to Audacious player.\n" " Verify that you have installed audacious.\n" "\n" " Put in your PATH variable the directory where the audacious executable is.\n" " If you don't know how to do that, start audacious manually and then try to " "connect.\n" msgstr "" "\n" " Žádné spojení s pÅ™ehrávacím programem Audacious.\n" " UjistÄ›te se, že je Audacious nainstalován.\n" "\n" " PÅ™idejte do promÄ›nné CESTY místo instalace spustitelného\n" " souboru pro Audacious. V případÄ› že nevíte,\n" " jak se to má udÄ›lat, spusÅ¥te Audacious ruÄnÄ›\n" " a pokuste se spojení vytvoÅ™it.\n" #: src/player_tab.c:977 msgid "Previous" msgstr "PÅ™edchozí" #: src/player_tab.c:995 msgid "Play" msgstr "PÅ™ehrát" #: src/player_tab.c:1011 msgid "Pause" msgstr "Pozastavit" #: src/player_tab.c:1028 msgid "Stop" msgstr "Zastavit" #: src/player_tab.c:1045 msgid "Next" msgstr "Další" #: src/player_tab.c:1060 msgid "Add splitpoint from player" msgstr "PÅ™idat bod rozdÄ›lení zde" #: src/player_tab.c:1064 msgid "Amplitude _wave" msgstr "" #: src/player_tab.c:1071 msgid "Shows the amplitude level wave" msgstr "Ukáže vlnu s rozkmitem zvuku" #: src/player_tab.c:1075 msgid "_Connect" msgstr "_Spojit" #: src/player_tab.c:1078 msgid "Connect to player" msgstr "Spojit s pÅ™ehrávaÄem" #: src/player_tab.c:1082 msgid "_Disconnect" msgstr "_Odpojit" #: src/player_tab.c:1085 msgid "Disconnect from player" msgstr "Odpojit od pÅ™ehrávaÄe" #: src/player_tab.c:1221 #, c-format msgid "before %s" msgstr "pÅ™ed %s" #: src/player_tab.c:2671 msgid " left click on splitpoint selects it, right click erases it" msgstr "" "Levé klepnutí na bod rozdÄ›lení jej vybere, pravé klepnutí na bod rozdÄ›lení " "jej vymaže" #: src/player_tab.c:2676 msgid "" " left click + move changes song position, right click + move changes zoom" msgstr "" "Levé klepnutí + posunutí zmÄ›ní polohu názvu, pravé klepnutí + posunutí zmÄ›ní " "násobek zvÄ›tÅ¡ení" #: src/player_tab.c:2682 msgid "" " left click on point + move changes point position, right click play preview" msgstr "" "Levé klepnutí na bod + posunutí zmÄ›ní polohu bodu, pravé klepnutí pÅ™ehraje " "náhled" #: src/player_tab.c:2687 msgid " left click on rectangle checks/unchecks 'keep splitpoint'" msgstr "Levé klepnutí na obdélník zapne/vypne »Ponechat bod rozdÄ›lení«" #: src/player_tab.c:2877 msgid " quick preview..." msgstr " Rychlý náhled..." #: src/player_tab.c:3246 msgid "Splitpoints _view" msgstr "" #: src/player_tab.c:3414 msgid "History" msgstr "Historie" #: src/player_tab.c:3548 msgid "_Erase selected entries" msgstr "Vymazat vybrané _záznamy" #: src/player_tab.c:3557 msgid "E_rase all history" msgstr "Vymazat celou _historii" #: src/player_tab.c:3601 msgid "H_istory" msgstr "" #: src/player_tab.c:3674 msgid " quick preview finished, song paused" msgstr "Rychlý náhled ukonÄen, pÅ™ehrávání pozastaveno" #: src/player_tab.c:3820 msgid "Choose File" msgstr "Vybrat soubor" #: src/player_tab.c:3832 src/multiple_files.c:130 msgid "mp3 and ogg files (*.mp3 *.ogg)" msgstr "Soubory mp3 a ogg (*.mp3 *.ogg)" #: src/player_tab.c:3840 src/multiple_files.c:138 msgid "mp3 files (*.mp3)" msgstr "Soubory mp3 (*.mp3)" #: src/player_tab.c:3846 src/multiple_files.c:144 msgid "ogg files (*.ogg)" msgstr "Soubory ogg (*.ogg)" #: src/player_tab.c:3987 msgid "_Browse" msgstr "_Procházet" #: src/player_tab.c:3991 msgid "Select file" msgstr "Vybrat soubor" #: src/player_tab.c:3998 msgid "_Fix ogg stream" msgstr "_Opravit datový proud ogg" #: src/main_win.c:147 msgid " info: stopping the split process before exiting" msgstr " Informace: Proces rozdÄ›lení se zastavuje pÅ™ed ukonÄením" #: src/main_win.c:313 msgid "Error launching external command" msgstr "Chyba pÅ™i spuÅ¡tÄ›ní vnÄ›jšího příkazu" #: src/main_win.c:345 msgid "using" msgstr "za použití" #: src/main_win.c:349 msgid "release of " msgstr "vydání " #: src/main_win.c:446 msgid " info: stopping the split process.. please wait" msgstr " Informace: Proces rozdÄ›lení se zastavuje, prosím, Äekejte" #: src/main_win.c:485 msgid " error: no file selected" msgstr " Chyba: Není vybrán žádný soubor" #: src/main_win.c:490 msgid " error: split in progress..." msgstr " Chyba: Probíhá rozdÄ›lování..." #: src/main_win.c:502 src/main_win.c:506 msgid "Split !" msgstr "RozdÄ›lit!" #: src/main_win.c:548 msgid "_File" msgstr "_Soubor" #: src/main_win.c:549 msgid "_Help" msgstr "_NápovÄ›da" #: src/main_win.c:552 msgid "_Open..." msgstr "_Otevřít..." #: src/main_win.c:552 msgid "Open" msgstr "Otevřít" #: src/main_win.c:555 msgid "_Import splitpoints..." msgstr "_Zavést body rozdÄ›lení..." #: src/main_win.c:555 msgid "Import" msgstr "Zavést" #: src/main_win.c:557 msgid "_Export splitpoints..." msgstr "_Vyvést body rozdÄ›lení..." #: src/main_win.c:557 msgid "Export" msgstr "Vyvést" #: src/main_win.c:560 msgid "_Split !" msgstr "_RozdÄ›lit!" #: src/main_win.c:562 msgid "Messages _history" msgstr "_Historie zpráv" #: src/main_win.c:562 src/main_win.c:807 src/messages.c:201 msgid "Messages history" msgstr "Historie zpráv" #: src/main_win.c:565 msgid "_Quit" msgstr "_UkonÄit" #: src/main_win.c:565 msgid "Quit" msgstr "UkonÄit" #: src/main_win.c:569 msgid "_Contents" msgstr "_Obsah" #: src/main_win.c:569 msgid "Contents" msgstr "Obsah" #: src/main_win.c:573 msgid "_About" msgstr "_O programu" #: src/main_win.c:573 msgid "About" msgstr "O programu" #: src/main_win.c:723 msgid "Splitpoints" msgstr "Body rozdÄ›lení" #: src/main_win.c:735 msgid "Split files" msgstr "RozdÄ›lené soubory" #: src/main_win.c:748 msgid "FreeDB" msgstr "FreeDB" #: src/main_win.c:759 msgid "Type of split" msgstr "Druh rozdÄ›lení" #: src/main_win.c:772 msgid "Preferences" msgstr "Nastavení" #: src/main_win.c:789 msgid "S_top" msgstr "Za_stavit" #: src/freedb_tab.c:127 #, c-format msgid "%s Revision %d" msgstr "%s revize %d" #: src/freedb_tab.c:164 msgid "Album title" msgstr "Název alba" #: src/freedb_tab.c:250 src/freedb_tab.c:345 msgid "please wait... contacting tracktype.org" msgstr "PoÄkejte, prosím - probíhá spojování se s tracktype.org" #: src/freedb_tab.c:545 msgid "Search tracktype.org:" msgstr "Hledat na tracktype.org:" #: src/freedb_tab.c:556 msgid "_Search" msgstr "_Hledání" #: src/freedb_tab.c:589 msgid "_Add splitpoints" msgstr "_PÅ™idat body rozdÄ›lení" #: src/freedb_tab.c:596 msgid "Set splitpoints to the splitpoints table" msgstr "PÅ™idat body rozdÄ›lení do tabulky s body rozdÄ›lení" #: src/special_split.c:197 src/special_split.c:271 #, c-format msgid "Split every %2d seconds." msgstr "" #: src/special_split.c:208 src/special_split.c:305 #, c-format msgid "Split in %2d equal time tracks." msgstr "" #: src/special_split.c:243 msgid "Normal" msgstr "Obvyklé" #: src/special_split.c:253 msgid "Time" msgstr "ÄŒas" #: src/special_split.c:287 msgid "Equal time tracks" msgstr "Skladby se stejnou délkou" #: src/special_split.c:320 msgid "Trim using silence detection" msgstr "ZastÅ™ihnout s pomocí zjiÅ¡tÄ›ní ticha" #: src/special_split.c:336 src/special_split.c:361 msgid "Threshold level (dB) : " msgstr "Úroveň prahu (dB): " #: src/special_split.c:345 msgid "Silence - split with silence detection" msgstr "Ticho - vytvoÅ™it body rozdÄ›lení s pomocí zjiÅ¡tÄ›ní ticha" #: src/special_split.c:371 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end) : " msgstr "Odsazení bodu rozdÄ›lení (0=zaÄátek ticha 1=konec): " #: src/special_split.c:381 msgid "Number of tracks (0 means all tracks) : " msgstr "PoÄet skladeb (0 znamená vÅ¡echny skladby): " #: src/special_split.c:391 msgid "Minimum silence length (seconds) : " msgstr "Nejmenší délka ticha (sekundy): " #: src/special_split.c:401 msgid "Minimum track length (seconds) : " msgstr "Nejmenší délka skladby (sekundy): " #: src/special_split.c:409 msgid "Remove silence between tracks" msgstr "Odstranit ticho mezi skladbami" #: src/special_split.c:430 msgid "Wrap - split files created with mp3wrap or albumwrap (mp3 only)" msgstr "Obal - rozdÄ›lit soubory vytvoÅ™ené s mp3wrap nebo albumwrap (jen mp3)" #: src/special_split.c:440 msgid "Error mode (mp3 only)" msgstr "Chybový režim (jen pro mp3)" #: src/special_split.c:465 msgid "Single file" msgstr "Jednotlivý soubor" #: src/special_split.c:473 msgid "Batch processing" msgstr "Dávkové zpracování" #: src/special_split.c:507 msgid "Split mode" msgstr "Režim dÄ›lení" #: src/special_split.c:511 msgid "File mode" msgstr "Souborový režim" #: src/messages.c:180 msgid "Enable _debug messages" msgstr "" #: src/messages.c:187 msgid "C_lear" msgstr "_Smazat" #: src/multiple_files.c:88 msgid "Complete filename" msgstr "Úplný název souboru" #: src/multiple_files.c:109 msgid "Choose file or directory" msgstr "Vybrat soubor nebo adresář" #: src/multiple_files.c:151 msgid "All Files" msgstr "VÅ¡echny soubory" #: src/multiple_files.c:292 msgid "_Add files" msgstr "_PÅ™idat soubory" #: src/multiple_files.c:300 msgid "_Remove selected entries" msgstr "_Odstranit vybrané záznamy" #: src/multiple_files.c:309 msgid "R_emove all entries" msgstr "Odstranit _vÅ¡echny záznamy" #: src/gstreamer_control.c:97 #, c-format msgid "gstreamer error: %s" msgstr "Chyba v Gstreameru: %s" #: src/gstreamer_control.c:125 #, c-format msgid "Warning: %s" msgstr "Varování: %s" #: src/gstreamer_control.c:153 #, c-format msgid "Info: %s" msgstr "Informace: %s" #: src/gstreamer_control.c:412 msgid " error: cannot create gstreamer playbin\n" msgstr "Chyba: gstreamer-playbin nelze vytvoÅ™it\n" #: src/mp3splt-gtk.c:166 #, c-format msgid " File '%s' created" msgstr "Soubor »%s« byl vytvoÅ™en" #: src/mp3splt-gtk.c:193 #, c-format msgid " preparing \"%s\" (%d of %d)" msgstr "»%s« se pÅ™ipravuje (%d z %d)" #: src/mp3splt-gtk.c:199 #, c-format msgid " creating \"%s\" (%d of %d)" msgstr "»%s« se vytváří (%d z %d)" #: src/mp3splt-gtk.c:205 msgid " searching for sync errors..." msgstr " Hledají se chyby v seřízení…" #: src/mp3splt-gtk.c:209 #, c-format msgid "S: %02d, Level: %.2f dB; scanning for silence..." msgstr "S: %02d, Úroveň: %.2f dB; hledá se ticho…" #: src/mp3splt-gtk.c:372 msgid " error: no files found in multiple files mode" msgstr " Chyba: Pro režim více souborů nebyly nalezeny žádné soubory" #: src/mp3splt-gtk.c:587 #, c-format msgid "Trying to set the output directory to %s.\n" msgstr "Zkouší se nastavit %s jako výstupní adresář.\n" #: src/mp3splt-gtk.c:596 #, c-format msgid "Error: The specified output directory is inaccessible!\n" msgstr "Chyba: Přístup k zadanému výstupnímu adresáři není možný!\n" #: src/mp3splt-gtk.c:602 #, c-format msgid "Option -%c requires an argument.\n" msgstr "Volba -%c vyžaduje argument.\n" #: src/mp3splt-gtk.c:604 #, c-format msgid "Unknown option `-%c'.\n" msgstr "Neznámá volba »-%c«.\n" #: src/mp3splt-gtk.c:607 #, c-format msgid "Unknown option character `\\x%x'.\n" msgstr "Neznámý znak ve volbÄ› »\\x%x«.\n" #: src/mp3splt-gtk.c:659 #, c-format msgid "Cannot open input file %s\n" msgstr "Vstupní soubor %s nelze otevřít\n" #: src/utilities.c:126 #, c-format msgid "Processing file '%s' ..." msgstr "Zpracovává se soubor »%s«…" #: src/import.c:71 msgid "Choose file to import" msgstr "Vybrat soubor pro zavedení" #: src/import.c:148 msgid "CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)" msgstr "CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)" #: src/import.c:152 msgid "CDDB files (*.cddb)" msgstr "Soubory CDDB (*.cddb)" #: src/import.c:154 msgid "CUE files (*.cue)" msgstr "Soubory CUE (*.cue)" #: src/import.c:156 msgid "Audacity labels files (*.txt)" msgstr "Soubory Audacity label (*.txt)" #: src/import.c:158 msgid "All files" msgstr "VÅ¡echny soubory" #: src/export.c:199 msgid "Select cue file name" msgstr "Vybrat soubor CUE" #: src/export.c:212 msgid "cue files (*.cue)" msgstr "Soubory CUE (*.cue)" ���������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/es.po��������������������������������������������������������������������������0000644�0001750�0001750�00000051755�11753562412�012236� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Munteanu Alexandru # This file is distributed under the same license as the PACKAGE package. # # Translators: # freddy sequera <nemecis000@gmail.com>, 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net\n" "POT-Creation-Date: 2012-05-13 00:32+0200\n" "PO-Revision-Date: 2012-05-11 08:29+0000\n" "Last-Translator: freddy sequera <nemecis000@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #: src/xmms_control.c:82 src/gstreamer_control.c:254 #: src/snackamp_control.c:328 msgid "stereo" msgstr "estéreo" #: src/xmms_control.c:86 src/gstreamer_control.c:258 #: src/snackamp_control.c:332 msgid "mono" msgstr "mono" #: src/xmms_control.c:89 src/gstreamer_control.c:223 #: src/snackamp_control.c:335 msgid "Kbps" msgstr "Kbps." #: src/xmms_control.c:90 src/gstreamer_control.c:224 #: src/snackamp_control.c:336 msgid "Khz" msgstr "Khz" #: src/tree_tab.c:553 msgid "_part" msgstr "" #: src/tree_tab.c:564 #, c-format msgid "%s_part%d" msgstr "" #: src/tree_tab.c:708 src/tree_tab.c:1114 msgid " error: you already have the splitpoint in table" msgstr "" #: src/tree_tab.c:791 src/tree_tab.c:870 src/tree_tab.c:1124 #: src/freedb_tab.c:466 src/freedb_tab.c:488 msgid "description here" msgstr "descripción aquí" #: src/tree_tab.c:1273 src/tree_tab.c:1695 msgid "Set trim splitpoints using silence detection" msgstr "" #: src/tree_tab.c:1299 src/tree_tab.c:1371 src/preferences_tab.c:721 msgid "Threshold level (dB):" msgstr "Nivel umbral (dB):" #: src/tree_tab.c:1345 src/tree_tab.c:1705 msgid "Set splitpoints from silence detection" msgstr "Establecer splitpoints de detección de silencio" #: src/tree_tab.c:1388 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end):" msgstr "" "Punto de corte de desplazamiento (0 es el inicio de silencio, y 1 al final):" #: src/tree_tab.c:1405 msgid "Number of tracks (0 means all tracks):" msgstr "Número de pistas (0 significa que todas las pistas):" #: src/tree_tab.c:1420 msgid "Minimum silence length (seconds):" msgstr "Duración mínima de silencio (segundos):" #: src/tree_tab.c:1434 msgid "Minimum track length (seconds):" msgstr "" #: src/tree_tab.c:1445 msgid "_Remove silence between tracks" msgstr "_Remove Silencio entre pistas" #: src/tree_tab.c:1633 msgid "Minutes:" msgstr "Minutos:" #: src/tree_tab.c:1638 msgid "Seconds:" msgstr "Segundos:" #: src/tree_tab.c:1644 msgid "Hundredths:" msgstr "Centésimas:" #: src/tree_tab.c:1650 src/player_tab.c:1052 msgid "_Add" msgstr "_añada" #: src/tree_tab.c:1656 msgid "Add splitpoint" msgstr "Añadir splitpoint" #: src/tree_tab.c:1660 msgid "_Remove" msgstr "_Remove" #: src/tree_tab.c:1666 msgid "Remove rows" msgstr "Eliminar las filas" #: src/tree_tab.c:1670 msgid "R_emove all" msgstr "R_emove todos" #: src/tree_tab.c:1676 msgid "Remove all rows" msgstr "Eliminar todas las filas" #: src/tree_tab.c:1689 msgid "_Trim splitpoints" msgstr "" #: src/tree_tab.c:1699 msgid "_Silence detection" msgstr "_Silence Detección" #: src/tree_tab.c:1827 src/mp3splt-gtk.c:399 msgid " finished" msgstr "terminado" #: src/tree_tab.c:1842 msgid " cannot split preview last splitpoint" msgstr "No se puede dividir splitpoint última vista previa" #: src/tree_tab.c:1883 msgid " cannot preview, not connected to player" msgstr "no puede ver, no está conectado al reproductor" #: src/tree_tab.c:1948 msgid "Keep" msgstr "Mantenga" #: src/tree_tab.c:1962 src/split_files.c:111 msgid "Filename" msgstr "Nombre de archivo" #: src/tree_tab.c:1976 msgid "Secs" msgstr "Segundos" #: src/tree_tab.c:1990 msgid "Mins" msgstr "Minutos" #: src/tree_tab.c:2004 msgid "Hundr" msgstr "Hundr" #: src/tree_tab.c:2014 msgid "Length" msgstr "Longitud" #: src/tree_tab.c:2025 msgid "LiveP" msgstr "LiveP" #: src/tree_tab.c:2036 msgid "SplitP" msgstr "SplitP" #: src/split_files.c:339 msgid "_Queue files to player" msgstr "_Queue Archivos al reproductor" #: src/split_files.c:349 msgid "_Delete selected files" msgstr "_delete Archivos seleccionados" #: src/split_files.c:359 msgid "D_elete all files" msgstr "D_elete todos los archivos" #: src/preferences_tab.c:476 msgid "<b>Choose language (requires restart)</b>" msgstr "<b>Elija idioma (requiere reiniciar)</b>" #: src/preferences_tab.c:511 msgid "Choose split directory" msgstr "Elija un directorio de dividir" #: src/preferences_tab.c:663 msgid "Br_owse dir" msgstr "Br_owse dir" #: src/preferences_tab.c:671 msgid "_Song dir" msgstr "_Song Dir" #: src/preferences_tab.c:676 msgid "<b>Directory for split files</b>" msgstr "<b>Directorio para dividir archivos</b>" #: src/preferences_tab.c:685 msgid "_Splitpoint name from filename (testing)" msgstr "" #: src/preferences_tab.c:691 msgid "_Create directories from filenames " msgstr "_create Directorios de nombres de archivo" #: src/preferences_tab.c:697 msgid "F_rame mode (useful for mp3 VBR) (mp3 only)" msgstr "modo F_rame (útil para mp3 VBR) (mp3 solamente)" #: src/preferences_tab.c:704 msgid "_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)" msgstr "" "_Auto-El modo de ajuste (detección de silencio utiliza para auto-ajuste " "splitpoints)" #: src/preferences_tab.c:736 msgid "Cutpoint offset (0 is the begin of silence and 1 the end):" msgstr "" #: src/preferences_tab.c:753 msgid "Gap level (seconds around splitpoint to search for silence):" msgstr "nivel de Gap (segundos en splitpoint para buscar el silencio):" #: src/preferences_tab.c:772 msgid "Set _default split options" msgstr "Establecer las opciones de dividir _default" #: src/preferences_tab.c:778 msgid "<b>Split options</b>" msgstr "<b>Split opciones</b>" #: src/preferences_tab.c:846 msgid "Player:" msgstr "" #: src/preferences_tab.c:868 msgid "Refresh player every " msgstr "" #: src/preferences_tab.c:879 msgid "milliseconds." msgstr "" #: src/preferences_tab.c:884 msgid "Higher refresh rate decreases CPU usage - default is 200." msgstr "" #: src/preferences_tab.c:888 msgid "<b>Player options</b>" msgstr "<b>Reproductor de opciones</b>" #: src/preferences_tab.c:936 msgid "Default format" msgstr "Formato predeterminado" #: src/preferences_tab.c:940 msgid "Custom format" msgstr "De formato" #: src/preferences_tab.c:957 msgid "" " @f - file name\n" " @a - artist name\n" " @p - performer of each song (does not always exist)\n" " @b - album title\n" " @t - song title\n" " @g - genre\n" " @n - track number" msgstr "" #: src/preferences_tab.c:970 msgid "<b>Output filename format</b>" msgstr "<b>Nombre de archivo del formato de salida</b>" #: src/preferences_tab.c:1015 msgid "Original file tags" msgstr "Original file tags" #: src/preferences_tab.c:1018 msgid "Default tags (cddb or cue tags)" msgstr "Predefinida, las etiquetas (tags CDDB o de referencia)" #: src/preferences_tab.c:1021 msgid "No tags" msgstr "No hay ninguna etiqueta" #: src/preferences_tab.c:1024 msgid "Extract tags from filename" msgstr "Extracto de las etiquetas de nombre de archivo" #: src/preferences_tab.c:1031 msgid "<b>Split files tags</b>" msgstr "<b>Dividir archivos de etiquetas</b>" #: src/preferences_tab.c:1053 msgid "No change" msgstr "Sin cambios" #: src/preferences_tab.c:1054 msgid "lowercase" msgstr "minúsculas" #: src/preferences_tab.c:1055 msgid "UPPERCASE" msgstr "MAYÚSCULAS" #: src/preferences_tab.c:1056 msgid "First uppercase" msgstr "En primer lugar mayúsculas" #: src/preferences_tab.c:1057 msgid "Word Uppercase" msgstr "La palabra en mayúsculas" #: src/preferences_tab.c:1078 msgid "<artist>: " msgstr "" #: src/preferences_tab.c:1085 msgid "<album>: " msgstr "" #: src/preferences_tab.c:1093 msgid "<title>: " msgstr "" #: src/preferences_tab.c:1100 msgid "<genre>: " msgstr "" #: src/preferences_tab.c:1107 msgid "<comment>: " msgstr "" #: src/preferences_tab.c:1114 msgid "<year>: " msgstr "" #: src/preferences_tab.c:1121 msgid "<track>: " msgstr "" #: src/preferences_tab.c:1147 msgid "Regular expression:" msgstr "Expresión regular:" #: src/preferences_tab.c:1150 msgid "" "Above enter PERL-like regular expression using named subgroups.\n" "Following names are recognized:\n" " (?<artist>) - artist name\n" " (?<album>) - album title\n" " (?<title>) - track title\n" " (?<tracknum>) - current track number\n" " (?<year>) - year of emission\n" " (?<genre>) - genre\n" " (?<comment>) - comment" msgstr "" #: src/preferences_tab.c:1174 msgid "_Replace underscores by spaces" msgstr "_Replace Destaca por espacios" #: src/preferences_tab.c:1182 msgid "Artist text properties:" msgstr "propiedades del artista texto:" #: src/preferences_tab.c:1186 msgid "Album text properties:" msgstr "Ãlbum de las propiedades del texto:" #: src/preferences_tab.c:1190 msgid "Title text properties:" msgstr "Título de las propiedades del texto:" #: src/preferences_tab.c:1194 msgid "Comment text properties:" msgstr "Comentar las propiedades del texto:" #: src/preferences_tab.c:1197 msgid "Genre tag:" msgstr "" #: src/preferences_tab.c:1200 msgid "Comment tag:" msgstr "Comentario de etiquetas:" #: src/preferences_tab.c:1202 msgid "Regular expression test" msgstr "" #: src/preferences_tab.c:1217 msgid "_Test" msgstr "" #: src/preferences_tab.c:1222 msgid "Sample filename:" msgstr "Ejemplo de nombre de archivo:" #: src/preferences_tab.c:1226 msgid "Sample result:" msgstr "Resultado de la muestra:" #: src/preferences_tab.c:1237 msgid "ID3v1 & ID3v2 tags" msgstr "" #: src/preferences_tab.c:1244 msgid "ID3v2 tags" msgstr "" #: src/preferences_tab.c:1250 msgid "ID3v1 tags" msgstr "" #: src/preferences_tab.c:1256 msgid "Same tags version as the input file" msgstr "" #: src/preferences_tab.c:1261 msgid "<b>Tags version (mp3 only)</b>" msgstr "" #: src/preferences_tab.c:1303 src/main_win.c:560 msgid "Split" msgstr "" #: src/preferences_tab.c:1309 msgid "Tags" msgstr "" #: src/preferences_tab.c:1315 msgid "Output" msgstr "" #: src/preferences_tab.c:1321 src/main_win.c:709 msgid "Player" msgstr "" #: src/preferences_tab.c:1328 msgid "Language" msgstr "" #: src/player_tab.c:664 src/player_tab.c:698 msgid "Cannot connect to player" msgstr "" #: src/player_tab.c:675 msgid "" "\n" " Cannot connect to snackAmp player.\n" " Please download and install snackamp from\n" "\thttp://snackamp.sourceforge.net\n" "\n" " Verify that snackamp is running.\n" " Verify that your snackamp version is >= 3.1.3\n" "\n" " Verify that you have enabled socket interface in snackamp:\n" " You have to go to\n" "\tTools->Preferences->Miscellaneous\n" " from the snackamp menu and check\n" "\tEnable Socket Interface\n" " Only default port is supported for now(8775)\n" " After that, restart snackamp and mp3splt-gtk should work.\n" msgstr "" #: src/player_tab.c:690 msgid "" "\n" " Cannot connect to Audacious player.\n" " Verify that you have installed audacious.\n" "\n" " Put in your PATH variable the directory where the audacious executable is.\n" " If you don't know how to do that, start audacious manually and then try to " "connect.\n" msgstr "" #: src/player_tab.c:977 msgid "Previous" msgstr "Anterior" #: src/player_tab.c:995 msgid "Play" msgstr "Escuchar" #: src/player_tab.c:1011 msgid "Pause" msgstr "Pausa" #: src/player_tab.c:1028 msgid "Stop" msgstr "Detener" #: src/player_tab.c:1045 msgid "Next" msgstr "Siguiente" #: src/player_tab.c:1060 msgid "Add splitpoint from player" msgstr "Añadir splitpoint del jugador" #: src/player_tab.c:1064 msgid "Amplitude _wave" msgstr "" #: src/player_tab.c:1071 msgid "Shows the amplitude level wave" msgstr "Muestra el nivel de amplitud de onda" #: src/player_tab.c:1075 msgid "_Connect" msgstr "_connect" #: src/player_tab.c:1078 msgid "Connect to player" msgstr "Conecte al jugador" #: src/player_tab.c:1082 msgid "_Disconnect" msgstr "_ Desconecte" #: src/player_tab.c:1085 msgid "Disconnect from player" msgstr "Desconecte del jugador" #: src/player_tab.c:1221 #, c-format msgid "before %s" msgstr "" #: src/player_tab.c:2671 msgid " left click on splitpoint selects it, right click erases it" msgstr "" "haga clic en la izquierda en splitpoint se selecciona, haga clic en él borra" #: src/player_tab.c:2676 msgid "" " left click + move changes song position, right click + move changes zoom" msgstr "" "botón izquierdo del ratón + movimiento posición de la canción, los cambios " "haga clic derecho + movimiento de zoom" #: src/player_tab.c:2682 msgid "" " left click on point + move changes point position, right click play preview" msgstr "" "haga clic en la izquierda en la posición del punto + mover el punto de los " "cambios, haga clic en vista previa jugar" #: src/player_tab.c:2687 msgid " left click on rectangle checks/unchecks 'keep splitpoint'" msgstr "" "botón izquierdo del ratón sobre los controles rectángulo / 'splitpoint " "mantener' desactiva" #: src/player_tab.c:2877 msgid " quick preview..." msgstr "vista previa rápida ..." #: src/player_tab.c:3246 msgid "Splitpoints _view" msgstr "" #: src/player_tab.c:3414 msgid "History" msgstr "Historia" #: src/player_tab.c:3548 msgid "_Erase selected entries" msgstr "_Erase Seleccionados de las entradas" #: src/player_tab.c:3557 msgid "E_rase all history" msgstr "E_rase toda la historia" #: src/player_tab.c:3601 msgid "H_istory" msgstr "" #: src/player_tab.c:3674 msgid " quick preview finished, song paused" msgstr "vista previa rápida de terminar, una canción en pausa" #: src/player_tab.c:3820 msgid "Choose File" msgstr "Elija Archivo" #: src/player_tab.c:3832 src/multiple_files.c:130 msgid "mp3 and ogg files (*.mp3 *.ogg)" msgstr "archivos mp3 y ogg (*. mp3 *. ogg)" #: src/player_tab.c:3840 src/multiple_files.c:138 msgid "mp3 files (*.mp3)" msgstr "archivos MP3 (*. mp3)" #: src/player_tab.c:3846 src/multiple_files.c:144 msgid "ogg files (*.ogg)" msgstr "ogg archivo(*. ogg)" #: src/player_tab.c:3987 msgid "_Browse" msgstr "_Browse" #: src/player_tab.c:3991 msgid "Select file" msgstr "Seleccione el archivo" #: src/player_tab.c:3998 msgid "_Fix ogg stream" msgstr "_Fix Flujo ogg" #: src/main_win.c:147 msgid " info: stopping the split process before exiting" msgstr "Info: detener el proceso de división antes de salir" #: src/main_win.c:313 msgid "Error launching external command" msgstr "" #: src/main_win.c:345 msgid "using" msgstr "utilizando" #: src/main_win.c:349 msgid "release of " msgstr "" #: src/main_win.c:446 msgid " info: stopping the split process.. please wait" msgstr "Info: detener el proceso de división .. por favor espere" #: src/main_win.c:485 msgid " error: no file selected" msgstr "error: no hay ningún archivo seleccionado" #: src/main_win.c:490 msgid " error: split in progress..." msgstr "error: dividida en curso ..." #: src/main_win.c:502 src/main_win.c:506 msgid "Split !" msgstr "Split!" #: src/main_win.c:548 msgid "_File" msgstr "" #: src/main_win.c:549 msgid "_Help" msgstr "_Help" #: src/main_win.c:552 msgid "_Open..." msgstr "_Abrir ..." #: src/main_win.c:552 msgid "Open" msgstr "Abierto" #: src/main_win.c:555 msgid "_Import splitpoints..." msgstr "splitpoints _Import ..." #: src/main_win.c:555 msgid "Import" msgstr "Importar" #: src/main_win.c:557 msgid "_Export splitpoints..." msgstr "" #: src/main_win.c:557 msgid "Export" msgstr "" #: src/main_win.c:560 msgid "_Split !" msgstr "_Split!" #: src/main_win.c:562 msgid "Messages _history" msgstr "Mensajes _history" #: src/main_win.c:562 src/main_win.c:807 src/messages.c:201 msgid "Messages history" msgstr "Mensajes de la historia" #: src/main_win.c:565 msgid "_Quit" msgstr "_Quit" #: src/main_win.c:565 msgid "Quit" msgstr "Salir" #: src/main_win.c:569 msgid "_Contents" msgstr "_Contents" #: src/main_win.c:569 msgid "Contents" msgstr "Contenido" #: src/main_win.c:573 msgid "_About" msgstr "_about" #: src/main_win.c:573 msgid "About" msgstr "" #: src/main_win.c:723 msgid "Splitpoints" msgstr "Splitpoints" #: src/main_win.c:735 msgid "Split files" msgstr "" #: src/main_win.c:748 msgid "FreeDB" msgstr "" #: src/main_win.c:759 msgid "Type of split" msgstr "Tipo de división" #: src/main_win.c:772 msgid "Preferences" msgstr "Preferencias" #: src/main_win.c:789 msgid "S_top" msgstr "" #: src/freedb_tab.c:127 #, c-format msgid "%s Revision %d" msgstr "" #: src/freedb_tab.c:164 msgid "Album title" msgstr "Título del álbum" #: src/freedb_tab.c:250 src/freedb_tab.c:345 msgid "please wait... contacting tracktype.org" msgstr "por favor espere ... ponerse en contacto con tracktype.org" #: src/freedb_tab.c:545 msgid "Search tracktype.org:" msgstr "" #: src/freedb_tab.c:556 msgid "_Search" msgstr "" #: src/freedb_tab.c:589 msgid "_Add splitpoints" msgstr "" #: src/freedb_tab.c:596 msgid "Set splitpoints to the splitpoints table" msgstr "Establecer splitpoints a la mesa de splitpoints" #: src/special_split.c:197 src/special_split.c:271 #, c-format msgid "Split every %2d seconds." msgstr "" #: src/special_split.c:208 src/special_split.c:305 #, c-format msgid "Split in %2d equal time tracks." msgstr "" #: src/special_split.c:243 msgid "Normal" msgstr "" #: src/special_split.c:253 msgid "Time" msgstr "Tiempo" #: src/special_split.c:287 msgid "Equal time tracks" msgstr "tiempo de Igualdad de pistas" #: src/special_split.c:320 msgid "Trim using silence detection" msgstr "" #: src/special_split.c:336 src/special_split.c:361 msgid "Threshold level (dB) : " msgstr "" #: src/special_split.c:345 msgid "Silence - split with silence detection" msgstr "El silencio - se separó de la detección de silencio" #: src/special_split.c:371 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end) : " msgstr "" #: src/special_split.c:381 msgid "Number of tracks (0 means all tracks) : " msgstr "" #: src/special_split.c:391 msgid "Minimum silence length (seconds) : " msgstr "" #: src/special_split.c:401 msgid "Minimum track length (seconds) : " msgstr "" #: src/special_split.c:409 msgid "Remove silence between tracks" msgstr "Quitar silencio entre las pistas" #: src/special_split.c:430 msgid "Wrap - split files created with mp3wrap or albumwrap (mp3 only)" msgstr "Envuelva - dividir archivos creados con mp3wrap o albumwrap (sólo MP3)" #: src/special_split.c:440 msgid "Error mode (mp3 only)" msgstr "Modo de error (sólo MP3)" #: src/special_split.c:465 msgid "Single file" msgstr "archivo único" #: src/special_split.c:473 msgid "Batch processing" msgstr "Procesamiento por lotes" #: src/special_split.c:507 msgid "Split mode" msgstr "Dividir el modo de" #: src/special_split.c:511 msgid "File mode" msgstr "El modo de archivo" #: src/messages.c:180 msgid "Enable _debug messages" msgstr "" #: src/messages.c:187 msgid "C_lear" msgstr "" #: src/multiple_files.c:88 msgid "Complete filename" msgstr "" #: src/multiple_files.c:109 msgid "Choose file or directory" msgstr "Elija el archivo o directorio" #: src/multiple_files.c:151 msgid "All Files" msgstr "Todos los archivos" #: src/multiple_files.c:292 msgid "_Add files" msgstr "" #: src/multiple_files.c:300 msgid "_Remove selected entries" msgstr "" #: src/multiple_files.c:309 msgid "R_emove all entries" msgstr "" #: src/gstreamer_control.c:97 #, c-format msgid "gstreamer error: %s" msgstr "" #: src/gstreamer_control.c:125 #, c-format msgid "Warning: %s" msgstr "" #: src/gstreamer_control.c:153 #, c-format msgid "Info: %s" msgstr "" #: src/gstreamer_control.c:412 msgid " error: cannot create gstreamer playbin\n" msgstr "" #: src/mp3splt-gtk.c:166 #, c-format msgid " File '%s' created" msgstr "" #: src/mp3splt-gtk.c:193 #, c-format msgid " preparing \"%s\" (%d of %d)" msgstr "" #: src/mp3splt-gtk.c:199 #, c-format msgid " creating \"%s\" (%d of %d)" msgstr "" #: src/mp3splt-gtk.c:205 msgid " searching for sync errors..." msgstr "en busca de errores de sincronización ..." #: src/mp3splt-gtk.c:209 #, c-format msgid "S: %02d, Level: %.2f dB; scanning for silence..." msgstr "" #: src/mp3splt-gtk.c:372 msgid " error: no files found in multiple files mode" msgstr "error: no hay archivos que se encuentran en varios archivos de modo de" #: src/mp3splt-gtk.c:587 #, c-format msgid "Trying to set the output directory to %s.\n" msgstr "" #: src/mp3splt-gtk.c:596 #, c-format msgid "Error: The specified output directory is inaccessible!\n" msgstr "" #: src/mp3splt-gtk.c:602 #, c-format msgid "Option -%c requires an argument.\n" msgstr "" #: src/mp3splt-gtk.c:604 #, c-format msgid "Unknown option `-%c'.\n" msgstr "" #: src/mp3splt-gtk.c:607 #, c-format msgid "Unknown option character `\\x%x'.\n" msgstr "" #: src/mp3splt-gtk.c:659 #, c-format msgid "Cannot open input file %s\n" msgstr "" #: src/utilities.c:126 #, c-format msgid "Processing file '%s' ..." msgstr "" #: src/import.c:71 msgid "Choose file to import" msgstr "" #: src/import.c:148 msgid "CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)" msgstr "" #: src/import.c:152 msgid "CDDB files (*.cddb)" msgstr "" #: src/import.c:154 msgid "CUE files (*.cue)" msgstr "" #: src/import.c:156 msgid "Audacity labels files (*.txt)" msgstr "" #: src/import.c:158 msgid "All files" msgstr "Todos los archivos" #: src/export.c:199 msgid "Select cue file name" msgstr "" #: src/export.c:212 msgid "cue files (*.cue)" msgstr "" �������������������mp3splt-gtk-0.7.2/po/LINGUAS������������������������������������������������������������������������0000644�0001750�0001750�00000000077�11507744410�012300� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Set of available languages. fr_FR de_DE es_CL cs es ru_RU ro �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/ro.po��������������������������������������������������������������������������0000644�0001750�0001750�00000043123�11753562412�012235� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Munteanu Alexandru # This file is distributed under the same license as the PACKAGE package. # # Translators: # snowiulian <snow.iulian@yahoo.com>, 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net\n" "POT-Creation-Date: 2012-05-13 00:32+0200\n" "PO-Revision-Date: 2012-05-11 08:29+0000\n" "Last-Translator: snowiulian <snow.iulian@yahoo.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" "2:1))\n" #: src/xmms_control.c:82 src/gstreamer_control.c:254 #: src/snackamp_control.c:328 msgid "stereo" msgstr "stereo" #: src/xmms_control.c:86 src/gstreamer_control.c:258 #: src/snackamp_control.c:332 msgid "mono" msgstr "mono" #: src/xmms_control.c:89 src/gstreamer_control.c:223 #: src/snackamp_control.c:335 msgid "Kbps" msgstr "Kbps" #: src/xmms_control.c:90 src/gstreamer_control.c:224 #: src/snackamp_control.c:336 msgid "Khz" msgstr "KHz" #: src/tree_tab.c:553 msgid "_part" msgstr "" #: src/tree_tab.c:564 #, c-format msgid "%s_part%d" msgstr "" #: src/tree_tab.c:708 src/tree_tab.c:1114 msgid " error: you already have the splitpoint in table" msgstr "eroare: ai deja splitpoint în tabel" #: src/tree_tab.c:791 src/tree_tab.c:870 src/tree_tab.c:1124 #: src/freedb_tab.c:466 src/freedb_tab.c:488 msgid "description here" msgstr "descriere aici" #: src/tree_tab.c:1273 src/tree_tab.c:1695 msgid "Set trim splitpoints using silence detection" msgstr "" #: src/tree_tab.c:1299 src/tree_tab.c:1371 src/preferences_tab.c:721 msgid "Threshold level (dB):" msgstr "" #: src/tree_tab.c:1345 src/tree_tab.c:1705 msgid "Set splitpoints from silence detection" msgstr "" #: src/tree_tab.c:1388 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end):" msgstr "" #: src/tree_tab.c:1405 msgid "Number of tracks (0 means all tracks):" msgstr "" #: src/tree_tab.c:1420 msgid "Minimum silence length (seconds):" msgstr "" #: src/tree_tab.c:1434 msgid "Minimum track length (seconds):" msgstr "" #: src/tree_tab.c:1445 msgid "_Remove silence between tracks" msgstr "" #: src/tree_tab.c:1633 msgid "Minutes:" msgstr "" #: src/tree_tab.c:1638 msgid "Seconds:" msgstr "" #: src/tree_tab.c:1644 msgid "Hundredths:" msgstr "" #: src/tree_tab.c:1650 src/player_tab.c:1052 msgid "_Add" msgstr "" #: src/tree_tab.c:1656 msgid "Add splitpoint" msgstr "" #: src/tree_tab.c:1660 msgid "_Remove" msgstr "" #: src/tree_tab.c:1666 msgid "Remove rows" msgstr "" #: src/tree_tab.c:1670 msgid "R_emove all" msgstr "" #: src/tree_tab.c:1676 msgid "Remove all rows" msgstr "" #: src/tree_tab.c:1689 msgid "_Trim splitpoints" msgstr "" #: src/tree_tab.c:1699 msgid "_Silence detection" msgstr "" #: src/tree_tab.c:1827 src/mp3splt-gtk.c:399 msgid " finished" msgstr "" #: src/tree_tab.c:1842 msgid " cannot split preview last splitpoint" msgstr "" #: src/tree_tab.c:1883 msgid " cannot preview, not connected to player" msgstr "" #: src/tree_tab.c:1948 msgid "Keep" msgstr "" #: src/tree_tab.c:1962 src/split_files.c:111 msgid "Filename" msgstr "" #: src/tree_tab.c:1976 msgid "Secs" msgstr "" #: src/tree_tab.c:1990 msgid "Mins" msgstr "" #: src/tree_tab.c:2004 msgid "Hundr" msgstr "" #: src/tree_tab.c:2014 msgid "Length" msgstr "" #: src/tree_tab.c:2025 msgid "LiveP" msgstr "" #: src/tree_tab.c:2036 msgid "SplitP" msgstr "" #: src/split_files.c:339 msgid "_Queue files to player" msgstr "" #: src/split_files.c:349 msgid "_Delete selected files" msgstr "" #: src/split_files.c:359 msgid "D_elete all files" msgstr "" #: src/preferences_tab.c:476 msgid "<b>Choose language (requires restart)</b>" msgstr "" #: src/preferences_tab.c:511 msgid "Choose split directory" msgstr "" #: src/preferences_tab.c:663 msgid "Br_owse dir" msgstr "" #: src/preferences_tab.c:671 msgid "_Song dir" msgstr "" #: src/preferences_tab.c:676 msgid "<b>Directory for split files</b>" msgstr "" #: src/preferences_tab.c:685 msgid "_Splitpoint name from filename (testing)" msgstr "" #: src/preferences_tab.c:691 msgid "_Create directories from filenames " msgstr "" #: src/preferences_tab.c:697 msgid "F_rame mode (useful for mp3 VBR) (mp3 only)" msgstr "" #: src/preferences_tab.c:704 msgid "_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)" msgstr "" #: src/preferences_tab.c:736 msgid "Cutpoint offset (0 is the begin of silence and 1 the end):" msgstr "" #: src/preferences_tab.c:753 msgid "Gap level (seconds around splitpoint to search for silence):" msgstr "" #: src/preferences_tab.c:772 msgid "Set _default split options" msgstr "" #: src/preferences_tab.c:778 msgid "<b>Split options</b>" msgstr "" #: src/preferences_tab.c:846 msgid "Player:" msgstr "" #: src/preferences_tab.c:868 msgid "Refresh player every " msgstr "" #: src/preferences_tab.c:879 msgid "milliseconds." msgstr "" #: src/preferences_tab.c:884 msgid "Higher refresh rate decreases CPU usage - default is 200." msgstr "" #: src/preferences_tab.c:888 msgid "<b>Player options</b>" msgstr "" #: src/preferences_tab.c:936 msgid "Default format" msgstr "" #: src/preferences_tab.c:940 msgid "Custom format" msgstr "" #: src/preferences_tab.c:957 msgid "" " @f - file name\n" " @a - artist name\n" " @p - performer of each song (does not always exist)\n" " @b - album title\n" " @t - song title\n" " @g - genre\n" " @n - track number" msgstr "" #: src/preferences_tab.c:970 msgid "<b>Output filename format</b>" msgstr "" #: src/preferences_tab.c:1015 msgid "Original file tags" msgstr "" #: src/preferences_tab.c:1018 msgid "Default tags (cddb or cue tags)" msgstr "" #: src/preferences_tab.c:1021 msgid "No tags" msgstr "" #: src/preferences_tab.c:1024 msgid "Extract tags from filename" msgstr "" #: src/preferences_tab.c:1031 msgid "<b>Split files tags</b>" msgstr "" #: src/preferences_tab.c:1053 msgid "No change" msgstr "" #: src/preferences_tab.c:1054 msgid "lowercase" msgstr "" #: src/preferences_tab.c:1055 msgid "UPPERCASE" msgstr "" #: src/preferences_tab.c:1056 msgid "First uppercase" msgstr "" #: src/preferences_tab.c:1057 msgid "Word Uppercase" msgstr "" #: src/preferences_tab.c:1078 msgid "<artist>: " msgstr "" #: src/preferences_tab.c:1085 msgid "<album>: " msgstr "" #: src/preferences_tab.c:1093 msgid "<title>: " msgstr "" #: src/preferences_tab.c:1100 msgid "<genre>: " msgstr "" #: src/preferences_tab.c:1107 msgid "<comment>: " msgstr "" #: src/preferences_tab.c:1114 msgid "<year>: " msgstr "" #: src/preferences_tab.c:1121 msgid "<track>: " msgstr "" #: src/preferences_tab.c:1147 msgid "Regular expression:" msgstr "" #: src/preferences_tab.c:1150 msgid "" "Above enter PERL-like regular expression using named subgroups.\n" "Following names are recognized:\n" " (?<artist>) - artist name\n" " (?<album>) - album title\n" " (?<title>) - track title\n" " (?<tracknum>) - current track number\n" " (?<year>) - year of emission\n" " (?<genre>) - genre\n" " (?<comment>) - comment" msgstr "" #: src/preferences_tab.c:1174 msgid "_Replace underscores by spaces" msgstr "" #: src/preferences_tab.c:1182 msgid "Artist text properties:" msgstr "" #: src/preferences_tab.c:1186 msgid "Album text properties:" msgstr "" #: src/preferences_tab.c:1190 msgid "Title text properties:" msgstr "" #: src/preferences_tab.c:1194 msgid "Comment text properties:" msgstr "" #: src/preferences_tab.c:1197 msgid "Genre tag:" msgstr "" #: src/preferences_tab.c:1200 msgid "Comment tag:" msgstr "" #: src/preferences_tab.c:1202 msgid "Regular expression test" msgstr "" #: src/preferences_tab.c:1217 msgid "_Test" msgstr "" #: src/preferences_tab.c:1222 msgid "Sample filename:" msgstr "" #: src/preferences_tab.c:1226 msgid "Sample result:" msgstr "" #: src/preferences_tab.c:1237 msgid "ID3v1 & ID3v2 tags" msgstr "" #: src/preferences_tab.c:1244 msgid "ID3v2 tags" msgstr "" #: src/preferences_tab.c:1250 msgid "ID3v1 tags" msgstr "" #: src/preferences_tab.c:1256 msgid "Same tags version as the input file" msgstr "" #: src/preferences_tab.c:1261 msgid "<b>Tags version (mp3 only)</b>" msgstr "" #: src/preferences_tab.c:1303 src/main_win.c:560 msgid "Split" msgstr "" #: src/preferences_tab.c:1309 msgid "Tags" msgstr "" #: src/preferences_tab.c:1315 msgid "Output" msgstr "" #: src/preferences_tab.c:1321 src/main_win.c:709 msgid "Player" msgstr "" #: src/preferences_tab.c:1328 msgid "Language" msgstr "" #: src/player_tab.c:664 src/player_tab.c:698 msgid "Cannot connect to player" msgstr "" #: src/player_tab.c:675 msgid "" "\n" " Cannot connect to snackAmp player.\n" " Please download and install snackamp from\n" "\thttp://snackamp.sourceforge.net\n" "\n" " Verify that snackamp is running.\n" " Verify that your snackamp version is >= 3.1.3\n" "\n" " Verify that you have enabled socket interface in snackamp:\n" " You have to go to\n" "\tTools->Preferences->Miscellaneous\n" " from the snackamp menu and check\n" "\tEnable Socket Interface\n" " Only default port is supported for now(8775)\n" " After that, restart snackamp and mp3splt-gtk should work.\n" msgstr "" #: src/player_tab.c:690 msgid "" "\n" " Cannot connect to Audacious player.\n" " Verify that you have installed audacious.\n" "\n" " Put in your PATH variable the directory where the audacious executable is.\n" " If you don't know how to do that, start audacious manually and then try to " "connect.\n" msgstr "" #: src/player_tab.c:977 msgid "Previous" msgstr "" #: src/player_tab.c:995 msgid "Play" msgstr "" #: src/player_tab.c:1011 msgid "Pause" msgstr "" #: src/player_tab.c:1028 msgid "Stop" msgstr "" #: src/player_tab.c:1045 msgid "Next" msgstr "" #: src/player_tab.c:1060 msgid "Add splitpoint from player" msgstr "" #: src/player_tab.c:1064 msgid "Amplitude _wave" msgstr "" #: src/player_tab.c:1071 msgid "Shows the amplitude level wave" msgstr "" #: src/player_tab.c:1075 msgid "_Connect" msgstr "" #: src/player_tab.c:1078 msgid "Connect to player" msgstr "" #: src/player_tab.c:1082 msgid "_Disconnect" msgstr "" #: src/player_tab.c:1085 msgid "Disconnect from player" msgstr "" #: src/player_tab.c:1221 #, c-format msgid "before %s" msgstr "" #: src/player_tab.c:2671 msgid " left click on splitpoint selects it, right click erases it" msgstr "" #: src/player_tab.c:2676 msgid "" " left click + move changes song position, right click + move changes zoom" msgstr "" #: src/player_tab.c:2682 msgid "" " left click on point + move changes point position, right click play preview" msgstr "" #: src/player_tab.c:2687 msgid " left click on rectangle checks/unchecks 'keep splitpoint'" msgstr "" #: src/player_tab.c:2877 msgid " quick preview..." msgstr "" #: src/player_tab.c:3246 msgid "Splitpoints _view" msgstr "" #: src/player_tab.c:3414 msgid "History" msgstr "" #: src/player_tab.c:3548 msgid "_Erase selected entries" msgstr "" #: src/player_tab.c:3557 msgid "E_rase all history" msgstr "" #: src/player_tab.c:3601 msgid "H_istory" msgstr "" #: src/player_tab.c:3674 msgid " quick preview finished, song paused" msgstr "" #: src/player_tab.c:3820 msgid "Choose File" msgstr "" #: src/player_tab.c:3832 src/multiple_files.c:130 msgid "mp3 and ogg files (*.mp3 *.ogg)" msgstr "" #: src/player_tab.c:3840 src/multiple_files.c:138 msgid "mp3 files (*.mp3)" msgstr "" #: src/player_tab.c:3846 src/multiple_files.c:144 msgid "ogg files (*.ogg)" msgstr "" #: src/player_tab.c:3987 msgid "_Browse" msgstr "" #: src/player_tab.c:3991 msgid "Select file" msgstr "" #: src/player_tab.c:3998 msgid "_Fix ogg stream" msgstr "" #: src/main_win.c:147 msgid " info: stopping the split process before exiting" msgstr "" #: src/main_win.c:313 msgid "Error launching external command" msgstr "" #: src/main_win.c:345 msgid "using" msgstr "" #: src/main_win.c:349 msgid "release of " msgstr "" #: src/main_win.c:446 msgid " info: stopping the split process.. please wait" msgstr "" #: src/main_win.c:485 msgid " error: no file selected" msgstr "" #: src/main_win.c:490 msgid " error: split in progress..." msgstr "" #: src/main_win.c:502 src/main_win.c:506 msgid "Split !" msgstr "" #: src/main_win.c:548 msgid "_File" msgstr "" #: src/main_win.c:549 msgid "_Help" msgstr "" #: src/main_win.c:552 msgid "_Open..." msgstr "" #: src/main_win.c:552 msgid "Open" msgstr "" #: src/main_win.c:555 msgid "_Import splitpoints..." msgstr "" #: src/main_win.c:555 msgid "Import" msgstr "" #: src/main_win.c:557 msgid "_Export splitpoints..." msgstr "" #: src/main_win.c:557 msgid "Export" msgstr "" #: src/main_win.c:560 msgid "_Split !" msgstr "" #: src/main_win.c:562 msgid "Messages _history" msgstr "" #: src/main_win.c:562 src/main_win.c:807 src/messages.c:201 msgid "Messages history" msgstr "" #: src/main_win.c:565 msgid "_Quit" msgstr "" #: src/main_win.c:565 msgid "Quit" msgstr "" #: src/main_win.c:569 msgid "_Contents" msgstr "" #: src/main_win.c:569 msgid "Contents" msgstr "" #: src/main_win.c:573 msgid "_About" msgstr "" #: src/main_win.c:573 msgid "About" msgstr "" #: src/main_win.c:723 msgid "Splitpoints" msgstr "" #: src/main_win.c:735 msgid "Split files" msgstr "" #: src/main_win.c:748 msgid "FreeDB" msgstr "" #: src/main_win.c:759 msgid "Type of split" msgstr "" #: src/main_win.c:772 msgid "Preferences" msgstr "" #: src/main_win.c:789 msgid "S_top" msgstr "" #: src/freedb_tab.c:127 #, c-format msgid "%s Revision %d" msgstr "" #: src/freedb_tab.c:164 msgid "Album title" msgstr "" #: src/freedb_tab.c:250 src/freedb_tab.c:345 msgid "please wait... contacting tracktype.org" msgstr "" #: src/freedb_tab.c:545 msgid "Search tracktype.org:" msgstr "" #: src/freedb_tab.c:556 msgid "_Search" msgstr "" #: src/freedb_tab.c:589 msgid "_Add splitpoints" msgstr "" #: src/freedb_tab.c:596 msgid "Set splitpoints to the splitpoints table" msgstr "" #: src/special_split.c:197 src/special_split.c:271 #, c-format msgid "Split every %2d seconds." msgstr "" #: src/special_split.c:208 src/special_split.c:305 #, c-format msgid "Split in %2d equal time tracks." msgstr "" #: src/special_split.c:243 msgid "Normal" msgstr "" #: src/special_split.c:253 msgid "Time" msgstr "" #: src/special_split.c:287 msgid "Equal time tracks" msgstr "" #: src/special_split.c:320 msgid "Trim using silence detection" msgstr "" #: src/special_split.c:336 src/special_split.c:361 msgid "Threshold level (dB) : " msgstr "" #: src/special_split.c:345 msgid "Silence - split with silence detection" msgstr "" #: src/special_split.c:371 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end) : " msgstr "" #: src/special_split.c:381 msgid "Number of tracks (0 means all tracks) : " msgstr "" #: src/special_split.c:391 msgid "Minimum silence length (seconds) : " msgstr "" #: src/special_split.c:401 msgid "Minimum track length (seconds) : " msgstr "" #: src/special_split.c:409 msgid "Remove silence between tracks" msgstr "" #: src/special_split.c:430 msgid "Wrap - split files created with mp3wrap or albumwrap (mp3 only)" msgstr "" #: src/special_split.c:440 msgid "Error mode (mp3 only)" msgstr "" #: src/special_split.c:465 msgid "Single file" msgstr "" #: src/special_split.c:473 msgid "Batch processing" msgstr "" #: src/special_split.c:507 msgid "Split mode" msgstr "" #: src/special_split.c:511 msgid "File mode" msgstr "" #: src/messages.c:180 msgid "Enable _debug messages" msgstr "" #: src/messages.c:187 msgid "C_lear" msgstr "" #: src/multiple_files.c:88 msgid "Complete filename" msgstr "" #: src/multiple_files.c:109 msgid "Choose file or directory" msgstr "" #: src/multiple_files.c:151 msgid "All Files" msgstr "" #: src/multiple_files.c:292 msgid "_Add files" msgstr "" #: src/multiple_files.c:300 msgid "_Remove selected entries" msgstr "" #: src/multiple_files.c:309 msgid "R_emove all entries" msgstr "" #: src/gstreamer_control.c:97 #, c-format msgid "gstreamer error: %s" msgstr "" #: src/gstreamer_control.c:125 #, c-format msgid "Warning: %s" msgstr "" #: src/gstreamer_control.c:153 #, c-format msgid "Info: %s" msgstr "" #: src/gstreamer_control.c:412 msgid " error: cannot create gstreamer playbin\n" msgstr "" #: src/mp3splt-gtk.c:166 #, c-format msgid " File '%s' created" msgstr "" #: src/mp3splt-gtk.c:193 #, c-format msgid " preparing \"%s\" (%d of %d)" msgstr "" #: src/mp3splt-gtk.c:199 #, c-format msgid " creating \"%s\" (%d of %d)" msgstr "" #: src/mp3splt-gtk.c:205 msgid " searching for sync errors..." msgstr "" #: src/mp3splt-gtk.c:209 #, c-format msgid "S: %02d, Level: %.2f dB; scanning for silence..." msgstr "" #: src/mp3splt-gtk.c:372 msgid " error: no files found in multiple files mode" msgstr "" #: src/mp3splt-gtk.c:587 #, c-format msgid "Trying to set the output directory to %s.\n" msgstr "" #: src/mp3splt-gtk.c:596 #, c-format msgid "Error: The specified output directory is inaccessible!\n" msgstr "" #: src/mp3splt-gtk.c:602 #, c-format msgid "Option -%c requires an argument.\n" msgstr "" #: src/mp3splt-gtk.c:604 #, c-format msgid "Unknown option `-%c'.\n" msgstr "" #: src/mp3splt-gtk.c:607 #, c-format msgid "Unknown option character `\\x%x'.\n" msgstr "" #: src/mp3splt-gtk.c:659 #, c-format msgid "Cannot open input file %s\n" msgstr "" #: src/utilities.c:126 #, c-format msgid "Processing file '%s' ..." msgstr "" #: src/import.c:71 msgid "Choose file to import" msgstr "" #: src/import.c:148 msgid "CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)" msgstr "" #: src/import.c:152 msgid "CDDB files (*.cddb)" msgstr "" #: src/import.c:154 msgid "CUE files (*.cue)" msgstr "" #: src/import.c:156 msgid "Audacity labels files (*.txt)" msgstr "" #: src/import.c:158 msgid "All files" msgstr "" #: src/export.c:199 msgid "Select cue file name" msgstr "" #: src/export.c:212 msgid "cue files (*.cue)" msgstr "" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/es_CL.gmo����������������������������������������������������������������������0000644�0001750�0001750�00000034561�11753562412�012754� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����º������ì��û���¼ ������¨��ó���©��Ú�������x��(���‹��%���´�����Ú��(���ô�������-���6�����d��0����� ���²��0���¼��/���í��I�����L���g��:���´��;���ï�����+��$���F�����k�����}�����›��)���ª�� ���Ô�����õ����������)�����A�����V�����u�����{�����Š�����¥�� ���¼�� ���È�� ���Ò�����Ü�����ô������� ���#��3���/�����c�����w�����‰����������©�� ���Ä�����Ð�����é�����ÿ�� ��������#�����<�����N�� ���W��:���e��:��� �����Û�����í�����ü����������3�����F�����X��7���n�����¦��+���Á�� ���í�����÷�������������<��������T�����\�� ���b�����n�� ����� ���Œ�����—�����ž�����§�����¬�����±�����µ�����¾�����Å�����Ë�����Ý��!���î����������������� ���#�����-�����5��&���<�����c��!���h�����Š����������¤�����ª�����¯�� ���¶�����Â�����Ë�����ä�� ���é�����õ����� ������� ���-�����9��0���W�����ˆ��#���Ž�����²�����Ã�����Ò�����è�����ñ�� ���ö�������&�����(���D�����m��&���Œ�� ���³�����¿�����Å�� ���Í�����Ø�� ���ß�����ë�����ð�����õ����� �������*���'�� ���R�� ���`�����j��!����� ���£�����¯��?���¾�����þ������� ��� �������E���&�����l�����t�� ���}��#���‡�����«�� ���Â�����Î�����æ�����ì�����ü����� ����� �����" �����9 �����? �����G �����` ����� �����ž �����¦ �� ���¹ �����à �� ���Ì �����Ö �����ç �� ���û �����!����� !�����*!�����<!��'���N!�����v!�����}!��­��ƒ!��ø���1#����*$�����@&��>���U&��>���”&�����Ó&��,���ì&��+���'��B���E'�����ˆ'��8���¨'�� ���á'��8���ì'��=���%(��U���c(��_���¹(��D���)��E���^)�����¤)��1���À)�����ò)��+��� *�����7*��(���G*��'���p*��.���˜*�����Ç*��(���ç*�����+��%���-+�� ���S+�����]+��/���w+�����§+�����¿+�����Ò+�����å+�����ø+��&���,�����8,�����P,��6���e,�����œ,�����³,�����È,��#���Ñ,��+���õ,�����!-��"���3-�����V-�� ���s-�����”-�����­-�����É-�� ���á-�����ì-��K���.��K���N.�����š.�����·.��-���Î.�����ü.�����/�����3/�����N/��=���e/��+���£/��0���Ï/�� ����0����� 0�����0�����30��K���:0�� ���†0�����0�� ���–0�����£0�����»0�����Á0�����Ç0�����Ð0�����á0�����ç0�����ð0�����ô0�� ���û0�����1����� 1�����"1��)���81�����b1�����g1�� ���p1�� ���z1�����†1�����ž1��1���¥1�����×1��#���Ý1�� ���2�����"2�����)2�� ���/2�� ���:2�� ���F2�����S2�����\2�����w2�� ���}2�����‹2�����§2�����»2�����Ô2�����ã2��4���3�����63��*���?3�� ���j3�����‹3�����¤3�� ���¼3�����Æ3�����Ë3��-���ß3��<��� 4��)���J4��$���t4��-���™4�����Ç4�����Ö4�� ���Þ4�����é4�����ø4�����ÿ4�����5�� ���5�� ���%5�����25�����95��1���R5�����„5�� ���–5�����¢5��*���¾5�����é5�����ù5��G���6�� ���[6�����f6�����o6�����6��Z���ž6�� ���ù6�� ���7�� ��� 7��+���7�� ���E7�� ���f7�� ���s7�����”7�����7�����±7�� ���¸7�� ���Ù7��!���ã7�����8����� 8�����8�����58��$���T8�����y8�����8�� ���™8�� ���§8�� ���±8�����½8�����Ð8�� ���ä8�����ð8�� ���õ8�� ���9�� ���"9��.���.9�����]9�� ���f9�����„���®���(������������������ �����������<������h���?���O���£���´���°������� �������p������4���+���\���·���¸���Ž�����������|�������¹�������!�������¡���¤���«���-���³�������U���²���ƒ���u�������*���œ���}�����������F���š������‚���"���{���‘������E��������������#���¶��� ���V���������M���v����������m���.��������������0���w���†���[�������k���2���d�������Ÿ���a���9���’������J���º�������y���§���)�������=���ª���Q�������r���'�����������…����������n���S���X������i���%���������L���_���/��������������”���W���¥���±���~�������¢������b������Š������o�������z�������N���›�����������A���µ�����������­���€������¯���•��� ����������“���q�������ˆ���G���:���&���P���B���¦���f���¨���‡���5���e���—���������H���I�����������l���]���‰���–�������6�����������x���;������ž���3����������7���¬�����������,���T���‹���j���D�������`��� ���������C��� ���������������t���$���R�������8�������˜���@���©���������c���Z�������>�������������™�����������Y�������g�������K���s�������Œ��� �����������^���1������������ Cannot connect to Audacious player. Verify that you have installed audacious. Put in your PATH variable the directory where the audacious executable is. If you don't know how to do that, start audacious manually and then try to connect. � Cannot connect to snackAmp player. Please download and install snackamp from http://snackamp.sourceforge.net Verify that snackamp is running. Verify that your snackamp version is >= 3.1.3 Verify that you have enabled socket interface in snackamp: You have to go to Tools->Preferences->Miscellaneous from the snackamp menu and check Enable Socket Interface Only default port is supported for now(8775) After that, restart snackamp and mp3splt-gtk should work. � File '%s' created� cannot preview, not connected to player� cannot split preview last splitpoint� creating "%s" (%d of %d)� error: cannot create gstreamer playbin � error: no file selected� error: no files found in multiple files mode� error: split in progress...� error: you already have the splitpoint in table� finished� info: stopping the split process before exiting� info: stopping the split process.. please wait� left click + move changes song position, right click + move changes zoom� left click on point + move changes point position, right click play preview� left click on rectangle checks/unchecks 'keep splitpoint'� left click on splitpoint selects it, right click erases it� preparing "%s" (%d of %d)� quick preview finished, song paused� quick preview...� searching for sync errors...�%s Revision %d�<b>Choose language (requires restart)</b>�<b>Directory for split files</b>�<b>Output filename format</b>�<b>Player options</b>�<b>Split files tags</b>�<b>Split options</b>�<b>Tags version (mp3 only)</b>�About�Add splitpoint�Add splitpoint from player�Album text properties:�Album title�All Files�All files�Artist text properties:�Audacity labels files (*.txt)�Batch processing�Br_owse dir�CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)�CDDB files (*.cddb)�CUE files (*.cue)�C_lear�Cannot connect to player�Cannot open input file %s �Choose File�Choose file or directory�Choose file to import�Choose split directory�Comment tag:�Comment text properties:�Connect to player�Contents�Custom format�Cutpoint offset (0 is the begin of silence and 1 the end):�Cutpoint offset (0 is the begin of silence,and 1 the end):�D_elete all files�Default format�Default tags (cddb or cue tags)�Disconnect from player�E_rase all history�Equal time tracks�Error mode (mp3 only)�Error: The specified output directory is inaccessible! �Extract tags from filename�F_rame mode (useful for mp3 VBR) (mp3 only)�File mode�Filename�First uppercase�FreeDB�Gap level (seconds around splitpoint to search for silence):�History�Hundr�Hundredths:�ID3v1 & ID3v2 tags�ID3v1 tags�ID3v2 tags�Import�Info: %s�Kbps�Keep�Khz�Language�Length�LiveP�Messages _history�Messages history�Minimum silence length (seconds):�Mins�Minutes:�Next�No change�No tags�Normal�Number of tracks (0 means all tracks):�Open�Option -%c requires an argument. �Original file tags�Output�Pause�Play�Player�Preferences�Previous�Processing file '%s' ...�Quit�R_emove all�R_emove all entries�Regular expression:�Remove all rows�Remove rows�Remove silence between tracks�S: %02d, Level: %.2f dB; scanning for silence...�S_top�Same tags version as the input file�Sample filename:�Sample result:�Search tracktype.org:�Seconds:�Secs�Select file�Set _default split options�Set splitpoints from silence detection�Set splitpoints to the splitpoints table�Shows the amplitude level wave�Silence - split with silence detection�Single file�Split�Split !�Split mode�SplitP�Splitpoints�Stop�Tags�Threshold level (dB):�Time�Title text properties:�Trying to set the output directory to %s. �Type of split�UPPERCASE�Unknown option `-%c'. �Unknown option character `\x%x'. �Warning: %s�Word Uppercase�Wrap - split files created with mp3wrap or albumwrap (mp3 only)�_About�_Add�_Add files�_Add splitpoints�_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)�_Browse�_Connect�_Contents�_Create directories from filenames �_Delete selected files�_Disconnect�_Erase selected entries�_File�_Fix ogg stream�_Help�_Import splitpoints...�_Open...�_Queue files to player�_Quit�_Remove�_Remove selected entries�_Remove silence between tracks�_Replace underscores by spaces�_Search�_Silence detection�_Song dir�_Split !�before %s�description here�gstreamer error: %s�lowercase�mono�mp3 and ogg files (*.mp3 *.ogg)�mp3 files (*.mp3)�ogg files (*.ogg)�please wait... contacting tracktype.org�stereo�using�Project-Id-Version: mp3splt-gtk Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net POT-Creation-Date: 2012-05-13 00:32+0200 PO-Revision-Date: 2012-05-11 08:29+0000 Last-Translator: Ricardo A. Hermosilla Carrillo <ra.hermosillac@gmail.com> Language-Team: LANGUAGE <LL@li.org> Language: es_CL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1) � No se puede conectar al reproductor Audacious. Verifique que lo tiene instalado. Ponga en su variable PATH el directorio dónde se encuentra instalado Audacious. Si no sabe cómo hacer esto, inicie Audacious manualmente y luego intente conectar. � No se puede conectar al reproductor snackAmp. Por favor, descargue e instale el reproductor desde http://snackamp.sourceforge.net Verifique que snackamp se está ejecutando. Verifique que la versión del programa es >= 3.1.3 Verifique que tiene habilitada la interfaz socket en snackAmp: Tiene que ir a: Herramientas->Preferencias->Otros desde el menú del programa y marcar la casilla Habilitar Interfaz Socket Sólo se admite el puerto por defecto por ahora (8775) Después de eso, reinicie snackAmp y mp3split-gtk funcionará. � Archivo '%s' creado� vista previa no disponible, no está conectado al reproductor� vista previa no disponible para el último punto de división� creando "%s" (%d de %d)� error: No se puede crear playbin gstreamer � error: no hay ningún archivo seleccionado� error: no hay archivos encontrados en el modo múltiples archivos� error: división en proceso...� error: usted ya tiene el punto de división en la tabla� terminado� Info: deteniendo el proceso de división antes de salir� Info: deteniendo el proceso de división .. por favor espere� clic + mover cambia la posición de la canción, clic derecho + mover cambia el zoom� clic en el punto + mover cambia la posición del punto, clic derecho reproduce la vista previa� clic en el rectángulo marca/desmarca 'mantener punto de división'� clic en el punto de división lo selecciona, clic derecho lo elimina� preparando "%s" (%d de %d)� vista previa rápida terminada, canción pausada� vista previa rápida...� buscando por errores de sincronización...�%s Revisión %d�<b>Elija idioma (requiere reiniciar)</b>�<b>Directorio para dividir archivos</b>�<b>Nombre de archivo del formato de salida</b>�<b>Opciones del reproductor</b>�<b>Dividir etiquetas de los archivos</b>�<b>Opciones de División</b>�<b>Versión Etiquetas (sólo mp3)</b>�Acerca de�Añadir punto e división�Añadir punto de división desde el reproductor�Propiedades del álbum:�Título del Ãlbum�Todos los archivos�Todos los archivos�Propiedades del artista:�Archivos de etiquetas Audacity (*.txt)�Procesamiento por lotes�E_xaminar directorio�CDDB (*.cddb), CUE (*.cue), Etiquetas Audacity (*.txt)�Archivos CDDB (*.cddb)�Archivos CUE (*.cue)�_Limpiar�No se puede conectar al reproductor�No se puede abrir el archivo de entrada %s �Escoja un Archivo�Seleccione un archivo o directorio�Escoja un archivo a importar�Elija un directorio para dividir�Etiqueta del comentario:�Propiedades del comentario:�Conectar al reproductor�Contenidos�Formato personalizado�Punto de corte de desplazamiento (0 es el inicio de silencio y 1 el final):�Punto de corte de desplazamiento (0 es el inicio de silencio y 1 el final):�Eli_minar todos los archivos�Formato predeterminado�Etiquetas predefinidas (etiquetas cue o cddb)�Desconectar el reproductor�Elimina_r todo el historial�Pistas con el mismo tiempo�Modo Error (sólo mp3)�Error: El directorio de salida especificado no es accesible! �Extraer las etiquetas del nombre de archivo�Modo ma_rco (útil para mp3 VBR) (mp3 solamente)�Modo archivo�Nombre de archivo�Primero mayúsculas�FreeDB�Nivel de Omisión (segundos en punto de división para buscar un silencio):�Historial�Cents�Centésimas:�etiquetas ID3v1 y ID3v2�ID3v1�ID3v2�Importar�Información: %s�Kbps.�Mantener�Khz�Idioma�Duración�LiveP�_Historial de mensajes�Historial de mensajes�Duración mínima de silencio (segundos):�Mins�Minutos:�Siguiente�Sin cambios�No hay ninguna etiqueta�Normal�Número de pistas (0 significa todas las pistas):�Abrir�Opción -%c requiere un argumento. �Etiquetas originales del archivo�Salida�Pausa�Reproducir�Reproductor�Preferencias�Anterior�Procesando archivo '%s'...�Salir�R_emover todo�R_emover todas las entradas�Expresión regular:�Eliminar todas las filas�Eliminar filas�Remover silencio entre pistas�S: %02d, Nivel: %.2f dB; escaneando por silencios...�De_tener�Mismas etiquetas que el archivo de entrada�Nombre de archivo de la muestra:�Resultado de la muestra:�Buscar en tracktype.org�Segundos:�Segs�Seleccionar archivo�Establecer opciones de división por _defecto�Establecer puntos de divisiones desde detección de silencio�Establecer puntos de división a la tabla�Muestra el nivel de amplitud de onda�Silencio - dividir con detección de silencio�Archivo único�Dividir�¡Dividir!�Modo división�SplitP�Puntos de división�Detener�Etiquetas�Umbral (dB):�Tiempo�Propiedades del título:�Intentando establecer directorio de salida a %s. �Tipo de división�MAYÚSCULAS�Opción '-%c' desconocida. �Carácter de opción desconocido: '\x%x'. �Advertencia: %s�La palabra en mayúsculas�Envolver - dividir archivos creados con mp3wrap o albumwrap (sólo MP3)�_Acerca de�_Añadir�_Añadir archivos�_Añadir puntos de división�Modo _Auto-ajustar (utiliza detección de silencios para auto-ajustar puntos de división)�_Examinar�_Conectar�_Contenidos�_Crear directorios desde nombres de archivo�El_iminar archivos seleccionados�_Desconectar�_Eliminar entradas seleccionadas�_Archivo�_Corregir flujo ogg�_Ayuda�_Importar puntos de división...�_Abrir...�_Enlistar archivos al reproductor�_Salir�_Remover�_Remover entradas seleccionadas�_Remover silencio entre pistas�_Reemplazar guión bajo por espacios�_Buscar�Detección de _Silencio�Dir _Canción�_Dividir!�antes de %s�descripción aquí�Error gstreamer: %s�minúsculas�mono�archivos mp3 y ogg (*.mp3 *.ogg)�mp3 (*.mp3)�ogg (*.ogg)�por favor espere... conectando a tracktype.org�estéreo�utilizando������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/fr_FR.gmo����������������������������������������������������������������������0000644�0001750�0001750�00000041260�11753562412�012757� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����Ô������¼����\ ������È��ó���É��Ú��½��­���˜�����F��(���Y��%���‚�����¨��(���Â�����ë��-��������2��0���O�� ���€��0���Š��/���»��I���ë��L���5��:���‚��;���½�����ù��$��������9�����K�����i�� ���x�� ���‚�� ���Œ��)���—�� ���Á�����â����������������.�����C�� ���b�� ���n�� ���x�� ���‚�����Œ�����•��C��›�����ß�����î����� �� ��� �� ���,�� ���6�����@�����X�����v�� ���‡��3���“�����Ç�����Û�����í�����ô����� �� ���(�����4�����M�����c�� ���z�����‡����� �����²�����Ä�� ���Í��:���Û��<�����:���S�����Ž����� �����¯�����Ï�����æ�����ù�� ��� �����,��7���B�����z�������+���œ�� ���È�����Ò�����Û�����ë��<���ò�� ���/�����:�����B�� ���H�����T�� ���g�� ���r�����}�����„����������’�����—�����›�����¤�����«�����±�����Ã��#���Ô��!���ø����� ����� �����( �� ���- �����7 �����? ��(���F ��&���o �����– ��!���› �����½ �����Ð �����× �����Ý �����â �� ���é �����õ �����þ �����!�� ���!�����(!�����<!�����T!�����h!�� ���x!�����„!��0���¢!�����Ó!��#���Ù!�����ý!�����"�����"�����3"�����<"�����A"�� ���V"�����b"��&���}"��(���¤"�����Í"��&���ì"�� ���#�����#�����%#�� ���-#�� ���9#�����D#�� ���K#�����W#�����\#�����a#�����y#�����#�����”#��*���«#�� ���Ö#�� ���ä#�����î#��!���$�� ���'$�����3$��?���B$�����‚$�����‰$�� ���Ž$�����™$��E���ª$�����ð$�����ø$�� ���%��#��� %�����/%�� ���F%�����R%�����j%�����%�����‡%�����—%�����%�����´%�����½%�����Ô%�����Ú%�����â%�����û%�����&�����9&�����A&�� ���T&�����^&��(���g&�����&�����–&�� ���œ&�����¦&�����¸&�����É&�� ���Ý&�����ç&�����ì&����� '�����'��'���0'�����X'�����_'��Ž��e'��Z���ô(��÷��O)��Ù���G+�����!,��9���5,��<���o,�����¬,��5���Ë,��%���-��@���'-�� ���h-��>���‰-�����È-��9���Î-��>���.��Z���G.��Z���¢.��<���ý.��@���:/��!���{/��'���/�����Å/��*���Ø/�����0�� ���0�� ���0�� ���)0��2���50��'���h0��#���0�����´0�� ���Î0�����ï0��'��� 1�����11�� ���A1�� ���K1�����U1�� ���^1�� ���h1����t1�����ö2��#���3�����+3�����F3�����W3�����i3�����{3��#���—3�����»3�����Î3��6���á3�����4�����.4�����C4��%���L4��#���r4�����–4�� ���¦4�����Ç4��)���æ4�����5�����"5�����=5�����T5�����l5�����u5��G���Š5��G���Ò5��G���6�����b6�����}6�����6�����¯6�����Ê6�����å6��'���ù6��9���!7��<���[7�����˜7��-���¡7��2���Ï7�����8�� ���8�����8�����88��@���?8�� ���€8�� ���Œ8�� ���—8�� ���¢8�����¯8�� ���Â8�� ���Í8�����Ø8�����á8�����ê8�����ï8�����ö8�����ú8�����9�����9�����9�����'9��&���?9��&���f9�����9�� ���•9�����Ÿ9�����§9�� ���·9�����Á9��1���È9��1���ú9�����,:��0���3:�����d:�����~:�����…:�����‹:�����:�� ���˜:�� ���¦:�����²:�����Ã:�� ���Ë:�����Ù:�����ô:�����;�����);�����C;��'���V;��3���~;�����²;��/���¸;�����è;�����<�����<�� ���2<�����=<�����F<�����c<�����v<��+���‹<��1���·<�� ���é<��,��� =�����7=�����F=�����N=�����W=�����k=�����~=�����‡=�����™=�����ž=�����£=�����·=�����Ë=�����Ò=��+���í=�����>�� ���,>�����7>��$���O>�� ���t>��"���‚>��M���¥>�� ���ó>������?����� ?�����?��R���/?�� ���‚?�� ���?�� ���˜?��4���¢?��%���×?�� ���ý?��'��� @�����3@�����R@�����[@�����p@�����v@�� ���•@����� @�����À@�����É@��&���Ò@��$���ù@��*���A�� ���IA�����TA�����kA�����A��:���‡A�����ÂA�����ÈA�����ÐA�����ÙA�� ���îA�����úA�� ���B�����B��!���B�����AB�����VB��1���kB�����B�� ���¦B�������������|���W���0���«������¢�������ª���ˆ���»���T������������������N���l���2���Æ������´���*�����������„�������²���Ê���"�����������±��� ���·�������¥���i���¶��� ���Å���—���d���¹�������‚���r���v���{���_���C������p���+���.���;���™���B�������~�������Ô���g���F���?���f���$���³����������½���¸���‘��������������)�����������Q��������������������������¬�������’���ƒ������Ì���š������I�����������È���y���¤���H���u���Ï���<�����������S�����������‡���Š���e�������€���Í���¯���7���K���Ë�������[�������A���6�������4���a���z���¦�������G�������•��� �������������n���^���Î���Œ������j���9���®�������¿���:���¨��� ���L���¼���Á���8��� �����������‹�������h�������}���†�������/���������������k���£���P���§���-�������µ�����������Ž���Ð���������� ���˜���…���Ò���É���U��� ���������“���w�������\�������'������x������>���À����������X�������©���‰���J���Ñ���­���Y���m�������›�������Ç�������V������,�������=���º���@���s���1���Ä���q���`�������t������������!���°���#���”������3���o�������M���5��������������–���&���O�������Z���R���b���œ���¡�����������Ÿ���(�����������������Ó���ž���E������]���Ã���D����������Â���������c����������¾���%���� Cannot connect to Audacious player. Verify that you have installed audacious. Put in your PATH variable the directory where the audacious executable is. If you don't know how to do that, start audacious manually and then try to connect. � Cannot connect to snackAmp player. Please download and install snackamp from http://snackamp.sourceforge.net Verify that snackamp is running. Verify that your snackamp version is >= 3.1.3 Verify that you have enabled socket interface in snackamp: You have to go to Tools->Preferences->Miscellaneous from the snackamp menu and check Enable Socket Interface Only default port is supported for now(8775) After that, restart snackamp and mp3splt-gtk should work. � @f - file name @a - artist name @p - performer of each song (does not always exist) @b - album title @t - song title @g - genre @n - track number� File '%s' created� cannot preview, not connected to player� cannot split preview last splitpoint� creating "%s" (%d of %d)� error: cannot create gstreamer playbin � error: no file selected� error: no files found in multiple files mode� error: split in progress...� error: you already have the splitpoint in table� finished� info: stopping the split process before exiting� info: stopping the split process.. please wait� left click + move changes song position, right click + move changes zoom� left click on point + move changes point position, right click play preview� left click on rectangle checks/unchecks 'keep splitpoint'� left click on splitpoint selects it, right click erases it� preparing "%s" (%d of %d)� quick preview finished, song paused� quick preview...� searching for sync errors...�%s Revision %d�%s_part%d�<album>: �<artist>: �<b>Choose language (requires restart)</b>�<b>Directory for split files</b>�<b>Output filename format</b>�<b>Player options</b>�<b>Split files tags</b>�<b>Split options</b>�<b>Tags version (mp3 only)</b>�<comment>: �<genre>: �<title>: �<track>: �<year>: �About�Above enter PERL-like regular expression using named subgroups. Following names are recognized: (?<artist>) - artist name (?<album>) - album title (?<title>) - track title (?<tracknum>) - current track number (?<year>) - year of emission (?<genre>) - genre (?<comment>) - comment�Add splitpoint�Add splitpoint from player�Album text properties:�Album title�All Files�All files�Artist text properties:�Audacity labels files (*.txt)�Batch processing�Br_owse dir�CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)�CDDB files (*.cddb)�CUE files (*.cue)�C_lear�Cannot connect to player�Cannot open input file %s �Choose File�Choose file or directory�Choose file to import�Choose split directory�Comment tag:�Comment text properties:�Complete filename�Connect to player�Contents�Custom format�Cutpoint offset (0 is the begin of silence and 1 the end):�Cutpoint offset (0 is the begin of silence,and 1 the end) : �Cutpoint offset (0 is the begin of silence,and 1 the end):�D_elete all files�Default format�Default tags (cddb or cue tags)�Disconnect from player�E_rase all history�Equal time tracks�Error launching external command�Error mode (mp3 only)�Error: The specified output directory is inaccessible! �Export�Extract tags from filename�F_rame mode (useful for mp3 VBR) (mp3 only)�File mode�Filename�First uppercase�FreeDB�Gap level (seconds around splitpoint to search for silence):�Genre tag:�History�Hundr�Hundredths:�ID3v1 & ID3v2 tags�ID3v1 tags�ID3v2 tags�Import�Info: %s�Kbps�Keep�Khz�Language�Length�LiveP�Messages _history�Messages history�Minimum silence length (seconds) : �Minimum silence length (seconds):�Mins�Minutes:�Next�No change�No tags�Normal�Number of tracks (0 means all tracks) : �Number of tracks (0 means all tracks):�Open�Option -%c requires an argument. �Original file tags�Output�Pause�Play�Player�Preferences�Previous�Processing file '%s' ...�Quit�R_emove all�R_emove all entries�Regular expression test�Regular expression:�Remove all rows�Remove rows�Remove silence between tracks�S: %02d, Level: %.2f dB; scanning for silence...�S_top�Same tags version as the input file�Sample filename:�Sample result:�Search tracktype.org:�Seconds:�Secs�Select cue file name�Select file�Set _default split options�Set splitpoints from silence detection�Set splitpoints to the splitpoints table�Shows the amplitude level wave�Silence - split with silence detection�Single file�Split�Split !�Split files�Split mode�SplitP�Splitpoints�Stop�Tags�Threshold level (dB) : �Threshold level (dB):�Time�Title text properties:�Trying to set the output directory to %s. �Type of split�UPPERCASE�Unknown option `-%c'. �Unknown option character `\x%x'. �Warning: %s�Word Uppercase�Wrap - split files created with mp3wrap or albumwrap (mp3 only)�_About�_Add�_Add files�_Add splitpoints�_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)�_Browse�_Connect�_Contents�_Create directories from filenames �_Delete selected files�_Disconnect�_Erase selected entries�_Export splitpoints...�_File�_Fix ogg stream�_Help�_Import splitpoints...�_Open...�_Queue files to player�_Quit�_Remove�_Remove selected entries�_Remove silence between tracks�_Replace underscores by spaces�_Search�_Silence detection�_Song dir�_Split !�_Splitpoint name from filename (testing)�_Test�_part�before %s�cue files (*.cue)�description here�gstreamer error: %s�lowercase�mono�mp3 and ogg files (*.mp3 *.ogg)�mp3 files (*.mp3)�ogg files (*.ogg)�please wait... contacting tracktype.org�stereo�using�Project-Id-Version: mp3splt-gtk Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net POT-Creation-Date: 2012-05-13 00:32+0200 PO-Revision-Date: 2012-05-11 08:29+0000 Last-Translator: Chris38 <ch.daudin@free.fr> Language-Team: LANGUAGE <LL@li.org> Language: fr_FR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1) � Impossible de se connecter au lecteur Audacious. Vérifiez l'installation d'audacious. � Impossible de se connecter au lecteur snackAmp. Téléchargez et installez snackamp à partir de http://snackamp.sourceforge.net Vérifiez que snackamp est lancé. Vérifiez que la version de snackamp est >= 3.1.3 Vérifiez que l'option de snackamp 'enable socket interface' est activée : Aller dans Tools->Preferences->Miscellaneous à partir du menu snackamp et cocher Enable Socket Interface Seulement le port par défaut fonctionne (8775) Après, redémarrer snackamp et réessayer. � @f - nom du fichier @a - nom de l'artiste @p - nom de l'interprète pour chaque titre (n'existe pas toujours) @b - titre de l'album @t - titre du morceau @g - genre @n - numéro de la piste�Fichier '%s' créé� impossible d'écouter l'aperçu, déconnecté du lecteur� impossible d'écouter l'aperçu du dernier point de coupure� création de "%s" (%d sur %d)� erreur: impossible de créer 'playbin' de gstreamer � erreur : aucun fichier sélectionné� erreur: aucun fichier trouvé avec le mode 'fichiers multiples'� erreur : découpage en cours...� erreur : vous avez déjà ce point de coupure dans le tableau� fini� info : arrêt du processus de découpage avant de sortir� info : arrêt du processus de découpage... veuillez attendre� click gauche + déplacement change la position, click droit + déplacement change le zoom� click gauche sur le point + déplacement change la position du point, click droit aperçu� click gauche sur rectangle coche/décoche 'garder le point'� click gauche sur le point le sélectionne, click droit l'efface� préparation de "%s" (%d sur %d)� aperçu rapide fini, lecteur sur pause� aperçu rapide...� recherche d'erreurs de synchronisation...�%s Révision %d�%s_partie%d�<album>: �<artiste>: �<b>Choisir la langue (nécessite redémarrage)</b>�<b>Répertoire des fichiers coupés</b>�<b>Format des fichiers divisés</b>�<b>Options du lecteur</b>�<b>Tags des fichiers coupés</b>�<b>Options de coupure</b>�<b>Version des tags (seulement mp3)</b>�<commentaire>: �<genre>: �<titre>: �<piste>:�<année>:�A propos de�Saisir ci-dessus une expression régulière type-PERL utilisant des mots-clés. Les mots-clés suivants sont reconnus : (?<artist>) - nom de l'artiste (?<album>) - titre de l'album (?<title>) - titre du morceau (=piste) (?<tracknum>) - numéro du morceau courant (?<year>) - année de création (?<genre>) - genre (?<comment>) - commentaire�Ajouter le point�Ajouter point de coupure du lecteur�Propriétés texte album :�Titre de l'album�Tous les fichiers�Tous les fichiers�Propriétés texte auteur :�Fichiers marqueurs Audacity (*.txt)�Traitement par lot�Parc_ourir dossier�CDDB (*.cddb), CUE (*.cue), Marqueurs Audacity (*.txt)�Fichier CDDB (*.cddb)�Fichiers CUE (*.cue)�_Effacer�Impossible de se connecter au lecteur�Impossible d'ouvrir le fichier %s. �Choisir fichier�Choisir un fichier ou un dossier�Choisir un fichier à importer�Choisir dossier pour les fichiers coupés�Tag commentaire :�Propriétés commentaire :�Nom de fichier complet�Se connecter au lecteur�Contenus�Format personnalisé�Position de la coupure dans le silence (0 = au début, 1 = à la fin) :�Position de la coupure dans le silence (0 = au début, 1 = à la fin) :�Position de la coupure dans le silence (0 = au début, 1 = à la fin) :�Effa_cer tous les fichiers�Format par défaut�Tags par défaut (cddb ou cue)�Se déconnecter du lecteur�Effa_cer tout l'historique�Nombre de morceaux �Erreur en lançant un programme externe�Mode recherche erreurs de synchronisation (seulement mp3)�Erreur : le dossier de sortie spécifié est inaccessible ! �Exporter�Extraire les tags à partir du nom de fichier�Mode 'f_rame' (utile pour mp3 VBR) (seulement mp3)�Mode fichier(s)�Nom fichier�1ère lettre en majuscule�FreeDB�Fourchette (secondes autour du point pour chercher un silence) :�Tag genre :�Historique�Centièmes�Centièmes :�Tags ID3v1 & ID3v2�Tags ID3v1�Tags ID3v2�Importer�Info: %s�Kbps�Garder�Khz�Langue�Durée�ALive�_Historique des messages�Historique des messages�Durée minimum du silence (secondes) :�Durée minimum du silence (secondes) :�Minutes�Minutes :�Suivant�Sans changement�Aucun tag�Normal�Nombre de pistes (0 signifie toutes les pistes) :�Nombre de pistes (0 signifie toutes les pistes) :�Ouvrir�L'option -%c doit être suivie d'un paramètre. �Tags du fichier d'entrée�Format�Pause�Lire�Lecteur�Préférences�Précédent�Fichier '%s' ...�Quitter�Effa_cer tout�Effa_cer toutes les lignes�Test expression régulière�Expression régulière :�Effacer toutes les lignes�Effacer les lignes�Effacer les silences entre les morceaux�S : %02d, Niveau : %.2f dB; recherche du silence...�S_top�Même version des tags que le fichier d'entrée�Exemple nom de fichier :�Exemple résultat :�Chercher sur tracktype.org :�Secondes :�Secondes�Sélectionner le fichier cue�Sélection fichier�Options par _défaut�Points à partir de la recherche du silence�Mettre les points au tableau de points de coupure�Montre le niveau du signal audio�Silence - couper par détection des silences�Fichier unique�Coupure�Couper !�Fichiers découpés�Mode de découpage�ACoupure�Points de coupure�Stop�Tags�Niveau seuil (dB) :�Niveau seuil (dB) :�Durée�Propriétés texte titre :�Essaie d'utiliser le dossier de sortie %s. �Type de découpage�MAJUSCULES�Option inconnue `-%c'. �Caractère d'option inconnu `\x%x'. �Attention: %s�1ère lettre des Mots en majuscule�Wrap - diviser les fichiers créés avec mp3wrap ou albumwrap (seulement mp3)�_A propos de�Aj_outer�Aj_outer fichiers�Aj_outer les points�Aj_ustement automatique (utilise la détection du silence pour ajuster les points)�_Parcourir�_Connecter�_Contenus�_Créér les dossiers à partir des noms de fichiers�_Effacer les fichiers sélectionnées�_Déconnecter�_Effacer les éléments sélectionnées�_Exporter points de coupure...�_Fichier�_Fixer un stream ogg�_Aide�_Importer points de coupure...�_Ouvrir...�Aj_oute les fichiers au lecteur�_Quitter�_Effacer�_Effacer les éléments sélectionnés�_Effacer le silence entre les pistes�_Remplacer les souslignés par des espaces�_Recherche�Détection du _silence�Dossier du _fichier�_Couper�_Noms points de coupure à partir du nom fichier (en test)�_Test�_partie�avant %s�Fichiers cue (*.cue)�description�erreur gstreamer: %s�minuscules�mono�fichiers mp3 et ogg (*.mp3 *.ogg)�fichiers mp3 (*.mp3)�fichiers ogg (*.ogg)�veuillez attendre... connexion avec tracktype.org�stéréo�utilisant�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/ru_RU.po�����������������������������������������������������������������������0000644�0001750�0001750�00000062460�11753562412�012656� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Munteanu Alexandru # This file is distributed under the same license as the PACKAGE package. # # Translators: # marselles <marselles@mail.ru>, 2011. # ÐлекÑандр Прокудин <alexandre.prokoudine@gmail.com>, 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net\n" "POT-Creation-Date: 2012-05-13 00:32+0200\n" "PO-Revision-Date: 2012-05-11 08:29+0000\n" "Last-Translator: optimix <io_fx@yahoo.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: ru_RU\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: src/xmms_control.c:82 src/gstreamer_control.c:254 #: src/snackamp_control.c:328 msgid "stereo" msgstr "Ñтерео" #: src/xmms_control.c:86 src/gstreamer_control.c:258 #: src/snackamp_control.c:332 msgid "mono" msgstr "моно" #: src/xmms_control.c:89 src/gstreamer_control.c:223 #: src/snackamp_control.c:335 msgid "Kbps" msgstr "Кбит/Ñ" #: src/xmms_control.c:90 src/gstreamer_control.c:224 #: src/snackamp_control.c:336 msgid "Khz" msgstr "КГц" #: src/tree_tab.c:553 msgid "_part" msgstr "_чаÑть" #: src/tree_tab.c:564 #, c-format msgid "%s_part%d" msgstr "%s_чаÑть%d" #: src/tree_tab.c:708 src/tree_tab.c:1114 msgid " error: you already have the splitpoint in table" msgstr "" #: src/tree_tab.c:791 src/tree_tab.c:870 src/tree_tab.c:1124 #: src/freedb_tab.c:466 src/freedb_tab.c:488 msgid "description here" msgstr "здеÑÑŒ могло быть опиÑание" #: src/tree_tab.c:1273 src/tree_tab.c:1695 msgid "Set trim splitpoints using silence detection" msgstr "" #: src/tree_tab.c:1299 src/tree_tab.c:1371 src/preferences_tab.c:721 msgid "Threshold level (dB):" msgstr "Пороговый уровень (дБ):" #: src/tree_tab.c:1345 src/tree_tab.c:1705 msgid "Set splitpoints from silence detection" msgstr "" #: src/tree_tab.c:1388 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end):" msgstr "" #: src/tree_tab.c:1405 msgid "Number of tracks (0 means all tracks):" msgstr "КоличеÑтво дорожек (0 означает вÑе дорожки):" #: src/tree_tab.c:1420 msgid "Minimum silence length (seconds):" msgstr "ÐœÐ¸Ð½Ð¸Ð¼Ð°Ð»ÑŒÐ½Ð°Ñ Ð´Ð»Ð¸Ð½Ð° задержки (Ñекунды): " #: src/tree_tab.c:1434 msgid "Minimum track length (seconds):" msgstr "" #: src/tree_tab.c:1445 msgid "_Remove silence between tracks" msgstr "Убрать задержку между треками" #: src/tree_tab.c:1633 msgid "Minutes:" msgstr "Минуты:" #: src/tree_tab.c:1638 msgid "Seconds:" msgstr "Секунды:" #: src/tree_tab.c:1644 msgid "Hundredths:" msgstr "МиллиÑекунды:" #: src/tree_tab.c:1650 src/player_tab.c:1052 msgid "_Add" msgstr "Добавить" #: src/tree_tab.c:1656 msgid "Add splitpoint" msgstr "Добавить точку разделениÑ" #: src/tree_tab.c:1660 msgid "_Remove" msgstr "Удалить" #: src/tree_tab.c:1666 msgid "Remove rows" msgstr "Удалить Ñтроки" #: src/tree_tab.c:1670 msgid "R_emove all" msgstr "Удалить вÑе" #: src/tree_tab.c:1676 msgid "Remove all rows" msgstr "Удалить вÑе Ñтроки" #: src/tree_tab.c:1689 msgid "_Trim splitpoints" msgstr "О_брезать точки разделениÑ" #: src/tree_tab.c:1699 msgid "_Silence detection" msgstr "О_пределение тишины" #: src/tree_tab.c:1827 src/mp3splt-gtk.c:399 msgid " finished" msgstr "завершенный" #: src/tree_tab.c:1842 msgid " cannot split preview last splitpoint" msgstr "" #: src/tree_tab.c:1883 msgid " cannot preview, not connected to player" msgstr "" #: src/tree_tab.c:1948 msgid "Keep" msgstr "Сохранить" #: src/tree_tab.c:1962 src/split_files.c:111 msgid "Filename" msgstr "Ð˜Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°" #: src/tree_tab.c:1976 msgid "Secs" msgstr "С" #: src/tree_tab.c:1990 msgid "Mins" msgstr "мин" #: src/tree_tab.c:2004 msgid "Hundr" msgstr "мÑ" #: src/tree_tab.c:2014 msgid "Length" msgstr "ДлительноÑть" #: src/tree_tab.c:2025 msgid "LiveP" msgstr "" #: src/tree_tab.c:2036 msgid "SplitP" msgstr "" #: src/split_files.c:339 msgid "_Queue files to player" msgstr "СпиÑок файлов в плеере" #: src/split_files.c:349 msgid "_Delete selected files" msgstr "Удалить выделенные файлы" #: src/split_files.c:359 msgid "D_elete all files" msgstr "Удалить вÑе файлы" #: src/preferences_tab.c:476 msgid "<b>Choose language (requires restart)</b>" msgstr "<b>Выбрать Ñзык (необходима перезагрузка)</b>" #: src/preferences_tab.c:511 msgid "Choose split directory" msgstr "Выберите каталог Ð´Ð»Ñ Ñ€Ð°Ð·Ð´ÐµÐ»Ñ‘Ð½Ð½Ñ‹Ñ… файлов" #: src/preferences_tab.c:663 msgid "Br_owse dir" msgstr "Обзор каталога" #: src/preferences_tab.c:671 msgid "_Song dir" msgstr "Каталог композиции" #: src/preferences_tab.c:676 msgid "<b>Directory for split files</b>" msgstr "<b>Каталог Ð´Ð»Ñ Ñ€Ð°Ð·Ð´ÐµÐ»Ñ‘Ð½Ð½Ñ‹Ñ… файлов</b>" #: src/preferences_tab.c:685 msgid "_Splitpoint name from filename (testing)" msgstr "_Ð˜Ð¼Ñ Ñ‚Ð¾Ñ‡ÐºÐ¸ Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð¾Ñ‚ имени файла (ÑкÑпериментально)" #: src/preferences_tab.c:691 msgid "_Create directories from filenames " msgstr "_Создать каталоги по именам файлов" #: src/preferences_tab.c:697 msgid "F_rame mode (useful for mp3 VBR) (mp3 only)" msgstr "По_кадровый режим (иÑпользовать Ð´Ð»Ñ VBR) (только MP3)" #: src/preferences_tab.c:704 msgid "_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)" msgstr "Режим _автокоррекции точек Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ñ‚Ð¸ÑˆÐ¸Ð½Ñ‹" #: src/preferences_tab.c:736 msgid "Cutpoint offset (0 is the begin of silence and 1 the end):" msgstr "" #: src/preferences_tab.c:753 msgid "Gap level (seconds around splitpoint to search for silence):" msgstr "Ðа Ñколько Ñекунд вокруг точки Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð¸Ñкать иÑкать тишину:" #: src/preferences_tab.c:772 msgid "Set _default split options" msgstr "_Вернуть иÑходные параметры" #: src/preferences_tab.c:778 msgid "<b>Split options</b>" msgstr "<b>Параметры разделениÑ</b>" #: src/preferences_tab.c:846 msgid "Player:" msgstr "" #: src/preferences_tab.c:868 msgid "Refresh player every " msgstr "" #: src/preferences_tab.c:879 msgid "milliseconds." msgstr "" #: src/preferences_tab.c:884 msgid "Higher refresh rate decreases CPU usage - default is 200." msgstr "" #: src/preferences_tab.c:888 msgid "<b>Player options</b>" msgstr "<b>ÐаÑтройки плеера</b>" #: src/preferences_tab.c:936 msgid "Default format" msgstr "Формат по умолчанию " #: src/preferences_tab.c:940 msgid "Custom format" msgstr "ПользовательÑкий формат" #: src/preferences_tab.c:957 msgid "" " @f - file name\n" " @a - artist name\n" " @p - performer of each song (does not always exist)\n" " @b - album title\n" " @t - song title\n" " @g - genre\n" " @n - track number" msgstr "" " @f — Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°\n" " @a — Ð¸Ð¼Ñ Ð¸ÑполнителÑ\n" " @p — иÑполнитель каждой пеÑни\n" " @b — название альбома\n" " @t — название пеÑни\n" " @g — жанр\n" " @n — номер дорожки" #: src/preferences_tab.c:970 msgid "<b>Output filename format</b>" msgstr "<b>Выходной формат файла</b>" #: src/preferences_tab.c:1015 msgid "Original file tags" msgstr "ИÑходные теги файлов" #: src/preferences_tab.c:1018 msgid "Default tags (cddb or cue tags)" msgstr "Теги по умолчанию (CDDB или из Cue)" #: src/preferences_tab.c:1021 msgid "No tags" msgstr "Ðет меток" #: src/preferences_tab.c:1024 msgid "Extract tags from filename" msgstr "Извлечь метки из имени файла" #: src/preferences_tab.c:1031 msgid "<b>Split files tags</b>" msgstr "<b>Теги разделённых файлов</b>" #: src/preferences_tab.c:1053 msgid "No change" msgstr "Без изменений" #: src/preferences_tab.c:1054 msgid "lowercase" msgstr "Ñтрочные" #: src/preferences_tab.c:1055 msgid "UPPERCASE" msgstr "ЗÐГЛÐÐ’ÐЫЕ" #: src/preferences_tab.c:1056 msgid "First uppercase" msgstr "Первый заглавный Ñимвол" #: src/preferences_tab.c:1057 msgid "Word Uppercase" msgstr "Слово из заглавных букв" #: src/preferences_tab.c:1078 msgid "<artist>: " msgstr "" #: src/preferences_tab.c:1085 msgid "<album>: " msgstr "" #: src/preferences_tab.c:1093 msgid "<title>: " msgstr "" #: src/preferences_tab.c:1100 msgid "<genre>: " msgstr "" #: src/preferences_tab.c:1107 msgid "<comment>: " msgstr "" #: src/preferences_tab.c:1114 msgid "<year>: " msgstr "" #: src/preferences_tab.c:1121 msgid "<track>: " msgstr "" #: src/preferences_tab.c:1147 msgid "Regular expression:" msgstr "РегулÑрное выражение:" #: src/preferences_tab.c:1150 msgid "" "Above enter PERL-like regular expression using named subgroups.\n" "Following names are recognized:\n" " (?<artist>) - artist name\n" " (?<album>) - album title\n" " (?<title>) - track title\n" " (?<tracknum>) - current track number\n" " (?<year>) - year of emission\n" " (?<genre>) - genre\n" " (?<comment>) - comment" msgstr "" "Введите выше регулÑрное выражение по правилам PERL,\n" "иÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÑ Ð¸Ð¼ÐµÐ½Ð¾Ð²Ð°Ð½Ð½Ñ‹Ðµ подгруппы.\n" "РаÑпознаютÑÑ Ñледующшие имена:\n" " (?<artist>) — Ð¸Ð¼Ñ Ð¸ÑполнителÑ\n" " (?<album>) — название альбома\n" " (?<title>) — назщвание дорожки\n" " (?<tracknum>) — номер текущей дорожки\n" " (?<year>) — год выпуÑка\n" " (?<genre>) — жанр\n" " (?<comment>) — комментарий" #: src/preferences_tab.c:1174 msgid "_Replace underscores by spaces" msgstr "_Заменить Ð¿Ð¾Ð´Ñ‡Ñ‘Ñ€ÐºÐ¸Ð²Ð°Ð½Ð¸Ñ Ð½Ð° пробелы" #: src/preferences_tab.c:1182 msgid "Artist text properties:" msgstr "СвойÑтва имени иÑполнителÑ:" #: src/preferences_tab.c:1186 msgid "Album text properties:" msgstr "СвойÑтва Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ Ð°Ð»ÑŒÐ±Ð¾Ð¼Ð°:" #: src/preferences_tab.c:1190 msgid "Title text properties:" msgstr "СвойÑтва Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ñ ÐºÐ¾Ð¼Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ð¸:" #: src/preferences_tab.c:1194 msgid "Comment text properties:" msgstr "СвойÑтва текÑта комментариев" #: src/preferences_tab.c:1197 msgid "Genre tag:" msgstr "Тег жанра:" #: src/preferences_tab.c:1200 msgid "Comment tag:" msgstr "Метки комментариев" #: src/preferences_tab.c:1202 msgid "Regular expression test" msgstr "ТеÑÑ‚ регулÑрных выражений" #: src/preferences_tab.c:1217 msgid "_Test" msgstr "_Проверить" #: src/preferences_tab.c:1222 msgid "Sample filename:" msgstr "Пример имени файла:" #: src/preferences_tab.c:1226 msgid "Sample result:" msgstr "Пример результата:" #: src/preferences_tab.c:1237 msgid "ID3v1 & ID3v2 tags" msgstr "Теги ID3v1 и ID3v2" #: src/preferences_tab.c:1244 msgid "ID3v2 tags" msgstr "Теги ID3v2" #: src/preferences_tab.c:1250 msgid "ID3v1 tags" msgstr "Теги ID3v1" #: src/preferences_tab.c:1256 msgid "Same tags version as the input file" msgstr "Та же, что у иÑходных файлов" #: src/preferences_tab.c:1261 msgid "<b>Tags version (mp3 only)</b>" msgstr "<b>ВерÑÐ¸Ñ Ñ‚ÐµÐ³Ð¾Ð² (только MP3)</b>" #: src/preferences_tab.c:1303 src/main_win.c:560 msgid "Split" msgstr "Разделение" #: src/preferences_tab.c:1309 msgid "Tags" msgstr "Теги" #: src/preferences_tab.c:1315 msgid "Output" msgstr "Вывод" #: src/preferences_tab.c:1321 src/main_win.c:709 msgid "Player" msgstr "Плеер" #: src/preferences_tab.c:1328 msgid "Language" msgstr "Язык" #: src/player_tab.c:664 src/player_tab.c:698 msgid "Cannot connect to player" msgstr "Ðе удаетÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡Ð¸Ñ‚ÑŒÑÑ Ðº плееру" #: src/player_tab.c:675 msgid "" "\n" " Cannot connect to snackAmp player.\n" " Please download and install snackamp from\n" "\thttp://snackamp.sourceforge.net\n" "\n" " Verify that snackamp is running.\n" " Verify that your snackamp version is >= 3.1.3\n" "\n" " Verify that you have enabled socket interface in snackamp:\n" " You have to go to\n" "\tTools->Preferences->Miscellaneous\n" " from the snackamp menu and check\n" "\tEnable Socket Interface\n" " Only default port is supported for now(8775)\n" " After that, restart snackamp and mp3splt-gtk should work.\n" msgstr "" #: src/player_tab.c:690 msgid "" "\n" " Cannot connect to Audacious player.\n" " Verify that you have installed audacious.\n" "\n" " Put in your PATH variable the directory where the audacious executable is.\n" " If you don't know how to do that, start audacious manually and then try to " "connect.\n" msgstr "" #: src/player_tab.c:977 msgid "Previous" msgstr "ПредыдущаÑ" #: src/player_tab.c:995 msgid "Play" msgstr "Слушать" #: src/player_tab.c:1011 msgid "Pause" msgstr "Пауза" #: src/player_tab.c:1028 msgid "Stop" msgstr "ОÑтановить" #: src/player_tab.c:1045 msgid "Next" msgstr "СледующаÑ" #: src/player_tab.c:1060 msgid "Add splitpoint from player" msgstr "Добавить точку Ñ€Ð°Ð·Ð´ÐµÐ»ÐµÐ½Ð¸Ñ Ð¸Ð· плеера" #: src/player_tab.c:1064 msgid "Amplitude _wave" msgstr "" #: src/player_tab.c:1071 msgid "Shows the amplitude level wave" msgstr "Показывает уровень амплитуды волны" #: src/player_tab.c:1075 msgid "_Connect" msgstr "Сединение" #: src/player_tab.c:1078 msgid "Connect to player" msgstr "Подключение к плееру" #: src/player_tab.c:1082 msgid "_Disconnect" msgstr "Отключение" #: src/player_tab.c:1085 msgid "Disconnect from player" msgstr "Отключение от плеера" #: src/player_tab.c:1221 #, c-format msgid "before %s" msgstr "до %s" #: src/player_tab.c:2671 msgid " left click on splitpoint selects it, right click erases it" msgstr "" " щелчок левой клавишей мыши выделÑет точку разделениÑ, правой — удалÑет её" #: src/player_tab.c:2676 msgid "" " left click + move changes song position, right click + move changes zoom" msgstr "" " щелчок левой клавишей мыши и перемещение менÑет позицию, правой — менÑет " "маÑштаб" #: src/player_tab.c:2682 msgid "" " left click on point + move changes point position, right click play preview" msgstr "" " щелчок левой клавишей мыши по точке менÑет её позицию, правой — включает " "проÑлушивание" #: src/player_tab.c:2687 msgid " left click on rectangle checks/unchecks 'keep splitpoint'" msgstr "" " щелчок левой клавишей мыши по прÑмоугольнику переключает Ñохранение точки " "разделениÑ" #: src/player_tab.c:2877 msgid " quick preview..." msgstr "быÑтрый проÑмотр ..." #: src/player_tab.c:3246 msgid "Splitpoints _view" msgstr "" #: src/player_tab.c:3414 msgid "History" msgstr "ИÑториÑ" #: src/player_tab.c:3548 msgid "_Erase selected entries" msgstr "_Удалить выделенные запиÑи" #: src/player_tab.c:3557 msgid "E_rase all history" msgstr "У_далить вÑÑŽ иÑторию" #: src/player_tab.c:3601 msgid "H_istory" msgstr "" #: src/player_tab.c:3674 msgid " quick preview finished, song paused" msgstr "быÑтрый проÑмотр закончен, проигрование приоÑтановлено" #: src/player_tab.c:3820 msgid "Choose File" msgstr "Выберите Файл" #: src/player_tab.c:3832 src/multiple_files.c:130 msgid "mp3 and ogg files (*.mp3 *.ogg)" msgstr "mp3 и ogg файлы (*.mp3 *.ogg)" #: src/player_tab.c:3840 src/multiple_files.c:138 msgid "mp3 files (*.mp3)" msgstr "mp3 файлы (*.mp3)" #: src/player_tab.c:3846 src/multiple_files.c:144 msgid "ogg files (*.ogg)" msgstr "ogg файлы (*.ogg)" #: src/player_tab.c:3987 msgid "_Browse" msgstr "_Обзор" #: src/player_tab.c:3991 msgid "Select file" msgstr "Выделить файл" #: src/player_tab.c:3998 msgid "_Fix ogg stream" msgstr "_ФикÑированный ogg поток" #: src/main_win.c:147 msgid " info: stopping the split process before exiting" msgstr "" #: src/main_win.c:313 msgid "Error launching external command" msgstr "Ошибка при запуÑке внешней команды" #: src/main_win.c:345 msgid "using" msgstr "иÑпользование" #: src/main_win.c:349 msgid "release of " msgstr "" #: src/main_win.c:446 msgid " info: stopping the split process.. please wait" msgstr "" #: src/main_win.c:485 msgid " error: no file selected" msgstr "ошибка: файл не выбран" #: src/main_win.c:490 msgid " error: split in progress..." msgstr "" #: src/main_win.c:502 src/main_win.c:506 msgid "Split !" msgstr "Разделить" #: src/main_win.c:548 msgid "_File" msgstr "_Файл" #: src/main_win.c:549 msgid "_Help" msgstr "_Справка" #: src/main_win.c:552 msgid "_Open..." msgstr "_Открыть" #: src/main_win.c:552 msgid "Open" msgstr "Открыть" #: src/main_win.c:555 msgid "_Import splitpoints..." msgstr "_Импортировать точки разделениÑ..." #: src/main_win.c:555 msgid "Import" msgstr "Импорт" #: src/main_win.c:557 msgid "_Export splitpoints..." msgstr "_ЭкÑпортировать точки разделениÑ..." #: src/main_win.c:557 msgid "Export" msgstr "ЭкÑпорт" #: src/main_win.c:560 msgid "_Split !" msgstr "_Разделить!" #: src/main_win.c:562 msgid "Messages _history" msgstr "_ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ñообщений" #: src/main_win.c:562 src/main_win.c:807 src/messages.c:201 msgid "Messages history" msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ñообщений" #: src/main_win.c:565 msgid "_Quit" msgstr "_Выход" #: src/main_win.c:565 msgid "Quit" msgstr "ВЫход" #: src/main_win.c:569 msgid "_Contents" msgstr "_Контент" #: src/main_win.c:569 msgid "Contents" msgstr "Контент" #: src/main_win.c:573 msgid "_About" msgstr "_О программе" #: src/main_win.c:573 msgid "About" msgstr "О программе" #: src/main_win.c:723 msgid "Splitpoints" msgstr "Точки разделениÑ" #: src/main_win.c:735 msgid "Split files" msgstr "Разделённые файлы" #: src/main_win.c:748 msgid "FreeDB" msgstr "FreeDB" #: src/main_win.c:759 msgid "Type of split" msgstr "Тип разделениÑ" #: src/main_win.c:772 msgid "Preferences" msgstr "Параметры" #: src/main_win.c:789 msgid "S_top" msgstr "_Стоп" #: src/freedb_tab.c:127 #, c-format msgid "%s Revision %d" msgstr "%s верÑÐ¸Ñ %d" #: src/freedb_tab.c:164 msgid "Album title" msgstr "Ðазвание альбома" #: src/freedb_tab.c:250 src/freedb_tab.c:345 msgid "please wait... contacting tracktype.org" msgstr "ПожалуйÑта, подождите ... cвÑзь Ñ tracktype.org" #: src/freedb_tab.c:545 msgid "Search tracktype.org:" msgstr "ПоиÑк в tracktype.org:" #: src/freedb_tab.c:556 msgid "_Search" msgstr "_ПоиÑк" #: src/freedb_tab.c:589 msgid "_Add splitpoints" msgstr "_Добавить точки разделениÑ" #: src/freedb_tab.c:596 msgid "Set splitpoints to the splitpoints table" msgstr "" #: src/special_split.c:197 src/special_split.c:271 #, c-format msgid "Split every %2d seconds." msgstr "" #: src/special_split.c:208 src/special_split.c:305 #, c-format msgid "Split in %2d equal time tracks." msgstr "" #: src/special_split.c:243 msgid "Normal" msgstr "Ðормальный" #: src/special_split.c:253 msgid "Time" msgstr "ВремÑ" #: src/special_split.c:287 msgid "Equal time tracks" msgstr "ÐžÐ´Ð¸Ð½Ð°ÐºÐ¾Ð²Ð°Ñ Ð´Ð»Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð¾Ñть дорожек" #: src/special_split.c:320 msgid "Trim using silence detection" msgstr "Обрезать Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ вычиÑÐ»ÐµÐ½Ð¸Ñ Ñ‚Ð¸ÑˆÐ¸Ð½Ñ‹" #: src/special_split.c:336 src/special_split.c:361 msgid "Threshold level (dB) : " msgstr "Уровень порога (Дб): " #: src/special_split.c:345 msgid "Silence - split with silence detection" msgstr "Тишина — разделить, Ð½Ð°Ð¹Ð´Ñ Ñ‚Ð¸ÑˆÐ¸Ð½Ñƒ" #: src/special_split.c:371 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end) : " msgstr "Смещение точки разреза (0 — начало тишины. 1 — конец): " #: src/special_split.c:381 msgid "Number of tracks (0 means all tracks) : " msgstr "КоличеÑтво дорожек (0 значит вÑе): " #: src/special_split.c:391 msgid "Minimum silence length (seconds) : " msgstr "Мин. длительноÑть тишины (Ñекунды) : " #: src/special_split.c:401 msgid "Minimum track length (seconds) : " msgstr "" #: src/special_split.c:409 msgid "Remove silence between tracks" msgstr "Убрать задержку между дорожками" #: src/special_split.c:430 msgid "Wrap - split files created with mp3wrap or albumwrap (mp3 only)" msgstr "" #: src/special_split.c:440 msgid "Error mode (mp3 only)" msgstr "Режим ошибок (только mp3)" #: src/special_split.c:465 msgid "Single file" msgstr "Один файл" #: src/special_split.c:473 msgid "Batch processing" msgstr "ÐŸÐ°ÐºÐµÑ‚Ð½Ð°Ñ Ð¾Ð±Ñ€Ð°Ð±Ð¾Ñ‚ÐºÐ°" #: src/special_split.c:507 msgid "Split mode" msgstr "Режим разделениÑ" #: src/special_split.c:511 msgid "File mode" msgstr "Режим файла" #: src/messages.c:180 msgid "Enable _debug messages" msgstr "" #: src/messages.c:187 msgid "C_lear" msgstr "О_чиÑтить" #: src/multiple_files.c:88 msgid "Complete filename" msgstr "Полное Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð°" #: src/multiple_files.c:109 msgid "Choose file or directory" msgstr "Выберите файл или каталог" #: src/multiple_files.c:151 msgid "All Files" msgstr "Ð’Ñе файлы" #: src/multiple_files.c:292 msgid "_Add files" msgstr "_Добавить файлы" #: src/multiple_files.c:300 msgid "_Remove selected entries" msgstr "_Удалить выбранные запиÑи" #: src/multiple_files.c:309 msgid "R_emove all entries" msgstr "У_далить вÑе запиÑи" #: src/gstreamer_control.c:97 #, c-format msgid "gstreamer error: %s" msgstr "Ошибка GStreamer: %s" #: src/gstreamer_control.c:125 #, c-format msgid "Warning: %s" msgstr "Предупреждение: %s" #: src/gstreamer_control.c:153 #, c-format msgid "Info: %s" msgstr "ИнформациÑ:%s" #: src/gstreamer_control.c:412 msgid " error: cannot create gstreamer playbin\n" msgstr "" #: src/mp3splt-gtk.c:166 #, c-format msgid " File '%s' created" msgstr "Файл '%s' Ñоздан" #: src/mp3splt-gtk.c:193 #, c-format msgid " preparing \"%s\" (%d of %d)" msgstr "" #: src/mp3splt-gtk.c:199 #, c-format msgid " creating \"%s\" (%d of %d)" msgstr "" #: src/mp3splt-gtk.c:205 msgid " searching for sync errors..." msgstr "" #: src/mp3splt-gtk.c:209 #, c-format msgid "S: %02d, Level: %.2f dB; scanning for silence..." msgstr "" #: src/mp3splt-gtk.c:372 msgid " error: no files found in multiple files mode" msgstr "" #: src/mp3splt-gtk.c:587 #, c-format msgid "Trying to set the output directory to %s.\n" msgstr "Попытка уÑтановить выходной каталог на %s.\n" #: src/mp3splt-gtk.c:596 #, c-format msgid "Error: The specified output directory is inaccessible!\n" msgstr "Ошибка: указанный выходной каталог недоÑтупен!\n" #: src/mp3splt-gtk.c:602 #, c-format msgid "Option -%c requires an argument.\n" msgstr "ÐžÐ¿Ñ†Ð¸Ñ -%c требует значение.\n" #: src/mp3splt-gtk.c:604 #, c-format msgid "Unknown option `-%c'.\n" msgstr "ÐеизвеÑÑ‚Ð½Ð°Ñ Ð¾Ð¿Ñ†Ð¸Ñ `-%c'.\n" #: src/mp3splt-gtk.c:607 #, c-format msgid "Unknown option character `\\x%x'.\n" msgstr "ÐеизвеÑтный Ñимвол опции `\\x%x'.\n" #: src/mp3splt-gtk.c:659 #, c-format msgid "Cannot open input file %s\n" msgstr "Ðе могу открыть входной файл %s\n" #: src/utilities.c:126 #, c-format msgid "Processing file '%s' ..." msgstr "Обработка файла '%s' ..." #: src/import.c:71 msgid "Choose file to import" msgstr "Выберите файл Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°" #: src/import.c:148 msgid "CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)" msgstr "CDDB (*.cddb), CUE (*.cue), Метки Audacity (*.txt)" #: src/import.c:152 msgid "CDDB files (*.cddb)" msgstr "Файлы CDDB (*.cddb)" #: src/import.c:154 msgid "CUE files (*.cue)" msgstr "Файлы CUE (*.cue)" #: src/import.c:156 msgid "Audacity labels files (*.txt)" msgstr "Файлы меток Audacity (*.txt)" #: src/import.c:158 msgid "All files" msgstr "Ð’Ñе файлы" #: src/export.c:199 msgid "Select cue file name" msgstr "Выберите Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð° c раÑширением cue" #: src/export.c:212 msgid "cue files (*.cue)" msgstr "cue файлы (*.cue)" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/en@boldquot.header�������������������������������������������������������������0000664�0001750�0001750�00000002471�11241331370�014673� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/en@quot.header�����������������������������������������������������������������0000664�0001750�0001750�00000002263�11241331370�014031� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/Rules-quot���������������������������������������������������������������������0000664�0001750�0001750�00000003231�11241331370�013243� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/de_DE.po�����������������������������������������������������������������������0000644�0001750�0001750�00000055566�11753562412�012573� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Munteanu Alexandru # This file is distributed under the same license as the PACKAGE package. # # Translators: # Peter Pall <gunter@peterpall.de>, 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net\n" "POT-Creation-Date: 2012-05-13 00:32+0200\n" "PO-Revision-Date: 2012-05-11 08:29+0000\n" "Last-Translator: Peter Pall <gunter@peterpall.de>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: de_DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #: src/xmms_control.c:82 src/gstreamer_control.c:254 #: src/snackamp_control.c:328 msgid "stereo" msgstr "Stereo" #: src/xmms_control.c:86 src/gstreamer_control.c:258 #: src/snackamp_control.c:332 msgid "mono" msgstr "Mono" #: src/xmms_control.c:89 src/gstreamer_control.c:223 #: src/snackamp_control.c:335 msgid "Kbps" msgstr "kbit/s" #: src/xmms_control.c:90 src/gstreamer_control.c:224 #: src/snackamp_control.c:336 msgid "Khz" msgstr "kHz" #: src/tree_tab.c:553 msgid "_part" msgstr "" #: src/tree_tab.c:564 #, c-format msgid "%s_part%d" msgstr "" #: src/tree_tab.c:708 src/tree_tab.c:1114 msgid " error: you already have the splitpoint in table" msgstr " Fehler: Schnittpunkt existiert bereits" #: src/tree_tab.c:791 src/tree_tab.c:870 src/tree_tab.c:1124 #: src/freedb_tab.c:466 src/freedb_tab.c:488 msgid "description here" msgstr "Bitte Name eingeben" #: src/tree_tab.c:1273 src/tree_tab.c:1695 msgid "Set trim splitpoints using silence detection" msgstr "" #: src/tree_tab.c:1299 src/tree_tab.c:1371 src/preferences_tab.c:721 msgid "Threshold level (dB):" msgstr "Schwelle (dB):" #: src/tree_tab.c:1345 src/tree_tab.c:1705 msgid "Set splitpoints from silence detection" msgstr "Schnittpunte mittels Stille-detektion erzeugen" #: src/tree_tab.c:1388 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end):" msgstr "Schnittpunkt-Versatz (0=Beginn der Stille und 1=Ende):" #: src/tree_tab.c:1405 msgid "Number of tracks (0 means all tracks):" msgstr "Anzahl der Titel (0 bedeutet alle):" #: src/tree_tab.c:1420 msgid "Minimum silence length (seconds):" msgstr "Mindestlänge der Stille (Sekunden):" #: src/tree_tab.c:1434 msgid "Minimum track length (seconds):" msgstr "" #: src/tree_tab.c:1445 msgid "_Remove silence between tracks" msgstr "_Stille zwischen Titeln entfernen" #: src/tree_tab.c:1633 msgid "Minutes:" msgstr "Minuten:" #: src/tree_tab.c:1638 msgid "Seconds:" msgstr "Sekunden:" #: src/tree_tab.c:1644 msgid "Hundredths:" msgstr "Hundertstel:" #: src/tree_tab.c:1650 src/player_tab.c:1052 msgid "_Add" msgstr "_Hinzufügen" #: src/tree_tab.c:1656 msgid "Add splitpoint" msgstr "Schnittpunkt hinzufügen" #: src/tree_tab.c:1660 msgid "_Remove" msgstr "_Löschen" #: src/tree_tab.c:1666 msgid "Remove rows" msgstr "Spalten löschen" #: src/tree_tab.c:1670 msgid "R_emove all" msgstr "_Alle löschen" #: src/tree_tab.c:1676 msgid "Remove all rows" msgstr "Alle Spalten löschen" #: src/tree_tab.c:1689 msgid "_Trim splitpoints" msgstr "" #: src/tree_tab.c:1699 msgid "_Silence detection" msgstr "_Stille erkennen" #: src/tree_tab.c:1827 src/mp3splt-gtk.c:399 msgid " finished" msgstr " Beendet" #: src/tree_tab.c:1842 msgid " cannot split preview last splitpoint" msgstr " Vorschau für letzten Teilungspunkt nicht möglich" #: src/tree_tab.c:1883 msgid " cannot preview, not connected to player" msgstr " Vorschau nicht möglich: Keine Verbindung zum Abspielprogramm" #: src/tree_tab.c:1948 msgid "Keep" msgstr "Behalten" #: src/tree_tab.c:1962 src/split_files.c:111 msgid "Filename" msgstr "Dateiname" #: src/tree_tab.c:1976 msgid "Secs" msgstr "Sek" #: src/tree_tab.c:1990 msgid "Mins" msgstr "Min" #: src/tree_tab.c:2004 msgid "Hundr" msgstr "1/100s" #: src/tree_tab.c:2014 msgid "Length" msgstr "Länge" #: src/tree_tab.c:2025 msgid "LiveP" msgstr "LiveP" #: src/tree_tab.c:2036 msgid "SplitP" msgstr "SplitP" #: src/split_files.c:339 msgid "_Queue files to player" msgstr "Zur Wiedergabe-_Warteschlange hinzufügen" #: src/split_files.c:349 msgid "_Delete selected files" msgstr "Ausgewählte _Dateien entfernen" #: src/split_files.c:359 msgid "D_elete all files" msgstr "Alle Dateien _entfernen" #: src/preferences_tab.c:476 msgid "<b>Choose language (requires restart)</b>" msgstr "<b>Sprache wählen (erfordert Neustart)</b>" #: src/preferences_tab.c:511 msgid "Choose split directory" msgstr "Wählen des Ausgabeordners" #: src/preferences_tab.c:663 msgid "Br_owse dir" msgstr "_Ordner wählen" #: src/preferences_tab.c:671 msgid "_Song dir" msgstr "Titel_ordner" #: src/preferences_tab.c:676 msgid "<b>Directory for split files</b>" msgstr "<b>Ordner für Dateiausgabe</b>" #: src/preferences_tab.c:685 msgid "_Splitpoint name from filename (testing)" msgstr "" #: src/preferences_tab.c:691 msgid "_Create directories from filenames " msgstr "_Ordner aus Dateinamen erstellen" #: src/preferences_tab.c:697 msgid "F_rame mode (useful for mp3 VBR) (mp3 only)" msgstr "F_rame-Modus (nützlich für mp3-VBR) (nur für mp3)" #: src/preferences_tab.c:704 msgid "_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)" msgstr "" "_Automatische Feinabstimmung der Schnittpunkte mittels der Stille-Detektion" #: src/preferences_tab.c:736 msgid "Cutpoint offset (0 is the begin of silence and 1 the end):" msgstr "Teilungspunkt-Versatz (0 ist Beginn der Stille und 1 Ende):" #: src/preferences_tab.c:753 msgid "Gap level (seconds around splitpoint to search for silence):" msgstr "Pause (Sekunden um den Teilungspunkt zur Suche nach Stille):" #: src/preferences_tab.c:772 msgid "Set _default split options" msgstr "Standard-_Teilungsoptionen festlegen" #: src/preferences_tab.c:778 msgid "<b>Split options</b>" msgstr "<b>Teilungsoptionen</b>" #: src/preferences_tab.c:846 msgid "Player:" msgstr "" #: src/preferences_tab.c:868 msgid "Refresh player every " msgstr "" #: src/preferences_tab.c:879 msgid "milliseconds." msgstr "" #: src/preferences_tab.c:884 msgid "Higher refresh rate decreases CPU usage - default is 200." msgstr "" #: src/preferences_tab.c:888 msgid "<b>Player options</b>" msgstr "<b>Wiedergabeoptionen</b>" #: src/preferences_tab.c:936 msgid "Default format" msgstr "Standardformat" #: src/preferences_tab.c:940 msgid "Custom format" msgstr "Benutzerdefiniert" #: src/preferences_tab.c:957 msgid "" " @f - file name\n" " @a - artist name\n" " @p - performer of each song (does not always exist)\n" " @b - album title\n" " @t - song title\n" " @g - genre\n" " @n - track number" msgstr "" #: src/preferences_tab.c:970 msgid "<b>Output filename format</b>" msgstr "<b>Format der Ausgabedatei</b>" #: src/preferences_tab.c:1015 msgid "Original file tags" msgstr "Originale Datei-Tags" #: src/preferences_tab.c:1018 msgid "Default tags (cddb or cue tags)" msgstr "Vorgegebene Tags (cddb oder cue)" #: src/preferences_tab.c:1021 msgid "No tags" msgstr "Keine Tags" #: src/preferences_tab.c:1024 msgid "Extract tags from filename" msgstr "Tags aus Dateinamen entpacken" #: src/preferences_tab.c:1031 msgid "<b>Split files tags</b>" msgstr "<b>Tags in ausgegebenen Dateien</b>" #: src/preferences_tab.c:1053 msgid "No change" msgstr "Keine Änderung" #: src/preferences_tab.c:1054 msgid "lowercase" msgstr "kleinschreibung" #: src/preferences_tab.c:1055 msgid "UPPERCASE" msgstr "GROSSSCHREIBUNG" #: src/preferences_tab.c:1056 msgid "First uppercase" msgstr "Großschreibung/erster Buchstabe" #: src/preferences_tab.c:1057 msgid "Word Uppercase" msgstr "Großschreibung/Wort" #: src/preferences_tab.c:1078 msgid "<artist>: " msgstr "" #: src/preferences_tab.c:1085 msgid "<album>: " msgstr "" #: src/preferences_tab.c:1093 msgid "<title>: " msgstr "" #: src/preferences_tab.c:1100 msgid "<genre>: " msgstr "" #: src/preferences_tab.c:1107 msgid "<comment>: " msgstr "" #: src/preferences_tab.c:1114 msgid "<year>: " msgstr "" #: src/preferences_tab.c:1121 msgid "<track>: " msgstr "" #: src/preferences_tab.c:1147 msgid "Regular expression:" msgstr "Regulärer Ausdruck:" #: src/preferences_tab.c:1150 msgid "" "Above enter PERL-like regular expression using named subgroups.\n" "Following names are recognized:\n" " (?<artist>) - artist name\n" " (?<album>) - album title\n" " (?<title>) - track title\n" " (?<tracknum>) - current track number\n" " (?<year>) - year of emission\n" " (?<genre>) - genre\n" " (?<comment>) - comment" msgstr "" #: src/preferences_tab.c:1174 msgid "_Replace underscores by spaces" msgstr "Unterstriche du_rch Leerzeichen ersetzen" #: src/preferences_tab.c:1182 msgid "Artist text properties:" msgstr "Künstlertext-Eigenschaften:" #: src/preferences_tab.c:1186 msgid "Album text properties:" msgstr "Albumtext-Eigenschaften:" #: src/preferences_tab.c:1190 msgid "Title text properties:" msgstr "Titeltext-Eigenschaften:" #: src/preferences_tab.c:1194 msgid "Comment text properties:" msgstr "Kommentartext-Eigenschaften:" #: src/preferences_tab.c:1197 msgid "Genre tag:" msgstr "" #: src/preferences_tab.c:1200 msgid "Comment tag:" msgstr "Kommentar-Tag" #: src/preferences_tab.c:1202 msgid "Regular expression test" msgstr "" #: src/preferences_tab.c:1217 msgid "_Test" msgstr "" #: src/preferences_tab.c:1222 msgid "Sample filename:" msgstr "Beispiel-Dateiname:" #: src/preferences_tab.c:1226 msgid "Sample result:" msgstr "Beispiel-Ergebnis:" #: src/preferences_tab.c:1237 msgid "ID3v1 & ID3v2 tags" msgstr "ID3v1- und ID3v2-Tags" #: src/preferences_tab.c:1244 msgid "ID3v2 tags" msgstr "ID3v2-Tags" #: src/preferences_tab.c:1250 msgid "ID3v1 tags" msgstr "ID3v1-Tags" #: src/preferences_tab.c:1256 msgid "Same tags version as the input file" msgstr "Gleiche Tag-Version wie Eingabedatei" #: src/preferences_tab.c:1261 msgid "<b>Tags version (mp3 only)</b>" msgstr "<b>Tag-Version (nur für mp3)</b>" #: src/preferences_tab.c:1303 src/main_win.c:560 msgid "Split" msgstr "Teilung" #: src/preferences_tab.c:1309 msgid "Tags" msgstr "Tags" #: src/preferences_tab.c:1315 msgid "Output" msgstr "Ausgabe" #: src/preferences_tab.c:1321 src/main_win.c:709 msgid "Player" msgstr "Abspieler" #: src/preferences_tab.c:1328 msgid "Language" msgstr "Sprache" #: src/player_tab.c:664 src/player_tab.c:698 msgid "Cannot connect to player" msgstr "Keine Verbindung zum Abspielprogramm möglich" #: src/player_tab.c:675 msgid "" "\n" " Cannot connect to snackAmp player.\n" " Please download and install snackamp from\n" "\thttp://snackamp.sourceforge.net\n" "\n" " Verify that snackamp is running.\n" " Verify that your snackamp version is >= 3.1.3\n" "\n" " Verify that you have enabled socket interface in snackamp:\n" " You have to go to\n" "\tTools->Preferences->Miscellaneous\n" " from the snackamp menu and check\n" "\tEnable Socket Interface\n" " Only default port is supported for now(8775)\n" " After that, restart snackamp and mp3splt-gtk should work.\n" msgstr "" "\n" " Keine Verbindung zum SnackAmp-Wiedergabprogramm.\n" " Bitte laden Sie SnackAmp von\n" "\thttp://snackamp.sourceforge.net herunter\n" " und installieren Sie es.\n" "\n" " Stellen Sie sicher, dass SnackAmp mindestens\n" " in Version 3.1.3 vorliegt und läuft\n" "\n" " Stellen Sie sicher, dass Sie die Socket-Schnittstelle\n" " in SnacAmp aktiviert haben: Wählen Sie\n" "\tTools->Preferences->Miscellaneous\n" " im SnackAmp-Menü und aktivieren Sie\n" "\tEnable Socket Interface\n" " Derzeit wird nur der Standardport unterstützt(8775)\n" " Danach starten Sie SnackAmp neu und mp3splt-gtk\n" " sollte funktionieren.\n" #: src/player_tab.c:690 msgid "" "\n" " Cannot connect to Audacious player.\n" " Verify that you have installed audacious.\n" "\n" " Put in your PATH variable the directory where the audacious executable is.\n" " If you don't know how to do that, start audacious manually and then try to " "connect.\n" msgstr "" "\n" " Keine Verbindung zum Audacious-Wiedergabeprogramm.\n" " Stellen Sie sicher, dass Audacious installiert ist.\n" "\n" " Fügen Sie den Installationsort der ausführbaren Audacious-Datei\n" " zur Variable PATH hinzu. Falls Sie nicht wissen,\n" " wie Sie das tun können, starten Sie Audacious manuell\n" " und versuchen Sie, eine Verbindung herzustellen.\n" #: src/player_tab.c:977 msgid "Previous" msgstr "Vorherige" #: src/player_tab.c:995 msgid "Play" msgstr "Wiedergabe" #: src/player_tab.c:1011 msgid "Pause" msgstr "Pause" #: src/player_tab.c:1028 msgid "Stop" msgstr "Stop" #: src/player_tab.c:1045 msgid "Next" msgstr "Nächste" #: src/player_tab.c:1060 msgid "Add splitpoint from player" msgstr "Schnittpunkt hier hinzufügen" #: src/player_tab.c:1064 msgid "Amplitude _wave" msgstr "" #: src/player_tab.c:1071 msgid "Shows the amplitude level wave" msgstr "Zeigt die Audio-Pegelkurve" #: src/player_tab.c:1075 msgid "_Connect" msgstr "_Verbinden" #: src/player_tab.c:1078 msgid "Connect to player" msgstr "Zum Abspielprogramm verbinden" #: src/player_tab.c:1082 msgid "_Disconnect" msgstr "Verbindung _trennen" #: src/player_tab.c:1085 msgid "Disconnect from player" msgstr "Verbindung zum Abspielprogramm trennen" #: src/player_tab.c:1221 #, c-format msgid "before %s" msgstr "vor %s" #: src/player_tab.c:2671 msgid " left click on splitpoint selects it, right click erases it" msgstr "" "Linksklick auf Teilungspunkt wählt aus, Rechtsklick löscht Teilungspunkt" #: src/player_tab.c:2676 msgid "" " left click + move changes song position, right click + move changes zoom" msgstr "" "Linksklick + Verschieben ändert die Position des Titels, Rechtsklick + " "Verschieben ändert den Vergrößerungsfaktor" #: src/player_tab.c:2682 msgid "" " left click on point + move changes point position, right click play preview" msgstr "" "Linksklick + Verschieben ändert die Position des Punktes, Rechtsklick spielt " "Vorschau ab" #: src/player_tab.c:2687 msgid " left click on rectangle checks/unchecks 'keep splitpoint'" msgstr "Linksklick aktiviert/deaktiviert »Teilungspunkt behalten«" #: src/player_tab.c:2877 msgid " quick preview..." msgstr " Schnellvorschau..." #: src/player_tab.c:3246 msgid "Splitpoints _view" msgstr "" #: src/player_tab.c:3414 msgid "History" msgstr "Chronik" #: src/player_tab.c:3548 msgid "_Erase selected entries" msgstr "Ausgewählte _Einträge löschen" #: src/player_tab.c:3557 msgid "E_rase all history" msgstr "_Gesamte Chronik löschen" #: src/player_tab.c:3601 msgid "H_istory" msgstr "" #: src/player_tab.c:3674 msgid " quick preview finished, song paused" msgstr "Schnellvorschau beendet, Wiedergabe pausiert" #: src/player_tab.c:3820 msgid "Choose File" msgstr "Datei wählen" #: src/player_tab.c:3832 src/multiple_files.c:130 msgid "mp3 and ogg files (*.mp3 *.ogg)" msgstr "mp3- und ogg-Dateien (*.mp3 *.ogg)" #: src/player_tab.c:3840 src/multiple_files.c:138 msgid "mp3 files (*.mp3)" msgstr "mp3-Dateien (*.mp3)" #: src/player_tab.c:3846 src/multiple_files.c:144 msgid "ogg files (*.ogg)" msgstr "ogg-Dateien (*.ogg)" #: src/player_tab.c:3987 msgid "_Browse" msgstr "_Durchsuchen" #: src/player_tab.c:3991 msgid "Select file" msgstr "Datei wählen" #: src/player_tab.c:3998 msgid "_Fix ogg stream" msgstr "Ogg-Datenstrom _reparieren" #: src/main_win.c:147 msgid " info: stopping the split process before exiting" msgstr " Info: Teilungsvorgang wird vor dem Beenden abgebrochen" #: src/main_win.c:313 msgid "Error launching external command" msgstr "" #: src/main_win.c:345 msgid "using" msgstr "unter Verwendung von" #: src/main_win.c:349 msgid "release of " msgstr "" #: src/main_win.c:446 msgid " info: stopping the split process.. please wait" msgstr " Info: Teilungsvorgang wird beendet, bitte warten" #: src/main_win.c:485 msgid " error: no file selected" msgstr " Fehler: Keine Datei ausgewählt" #: src/main_win.c:490 msgid " error: split in progress..." msgstr " Fehler: Teilung läuft..." #: src/main_win.c:502 src/main_win.c:506 msgid "Split !" msgstr "Teilen!" #: src/main_win.c:548 msgid "_File" msgstr "_Datei" #: src/main_win.c:549 msgid "_Help" msgstr "_Hilfe" #: src/main_win.c:552 msgid "_Open..." msgstr "_Öffnen" #: src/main_win.c:552 msgid "Open" msgstr "Öffnen" #: src/main_win.c:555 msgid "_Import splitpoints..." msgstr "Teilungspunkte h_inzufügen" #: src/main_win.c:555 msgid "Import" msgstr "Importieren" #: src/main_win.c:557 msgid "_Export splitpoints..." msgstr "_Exportiere die Teilungspunkte..." #: src/main_win.c:557 msgid "Export" msgstr "Exportieren" #: src/main_win.c:560 msgid "_Split !" msgstr "_Teilen!" #: src/main_win.c:562 msgid "Messages _history" msgstr "C_hronik der Meldungen" #: src/main_win.c:562 src/main_win.c:807 src/messages.c:201 msgid "Messages history" msgstr "Chronik der Meldungen" #: src/main_win.c:565 msgid "_Quit" msgstr "_Beenden" #: src/main_win.c:565 msgid "Quit" msgstr "Beenden" #: src/main_win.c:569 msgid "_Contents" msgstr "_Inhalt" #: src/main_win.c:569 msgid "Contents" msgstr "Inhalt" #: src/main_win.c:573 msgid "_About" msgstr "_Info" #: src/main_win.c:573 msgid "About" msgstr "Info" #: src/main_win.c:723 msgid "Splitpoints" msgstr "Teilungspunkte" #: src/main_win.c:735 msgid "Split files" msgstr "" #: src/main_win.c:748 msgid "FreeDB" msgstr "FreeDB" #: src/main_win.c:759 msgid "Type of split" msgstr "Teilungstyp" #: src/main_win.c:772 msgid "Preferences" msgstr "Einstellungen" #: src/main_win.c:789 msgid "S_top" msgstr "S_top" #: src/freedb_tab.c:127 #, c-format msgid "%s Revision %d" msgstr "%s Revision %d" #: src/freedb_tab.c:164 msgid "Album title" msgstr "Albumtitel" #: src/freedb_tab.c:250 src/freedb_tab.c:345 msgid "please wait... contacting tracktype.org" msgstr "Bitte warten - tracktype.org wird kontaktiert" #: src/freedb_tab.c:545 msgid "Search tracktype.org:" msgstr "Suchen auf tracktype.org:" #: src/freedb_tab.c:556 msgid "_Search" msgstr "_Suchen" #: src/freedb_tab.c:589 msgid "_Add splitpoints" msgstr "Teilungspunkte hinzu_fügen" #: src/freedb_tab.c:596 msgid "Set splitpoints to the splitpoints table" msgstr "Teilungspunkte zur Tabelle hinzufügen" #: src/special_split.c:197 src/special_split.c:271 #, c-format msgid "Split every %2d seconds." msgstr "" #: src/special_split.c:208 src/special_split.c:305 #, c-format msgid "Split in %2d equal time tracks." msgstr "" #: src/special_split.c:243 msgid "Normal" msgstr "Normal" #: src/special_split.c:253 msgid "Time" msgstr "Zeit" #: src/special_split.c:287 msgid "Equal time tracks" msgstr "Titel gleicher Länge" #: src/special_split.c:320 msgid "Trim using silence detection" msgstr "" #: src/special_split.c:336 src/special_split.c:361 msgid "Threshold level (dB) : " msgstr "" #: src/special_split.c:345 msgid "Silence - split with silence detection" msgstr "Stille - Schnittpunte mittels Stille-Erkennung erzeugen" #: src/special_split.c:371 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end) : " msgstr "" #: src/special_split.c:381 msgid "Number of tracks (0 means all tracks) : " msgstr "" #: src/special_split.c:391 msgid "Minimum silence length (seconds) : " msgstr "" #: src/special_split.c:401 msgid "Minimum track length (seconds) : " msgstr "" #: src/special_split.c:409 msgid "Remove silence between tracks" msgstr "Stille zwischen Titeln entfernen" #: src/special_split.c:430 msgid "Wrap - split files created with mp3wrap or albumwrap (mp3 only)" msgstr "Wrap - mit mp3wrap oder albumwrap erzeugte Dateien teilen (nur mp3)" #: src/special_split.c:440 msgid "Error mode (mp3 only)" msgstr "Fehlermodus (nur für mp3)" #: src/special_split.c:465 msgid "Single file" msgstr "Einzelne Datei" #: src/special_split.c:473 msgid "Batch processing" msgstr "Stapelverarbeitung" #: src/special_split.c:507 msgid "Split mode" msgstr "Teilungsmodus" #: src/special_split.c:511 msgid "File mode" msgstr "Dateimodus" #: src/messages.c:180 msgid "Enable _debug messages" msgstr "" #: src/messages.c:187 msgid "C_lear" msgstr "_Löschen" #: src/multiple_files.c:88 msgid "Complete filename" msgstr "" #: src/multiple_files.c:109 msgid "Choose file or directory" msgstr "Datei oder Ordner wählen" #: src/multiple_files.c:151 msgid "All Files" msgstr "Alle Dateien" #: src/multiple_files.c:292 msgid "_Add files" msgstr "Dateien _hinzufügen" #: src/multiple_files.c:300 msgid "_Remove selected entries" msgstr "Ausgewählte _Einträge löschen" #: src/multiple_files.c:309 msgid "R_emove all entries" msgstr "Alle _Einträge löschen" #: src/gstreamer_control.c:97 #, c-format msgid "gstreamer error: %s" msgstr "Gstreamer-Fehler: %s" #: src/gstreamer_control.c:125 #, c-format msgid "Warning: %s" msgstr "Warnung: %s" #: src/gstreamer_control.c:153 #, c-format msgid "Info: %s" msgstr "Info: %s" #: src/gstreamer_control.c:412 msgid " error: cannot create gstreamer playbin\n" msgstr "Fehler: gstreamer-playbin kann nicht erzeugt werden\n" #: src/mp3splt-gtk.c:166 #, c-format msgid " File '%s' created" msgstr "Datei »%s« wurde erzeugt" #: src/mp3splt-gtk.c:193 #, c-format msgid " preparing \"%s\" (%d of %d)" msgstr "»%s« wird vorbereitet (%d von %d)" #: src/mp3splt-gtk.c:199 #, c-format msgid " creating \"%s\" (%d of %d)" msgstr "»%s« wird erzeugt (%d von %d)" #: src/mp3splt-gtk.c:205 msgid " searching for sync errors..." msgstr " Nach Synchronisationsfehlern wird gesucht …" #: src/mp3splt-gtk.c:209 #, c-format msgid "S: %02d, Level: %.2f dB; scanning for silence..." msgstr "S: %02d, Pegel: %.2f dB; nach Stille wird gesucht …" #: src/mp3splt-gtk.c:372 msgid " error: no files found in multiple files mode" msgstr " Fehler: Keine Dateien für Mehrfachmodus gefunden" #: src/mp3splt-gtk.c:587 #, c-format msgid "Trying to set the output directory to %s.\n" msgstr "Es wird versucht, %s als Ausgabeordner zu verwenden.\n" #: src/mp3splt-gtk.c:596 #, c-format msgid "Error: The specified output directory is inaccessible!\n" msgstr "Fehler: Zugriff aud den angegebenen Ausgabeordner ist nicht möglich!\n" #: src/mp3splt-gtk.c:602 #, c-format msgid "Option -%c requires an argument.\n" msgstr "Option -%c benötigt ein Argument.\n" #: src/mp3splt-gtk.c:604 #, c-format msgid "Unknown option `-%c'.\n" msgstr "Unbekannte Option »-%c«.\n" #: src/mp3splt-gtk.c:607 #, c-format msgid "Unknown option character `\\x%x'.\n" msgstr "Unbekanntes Optionszeichen »\\x%x«.\n" #: src/mp3splt-gtk.c:659 #, c-format msgid "Cannot open input file %s\n" msgstr "Eingabedatei %s kann nicht geöffnet werden\n" #: src/utilities.c:126 #, c-format msgid "Processing file '%s' ..." msgstr "Datei »%s« wird verarbeitet …" #: src/import.c:71 msgid "Choose file to import" msgstr "Datei zum Importieren wählen" #: src/import.c:148 msgid "CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)" msgstr "CDDB (*.cddb), CUE (*.cue), Audacity-Labels (*.txt)" #: src/import.c:152 msgid "CDDB files (*.cddb)" msgstr "CDDB-Dateien (*.cddb)" #: src/import.c:154 msgid "CUE files (*.cue)" msgstr "CUE-Dateien (*.cue)" #: src/import.c:156 msgid "Audacity labels files (*.txt)" msgstr "Audacity-Labeldateien (*.txt)" #: src/import.c:158 msgid "All files" msgstr "Alle Dateien" #: src/export.c:199 msgid "Select cue file name" msgstr "Wählen eines Namens für die .cue-Datei" #: src/export.c:212 msgid "cue files (*.cue)" msgstr "cue-Dateien (*.cue)" ������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/remove-potcdate.sin������������������������������������������������������������0000664�0001750�0001750�00000000660�11241331370�015054� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } ��������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/boldquot.sed�������������������������������������������������������������������0000664�0001750�0001750�00000000331�11241331370�013564� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g s/“/“/g s/â€/â€/g s/‘/‘/g s/’/’/g �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/POTFILES.in��������������������������������������������������������������������0000644�0001750�0001750�00000000621�11505753104�013021� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# List of files which contain translatable strings. src/xmms_control.c src/tree_tab.c src/split_files.c src/preferences_tab.c src/player_tab.c src/main_win.c src/options_manager.c src/freedb_tab.c src/special_split.c src/messages.c src/multiple_files.c src/gstreamer_control.c src/mp3splt-gtk.c src/player.c src/snackamp_control.c src/utilities.c src/import.c src/preferences_manager.c src/export.c ���������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/cs.gmo�������������������������������������������������������������������������0000644�0001750�0001750�00000042567�11753562413�012402� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����Ú������ì��%��¼ ������P��ó���Q��Ú��E��­��� �����Î��(���á��%��� �����0��(���J�����s��-���Œ�����º��0���×�� �����0�����/���C��I���s��L���½��:��� ��;���E�������$���œ�����Á�����Ó�����ñ�� ������ ��� �� �����)����� ���I�����j�����ˆ�����ž�����¶�����Ë�� ���ê�� ���ö�� ������ ��� ������������C��#�����g�����v�����‘�� ���¨�� ���´�� ���¾�����È�����à�����þ�� �����3��������O�����c�����u�����|�����•�� ���°�����¼�����Õ�����ë�� �������������(�����:�����L�� ���U��:���c��<���ž��:���Û����������(�����7�����W�����n������� ���“�����´��7���Ê���������� ��+���$�� ���P�����Z�����c�����s��<���z�� ���·�����Â�����Ê�� ���Ð�����Ü�� ���ï�� ���ú����� ����� ����� ����� ����� �����# �����, �����3 �����9 �����K ��#���\ ��!���€ ��!���¢ �����Ä �����ä �����é �����ò �� ���÷ �����!����� !��(���!��&���9!�����`!��!���e!�����‡!�����š!�����¡!�����§!�����¬!�� ���³!�����¿!�����È!�����á!�� ���æ!�����ò!�����"�����"�����2"�� ���B"�����N"��0���l"�����"��#���£"�����Ç"�����Ø"�����ç"�����ý"�����#����� #�� ��� #�����,#��&���G#��(���n#��,���—#�����Ä#��&���ã#�� ��� $�����$�����$�� ���$$�� ���0$�����;$�� ���B$�����N$�����S$�����X$�����p$�����†$�����‹$�����¢$��*���¿$�� ���ê$�� ���ø$�����%��!���%�� ���;%�����G%��?���V%�����–%�����%�� ���¢%�����­%��E���¾%�����&����� &�� ���&��#���&�����C&�� ���Z&�����f&�����~&�����•&�����›&�����«&�����±&�����È&�����Ñ&�����è&�����î&�����ö&�����'�����.'�����M'�����U'�� ���h'�����r'��(���{'�����¤'�����ª'�����¼'�� ���Â'�����Ì'�����Þ'�����ï'�� ���(����� (�����(�����2(�����D(��'���V(�� ���~(�����Š(�����‘(��¥��—(��0��=*��&��n+��½���•-�����S.��D���o.��3���´.�����è.��)���/��%���1/��B���W/��#���š/��%���¾/�� ���ä/��=���ð/��>���.0��l���m0��Z���Ú0��F���51��^���|1�����Û1��4���û1�����02��#���D2�� ���h2�� ���u2�� ���2�� ���‰2��1���”2��(���Æ2��#���ï2�����3��(���13�����Z3��"���w3�� ���š3�� ���¦3�� ���°3�� ���º3�����Ä3�� ���Í3��q��Ø3�����J5�����b5�����~5�� ���•5�����¡5�����²5�����Ã5�����Ý5�����ü5�����6��3���%6�����Y6�����o6�����ƒ6��,���‹6��#���¸6�� ���Ü6�����ê6�����7�����#7�����?7�����R7�����n7�����…7�����7�����£7��7���´7��8���ì7��7���%8�����]8�����v8��)���ˆ8�����²8�����Ë8�����ã8��,���þ8�����+9��D���I9�����Ž9��#���–9��5���º9�����ð9�����:�����:�����(:��E���/:�����u:�����†:�����:�����–:�����ž:�� ���´:�� ���Â:�����Ð:�� ���Ø:�����æ:�����í:�����ö:�����ú:������;�����;����� ;�����;��#���.;��"���R;��%���u;��$���›;�����À;�����Ä;�����Ì;�����Ô;�����ä;�����õ;��.���þ;��-���-<�� ���[<�����e<�����„<����� <�� ���¨<�� ���³<�� ���½<�� ���Ê<�� ���Õ<�� ���á<�����=����� =�����=�����8=�����W=�����k=�����†=�����˜=��.���·=�� ���æ=��/���ð=����� >�����>>�����T>�����m>�����v>�����z>�� ���Œ>��(���š>��5���Ã>��6���ù>��D���0?�����u?��>���”?�����Ó?�� ���æ?�� ���ò?�����ý?�����@�����!@�����(@�����9@�����B@�����J@�����`@�����u@�����z@��(���“@��3���¼@�����ð@�����A�����A��#���+A�����OA�����^A��G���sA�� ���»A�����ÇA�����ÐA�����áA��L���ûA�� ���HB�����TB�����\B��(���cB�����ŒB�����¥B�����®B�����ÉB�����æB�����îB�� ��� C�����C�� ���2C��!���@C�� ���bC�� ���lC�����wC�����”C�����´C�� ���ÔC�����ßC�����òC�� ��� D��.���D�� ���DD�����ND�����lD�����rD�����{D�����D�����¨D�����¿D�����ÎD�����ÓD�����óD�����E��=���E�� ���YE�����cE�� ���jE�����™������� �������P�����������´���*������������������l���%���+���N�������"���-���;���¶���…���©������¬������.���Ó���Y���B���<�������¥���¸���¹�������v�������’���M���E����������������������������‚���¢���h���Ñ���•���Ï���ª�������–���³���3������u��� ���“���a�������Ò���œ�������_���������������������������r���\���Q�������]���S���L���Ø���Æ������Ç���ƒ���Ú������� ���£������Z���‘����������@���g������±���z���§���8������°������¤������`�����������4���I���Â���›���F���Ô���‹���¾�������J���»���ž�������{���·���¡���®���”������q���?���Å���$����������¼���m���^���������������«���Ã�������Ö���R���Ð���Š���µ���t���O���c�������5�������#���ˆ�������È���Ù���„���n���9���Á���s���}���~���š���1�������º���b���0�������U���H����������(������w���Î�������D�������T���¯������‰���7���2���j�������¨���Ž�����������������������€��������������V���Ÿ�������k����������� �����������˜������¦�������������������o������������������Õ���/���y���6���x�������W�������Ì���Ä�������¿���,���>���p���À���X�������!�������Ê��� ���—�������d���|����������e��� ���²���'����������G���­���‡������Ë�������i���f���½��� ����������×���C������K���Í���É���A�������†�������[�������)���&�������:���=���Œ���� Cannot connect to Audacious player. Verify that you have installed audacious. Put in your PATH variable the directory where the audacious executable is. If you don't know how to do that, start audacious manually and then try to connect. � Cannot connect to snackAmp player. Please download and install snackamp from http://snackamp.sourceforge.net Verify that snackamp is running. Verify that your snackamp version is >= 3.1.3 Verify that you have enabled socket interface in snackamp: You have to go to Tools->Preferences->Miscellaneous from the snackamp menu and check Enable Socket Interface Only default port is supported for now(8775) After that, restart snackamp and mp3splt-gtk should work. � @f - file name @a - artist name @p - performer of each song (does not always exist) @b - album title @t - song title @g - genre @n - track number� File '%s' created� cannot preview, not connected to player� cannot split preview last splitpoint� creating "%s" (%d of %d)� error: cannot create gstreamer playbin � error: no file selected� error: no files found in multiple files mode� error: split in progress...� error: you already have the splitpoint in table� finished� info: stopping the split process before exiting� info: stopping the split process.. please wait� left click + move changes song position, right click + move changes zoom� left click on point + move changes point position, right click play preview� left click on rectangle checks/unchecks 'keep splitpoint'� left click on splitpoint selects it, right click erases it� preparing "%s" (%d of %d)� quick preview finished, song paused� quick preview...� searching for sync errors...�%s Revision %d�%s_part%d�<album>: �<artist>: �<b>Choose language (requires restart)</b>�<b>Directory for split files</b>�<b>Output filename format</b>�<b>Player options</b>�<b>Split files tags</b>�<b>Split options</b>�<b>Tags version (mp3 only)</b>�<comment>: �<genre>: �<title>: �<track>: �<year>: �About�Above enter PERL-like regular expression using named subgroups. Following names are recognized: (?<artist>) - artist name (?<album>) - album title (?<title>) - track title (?<tracknum>) - current track number (?<year>) - year of emission (?<genre>) - genre (?<comment>) - comment�Add splitpoint�Add splitpoint from player�Album text properties:�Album title�All Files�All files�Artist text properties:�Audacity labels files (*.txt)�Batch processing�Br_owse dir�CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)�CDDB files (*.cddb)�CUE files (*.cue)�C_lear�Cannot connect to player�Cannot open input file %s �Choose File�Choose file or directory�Choose file to import�Choose split directory�Comment tag:�Comment text properties:�Complete filename�Connect to player�Contents�Custom format�Cutpoint offset (0 is the begin of silence and 1 the end):�Cutpoint offset (0 is the begin of silence,and 1 the end) : �Cutpoint offset (0 is the begin of silence,and 1 the end):�D_elete all files�Default format�Default tags (cddb or cue tags)�Disconnect from player�E_rase all history�Equal time tracks�Error launching external command�Error mode (mp3 only)�Error: The specified output directory is inaccessible! �Export�Extract tags from filename�F_rame mode (useful for mp3 VBR) (mp3 only)�File mode�Filename�First uppercase�FreeDB�Gap level (seconds around splitpoint to search for silence):�Genre tag:�History�Hundr�Hundredths:�ID3v1 & ID3v2 tags�ID3v1 tags�ID3v2 tags�Import�Info: %s�Kbps�Keep�Khz�Language�Length�LiveP�Messages _history�Messages history�Minimum silence length (seconds) : �Minimum silence length (seconds):�Minimum track length (seconds) : �Minimum track length (seconds):�Mins�Minutes:�Next�No change�No tags�Normal�Number of tracks (0 means all tracks) : �Number of tracks (0 means all tracks):�Open�Option -%c requires an argument. �Original file tags�Output�Pause�Play�Player�Preferences�Previous�Processing file '%s' ...�Quit�R_emove all�R_emove all entries�Regular expression test�Regular expression:�Remove all rows�Remove rows�Remove silence between tracks�S: %02d, Level: %.2f dB; scanning for silence...�S_top�Same tags version as the input file�Sample filename:�Sample result:�Search tracktype.org:�Seconds:�Secs�Select cue file name�Select file�Set _default split options�Set splitpoints from silence detection�Set splitpoints to the splitpoints table�Set trim splitpoints using silence detection�Shows the amplitude level wave�Silence - split with silence detection�Single file�Split�Split !�Split files�Split mode�SplitP�Splitpoints�Stop�Tags�Threshold level (dB) : �Threshold level (dB):�Time�Title text properties:�Trim using silence detection�Trying to set the output directory to %s. �Type of split�UPPERCASE�Unknown option `-%c'. �Unknown option character `\x%x'. �Warning: %s�Word Uppercase�Wrap - split files created with mp3wrap or albumwrap (mp3 only)�_About�_Add�_Add files�_Add splitpoints�_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)�_Browse�_Connect�_Contents�_Create directories from filenames �_Delete selected files�_Disconnect�_Erase selected entries�_Export splitpoints...�_File�_Fix ogg stream�_Help�_Import splitpoints...�_Open...�_Queue files to player�_Quit�_Remove�_Remove selected entries�_Remove silence between tracks�_Replace underscores by spaces�_Search�_Silence detection�_Song dir�_Split !�_Splitpoint name from filename (testing)�_Test�_Trim splitpoints�_part�before %s�cue files (*.cue)�description here�gstreamer error: %s�lowercase�mono�mp3 and ogg files (*.mp3 *.ogg)�mp3 files (*.mp3)�ogg files (*.ogg)�please wait... contacting tracktype.org�release of �stereo�using�Project-Id-Version: mp3splt-gtk Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net POT-Creation-Date: 2012-05-13 00:32+0200 PO-Revision-Date: 2012-05-11 08:29+0000 Last-Translator: fri <pavelfric@seznam.cz> Language-Team: LANGUAGE <LL@li.org> Language: cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2 � Žádné spojení s pÅ™ehrávacím programem Audacious. UjistÄ›te se, že je Audacious nainstalován. PÅ™idejte do promÄ›nné CESTY místo instalace spustitelného souboru pro Audacious. V případÄ› že nevíte, jak se to má udÄ›lat, spusÅ¥te Audacious ruÄnÄ› a pokuste se spojení vytvoÅ™it. � Žádné spojení s pÅ™ehrávacím programem SnackAmp. StáhnÄ›te si, prosím, SnackAmp ze stránek http://snackamp.sourceforge.net a nainstalujte jej. UjistÄ›te se, že SnackAmp běží a že jej máte alespoň ve verzi 3.1.3 UjistÄ›te se, že máte v SnacAmpu zapnuto rozhraní zdířky (socket): Musíte jít do Nástroje->Nastavení->Různé v nabídce SnackAmpu a zapnout povolení rozhraní zdířky (socket) Nyní je podporována pouze výchozí přípojka (8775) Potom spusÅ¥te SnackAmp znovu a mp3splt-gtk by mÄ›l pracovat. � @f - název souboru @a - jméno umÄ›lce @p - úÄinkující u každé skladby (ne vždy je) @b - název alba @t - název písnÄ› @g - žánr @n - Äíslo skladby�Soubor »%s« byl vytvoÅ™en� Náhled není možný: Žádné spojení s pÅ™ehrávacím programem� Náhled na poslední bod rozdÄ›lení není možný�»%s« se vytváří (%d z %d)�Chyba: gstreamer-playbin nelze vytvoÅ™it � Chyba: Není vybrán žádný soubor� Chyba: Pro režim více souborů nebyly nalezeny žádné soubory� Chyba: Probíhá rozdÄ›lování...� Chyba: bod rozdÄ›lení již existuje� DokonÄeno� Informace: Proces rozdÄ›lení se zastavuje pÅ™ed ukonÄením� Informace: Proces rozdÄ›lení se zastavuje, prosím, Äekejte�Levé klepnutí + posunutí zmÄ›ní polohu názvu, pravé klepnutí + posunutí zmÄ›ní násobek zvÄ›tÅ¡ení�Levé klepnutí na bod + posunutí zmÄ›ní polohu bodu, pravé klepnutí pÅ™ehraje náhled�Levé klepnutí na obdélník zapne/vypne »Ponechat bod rozdÄ›lení«�Levé klepnutí na bod rozdÄ›lení jej vybere, pravé klepnutí na bod rozdÄ›lení jej vymaže�»%s« se pÅ™ipravuje (%d z %d)�Rychlý náhled ukonÄen, pÅ™ehrávání pozastaveno� Rychlý náhled...� Hledají se chyby v seřízení…�%s revize %d�%s_part%d�<album>: �<artist>: �<b>Vybrat jazyk (vyžaduje nové spuÅ¡tÄ›ní)</b>�<b>Adresář pro rozdÄ›lené soubory</b>�<b>Formát výstupního souboru</b>�<b>Volby pro pÅ™ehrávaÄ</b>�<b>ZnaÄky v rozdÄ›lených souborech</b>�<b>Volby pro rozdÄ›lení</b>�<b>Verze znaÄky (jen pro mp3)</b>�<comment>: �<genre>: �<title>: �<track>: �<year>: �O programu�Výše zadejte regulární výraz jako PERL za použití jmenovaných podskupin. Jsou rozpoznána následující klíÄová slova: (?<artist>) - jméno umÄ›lce (?<album>) - název alba (?<title>) - název skladby (?<tracknum>) - Äíslo souÄasné skladby (?<year>) - rok vydání (?<genre>) - žánr (?<comment>) - poznámka�PÅ™idat bod rozdÄ›lení�PÅ™idat bod rozdÄ›lení zde�Vlastnosti textu alba:�Název alba�VÅ¡echny soubory�VÅ¡echny soubory�Vlastnosti textu umÄ›lce:�Soubory Audacity label (*.txt)�Dávkové zpracování�_Vybrat adresář�CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)�Soubory CDDB (*.cddb)�Soubory CUE (*.cue)�_Smazat�Žádné spojení s pÅ™ehrávacím programem�Vstupní soubor %s nelze otevřít �Vybrat soubor�Vybrat soubor nebo adresář�Vybrat soubor pro zavedení�Vybrat výstupní adresář�ZnaÄka poznámky:�Vlastnosti textu poznámky:�Úplný název souboru�Spojit s pÅ™ehrávaÄem�Obsah�Vlastní formát�Odsazení bodu rozdÄ›lení (0=zaÄátek ticha 1=konec):�Odsazení bodu rozdÄ›lení (0=zaÄátek ticha 1=konec): �Odsazení bodu rozdÄ›lení (0=zaÄátek ticha 1=konec):�S_mazat vÅ¡echny soubory�Výchozí formát�Výchozí znaÄky (cddb nebo znaÄky cue)�Odpojit od pÅ™ehrávaÄe�Vymazat celou _historii�Skladby se stejnou délkou�Chyba pÅ™i spuÅ¡tÄ›ní vnÄ›jšího příkazu�Chybový režim (jen pro mp3)�Chyba: Přístup k zadanému výstupnímu adresáři není možný! �Vyvést�Vytáhnout znaÄky z názvu souboru�Režim F_rame (užiteÄný pro mp3-VBR) (jen pro mp3)�Souborový režim�Název souboru�První písmeno velké�FreeDB�PÅ™estávka (sekundy okolo bodu rozdÄ›lení k prohledání na ticho):�ZnaÄka žánru:�Historie�1/100s�Setina:�ZnaÄky ID3v1 a ID3v2�ZnaÄky ID3v1�ZnaÄky ID3v2�Zavést�Informace: %s�kbit/s�Ponechat�kHz�Jazyk�Délka�LiveP�_Historie zpráv�Historie zpráv�Nejmenší délka ticha (sekundy): �Nejmenší délka ticha (sekundy):�Nejmenší délka skladby (sekundy): �Nejmenší délka skladby (sekundy):�Min�Minuty:�Další�Žádná zmÄ›na�Žádné znaÄky�Obvyklé�PoÄet skladeb (0 znamená vÅ¡echny skladby): �PoÄet skladeb (0 znamená vÅ¡echny skladby):�Otevřít�Volba -%c vyžaduje argument. �Původní znaÄky k souboru�Výstup�Pozastavit�PÅ™ehrát�PÅ™ehrávaÄ�Nastavení�PÅ™edchozí�Zpracovává se soubor »%s«…�UkonÄit�Odstranit _vÅ¡e�Odstranit _vÅ¡echny záznamy�ZkouÅ¡ka regulárního výrazu�Regulární výraz:�Odstranit vÅ¡echny řádky�Odstranit řádky�Odstranit ticho mezi skladbami�S: %02d, Úroveň: %.2f dB; hledá se ticho…�Za_stavit�Stejná verze znaÄky jako u vstupního souboru�Název souboru s příkladem:�Výsledek příkladu:�Hledat na tracktype.org:�Sekundy:�Sek�Vybrat soubor CUE�Vybrat soubor�Nastavit výchozí volby pro rozdÄ›lení�Nastavit body rozdÄ›lení s pomocí zjiÅ¡tÄ›ní ticha�PÅ™idat body rozdÄ›lení do tabulky s body rozdÄ›lení�Nastavit zastÅ™ižení bodů rozdÄ›lení s pomocí zjiÅ¡tÄ›ní ticha�Ukáže vlnu s rozkmitem zvuku�Ticho - vytvoÅ™it body rozdÄ›lení s pomocí zjiÅ¡tÄ›ní ticha�Jednotlivý soubor�RozdÄ›lení�RozdÄ›lit!�RozdÄ›lené soubory�Režim dÄ›lení�SplitP�Body rozdÄ›lení�Zastavit�ZnaÄky�Úroveň prahu (dB): �Úroveň prahu (dB):�ÄŒas�Vlastnosti textu názvu:�ZastÅ™ihnout s pomocí zjiÅ¡tÄ›ní ticha�Zkouší se nastavit %s jako výstupní adresář. �Druh rozdÄ›lení�VELKà PÃSMENA�Neznámá volba »-%c«. �Neznámý znak ve volbÄ› »\x%x«. �Varování: %s�Písmena slov velká�Obal - rozdÄ›lit soubory vytvoÅ™ené s mp3wrap nebo albumwrap (jen mp3)�_O programu�_PÅ™idat�_PÅ™idat soubory�_PÅ™idat body rozdÄ›lení�_Automatické pÅ™esné nastavení bodu rozdÄ›lení pomocí zjiÅ¡tÄ›ní ticha�_Procházet�_Spojit�_Obsah�_VytvoÅ™it adresáře z názvů souborů�_Smazat vybrané soubory�_Odpojit�Vymazat vybrané _záznamy�_Vyvést body rozdÄ›lení...�_Soubor�_Opravit datový proud ogg�_NápovÄ›da�_Zavést body rozdÄ›lení...�_Otevřít...�_ZaÅ™adit soubory pro pÅ™ehrání�_UkonÄit�_Odstranit�_Odstranit vybrané záznamy�_Odstranit ticho mezi skladbami�_Nahradit podtržítka mezerami�_Hledání�_ZjiÅ¡tÄ›ní ticha�Adresář _pro skladbu�_RozdÄ›lit!�_Bod rozdÄ›lení z názvu souboru (zkuÅ¡ební)�_ZkouÅ¡ka�ZastÅ™ihnout body rozdÄ›lení�_part�pÅ™ed %s�Soubory CUE (*.cue)�Zadejte, prosím, název�Chyba v Gstreameru: %s�Malá písmena�Mono�Soubory mp3 a ogg (*.mp3 *.ogg)�Soubory mp3 (*.mp3)�Soubory ogg (*.ogg)�PoÄkejte, prosím - probíhá spojování se s tracktype.org�vydání �Stereo�za použití������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/mp3splt-gtk.pot����������������������������������������������������������������0000644�0001750�0001750�00000042645�11753562412�014176� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Munteanu Alexandru # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net\n" "POT-Creation-Date: 2012-05-13 00:32+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: src/xmms_control.c:82 src/gstreamer_control.c:254 #: src/snackamp_control.c:328 msgid "stereo" msgstr "" #: src/xmms_control.c:86 src/gstreamer_control.c:258 #: src/snackamp_control.c:332 msgid "mono" msgstr "" #: src/xmms_control.c:89 src/gstreamer_control.c:223 #: src/snackamp_control.c:335 msgid "Kbps" msgstr "" #: src/xmms_control.c:90 src/gstreamer_control.c:224 #: src/snackamp_control.c:336 msgid "Khz" msgstr "" #: src/tree_tab.c:553 msgid "_part" msgstr "" #: src/tree_tab.c:564 #, c-format msgid "%s_part%d" msgstr "" #: src/tree_tab.c:708 src/tree_tab.c:1114 msgid " error: you already have the splitpoint in table" msgstr "" #: src/tree_tab.c:791 src/tree_tab.c:870 src/tree_tab.c:1124 #: src/freedb_tab.c:466 src/freedb_tab.c:488 msgid "description here" msgstr "" #: src/tree_tab.c:1273 src/tree_tab.c:1695 msgid "Set trim splitpoints using silence detection" msgstr "" #: src/tree_tab.c:1299 src/tree_tab.c:1371 src/preferences_tab.c:721 msgid "Threshold level (dB):" msgstr "" #: src/tree_tab.c:1345 src/tree_tab.c:1705 msgid "Set splitpoints from silence detection" msgstr "" #: src/tree_tab.c:1388 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end):" msgstr "" #: src/tree_tab.c:1405 msgid "Number of tracks (0 means all tracks):" msgstr "" #: src/tree_tab.c:1420 msgid "Minimum silence length (seconds):" msgstr "" #: src/tree_tab.c:1434 msgid "Minimum track length (seconds):" msgstr "" #: src/tree_tab.c:1445 msgid "_Remove silence between tracks" msgstr "" #: src/tree_tab.c:1633 msgid "Minutes:" msgstr "" #: src/tree_tab.c:1638 msgid "Seconds:" msgstr "" #: src/tree_tab.c:1644 msgid "Hundredths:" msgstr "" #: src/tree_tab.c:1650 src/player_tab.c:1052 msgid "_Add" msgstr "" #: src/tree_tab.c:1656 msgid "Add splitpoint" msgstr "" #: src/tree_tab.c:1660 msgid "_Remove" msgstr "" #: src/tree_tab.c:1666 msgid "Remove rows" msgstr "" #: src/tree_tab.c:1670 msgid "R_emove all" msgstr "" #: src/tree_tab.c:1676 msgid "Remove all rows" msgstr "" #: src/tree_tab.c:1689 msgid "_Trim splitpoints" msgstr "" #: src/tree_tab.c:1699 msgid "_Silence detection" msgstr "" #: src/tree_tab.c:1827 src/mp3splt-gtk.c:399 msgid " finished" msgstr "" #: src/tree_tab.c:1842 msgid " cannot split preview last splitpoint" msgstr "" #: src/tree_tab.c:1883 msgid " cannot preview, not connected to player" msgstr "" #: src/tree_tab.c:1948 msgid "Keep" msgstr "" #: src/tree_tab.c:1962 src/split_files.c:111 msgid "Filename" msgstr "" #: src/tree_tab.c:1976 msgid "Secs" msgstr "" #: src/tree_tab.c:1990 msgid "Mins" msgstr "" #: src/tree_tab.c:2004 msgid "Hundr" msgstr "" #: src/tree_tab.c:2014 msgid "Length" msgstr "" #: src/tree_tab.c:2025 msgid "LiveP" msgstr "" #: src/tree_tab.c:2036 msgid "SplitP" msgstr "" #: src/split_files.c:339 msgid "_Queue files to player" msgstr "" #: src/split_files.c:349 msgid "_Delete selected files" msgstr "" #: src/split_files.c:359 msgid "D_elete all files" msgstr "" #: src/preferences_tab.c:476 msgid "<b>Choose language (requires restart)</b>" msgstr "" #: src/preferences_tab.c:511 msgid "Choose split directory" msgstr "" #: src/preferences_tab.c:663 msgid "Br_owse dir" msgstr "" #: src/preferences_tab.c:671 msgid "_Song dir" msgstr "" #: src/preferences_tab.c:676 msgid "<b>Directory for split files</b>" msgstr "" #: src/preferences_tab.c:685 msgid "_Splitpoint name from filename (testing)" msgstr "" #: src/preferences_tab.c:691 msgid "_Create directories from filenames " msgstr "" #: src/preferences_tab.c:697 msgid "F_rame mode (useful for mp3 VBR) (mp3 only)" msgstr "" #: src/preferences_tab.c:704 msgid "_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)" msgstr "" #: src/preferences_tab.c:736 msgid "Cutpoint offset (0 is the begin of silence and 1 the end):" msgstr "" #: src/preferences_tab.c:753 msgid "Gap level (seconds around splitpoint to search for silence):" msgstr "" #: src/preferences_tab.c:772 msgid "Set _default split options" msgstr "" #: src/preferences_tab.c:778 msgid "<b>Split options</b>" msgstr "" #: src/preferences_tab.c:846 msgid "Player:" msgstr "" #: src/preferences_tab.c:868 msgid "Refresh player every " msgstr "" #: src/preferences_tab.c:879 msgid "milliseconds." msgstr "" #: src/preferences_tab.c:884 msgid "Higher refresh rate decreases CPU usage - default is 200." msgstr "" #: src/preferences_tab.c:888 msgid "<b>Player options</b>" msgstr "" #: src/preferences_tab.c:936 msgid "Default format" msgstr "" #: src/preferences_tab.c:940 msgid "Custom format" msgstr "" #: src/preferences_tab.c:957 msgid "" " @f - file name\n" " @a - artist name\n" " @p - performer of each song (does not always exist)\n" " @b - album title\n" " @t - song title\n" " @g - genre\n" " @n - track number" msgstr "" #: src/preferences_tab.c:970 msgid "<b>Output filename format</b>" msgstr "" #: src/preferences_tab.c:1015 msgid "Original file tags" msgstr "" #: src/preferences_tab.c:1018 msgid "Default tags (cddb or cue tags)" msgstr "" #: src/preferences_tab.c:1021 msgid "No tags" msgstr "" #: src/preferences_tab.c:1024 msgid "Extract tags from filename" msgstr "" #: src/preferences_tab.c:1031 msgid "<b>Split files tags</b>" msgstr "" #: src/preferences_tab.c:1053 msgid "No change" msgstr "" #: src/preferences_tab.c:1054 msgid "lowercase" msgstr "" #: src/preferences_tab.c:1055 msgid "UPPERCASE" msgstr "" #: src/preferences_tab.c:1056 msgid "First uppercase" msgstr "" #: src/preferences_tab.c:1057 msgid "Word Uppercase" msgstr "" #: src/preferences_tab.c:1078 msgid "<artist>: " msgstr "" #: src/preferences_tab.c:1085 msgid "<album>: " msgstr "" #: src/preferences_tab.c:1093 msgid "<title>: " msgstr "" #: src/preferences_tab.c:1100 msgid "<genre>: " msgstr "" #: src/preferences_tab.c:1107 msgid "<comment>: " msgstr "" #: src/preferences_tab.c:1114 msgid "<year>: " msgstr "" #: src/preferences_tab.c:1121 msgid "<track>: " msgstr "" #: src/preferences_tab.c:1147 msgid "Regular expression:" msgstr "" #: src/preferences_tab.c:1150 msgid "" "Above enter PERL-like regular expression using named subgroups.\n" "Following names are recognized:\n" " (?<artist>) - artist name\n" " (?<album>) - album title\n" " (?<title>) - track title\n" " (?<tracknum>) - current track number\n" " (?<year>) - year of emission\n" " (?<genre>) - genre\n" " (?<comment>) - comment" msgstr "" #: src/preferences_tab.c:1174 msgid "_Replace underscores by spaces" msgstr "" #: src/preferences_tab.c:1182 msgid "Artist text properties:" msgstr "" #: src/preferences_tab.c:1186 msgid "Album text properties:" msgstr "" #: src/preferences_tab.c:1190 msgid "Title text properties:" msgstr "" #: src/preferences_tab.c:1194 msgid "Comment text properties:" msgstr "" #: src/preferences_tab.c:1197 msgid "Genre tag:" msgstr "" #: src/preferences_tab.c:1200 msgid "Comment tag:" msgstr "" #: src/preferences_tab.c:1202 msgid "Regular expression test" msgstr "" #: src/preferences_tab.c:1217 msgid "_Test" msgstr "" #: src/preferences_tab.c:1222 msgid "Sample filename:" msgstr "" #: src/preferences_tab.c:1226 msgid "Sample result:" msgstr "" #: src/preferences_tab.c:1237 msgid "ID3v1 & ID3v2 tags" msgstr "" #: src/preferences_tab.c:1244 msgid "ID3v2 tags" msgstr "" #: src/preferences_tab.c:1250 msgid "ID3v1 tags" msgstr "" #: src/preferences_tab.c:1256 msgid "Same tags version as the input file" msgstr "" #: src/preferences_tab.c:1261 msgid "<b>Tags version (mp3 only)</b>" msgstr "" #: src/preferences_tab.c:1303 src/main_win.c:560 msgid "Split" msgstr "" #: src/preferences_tab.c:1309 msgid "Tags" msgstr "" #: src/preferences_tab.c:1315 msgid "Output" msgstr "" #: src/preferences_tab.c:1321 src/main_win.c:709 msgid "Player" msgstr "" #: src/preferences_tab.c:1328 msgid "Language" msgstr "" #: src/player_tab.c:664 src/player_tab.c:698 msgid "Cannot connect to player" msgstr "" #: src/player_tab.c:675 msgid "" "\n" " Cannot connect to snackAmp player.\n" " Please download and install snackamp from\n" "\thttp://snackamp.sourceforge.net\n" "\n" " Verify that snackamp is running.\n" " Verify that your snackamp version is >= 3.1.3\n" "\n" " Verify that you have enabled socket interface in snackamp:\n" " You have to go to\n" "\tTools->Preferences->Miscellaneous\n" " from the snackamp menu and check\n" "\tEnable Socket Interface\n" " Only default port is supported for now(8775)\n" " After that, restart snackamp and mp3splt-gtk should work.\n" msgstr "" #: src/player_tab.c:690 msgid "" "\n" " Cannot connect to Audacious player.\n" " Verify that you have installed audacious.\n" "\n" " Put in your PATH variable the directory where the audacious executable is.\n" " If you don't know how to do that, start audacious manually and then try to " "connect.\n" msgstr "" #: src/player_tab.c:977 msgid "Previous" msgstr "" #: src/player_tab.c:995 msgid "Play" msgstr "" #: src/player_tab.c:1011 msgid "Pause" msgstr "" #: src/player_tab.c:1028 msgid "Stop" msgstr "" #: src/player_tab.c:1045 msgid "Next" msgstr "" #: src/player_tab.c:1060 msgid "Add splitpoint from player" msgstr "" #: src/player_tab.c:1064 msgid "Amplitude _wave" msgstr "" #: src/player_tab.c:1071 msgid "Shows the amplitude level wave" msgstr "" #: src/player_tab.c:1075 msgid "_Connect" msgstr "" #: src/player_tab.c:1078 msgid "Connect to player" msgstr "" #: src/player_tab.c:1082 msgid "_Disconnect" msgstr "" #: src/player_tab.c:1085 msgid "Disconnect from player" msgstr "" #: src/player_tab.c:1221 #, c-format msgid "before %s" msgstr "" #: src/player_tab.c:2671 msgid " left click on splitpoint selects it, right click erases it" msgstr "" #: src/player_tab.c:2676 msgid "" " left click + move changes song position, right click + move changes zoom" msgstr "" #: src/player_tab.c:2682 msgid "" " left click on point + move changes point position, right click play preview" msgstr "" #: src/player_tab.c:2687 msgid " left click on rectangle checks/unchecks 'keep splitpoint'" msgstr "" #: src/player_tab.c:2877 msgid " quick preview..." msgstr "" #: src/player_tab.c:3246 msgid "Splitpoints _view" msgstr "" #: src/player_tab.c:3414 msgid "History" msgstr "" #: src/player_tab.c:3548 msgid "_Erase selected entries" msgstr "" #: src/player_tab.c:3557 msgid "E_rase all history" msgstr "" #: src/player_tab.c:3601 msgid "H_istory" msgstr "" #: src/player_tab.c:3674 msgid " quick preview finished, song paused" msgstr "" #: src/player_tab.c:3820 msgid "Choose File" msgstr "" #: src/player_tab.c:3832 src/multiple_files.c:130 msgid "mp3 and ogg files (*.mp3 *.ogg)" msgstr "" #: src/player_tab.c:3840 src/multiple_files.c:138 msgid "mp3 files (*.mp3)" msgstr "" #: src/player_tab.c:3846 src/multiple_files.c:144 msgid "ogg files (*.ogg)" msgstr "" #: src/player_tab.c:3987 msgid "_Browse" msgstr "" #: src/player_tab.c:3991 msgid "Select file" msgstr "" #: src/player_tab.c:3998 msgid "_Fix ogg stream" msgstr "" #: src/main_win.c:147 msgid " info: stopping the split process before exiting" msgstr "" #: src/main_win.c:313 msgid "Error launching external command" msgstr "" #: src/main_win.c:345 msgid "using" msgstr "" #: src/main_win.c:349 msgid "release of " msgstr "" #: src/main_win.c:446 msgid " info: stopping the split process.. please wait" msgstr "" #: src/main_win.c:485 msgid " error: no file selected" msgstr "" #: src/main_win.c:490 msgid " error: split in progress..." msgstr "" #: src/main_win.c:502 src/main_win.c:506 msgid "Split !" msgstr "" #: src/main_win.c:548 msgid "_File" msgstr "" #: src/main_win.c:549 msgid "_Help" msgstr "" #: src/main_win.c:552 msgid "_Open..." msgstr "" #: src/main_win.c:552 msgid "Open" msgstr "" #: src/main_win.c:555 msgid "_Import splitpoints..." msgstr "" #: src/main_win.c:555 msgid "Import" msgstr "" #: src/main_win.c:557 msgid "_Export splitpoints..." msgstr "" #: src/main_win.c:557 msgid "Export" msgstr "" #: src/main_win.c:560 msgid "_Split !" msgstr "" #: src/main_win.c:562 msgid "Messages _history" msgstr "" #: src/main_win.c:562 src/main_win.c:807 src/messages.c:201 msgid "Messages history" msgstr "" #: src/main_win.c:565 msgid "_Quit" msgstr "" #: src/main_win.c:565 msgid "Quit" msgstr "" #: src/main_win.c:569 msgid "_Contents" msgstr "" #: src/main_win.c:569 msgid "Contents" msgstr "" #: src/main_win.c:573 msgid "_About" msgstr "" #: src/main_win.c:573 msgid "About" msgstr "" #: src/main_win.c:723 msgid "Splitpoints" msgstr "" #: src/main_win.c:735 msgid "Split files" msgstr "" #: src/main_win.c:748 msgid "FreeDB" msgstr "" #: src/main_win.c:759 msgid "Type of split" msgstr "" #: src/main_win.c:772 msgid "Preferences" msgstr "" #: src/main_win.c:789 msgid "S_top" msgstr "" #: src/freedb_tab.c:127 #, c-format msgid "%s Revision %d" msgstr "" #: src/freedb_tab.c:164 msgid "Album title" msgstr "" #: src/freedb_tab.c:250 src/freedb_tab.c:345 msgid "please wait... contacting tracktype.org" msgstr "" #: src/freedb_tab.c:545 msgid "Search tracktype.org:" msgstr "" #: src/freedb_tab.c:556 msgid "_Search" msgstr "" #: src/freedb_tab.c:589 msgid "_Add splitpoints" msgstr "" #: src/freedb_tab.c:596 msgid "Set splitpoints to the splitpoints table" msgstr "" #: src/special_split.c:197 src/special_split.c:271 #, c-format msgid "Split every %2d seconds." msgstr "" #: src/special_split.c:208 src/special_split.c:305 #, c-format msgid "Split in %2d equal time tracks." msgstr "" #: src/special_split.c:243 msgid "Normal" msgstr "" #: src/special_split.c:253 msgid "Time" msgstr "" #: src/special_split.c:287 msgid "Equal time tracks" msgstr "" #: src/special_split.c:320 msgid "Trim using silence detection" msgstr "" #: src/special_split.c:336 src/special_split.c:361 msgid "Threshold level (dB) : " msgstr "" #: src/special_split.c:345 msgid "Silence - split with silence detection" msgstr "" #: src/special_split.c:371 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end) : " msgstr "" #: src/special_split.c:381 msgid "Number of tracks (0 means all tracks) : " msgstr "" #: src/special_split.c:391 msgid "Minimum silence length (seconds) : " msgstr "" #: src/special_split.c:401 msgid "Minimum track length (seconds) : " msgstr "" #: src/special_split.c:409 msgid "Remove silence between tracks" msgstr "" #: src/special_split.c:430 msgid "Wrap - split files created with mp3wrap or albumwrap (mp3 only)" msgstr "" #: src/special_split.c:440 msgid "Error mode (mp3 only)" msgstr "" #: src/special_split.c:465 msgid "Single file" msgstr "" #: src/special_split.c:473 msgid "Batch processing" msgstr "" #: src/special_split.c:507 msgid "Split mode" msgstr "" #: src/special_split.c:511 msgid "File mode" msgstr "" #: src/messages.c:180 msgid "Enable _debug messages" msgstr "" #: src/messages.c:187 msgid "C_lear" msgstr "" #: src/multiple_files.c:88 msgid "Complete filename" msgstr "" #: src/multiple_files.c:109 msgid "Choose file or directory" msgstr "" #: src/multiple_files.c:151 msgid "All Files" msgstr "" #: src/multiple_files.c:292 msgid "_Add files" msgstr "" #: src/multiple_files.c:300 msgid "_Remove selected entries" msgstr "" #: src/multiple_files.c:309 msgid "R_emove all entries" msgstr "" #: src/gstreamer_control.c:97 #, c-format msgid "gstreamer error: %s" msgstr "" #: src/gstreamer_control.c:125 #, c-format msgid "Warning: %s" msgstr "" #: src/gstreamer_control.c:153 #, c-format msgid "Info: %s" msgstr "" #: src/gstreamer_control.c:412 msgid " error: cannot create gstreamer playbin\n" msgstr "" #: src/mp3splt-gtk.c:166 #, c-format msgid " File '%s' created" msgstr "" #: src/mp3splt-gtk.c:193 #, c-format msgid " preparing \"%s\" (%d of %d)" msgstr "" #: src/mp3splt-gtk.c:199 #, c-format msgid " creating \"%s\" (%d of %d)" msgstr "" #: src/mp3splt-gtk.c:205 msgid " searching for sync errors..." msgstr "" #: src/mp3splt-gtk.c:209 #, c-format msgid "S: %02d, Level: %.2f dB; scanning for silence..." msgstr "" #: src/mp3splt-gtk.c:372 msgid " error: no files found in multiple files mode" msgstr "" #: src/mp3splt-gtk.c:587 #, c-format msgid "Trying to set the output directory to %s.\n" msgstr "" #: src/mp3splt-gtk.c:596 #, c-format msgid "Error: The specified output directory is inaccessible!\n" msgstr "" #: src/mp3splt-gtk.c:602 #, c-format msgid "Option -%c requires an argument.\n" msgstr "" #: src/mp3splt-gtk.c:604 #, c-format msgid "Unknown option `-%c'.\n" msgstr "" #: src/mp3splt-gtk.c:607 #, c-format msgid "Unknown option character `\\x%x'.\n" msgstr "" #: src/mp3splt-gtk.c:659 #, c-format msgid "Cannot open input file %s\n" msgstr "" #: src/utilities.c:126 #, c-format msgid "Processing file '%s' ..." msgstr "" #: src/import.c:71 msgid "Choose file to import" msgstr "" #: src/import.c:148 msgid "CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)" msgstr "" #: src/import.c:152 msgid "CDDB files (*.cddb)" msgstr "" #: src/import.c:154 msgid "CUE files (*.cue)" msgstr "" #: src/import.c:156 msgid "Audacity labels files (*.txt)" msgstr "" #: src/import.c:158 msgid "All files" msgstr "" #: src/export.c:199 msgid "Select cue file name" msgstr "" #: src/export.c:212 msgid "cue files (*.cue)" msgstr "" �������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/fr_FR.po�����������������������������������������������������������������������0000644�0001750�0001750�00000057630�11753562412�012623� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Munteanu Alexandru # This file is distributed under the same license as the PACKAGE package. # # Translators: # Chris38 <ch.daudin@free.fr>, 2011. # Peter Pall <gunter@peterpall.de>, 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net\n" "POT-Creation-Date: 2012-05-13 00:32+0200\n" "PO-Revision-Date: 2012-05-11 08:29+0000\n" "Last-Translator: Chris38 <ch.daudin@free.fr>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: fr_FR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" #: src/xmms_control.c:82 src/gstreamer_control.c:254 #: src/snackamp_control.c:328 msgid "stereo" msgstr "stéréo" #: src/xmms_control.c:86 src/gstreamer_control.c:258 #: src/snackamp_control.c:332 msgid "mono" msgstr "mono" #: src/xmms_control.c:89 src/gstreamer_control.c:223 #: src/snackamp_control.c:335 msgid "Kbps" msgstr "Kbps" #: src/xmms_control.c:90 src/gstreamer_control.c:224 #: src/snackamp_control.c:336 msgid "Khz" msgstr "Khz" #: src/tree_tab.c:553 msgid "_part" msgstr "_partie" #: src/tree_tab.c:564 #, c-format msgid "%s_part%d" msgstr "%s_partie%d" #: src/tree_tab.c:708 src/tree_tab.c:1114 msgid " error: you already have the splitpoint in table" msgstr " erreur : vous avez déjà ce point de coupure dans le tableau" #: src/tree_tab.c:791 src/tree_tab.c:870 src/tree_tab.c:1124 #: src/freedb_tab.c:466 src/freedb_tab.c:488 msgid "description here" msgstr "description" #: src/tree_tab.c:1273 src/tree_tab.c:1695 msgid "Set trim splitpoints using silence detection" msgstr "" #: src/tree_tab.c:1299 src/tree_tab.c:1371 src/preferences_tab.c:721 msgid "Threshold level (dB):" msgstr "Niveau seuil (dB) :" #: src/tree_tab.c:1345 src/tree_tab.c:1705 msgid "Set splitpoints from silence detection" msgstr "Points à partir de la recherche du silence" #: src/tree_tab.c:1388 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end):" msgstr "Position de la coupure dans le silence (0 = au début, 1 = à la fin) :" #: src/tree_tab.c:1405 msgid "Number of tracks (0 means all tracks):" msgstr "Nombre de pistes (0 signifie toutes les pistes) :" #: src/tree_tab.c:1420 msgid "Minimum silence length (seconds):" msgstr "Durée minimum du silence (secondes) :" #: src/tree_tab.c:1434 msgid "Minimum track length (seconds):" msgstr "" #: src/tree_tab.c:1445 msgid "_Remove silence between tracks" msgstr "_Effacer le silence entre les pistes" #: src/tree_tab.c:1633 msgid "Minutes:" msgstr "Minutes :" #: src/tree_tab.c:1638 msgid "Seconds:" msgstr "Secondes :" #: src/tree_tab.c:1644 msgid "Hundredths:" msgstr "Centièmes :" #: src/tree_tab.c:1650 src/player_tab.c:1052 msgid "_Add" msgstr "Aj_outer" #: src/tree_tab.c:1656 msgid "Add splitpoint" msgstr "Ajouter le point" #: src/tree_tab.c:1660 msgid "_Remove" msgstr "_Effacer" #: src/tree_tab.c:1666 msgid "Remove rows" msgstr "Effacer les lignes" #: src/tree_tab.c:1670 msgid "R_emove all" msgstr "Effa_cer tout" #: src/tree_tab.c:1676 msgid "Remove all rows" msgstr "Effacer toutes les lignes" #: src/tree_tab.c:1689 msgid "_Trim splitpoints" msgstr "" #: src/tree_tab.c:1699 msgid "_Silence detection" msgstr "Détection du _silence" #: src/tree_tab.c:1827 src/mp3splt-gtk.c:399 msgid " finished" msgstr " fini" #: src/tree_tab.c:1842 msgid " cannot split preview last splitpoint" msgstr " impossible d'écouter l'aperçu du dernier point de coupure" #: src/tree_tab.c:1883 msgid " cannot preview, not connected to player" msgstr " impossible d'écouter l'aperçu, déconnecté du lecteur" #: src/tree_tab.c:1948 msgid "Keep" msgstr "Garder" #: src/tree_tab.c:1962 src/split_files.c:111 msgid "Filename" msgstr "Nom fichier" #: src/tree_tab.c:1976 msgid "Secs" msgstr "Secondes" #: src/tree_tab.c:1990 msgid "Mins" msgstr "Minutes" #: src/tree_tab.c:2004 msgid "Hundr" msgstr "Centièmes" #: src/tree_tab.c:2014 msgid "Length" msgstr "Durée" #: src/tree_tab.c:2025 msgid "LiveP" msgstr "ALive" #: src/tree_tab.c:2036 msgid "SplitP" msgstr "ACoupure" #: src/split_files.c:339 msgid "_Queue files to player" msgstr "Aj_oute les fichiers au lecteur" #: src/split_files.c:349 msgid "_Delete selected files" msgstr "_Effacer les fichiers sélectionnées" #: src/split_files.c:359 msgid "D_elete all files" msgstr "Effa_cer tous les fichiers" #: src/preferences_tab.c:476 msgid "<b>Choose language (requires restart)</b>" msgstr "<b>Choisir la langue (nécessite redémarrage)</b>" #: src/preferences_tab.c:511 msgid "Choose split directory" msgstr "Choisir dossier pour les fichiers coupés" #: src/preferences_tab.c:663 msgid "Br_owse dir" msgstr "Parc_ourir dossier" #: src/preferences_tab.c:671 msgid "_Song dir" msgstr "Dossier du _fichier" #: src/preferences_tab.c:676 msgid "<b>Directory for split files</b>" msgstr "<b>Répertoire des fichiers coupés</b>" #: src/preferences_tab.c:685 msgid "_Splitpoint name from filename (testing)" msgstr "_Noms points de coupure à partir du nom fichier (en test)" #: src/preferences_tab.c:691 msgid "_Create directories from filenames " msgstr "_Créér les dossiers à partir des noms de fichiers" #: src/preferences_tab.c:697 msgid "F_rame mode (useful for mp3 VBR) (mp3 only)" msgstr "Mode 'f_rame' (utile pour mp3 VBR) (seulement mp3)" #: src/preferences_tab.c:704 msgid "_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)" msgstr "" "Aj_ustement automatique (utilise la détection du silence pour ajuster les " "points)" #: src/preferences_tab.c:736 msgid "Cutpoint offset (0 is the begin of silence and 1 the end):" msgstr "Position de la coupure dans le silence (0 = au début, 1 = à la fin) :" #: src/preferences_tab.c:753 msgid "Gap level (seconds around splitpoint to search for silence):" msgstr "Fourchette (secondes autour du point pour chercher un silence) :" #: src/preferences_tab.c:772 msgid "Set _default split options" msgstr "Options par _défaut" #: src/preferences_tab.c:778 msgid "<b>Split options</b>" msgstr "<b>Options de coupure</b>" #: src/preferences_tab.c:846 msgid "Player:" msgstr "" #: src/preferences_tab.c:868 msgid "Refresh player every " msgstr "" #: src/preferences_tab.c:879 msgid "milliseconds." msgstr "" #: src/preferences_tab.c:884 msgid "Higher refresh rate decreases CPU usage - default is 200." msgstr "" #: src/preferences_tab.c:888 msgid "<b>Player options</b>" msgstr "<b>Options du lecteur</b>" #: src/preferences_tab.c:936 msgid "Default format" msgstr "Format par défaut" #: src/preferences_tab.c:940 msgid "Custom format" msgstr "Format personnalisé" #: src/preferences_tab.c:957 msgid "" " @f - file name\n" " @a - artist name\n" " @p - performer of each song (does not always exist)\n" " @b - album title\n" " @t - song title\n" " @g - genre\n" " @n - track number" msgstr "" " @f - nom du fichier\n" " @a - nom de l'artiste\n" " @p - nom de l'interprète pour chaque titre (n'existe pas toujours)\n" " @b - titre de l'album\n" " @t - titre du morceau\n" " @g - genre\n" " @n - numéro de la piste" #: src/preferences_tab.c:970 msgid "<b>Output filename format</b>" msgstr "<b>Format des fichiers divisés</b>" #: src/preferences_tab.c:1015 msgid "Original file tags" msgstr "Tags du fichier d'entrée" #: src/preferences_tab.c:1018 msgid "Default tags (cddb or cue tags)" msgstr "Tags par défaut (cddb ou cue)" #: src/preferences_tab.c:1021 msgid "No tags" msgstr "Aucun tag" #: src/preferences_tab.c:1024 msgid "Extract tags from filename" msgstr "Extraire les tags à partir du nom de fichier" #: src/preferences_tab.c:1031 msgid "<b>Split files tags</b>" msgstr "<b>Tags des fichiers coupés</b>" #: src/preferences_tab.c:1053 msgid "No change" msgstr "Sans changement" #: src/preferences_tab.c:1054 msgid "lowercase" msgstr "minuscules" #: src/preferences_tab.c:1055 msgid "UPPERCASE" msgstr "MAJUSCULES" #: src/preferences_tab.c:1056 msgid "First uppercase" msgstr "1ère lettre en majuscule" #: src/preferences_tab.c:1057 msgid "Word Uppercase" msgstr "1ère lettre des Mots en majuscule" #: src/preferences_tab.c:1078 msgid "<artist>: " msgstr "<artiste>: " #: src/preferences_tab.c:1085 msgid "<album>: " msgstr "<album>: " #: src/preferences_tab.c:1093 msgid "<title>: " msgstr "<titre>: " #: src/preferences_tab.c:1100 msgid "<genre>: " msgstr "<genre>: " #: src/preferences_tab.c:1107 msgid "<comment>: " msgstr "<commentaire>: " #: src/preferences_tab.c:1114 msgid "<year>: " msgstr "<année>:" #: src/preferences_tab.c:1121 msgid "<track>: " msgstr "<piste>:" #: src/preferences_tab.c:1147 msgid "Regular expression:" msgstr "Expression régulière :" #: src/preferences_tab.c:1150 msgid "" "Above enter PERL-like regular expression using named subgroups.\n" "Following names are recognized:\n" " (?<artist>) - artist name\n" " (?<album>) - album title\n" " (?<title>) - track title\n" " (?<tracknum>) - current track number\n" " (?<year>) - year of emission\n" " (?<genre>) - genre\n" " (?<comment>) - comment" msgstr "" "Saisir ci-dessus une expression régulière type-PERL utilisant des mots-" "clés.\n" "Les mots-clés suivants sont reconnus :\n" " (?<artist>) - nom de l'artiste\n" " (?<album>) - titre de l'album\n" " (?<title>) - titre du morceau (=piste)\n" " (?<tracknum>) - numéro du morceau courant\n" " (?<year>) - année de création\n" " (?<genre>) - genre\n" " (?<comment>) - commentaire" #: src/preferences_tab.c:1174 msgid "_Replace underscores by spaces" msgstr "_Remplacer les souslignés par des espaces" #: src/preferences_tab.c:1182 msgid "Artist text properties:" msgstr "Propriétés texte auteur :" #: src/preferences_tab.c:1186 msgid "Album text properties:" msgstr "Propriétés texte album :" #: src/preferences_tab.c:1190 msgid "Title text properties:" msgstr "Propriétés texte titre :" #: src/preferences_tab.c:1194 msgid "Comment text properties:" msgstr "Propriétés commentaire :" #: src/preferences_tab.c:1197 msgid "Genre tag:" msgstr "Tag genre :" #: src/preferences_tab.c:1200 msgid "Comment tag:" msgstr "Tag commentaire :" #: src/preferences_tab.c:1202 msgid "Regular expression test" msgstr "Test expression régulière" #: src/preferences_tab.c:1217 msgid "_Test" msgstr "_Test" #: src/preferences_tab.c:1222 msgid "Sample filename:" msgstr "Exemple nom de fichier :" #: src/preferences_tab.c:1226 msgid "Sample result:" msgstr "Exemple résultat :" #: src/preferences_tab.c:1237 msgid "ID3v1 & ID3v2 tags" msgstr "Tags ID3v1 & ID3v2" #: src/preferences_tab.c:1244 msgid "ID3v2 tags" msgstr "Tags ID3v2" #: src/preferences_tab.c:1250 msgid "ID3v1 tags" msgstr "Tags ID3v1" #: src/preferences_tab.c:1256 msgid "Same tags version as the input file" msgstr "Même version des tags que le fichier d'entrée" #: src/preferences_tab.c:1261 msgid "<b>Tags version (mp3 only)</b>" msgstr "<b>Version des tags (seulement mp3)</b>" #: src/preferences_tab.c:1303 src/main_win.c:560 msgid "Split" msgstr "Coupure" #: src/preferences_tab.c:1309 msgid "Tags" msgstr "Tags" #: src/preferences_tab.c:1315 msgid "Output" msgstr "Format" #: src/preferences_tab.c:1321 src/main_win.c:709 msgid "Player" msgstr "Lecteur" #: src/preferences_tab.c:1328 msgid "Language" msgstr "Langue" #: src/player_tab.c:664 src/player_tab.c:698 msgid "Cannot connect to player" msgstr "Impossible de se connecter au lecteur" #: src/player_tab.c:675 msgid "" "\n" " Cannot connect to snackAmp player.\n" " Please download and install snackamp from\n" "\thttp://snackamp.sourceforge.net\n" "\n" " Verify that snackamp is running.\n" " Verify that your snackamp version is >= 3.1.3\n" "\n" " Verify that you have enabled socket interface in snackamp:\n" " You have to go to\n" "\tTools->Preferences->Miscellaneous\n" " from the snackamp menu and check\n" "\tEnable Socket Interface\n" " Only default port is supported for now(8775)\n" " After that, restart snackamp and mp3splt-gtk should work.\n" msgstr "" "\n" " Impossible de se connecter au lecteur snackAmp.\n" " Téléchargez et installez snackamp à partir de\n" "\thttp://snackamp.sourceforge.net\n" "\n" " Vérifiez que snackamp est lancé.\n" " Vérifiez que la version de snackamp est >= 3.1.3\n" "\n" " Vérifiez que l'option de snackamp 'enable socket interface' est activée :\n" " Aller dans\n" "\tTools->Preferences->Miscellaneous\n" " à partir du menu snackamp et cocher\n" "\tEnable Socket Interface\n" " Seulement le port par défaut fonctionne (8775)\n" " Après, redémarrer snackamp et réessayer.\n" #: src/player_tab.c:690 msgid "" "\n" " Cannot connect to Audacious player.\n" " Verify that you have installed audacious.\n" "\n" " Put in your PATH variable the directory where the audacious executable is.\n" " If you don't know how to do that, start audacious manually and then try to " "connect.\n" msgstr "" "\n" " Impossible de se connecter au lecteur Audacious.\n" " Vérifiez l'installation d'audacious.\n" #: src/player_tab.c:977 msgid "Previous" msgstr "Précédent" #: src/player_tab.c:995 msgid "Play" msgstr "Lire" #: src/player_tab.c:1011 msgid "Pause" msgstr "Pause" #: src/player_tab.c:1028 msgid "Stop" msgstr "Stop" #: src/player_tab.c:1045 msgid "Next" msgstr "Suivant" #: src/player_tab.c:1060 msgid "Add splitpoint from player" msgstr "Ajouter point de coupure du lecteur" #: src/player_tab.c:1064 msgid "Amplitude _wave" msgstr "" #: src/player_tab.c:1071 msgid "Shows the amplitude level wave" msgstr "Montre le niveau du signal audio" #: src/player_tab.c:1075 msgid "_Connect" msgstr "_Connecter" #: src/player_tab.c:1078 msgid "Connect to player" msgstr "Se connecter au lecteur" #: src/player_tab.c:1082 msgid "_Disconnect" msgstr "_Déconnecter" #: src/player_tab.c:1085 msgid "Disconnect from player" msgstr "Se déconnecter du lecteur" #: src/player_tab.c:1221 #, c-format msgid "before %s" msgstr "avant %s" #: src/player_tab.c:2671 msgid " left click on splitpoint selects it, right click erases it" msgstr " click gauche sur le point le sélectionne, click droit l'efface" #: src/player_tab.c:2676 msgid "" " left click + move changes song position, right click + move changes zoom" msgstr "" " click gauche + déplacement change la position, click droit + déplacement " "change le zoom" #: src/player_tab.c:2682 msgid "" " left click on point + move changes point position, right click play preview" msgstr "" " click gauche sur le point + déplacement change la position du point, click " "droit aperçu" #: src/player_tab.c:2687 msgid " left click on rectangle checks/unchecks 'keep splitpoint'" msgstr " click gauche sur rectangle coche/décoche 'garder le point'" #: src/player_tab.c:2877 msgid " quick preview..." msgstr " aperçu rapide..." #: src/player_tab.c:3246 msgid "Splitpoints _view" msgstr "" #: src/player_tab.c:3414 msgid "History" msgstr "Historique" #: src/player_tab.c:3548 msgid "_Erase selected entries" msgstr "_Effacer les éléments sélectionnées" #: src/player_tab.c:3557 msgid "E_rase all history" msgstr "Effa_cer tout l'historique" #: src/player_tab.c:3601 msgid "H_istory" msgstr "" #: src/player_tab.c:3674 msgid " quick preview finished, song paused" msgstr " aperçu rapide fini, lecteur sur pause" #: src/player_tab.c:3820 msgid "Choose File" msgstr "Choisir fichier" #: src/player_tab.c:3832 src/multiple_files.c:130 msgid "mp3 and ogg files (*.mp3 *.ogg)" msgstr "fichiers mp3 et ogg (*.mp3 *.ogg)" #: src/player_tab.c:3840 src/multiple_files.c:138 msgid "mp3 files (*.mp3)" msgstr "fichiers mp3 (*.mp3)" #: src/player_tab.c:3846 src/multiple_files.c:144 msgid "ogg files (*.ogg)" msgstr "fichiers ogg (*.ogg)" #: src/player_tab.c:3987 msgid "_Browse" msgstr "_Parcourir" #: src/player_tab.c:3991 msgid "Select file" msgstr "Sélection fichier" #: src/player_tab.c:3998 msgid "_Fix ogg stream" msgstr "_Fixer un stream ogg" #: src/main_win.c:147 msgid " info: stopping the split process before exiting" msgstr " info : arrêt du processus de découpage avant de sortir" #: src/main_win.c:313 msgid "Error launching external command" msgstr "Erreur en lançant un programme externe" #: src/main_win.c:345 msgid "using" msgstr "utilisant" #: src/main_win.c:349 msgid "release of " msgstr "" #: src/main_win.c:446 msgid " info: stopping the split process.. please wait" msgstr " info : arrêt du processus de découpage... veuillez attendre" #: src/main_win.c:485 msgid " error: no file selected" msgstr " erreur : aucun fichier sélectionné" #: src/main_win.c:490 msgid " error: split in progress..." msgstr " erreur : découpage en cours..." #: src/main_win.c:502 src/main_win.c:506 msgid "Split !" msgstr "Couper !" #: src/main_win.c:548 msgid "_File" msgstr "_Fichier" #: src/main_win.c:549 msgid "_Help" msgstr "_Aide" #: src/main_win.c:552 msgid "_Open..." msgstr "_Ouvrir..." #: src/main_win.c:552 msgid "Open" msgstr "Ouvrir" #: src/main_win.c:555 msgid "_Import splitpoints..." msgstr "_Importer points de coupure..." #: src/main_win.c:555 msgid "Import" msgstr "Importer" #: src/main_win.c:557 msgid "_Export splitpoints..." msgstr "_Exporter points de coupure..." #: src/main_win.c:557 msgid "Export" msgstr "Exporter" #: src/main_win.c:560 msgid "_Split !" msgstr "_Couper" #: src/main_win.c:562 msgid "Messages _history" msgstr "_Historique des messages" #: src/main_win.c:562 src/main_win.c:807 src/messages.c:201 msgid "Messages history" msgstr "Historique des messages" #: src/main_win.c:565 msgid "_Quit" msgstr "_Quitter" #: src/main_win.c:565 msgid "Quit" msgstr "Quitter" #: src/main_win.c:569 msgid "_Contents" msgstr "_Contenus" #: src/main_win.c:569 msgid "Contents" msgstr "Contenus" #: src/main_win.c:573 msgid "_About" msgstr "_A propos de" #: src/main_win.c:573 msgid "About" msgstr "A propos de" #: src/main_win.c:723 msgid "Splitpoints" msgstr "Points de coupure" #: src/main_win.c:735 msgid "Split files" msgstr "Fichiers découpés" #: src/main_win.c:748 msgid "FreeDB" msgstr "FreeDB" #: src/main_win.c:759 msgid "Type of split" msgstr "Type de découpage" #: src/main_win.c:772 msgid "Preferences" msgstr "Préférences" #: src/main_win.c:789 msgid "S_top" msgstr "S_top" #: src/freedb_tab.c:127 #, c-format msgid "%s Revision %d" msgstr "%s Révision %d" #: src/freedb_tab.c:164 msgid "Album title" msgstr "Titre de l'album" #: src/freedb_tab.c:250 src/freedb_tab.c:345 msgid "please wait... contacting tracktype.org" msgstr "veuillez attendre... connexion avec tracktype.org" #: src/freedb_tab.c:545 msgid "Search tracktype.org:" msgstr "Chercher sur tracktype.org :" #: src/freedb_tab.c:556 msgid "_Search" msgstr "_Recherche" #: src/freedb_tab.c:589 msgid "_Add splitpoints" msgstr "Aj_outer les points" #: src/freedb_tab.c:596 msgid "Set splitpoints to the splitpoints table" msgstr "Mettre les points au tableau de points de coupure" #: src/special_split.c:197 src/special_split.c:271 #, c-format msgid "Split every %2d seconds." msgstr "" #: src/special_split.c:208 src/special_split.c:305 #, c-format msgid "Split in %2d equal time tracks." msgstr "" #: src/special_split.c:243 msgid "Normal" msgstr "Normal" #: src/special_split.c:253 msgid "Time" msgstr "Durée" #: src/special_split.c:287 msgid "Equal time tracks" msgstr "Nombre de morceaux " #: src/special_split.c:320 msgid "Trim using silence detection" msgstr "" #: src/special_split.c:336 src/special_split.c:361 msgid "Threshold level (dB) : " msgstr "Niveau seuil (dB) :" #: src/special_split.c:345 msgid "Silence - split with silence detection" msgstr "Silence - couper par détection des silences" #: src/special_split.c:371 msgid "Cutpoint offset (0 is the begin of silence,and 1 the end) : " msgstr "Position de la coupure dans le silence (0 = au début, 1 = à la fin) :" #: src/special_split.c:381 msgid "Number of tracks (0 means all tracks) : " msgstr "Nombre de pistes (0 signifie toutes les pistes) :" #: src/special_split.c:391 msgid "Minimum silence length (seconds) : " msgstr "Durée minimum du silence (secondes) :" #: src/special_split.c:401 msgid "Minimum track length (seconds) : " msgstr "" #: src/special_split.c:409 msgid "Remove silence between tracks" msgstr "Effacer les silences entre les morceaux" #: src/special_split.c:430 msgid "Wrap - split files created with mp3wrap or albumwrap (mp3 only)" msgstr "" "Wrap - diviser les fichiers créés avec mp3wrap ou albumwrap (seulement mp3)" #: src/special_split.c:440 msgid "Error mode (mp3 only)" msgstr "Mode recherche erreurs de synchronisation (seulement mp3)" #: src/special_split.c:465 msgid "Single file" msgstr "Fichier unique" #: src/special_split.c:473 msgid "Batch processing" msgstr "Traitement par lot" #: src/special_split.c:507 msgid "Split mode" msgstr "Mode de découpage" #: src/special_split.c:511 msgid "File mode" msgstr "Mode fichier(s)" #: src/messages.c:180 msgid "Enable _debug messages" msgstr "" #: src/messages.c:187 msgid "C_lear" msgstr "_Effacer" #: src/multiple_files.c:88 msgid "Complete filename" msgstr "Nom de fichier complet" #: src/multiple_files.c:109 msgid "Choose file or directory" msgstr "Choisir un fichier ou un dossier" #: src/multiple_files.c:151 msgid "All Files" msgstr "Tous les fichiers" #: src/multiple_files.c:292 msgid "_Add files" msgstr "Aj_outer fichiers" #: src/multiple_files.c:300 msgid "_Remove selected entries" msgstr "_Effacer les éléments sélectionnés" #: src/multiple_files.c:309 msgid "R_emove all entries" msgstr "Effa_cer toutes les lignes" #: src/gstreamer_control.c:97 #, c-format msgid "gstreamer error: %s" msgstr "erreur gstreamer: %s" #: src/gstreamer_control.c:125 #, c-format msgid "Warning: %s" msgstr "Attention: %s" #: src/gstreamer_control.c:153 #, c-format msgid "Info: %s" msgstr "Info: %s" #: src/gstreamer_control.c:412 msgid " error: cannot create gstreamer playbin\n" msgstr " erreur: impossible de créer 'playbin' de gstreamer\n" #: src/mp3splt-gtk.c:166 #, c-format msgid " File '%s' created" msgstr "Fichier '%s' créé" #: src/mp3splt-gtk.c:193 #, c-format msgid " preparing \"%s\" (%d of %d)" msgstr " préparation de \"%s\" (%d sur %d)" #: src/mp3splt-gtk.c:199 #, c-format msgid " creating \"%s\" (%d of %d)" msgstr " création de \"%s\" (%d sur %d)" #: src/mp3splt-gtk.c:205 msgid " searching for sync errors..." msgstr " recherche d'erreurs de synchronisation..." #: src/mp3splt-gtk.c:209 #, c-format msgid "S: %02d, Level: %.2f dB; scanning for silence..." msgstr "S : %02d, Niveau : %.2f dB; recherche du silence..." #: src/mp3splt-gtk.c:372 msgid " error: no files found in multiple files mode" msgstr " erreur: aucun fichier trouvé avec le mode 'fichiers multiples'" #: src/mp3splt-gtk.c:587 #, c-format msgid "Trying to set the output directory to %s.\n" msgstr "Essaie d'utiliser le dossier de sortie %s.\n" #: src/mp3splt-gtk.c:596 #, c-format msgid "Error: The specified output directory is inaccessible!\n" msgstr "Erreur : le dossier de sortie spécifié est inaccessible !\n" #: src/mp3splt-gtk.c:602 #, c-format msgid "Option -%c requires an argument.\n" msgstr "L'option -%c doit être suivie d'un paramètre.\n" #: src/mp3splt-gtk.c:604 #, c-format msgid "Unknown option `-%c'.\n" msgstr "Option inconnue `-%c'.\n" #: src/mp3splt-gtk.c:607 #, c-format msgid "Unknown option character `\\x%x'.\n" msgstr "Caractère d'option inconnu `\\x%x'.\n" #: src/mp3splt-gtk.c:659 #, c-format msgid "Cannot open input file %s\n" msgstr "Impossible d'ouvrir le fichier %s.\n" #: src/utilities.c:126 #, c-format msgid "Processing file '%s' ..." msgstr "Fichier '%s' ..." #: src/import.c:71 msgid "Choose file to import" msgstr "Choisir un fichier à importer" #: src/import.c:148 msgid "CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)" msgstr "CDDB (*.cddb), CUE (*.cue), Marqueurs Audacity (*.txt)" #: src/import.c:152 msgid "CDDB files (*.cddb)" msgstr "Fichier CDDB (*.cddb)" #: src/import.c:154 msgid "CUE files (*.cue)" msgstr "Fichiers CUE (*.cue)" #: src/import.c:156 msgid "Audacity labels files (*.txt)" msgstr "Fichiers marqueurs Audacity (*.txt)" #: src/import.c:158 msgid "All files" msgstr "Tous les fichiers" #: src/export.c:199 msgid "Select cue file name" msgstr "Sélectionner le fichier cue" #: src/export.c:212 msgid "cue files (*.cue)" msgstr "Fichiers cue (*.cue)" ��������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/es.gmo�������������������������������������������������������������������������0000644�0001750�0001750�00000023262�11753562413�012373� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����‰������d��¿���¬������¨ ��(���© ��%���Ò �����ø ��-��� �����? �� ���\ ��0���f ��/���— ��I���Ç ��L��� ��:���^ ��;���™ ��$���Õ �����ú ����� ��)���*�� ���T�����u�����“�����©�����Á�����Ö�����å�������� ����� ���#�� ���-�����7�����O�� ���`�� ���l�����x�����‘�� ���¨�����µ�����Î�����à�� ���é��:���÷�����2�����D�����S�����s�����Š����������¯�����Å��+���à�� ��� ������������<���/�����l�����t�� ���z�����†����������’�����—�����›�����¢�����¨�����º��!���Ë�����í�����ò�����û�� ��������� ��&��������9�����>�����Q�����W�� ���\�����h�����q�� ���v�����‚�����–�� ���¦�����²�����Ð�����á�����ð�����ù�� ���þ����� ��&���%��(���L�����u��&���”�� ���»�����Ç�� ���Ï�����Ú�� ���á�����í�����ò���������� �� ���$�� ���2�����<��?���K�����‹�����’��E���—�����Ý�����å�� ���î��#���ø������� ���3�����?�����W�����g�����m�����„����������¤�����ª�����²�����Ñ�����ð�� �������� ������� ���'�����1�����6�����V�����h��'���z�����¢�����©��—��¯��/���G��3���w��*���«��F���Ö������� ���:��4���D��9���y��u���³��t���)��]���ž��M���ü��7���J�����‚��*���›��(���Æ��'���ï��.��������F��$���e�����Š����� �����³��$���Ò�����÷����� ����������0�����O�� ���g�� ���s����������Ÿ�����¾��#���×�����û�� ����� �����L���#�����p�����‹��6���¢�����Ù�����ð����������%��.���?��0���n�����Ÿ�����²�����Ä��>���à����� �����( �� ���. �����; �����D �����J �����S �����W �����` �����f �����x ��)��� �����º ����� �� ���Ë �� ���Õ �����á ��5���ù �����/!�����7!�����J!�����P!�� ���Y!�����f!�����o!�� ���u!�����ƒ!�����—!�����°!�� ���Ã!�����ä!�����"�� ���"�����%"�����."��+���D"��0���p"��/���¡"��$���Ñ"��5���ö"�����,#�����;#�����B#�����U#�� ���\#�����h#�����p#�����ƒ#��%���Š#�����°#�� ���Â#�����Î#��G���è#�����0$�����7$��U���?$�����•$�����$�� ���¦$��)���°$�����Ú$�� ���ù$��$���%�����+%�����:%�����@%�� ���X%�����c%�����‚%�����ˆ%�����%�����®%�����Ì%�� ���à%�����ê%�����ò%�� ���&�����&��"���&�����9&�����O&��:���c&�����ž&�� ���§&�����K��� ���‰��������������Y�������I���~���\���+���C���‡���Z���.������O���i���P���|��������������2����������7���u�����������l���p���R�����������g�������W���b���#�������H�������T���?���������������M���N���%�������[������5���c���`��� ���m��� ���A�������a������ˆ���������������4�����������������'���U���X���^���o��� ��������������r������������������h���f���*������v���q���0���Q�������y����������j���(��� ������9���8���d�������ƒ���L������-�������G�������„�������†���,������e���3��������������k������n������x���6���}���E�������z���:�����������D�������1���/�������&���)������@������J�����������;���F���_���!���B�����������s������€�������{���=���w�������<��������� ����������S���‚���>�����������������V���…���"���t���$�����������]��������������� cannot preview, not connected to player� cannot split preview last splitpoint� error: no file selected� error: no files found in multiple files mode� error: split in progress...� finished� info: stopping the split process before exiting� info: stopping the split process.. please wait� left click + move changes song position, right click + move changes zoom� left click on point + move changes point position, right click play preview� left click on rectangle checks/unchecks 'keep splitpoint'� left click on splitpoint selects it, right click erases it� quick preview finished, song paused� quick preview...� searching for sync errors...�<b>Choose language (requires restart)</b>�<b>Directory for split files</b>�<b>Output filename format</b>�<b>Player options</b>�<b>Split files tags</b>�<b>Split options</b>�Add splitpoint�Add splitpoint from player�Album text properties:�Album title�All Files�All files�Artist text properties:�Batch processing�Br_owse dir�Choose File�Choose file or directory�Choose split directory�Comment tag:�Comment text properties:�Connect to player�Contents�Custom format�Cutpoint offset (0 is the begin of silence,and 1 the end):�D_elete all files�Default format�Default tags (cddb or cue tags)�Disconnect from player�E_rase all history�Equal time tracks�Error mode (mp3 only)�Extract tags from filename�F_rame mode (useful for mp3 VBR) (mp3 only)�File mode�Filename�First uppercase�Gap level (seconds around splitpoint to search for silence):�History�Hundr�Hundredths:�Import�Kbps�Keep�Khz�Length�LiveP�Messages _history�Messages history�Minimum silence length (seconds):�Mins�Minutes:�Next�No change�No tags�Number of tracks (0 means all tracks):�Open�Original file tags�Pause�Play�Preferences�Previous�Quit�R_emove all�Regular expression:�Remove all rows�Remove rows�Remove silence between tracks�Sample filename:�Sample result:�Seconds:�Secs�Select file�Set _default split options�Set splitpoints from silence detection�Set splitpoints to the splitpoints table�Shows the amplitude level wave�Silence - split with silence detection�Single file�Split !�Split mode�SplitP�Splitpoints�Stop�Threshold level (dB):�Time�Title text properties:�Type of split�UPPERCASE�Word Uppercase�Wrap - split files created with mp3wrap or albumwrap (mp3 only)�_About�_Add�_Auto-adjust mode (uses silence detection to auto-adjust splitpoints)�_Browse�_Connect�_Contents�_Create directories from filenames �_Delete selected files�_Disconnect�_Erase selected entries�_Fix ogg stream�_Help�_Import splitpoints...�_Open...�_Queue files to player�_Quit�_Remove�_Remove silence between tracks�_Replace underscores by spaces�_Silence detection�_Song dir�_Split !�description here�lowercase�mono�mp3 and ogg files (*.mp3 *.ogg)�mp3 files (*.mp3)�ogg files (*.ogg)�please wait... contacting tracktype.org�stereo�using�Project-Id-Version: mp3splt-gtk Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net POT-Creation-Date: 2012-05-13 00:32+0200 PO-Revision-Date: 2012-05-11 08:29+0000 Last-Translator: freddy sequera <nemecis000@gmail.com> Language-Team: LANGUAGE <LL@li.org> Language: es MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1) �no puede ver, no está conectado al reproductor�No se puede dividir splitpoint última vista previa�error: no hay ningún archivo seleccionado�error: no hay archivos que se encuentran en varios archivos de modo de�error: dividida en curso ...�terminado�Info: detener el proceso de división antes de salir�Info: detener el proceso de división .. por favor espere�botón izquierdo del ratón + movimiento posición de la canción, los cambios haga clic derecho + movimiento de zoom�haga clic en la izquierda en la posición del punto + mover el punto de los cambios, haga clic en vista previa jugar�botón izquierdo del ratón sobre los controles rectángulo / 'splitpoint mantener' desactiva�haga clic en la izquierda en splitpoint se selecciona, haga clic en él borra�vista previa rápida de terminar, una canción en pausa�vista previa rápida ...�en busca de errores de sincronización ...�<b>Elija idioma (requiere reiniciar)</b>�<b>Directorio para dividir archivos</b>�<b>Nombre de archivo del formato de salida</b>�<b>Reproductor de opciones</b>�<b>Dividir archivos de etiquetas</b>�<b>Split opciones</b>�Añadir splitpoint�Añadir splitpoint del jugador�Ãlbum de las propiedades del texto:�Título del álbum�Todos los archivos�Todos los archivos�propiedades del artista texto:�Procesamiento por lotes�Br_owse dir�Elija Archivo�Elija el archivo o directorio�Elija un directorio de dividir�Comentario de etiquetas:�Comentar las propiedades del texto:�Conecte al jugador�Contenido�De formato�Punto de corte de desplazamiento (0 es el inicio de silencio, y 1 al final):�D_elete todos los archivos�Formato predeterminado�Predefinida, las etiquetas (tags CDDB o de referencia)�Desconecte del jugador�E_rase toda la historia�tiempo de Igualdad de pistas�Modo de error (sólo MP3)�Extracto de las etiquetas de nombre de archivo�modo F_rame (útil para mp3 VBR) (mp3 solamente)�El modo de archivo�Nombre de archivo�En primer lugar mayúsculas�nivel de Gap (segundos en splitpoint para buscar el silencio):�Historia�Hundr�Centésimas:�Importar�Kbps.�Mantenga�Khz�Longitud�LiveP�Mensajes _history�Mensajes de la historia�Duración mínima de silencio (segundos):�Minutos�Minutos:�Siguiente�Sin cambios�No hay ninguna etiqueta�Número de pistas (0 significa que todas las pistas):�Abierto�Original file tags�Pausa�Escuchar�Preferencias�Anterior�Salir�R_emove todos�Expresión regular:�Eliminar todas las filas�Eliminar las filas�Quitar silencio entre las pistas�Ejemplo de nombre de archivo:�Resultado de la muestra:�Segundos:�Segundos�Seleccione el archivo�Establecer las opciones de dividir _default�Establecer splitpoints de detección de silencio�Establecer splitpoints a la mesa de splitpoints�Muestra el nivel de amplitud de onda�El silencio - se separó de la detección de silencio�archivo único�Split!�Dividir el modo de�SplitP�Splitpoints�Detener�Nivel umbral (dB):�Tiempo�Título de las propiedades del texto:�Tipo de división�MAYÚSCULAS�La palabra en mayúsculas�Envuelva - dividir archivos creados con mp3wrap o albumwrap (sólo MP3)�_about�_añada�_Auto-El modo de ajuste (detección de silencio utiliza para auto-ajuste splitpoints)�_Browse�_connect�_Contents�_create Directorios de nombres de archivo�_delete Archivos seleccionados�_ Desconecte�_Erase Seleccionados de las entradas�_Fix Flujo ogg�_Help�splitpoints _Import ...�_Abrir ...�_Queue Archivos al reproductor�_Quit�_Remove�_Remove Silencio entre pistas�_Replace Destaca por espacios�_Silence Detección�_Song Dir�_Split!�descripción aquí�minúsculas�mono�archivos mp3 y ogg (*. mp3 *. ogg)�archivos MP3 (*. mp3)�ogg archivo(*. ogg)�por favor espere ... ponerse en contacto con tracktype.org�estéreo�utilizando�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/insert-header.sin��������������������������������������������������������������0000664�0001750�0001750�00000001240�11241331370�014503� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/ro.gmo�������������������������������������������������������������������������0000644�0001750�0001750�00000001426�11753562413�012402� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Þ•����������T��� ���Œ�������¸���0���¹������ê������ï������ó����������� ��¼����$���Í�����ò�����÷�����û����� ��������������������������������������������� error: you already have the splitpoint in table�Kbps�Khz�description here�mono�stereo�Project-Id-Version: mp3splt-gtk Report-Msgid-Bugs-To: io_alex_2004@users.sourceforge.net POT-Creation-Date: 2012-05-13 00:32+0200 PO-Revision-Date: 2012-05-11 08:29+0000 Last-Translator: snowiulian <snow.iulian@yahoo.com> Language-Team: LANGUAGE <LL@li.org> Language: ro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1)) �eroare: ai deja splitpoint în tabel�Kbps�KHz�descriere aici�mono�stereo�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/stamp-po�����������������������������������������������������������������������0000644�0001750�0001750�00000000012�11753562413�012727� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������timestamp ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/quot.sed�����������������������������������������������������������������������0000664�0001750�0001750�00000000231�11241331370�012722� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/po/Makefile.in.in�����������������������������������������������������������������0000664�0001750�0001750�00000027472�11235156561�013741� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2003 by Ulrich Drepper <drepper@gnu.ai.mit.edu> # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public # License but which still want to provide support for the GNU gettext # functionality. # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. # # Origin: gettext-0.13 PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ localedir = $(datadir)/locale gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: all-@USE_NLS@ all-yes: stamp-po all-no: # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent # invocations of "make" will do nothing. This timestamp would not be necessary # if updating the $(CATALOGS) would always touch them; however, the rule for # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) @echo "touch stamp-po" @echo timestamp > stamp-poT @mv stamp-poT stamp-po # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)' test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } # This rule has no dependencies: we don't need to update $(DOMAIN).pot at # every "make" invocation, only create it when it is missing. # Only "make $(DOMAIN).pot-update" or "make dist" will force an update. $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update # This target rebuilds a PO file if $(DOMAIN).pot has changed. # Note that a PO file is not touched if it doesn't need to be changed. $(POFILES): $(srcdir)/$(DOMAIN).pot @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ for file in Makevars; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all $(mkinstalldirs) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: $(mkinstalldirs) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ for file in $(DISTFILES.common) Makevars.template; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f stamp-poT rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f stamp-po $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(MAKE) update-po @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ for i in 0 1 2 3 4 5 6 7 8 9; do \ if test -f $(srcdir)/ChangeLog.$$i; then \ dists="$$dists ChangeLog.$$i"; \ fi; \ done; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir); \ else \ cp -p $(srcdir)/$$file $(distdir); \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: Makefile: Makefile.in.in $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ $(SHELL) ./config.status force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/doc/������������������������������������������������������������������������������0000755�0001750�0001750�00000000000�11753562413�011462� 5����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/doc/Makefile.am�������������������������������������������������������������������0000644�0001750�0001750�00000003072�11751523736�013443� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������EXTRA_DIST = mp3splt-gtk.1 Doxyfile.in man_MANS = mp3splt-gtk.1 if HAVE_DOXYGEN html: doc doc: doxyfile.temp doxyfile.temp: cat Doxyfile.in >Doxyfile if HAVE_GRAPHVIZ echo "HAVE_DOT = YES" >> Doxyfile else echo "HAVE_DOT = NO" >> Doxyfile endif echo "STRIP_FROM_PATH = $(top_builddir)" >> Doxyfile @echo "Running doxygen to generate the code documentation" doxygen echo temporary > doxyfile.temp CLEANFILES=doxyfile.temp all-local: html clean-local: -rm -f $(top_srcdir)/doc/doxygen/*.html -rm -f $(top_srcdir)/doc/doxygen/*.png -rm -f $(top_srcdir)/doc/doxygen/*.md5 -rm -f $(top_srcdir)/doc/doxygen/*.map -rm -f $(top_srcdir)/doc/doxygen/*.js -rm -f $(top_srcdir)/doc/doxygen/*.css doxygen_target_dir=$(DESTDIR)$(docdir)/doxygen install-data-local: -$(MKDIR_P) $(doxygen_target_dir) -$(INSTALL_DATA) doxygen/*.html $(doxygen_target_dir) -$(INSTALL_DATA) doxygen/*.png $(doxygen_target_dir) -$(INSTALL_DATA) doxygen/*.md5 $(doxygen_target_dir) -$(INSTALL_DATA) doxygen/*.map $(doxygen_target_dir) -$(INSTALL_DATA) doxygen/*.js $(doxygen_target_dir) -$(INSTALL_DATA) doxygen/*.css $(doxygen_target_dir) uninstall-local: -rm -f $(doxygen_target_dir)/*.html -rm -f $(doxygen_target_dir)/*.png -rm -f $(doxygen_target_dir)/*.md5 -rm -f $(doxygen_target_dir)/*.map -rm -f $(doxygen_target_dir)/*.js -rm -f $(doxygen_target_dir)/*.css -rmdir $(doxygen_target_dir) else doc: @echo "You must have 'doxygen' installed on your system to generate" @echo "the documentation. Try installing it, and running" @echo "'configure' again." endif FORCE: .PHONY: FORCE ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/doc/Makefile.in�������������������������������������������������������������������0000644�0001750�0001750�00000040473�11753562401�013454� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in 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. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = doc DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/gnome-doc-utils.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/mp3splt.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } man1dir = $(mandir)/man1 am__installdirs = "$(DESTDIR)$(man1dir)" NROFF = nroff MANS = $(man_MANS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUDACIOUS_CFLAGS = @AUDACIOUS_CFLAGS@ AUDACIOUS_LIBS = @AUDACIOUS_LIBS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@ DOC_USER_FORMATS = @DOC_USER_FORMATS@ DOXYGEN = @DOXYGEN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FAKE_GTK_CFLAGS = @FAKE_GTK_CFLAGS@ FAKE_GTK_LIBS = @FAKE_GTK_LIBS@ GMSGFMT = @GMSGFMT@ GRAPHVIZ = @GRAPHVIZ@ GREP = @GREP@ GST_CFLAGS = @GST_CFLAGS@ GST_LIBS = @GST_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HELP_DIR = @HELP_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LOCALEDIR = @LOCALEDIR@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MP3SPLT_CFLAGS = @MP3SPLT_CFLAGS@ MP3SPLT_LIBS = @MP3SPLT_LIBS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = mp3splt-gtk.1 Doxyfile.in man_MANS = mp3splt-gtk.1 @HAVE_DOXYGEN_TRUE@CLEANFILES = doxyfile.temp @HAVE_DOXYGEN_TRUE@doxygen_target_dir = $(DESTDIR)$(docdir)/doxygen all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu doc/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-man1: $(man_MANS) @$(NORMAL_INSTALL) test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" @list=''; test -n "$(man1dir)" || exit 0; \ { for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @list='$(MANS)'; if test -n "$$list"; then \ list=`for p in $$list; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ if test -n "$$list" && \ grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ echo " typically \`make maintainer-clean' will remove them" >&2; \ exit 1; \ else :; fi; \ else :; fi @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am @HAVE_DOXYGEN_FALSE@all-local: all-am: Makefile $(MANS) all-local installdirs: for dir in "$(DESTDIR)$(man1dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." @HAVE_DOXYGEN_FALSE@uninstall-local: @HAVE_DOXYGEN_FALSE@install-data-local: @HAVE_DOXYGEN_FALSE@clean-local: clean: clean-am clean-am: clean-generic clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: @HAVE_DOXYGEN_FALSE@html: html-am html-am: info: info-am info-am: install-data-am: install-data-local install-man install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-local uninstall-man uninstall-man: uninstall-man1 .MAKE: install-am install-strip .PHONY: all all-am all-local check check-am clean clean-generic \ clean-local distclean distclean-generic distdir dvi dvi-am \ html html-am info info-am install install-am install-data \ install-data-am install-data-local install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-man1 \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-local uninstall-man uninstall-man1 @HAVE_DOXYGEN_TRUE@html: doc @HAVE_DOXYGEN_TRUE@doc: doxyfile.temp @HAVE_DOXYGEN_TRUE@doxyfile.temp: @HAVE_DOXYGEN_TRUE@ cat Doxyfile.in >Doxyfile @HAVE_DOXYGEN_TRUE@@HAVE_GRAPHVIZ_TRUE@ echo "HAVE_DOT = YES" >> Doxyfile @HAVE_DOXYGEN_TRUE@@HAVE_GRAPHVIZ_FALSE@ echo "HAVE_DOT = NO" >> Doxyfile @HAVE_DOXYGEN_TRUE@ echo "STRIP_FROM_PATH = $(top_builddir)" >> Doxyfile @HAVE_DOXYGEN_TRUE@ @echo "Running doxygen to generate the code documentation" @HAVE_DOXYGEN_TRUE@ doxygen @HAVE_DOXYGEN_TRUE@ echo temporary > doxyfile.temp @HAVE_DOXYGEN_TRUE@all-local: html @HAVE_DOXYGEN_TRUE@clean-local: @HAVE_DOXYGEN_TRUE@ -rm -f $(top_srcdir)/doc/doxygen/*.html @HAVE_DOXYGEN_TRUE@ -rm -f $(top_srcdir)/doc/doxygen/*.png @HAVE_DOXYGEN_TRUE@ -rm -f $(top_srcdir)/doc/doxygen/*.md5 @HAVE_DOXYGEN_TRUE@ -rm -f $(top_srcdir)/doc/doxygen/*.map @HAVE_DOXYGEN_TRUE@ -rm -f $(top_srcdir)/doc/doxygen/*.js @HAVE_DOXYGEN_TRUE@ -rm -f $(top_srcdir)/doc/doxygen/*.css @HAVE_DOXYGEN_TRUE@install-data-local: @HAVE_DOXYGEN_TRUE@ -$(MKDIR_P) $(doxygen_target_dir) @HAVE_DOXYGEN_TRUE@ -$(INSTALL_DATA) doxygen/*.html $(doxygen_target_dir) @HAVE_DOXYGEN_TRUE@ -$(INSTALL_DATA) doxygen/*.png $(doxygen_target_dir) @HAVE_DOXYGEN_TRUE@ -$(INSTALL_DATA) doxygen/*.md5 $(doxygen_target_dir) @HAVE_DOXYGEN_TRUE@ -$(INSTALL_DATA) doxygen/*.map $(doxygen_target_dir) @HAVE_DOXYGEN_TRUE@ -$(INSTALL_DATA) doxygen/*.js $(doxygen_target_dir) @HAVE_DOXYGEN_TRUE@ -$(INSTALL_DATA) doxygen/*.css $(doxygen_target_dir) @HAVE_DOXYGEN_TRUE@uninstall-local: @HAVE_DOXYGEN_TRUE@ -rm -f $(doxygen_target_dir)/*.html @HAVE_DOXYGEN_TRUE@ -rm -f $(doxygen_target_dir)/*.png @HAVE_DOXYGEN_TRUE@ -rm -f $(doxygen_target_dir)/*.md5 @HAVE_DOXYGEN_TRUE@ -rm -f $(doxygen_target_dir)/*.map @HAVE_DOXYGEN_TRUE@ -rm -f $(doxygen_target_dir)/*.js @HAVE_DOXYGEN_TRUE@ -rm -f $(doxygen_target_dir)/*.css @HAVE_DOXYGEN_TRUE@ -rmdir $(doxygen_target_dir) @HAVE_DOXYGEN_FALSE@doc: @HAVE_DOXYGEN_FALSE@ @echo "You must have 'doxygen' installed on your system to generate" @HAVE_DOXYGEN_FALSE@ @echo "the documentation. Try installing it, and running" @HAVE_DOXYGEN_FALSE@ @echo "'configure' again." FORCE: .PHONY: FORCE # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/doc/mp3splt-gtk.1�����������������������������������������������������������������0000644�0001750�0001750�00000005525�11753301714�013653� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������.\" This -*- nroff -*- file has been generated from .\" DocBook SGML with docbook-to-man on Debian GNU/Linux. .\" .\" transcript compatibility for postscript use. .\" .\" synopsis: .P! <file.ps> .\" .de P! \\&. .fl \" force out current output buffer \\!%PB \\!/showpage{}def .\" the following is from Ken Flowers -- it prevents dictionary overflows \\!/tempdict 200 dict def tempdict begin .fl \" prolog .sy cat \\$1\" bring in postscript file .\" the following line matches the tempdict above \\!end % tempdict % \\!PE \\!. .sp \\$2u \" move below the image .. .de pF .ie \\*(f1 .ds f1 \\n(.f .el .ie \\*(f2 .ds f2 \\n(.f .el .ie \\*(f3 .ds f3 \\n(.f .el .ie \\*(f4 .ds f4 \\n(.f .el .tm ? font overflow .ft \\$1 .. .de fP .ie !\\*(f4 \{\ . ft \\*(f4 . ds f4\" ' br \} .el .ie !\\*(f3 \{\ . ft \\*(f3 . ds f3\" ' br \} .el .ie !\\*(f2 \{\ . ft \\*(f2 . ds f2\" ' br \} .el .ie !\\*(f1 \{\ . ft \\*(f1 . ds f1\" ' br \} .el .tm ? font underflow .. .ds f1\" .ds f2\" .ds f3\" .ds f4\" '\" t .ta 8n 16n 24n 32n 40n 48n 56n 64n 72n .TH "MP3SPLT-GTK" "1" .SH "NAME" mp3splt\(hygtk \(em Gtk utility for mp3/ogg splitting without decoding. .SH "SYNOPSIS" .PP \fBmp3splt\(hygtk\fP .RB [\| \-d .IR Directory .RB \|] .RB [\| .IR Filename .RB \|] .PP .SH "DESCRIPTION" .PP \fBmp3splt\(hygtk\fP is a free software that allows you to split mp3 and ogg files from several splitpoints, without need of decoding and reencoding. It is useful to split large mp3/ogg to make smaller files or to split entire albums to obtain original tracks. If you are splitting an album you can get splitpoints and filenames automatically from servers on internet like tracktype.org or from a local .XMCD (.CDDB) or .CUE file, with the possibility to adjust them automatically with silence detection. You can also split files automatically with silence detection, or by a fixed time length. If you have a file created either with Mp3Wrap or AlbumWrap, you can easily split it. .PP The whole program is controlled by a self-describing GUI and documented in the gnome help system. Optionally the name of the input file and the output directory can be specified on the command line (see above). .SH "BUGS" .PP Report any bugs you find to the authors (see below). Advices, info requests and contributions are welcome. .SH "SEE ALSO" .PP \fBmp3splt\fP(1) \fBmp3wrap\fP(1) .SH "AUTHORS" .PP Alexandru Ionut Munteanu <io_fx@yahoo.fr> .SH "DISTRIBUTION" .PP Visit .I http://mp3splt.sourceforge.net for latest release. .PP .I mp3splt-project is .PP (C) 2002-2005 by Matteo Trotta .br (C) 2005-2012 by Alexandru Ionut Munteanu .PP Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License. This can be found as COPYING in mp3splt packages. .\" created by instant / docbook-to-man, Sun 17 Feb 2002, 11:18 .\" modified by Matteo and Alex ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/doc/Doxyfile.in�������������������������������������������������������������������0000644�0001750�0001750�00000206626�11751523736�013534� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Doxyfile 1.7.2 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" "). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = mp3splt-gtk # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, # Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English # messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, # Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, # Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = NO # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = YES # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = YES # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = YES # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = YES # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = YES # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given extension. # Doxygen has a built-in mapping, but you can override or extend it using this # tag. The format is ext=language, where ext is a file extension, and language # is one of the parsers supported by doxygen: IDL, Java, Javascript, CSharp, C, # C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, C++. For instance to make # doxygen treat .inc files as Fortran files (default is PHP), and .f files as C # (default is Fortran), use: inc=Fortran f=C. Note that for custom extensions # you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. EXTENSION_MAPPING = # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate getter # and setter methods for a property. Setting this option to YES (the default) # will make doxygen replace the get and set methods by a property in the # documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penality. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will roughly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols SYMBOL_CACHE_SIZE = 0 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespaces are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen # will list include files with double quotes in the documentation # rather than with sharp brackets. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = YES # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen # will sort the (brief and detailed) documentation of class members so that # constructors and destructors are listed first. If set to NO (the default) # the constructors will appear in the respective orders defined by # SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. # This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO # and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. SORT_MEMBERS_CTORS_1ST = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or macro consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and macros in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. # This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command <command> <input-file>, where <command> is the value of # the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. The create the layout file # that represents doxygen's defaults, run doxygen with the -l option. # You can optionally specify a file name after the option, if omitted # DoxygenLayout.xml will be used as the name of the layout file. LAYOUT_FILE = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # The WARN_NO_PARAMDOC option can be enabled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../src /usr/include/libmp3splt/ /usr/local/include/libmp3splt/ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py # *.f90 *.f *.vhd *.vhdl FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command <filter> <input-file>, where <filter> # is the value of the INPUT_FILTER tag, and <input-file> is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. # If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. # Doxygen will compare the file name with each pattern and apply the # filter if there is a match. # The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. # Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = YES # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = doxygen # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the stylesheet and background images # according to this color. Hue is specified as an angle on a colorwheel, # see http://en.wikipedia.org/wiki/Hue for more information. # For instance the value 0 represents red, 60 is yellow, 120 is green, # 180 is cyan, 240 is blue, 300 purple, and 360 is red again. # The allowed range is 0 to 359. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of # the colors in the HTML output. For a value of 0 the output will use # grayscales only. A value of 255 will produce the most vivid colors. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to # the luminance component of the colors in the HTML output. Values below # 100 gradually make the output lighter, whereas values above 100 make # the output darker. The value divided by 100 is the actual gamma applied, # so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, # and 100 does not change the gamma. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting # this to NO can help when comparing the output of multiple runs. HTML_TIMESTAMP = YES # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. # See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html # for more information. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.doxygen.mp3splt-gtk # When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style # string, e.g. com.mycompany.MyDocSet.documentation. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = YES # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated # that can be used as input for Qt's qhelpgenerator to generate a # Qt Compressed Help (.qch) of the generated HTML documentation. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can # be used to specify the file name of the resulting .qch file. # The path specified is relative to the HTML output folder. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = org.doxygen.Project # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to # add. For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see # <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters"> # Qt Help Project / Custom Filters</a>. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's # filter section matches. # <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes"> # Qt Help Project / Filter Attributes</a>. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can # be used to specify the location of Qt's qhelpgenerator. # If non-empty doxygen will try to run qhelpgenerator on the generated # .qhp file. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files # will be generated, which together with the HTML files, form an Eclipse help # plugin. To install this plugin and make it available under the help contents # menu in Eclipse, the contents of the directory containing the HTML and XML # files needs to be copied into the plugins directory of eclipse. The name of # the directory within the plugins directory should be the same as # the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before # the help appears. GENERATE_ECLIPSEHELP = NO # A unique identifier for the eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have # this name. ECLIPSE_DOC_ID = org.doxygen.mp3splt_gtk # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [0,1..20]) # that doxygen will group on one line in the generated HTML documentation. # Note that a value of 0 will completely suppress the enum values from appearing in the overview section. ENUM_VALUES_PER_LINE = 4 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to YES, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). # Windows users are probably better off using the HTML help feature. GENERATE_TREEVIEW = YES # By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, # and Class Hierarchy pages using a tree view instead of an ordered list. USE_INLINE_TREES = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open # links to external symbols imported via tag files in a separate window. EXT_LINKS_IN_WINDOW = NO # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are # not supported properly for IE 6.0, but are supported on all modern browsers. # Note that when changing this option you need to delete any form_*.png files # in the HTML output before the changes have effect. FORMULA_TRANSPARENT = YES # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax # (see http://www.mathjax.org) which uses client side Javascript for the # rendering instead of using prerendered bitmaps. Use this if you do not # have LaTeX installed or if you want to formulas look prettier in the HTML # output. When enabled you also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. USE_MATHJAX = NO # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination # directory should contain the MathJax.js script. For instance, if the mathjax # directory is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to the mathjax.org site, so you can quickly see the result without installing # MathJax, but it is strongly recommended to install a local copy of MathJax # before deployment. MATHJAX_RELPATH = http://www.mathjax.org/mathjax # When the SEARCHENGINE tag is enabled doxygen will generate a search box # for the HTML output. The underlying search engine uses javascript # and DHTML and should work on any modern browser. Note that when using # HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets # (GENERATE_DOCSET) there is already a search function so this one should # typically be disabled. For large projects the javascript based search engine # can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. SEARCHENGINE = NO # When the SERVER_BASED_SEARCH tag is enabled the search engine will be # implemented using a PHP enabled web server instead of at the web client # using Javascript. Doxygen will generate the search PHP script and index # file to put on the web server. The advantage of the server # based approach is that it scales better to large projects and allows # full text search. The disadvantages are that it is more difficult to setup # and does not have live searching capabilities. SERVER_BASED_SEARCH = NO #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = NO # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. # Note that when enabling USE_PDFLATEX this option is only used for # generating bitmaps for formulas in the HTML output, but not in the # Makefile that is written to the output directory. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = NO # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = NO # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO # If LATEX_SOURCE_CODE is set to YES then doxygen will include # source code with syntax highlighting in the LaTeX output. # Note that which sources are shown also depends on other settings # such as SOURCE_BROWSER. LATEX_SOURCE_CODE = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. # This is useful # if you want to understand what is going on. # On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option also works with HAVE_DOT disabled, but it is recommended to # install and use dot, since it yields more powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = NO # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is # allowed to run in parallel. When set to 0 (the default) doxygen will # base this on the number of processors available in the system. You can set it # explicitly to a value larger than 0 to get control over the balance # between CPU load and processing speed. DOT_NUM_THREADS = 0 # By default doxygen will write a font called FreeSans.ttf to the output # directory and reference it in all dot files that doxygen generates. This # font does not include all possible unicode characters however, so when you need # these (or just want a differently looking font) you can specify the font name # using DOT_FONTNAME. You need need to make sure dot is able to find the font, # which can be done by putting it in a standard location or by setting the # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory # containing the font. DOT_FONTNAME = FreeSans.ttf # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the output directory to look for the # FreeSans.ttf font (which doxygen will put there itself). If you specify a # different font using DOT_FONTNAME you can set the path where dot # can find it using this tag. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = YES # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = YES # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif. # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the # \mscfile command). MSCFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES ����������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/������������������������������������������������������������������������������0000755�0001750�0001750�00000000000�11753562414�011505� 5����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/main_win.c��������������������������������������������������������������������0000644�0001750�0001750�00000064356�11753562262�013411� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The main window * * main file that initialises the menubar, the toolbar, * the tabs, about window, status error messages * *********************************************************/ //we include the "config.h" file from the config options #ifdef HAVE_CONFIG_H #include "config.h" #else #define VERSION "0.7.2" #define PACKAGE_NAME "mp3splt-gtk" #endif #include <string.h> #include "export.h" #include <gtk/gtk.h> #include <glib/gi18n.h> #include <libmp3splt/mp3splt.h> #include <gdk/gdkkeysyms.h> #ifdef __WIN32__ #include <windows.h> #include <shlwapi.h> #endif #include "util.h" #include "main_win.h" #include "mp3splt-gtk.h" #include "tree_tab.h" #include "split_files.h" #include "utilities.h" #include "preferences_tab.h" #include "freedb_tab.h" #include "special_split.h" #include "utilities.h" #include "player_tab.h" #include "player.h" #include "messages.h" #include "import.h" #include "preferences_manager.h" #include "player_tab.h" #include "ui_manager.h" //main window GtkWidget *window = NULL; GtkAccelGroup *window_accel_group = NULL; //status bar GtkWidget *status_bar; //if we are on the preferences tab, then TRUE gint preferences_tab = FALSE; //player box GtkWidget *player_box; //the split freedb button GtkWidget *split_freedb_button; //new window for the progress bar GtkWidget *percent_progress_bar; //filename and path for the file to split gchar *filename_to_split; gchar *filename_path_of_split; //if we are currently splitting gint we_are_splitting = FALSE; gint we_quit_main_program = FALSE; GtkWidget *player_vbox = NULL; //stop button to cancel the split GtkWidget *cancel_button = NULL; extern GtkWidget *mess_history_dialog; extern GtkWidget *da; extern GtkWidget *progress_bar; extern GArray *splitpoints; extern gint selected_id; extern splt_state *the_state; extern splt_freedb_results *search_results; extern GList *player_pref_list; extern GList *text_options_list; extern gchar **split_files; extern gint max_split_files; extern gint selected_player; extern silence_wave *silence_points; extern gint number_of_silence_points; extern ui_state *ui; GtkWidget *playlist_box = NULL; //close the window and exit button function void quit(GtkWidget *widget, gpointer data) { save_preferences(NULL, NULL); if (we_are_splitting) { gint err = SPLT_OK; mp3splt_stop_split(the_state,&err); print_status_bar_confirmation(err); we_quit_main_program = TRUE; put_status_message(_(" info: stopping the split process before exiting")); } //quit the player: currently closes gstreamer if (player_is_running()) { player_quit(); } g_list_free(player_pref_list); g_list_free(text_options_list); g_array_free(splitpoints, TRUE); if (silence_points) { g_free(silence_points); silence_points = NULL; number_of_silence_points = 0; } gtk_main_quit(); } void main_window_drag_data_received(GtkWidget *window, GdkDragContext *drag_context, gint x, gint y, GtkSelectionData *data, guint info, guint time, gpointer user_data) { const gchar *received_data = (gchar *) gtk_selection_data_get_text(data); if (received_data != NULL) { gchar **drop_filenames = NULL; drop_filenames = g_strsplit(received_data, "\n", 0); gint current_index = 0; gchar *current_filename = drop_filenames[current_index]; while (current_filename != NULL) { gchar *filename = NULL; if (strstr(current_filename, "file:") == current_filename) { filename = g_filename_from_uri(current_filename, NULL, NULL); } else { gint fname_malloc_size = strlen(current_filename) + 1; filename = g_malloc(sizeof(gchar) * fname_malloc_size); g_snprintf(filename, fname_malloc_size, "%s", current_filename); } remove_end_slash_n_r_from_filename(filename); if (is_filee(filename)) { handle_import(filename); } if (filename) { g_free(filename); filename = NULL; } g_free(current_filename); current_index++; current_filename = drop_filenames[current_index]; } if (drop_filenames) { g_free(drop_filenames); drop_filenames = NULL; } } } gboolean configure_window_callback(GtkWindow *window, GdkEvent *event, gpointer data) { ui_state *ui = (ui_state *)data; ui_set_main_win_position(ui, event->configure.x, event->configure.y); ui_set_main_win_size(ui, event->configure.width, event->configure.height); return FALSE; } void initialize_window() { window = gtk_window_new(GTK_WINDOW_TOPLEVEL); g_signal_connect(G_OBJECT(window), "configure-event", G_CALLBACK(configure_window_callback), ui); window_accel_group = gtk_accel_group_new(); gtk_window_add_accel_group(GTK_WINDOW(window), window_accel_group); gtk_window_set_title(GTK_WINDOW(window), PACKAGE_NAME" "VERSION); gtk_container_set_border_width (GTK_CONTAINER (window), 0); g_signal_connect(G_OBJECT(window), "delete_event", G_CALLBACK(quit), NULL); g_signal_connect(G_OBJECT(window), "drag-data-received", G_CALLBACK(main_window_drag_data_received), NULL); gtk_drag_dest_set(window, GTK_DEST_DEFAULT_MOTION | GTK_DEST_DEFAULT_DROP, drop_types, 3, GDK_ACTION_COPY | GDK_ACTION_MOVE); GString *Imagefile = g_string_new(""); build_path(Imagefile, PIXMAP_PATH, "mp3splt-gtk_ico"ICON_EXT); GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(Imagefile->str, NULL); gtk_window_set_default_icon(pixbuf); g_string_free(Imagefile, TRUE); } void activate_url(GtkAboutDialog *about, const gchar *link, gpointer data) { #ifdef __WIN32__ char default_browser[512] = { '\0' }; DWORD dwType, dwSize = sizeof(default_browser) - 1; SHGetValue(HKEY_CURRENT_USER, TEXT("Software\\Clients\\StartMenuInternet"), TEXT(""), &dwType, default_browser, &dwSize); if (default_browser[0] != '\0') { SHGetValue(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Clients\\StartMenuInternet"), TEXT(""), &dwType, default_browser, &dwSize); } if (default_browser[0] != '\0') { char browser_exe[2048] = { '\0' }; dwSize = sizeof(browser_exe) - 1; char browser_exe_registry[1024] = { '\0' }; snprintf(browser_exe_registry, 1024, "SOFTWARE\\Clients\\StartMenuInternet\\%s\\shell\\open\\command\\", default_browser); SHGetValue(HKEY_LOCAL_MACHINE, TEXT(browser_exe_registry), TEXT(""), &dwType, browser_exe, &dwSize); if (browser_exe[0] != '\0') { gint browser_command_size = strlen(browser_exe) + strlen(link) + 2; char *browser_command = g_malloc(sizeof(char) * browser_command_size); if (browser_command) { snprintf(browser_command, browser_command_size, "%s %s", browser_exe, link); STARTUPINFO si; PROCESS_INFORMATION pinf; ZeroMemory(&si, sizeof(si)); si.cb = sizeof(si); ZeroMemory(&pinf, sizeof(pinf)); if (! CreateProcess(NULL, browser_command, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pinf)) { put_status_message(_("Error launching external command")); } CloseHandle(pinf.hProcess); CloseHandle(pinf.hThread); g_free(browser_command); browser_command = NULL; } } } #endif } void about_window(GtkWidget *widget, gpointer *data) { GtkWidget *dialog = gtk_about_dialog_new(); GString *Imagefile = g_string_new(""); build_path(Imagefile, PIXMAP_PATH, "mp3splt-gtk.png"); GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(Imagefile->str, NULL); gtk_about_dialog_set_logo(GTK_ABOUT_DIALOG(dialog), pixbuf); g_string_free(Imagefile, TRUE); gtk_about_dialog_set_program_name(GTK_ABOUT_DIALOG(dialog), (gchar *)PACKAGE_NAME); gtk_about_dialog_set_version(GTK_ABOUT_DIALOG(dialog), VERSION); gtk_about_dialog_set_copyright(GTK_ABOUT_DIALOG(dialog), PACKAGE_NAME" : Copyright © 2005-2011 Alexandru" " Munteanu \n mp3splt : Copyright © 2002-2005 Matteo Trotta"); gchar *b1 = NULL; gchar b3[100] = { '\0' }; b1 = (gchar *)_("using"); gchar library_version[20] = { '\0' }; mp3splt_get_version(library_version); g_snprintf(b3, 100, "-%s-\n%s libmp3splt %s", _("release of "MP3SPLT_GTK_DATE), b1, library_version); gtk_about_dialog_set_comments(GTK_ABOUT_DIALOG(dialog), b3); gtk_about_dialog_set_license(GTK_ABOUT_DIALOG(dialog), "\n" "This program is free software; you can " "redistribute it and/or \n" "modify it under the terms of the GNU General Public License\n" "as published by the Free Software " "Foundation; either version 2\n" "of the License, or (at your option) " "any later version.\n\n" "This program is distributed in the " "hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even " "the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" "GNU General Public License for more details.\n\n" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write " "to the Free Software\n" "Foundation, Inc., 59 Temple Place -" "Suite 330, Boston, MA 02111-1307, " "USA."); g_signal_connect(G_OBJECT(dialog), "activate-link", G_CALLBACK(activate_url), NULL); gtk_about_dialog_set_website_label(GTK_ABOUT_DIALOG(dialog), "http://mp3splt.sourceforge.net"); gtk_about_dialog_set_website(GTK_ABOUT_DIALOG(dialog), "http://mp3splt.sourceforge.net"); gtk_about_dialog_set_translator_credits(GTK_ABOUT_DIALOG(dialog), "Mario Blättermann <mariobl@gnome.org>"); gtk_dialog_run(GTK_DIALOG(dialog)); gtk_widget_destroy(dialog); } /*! Removes status bar message Used for the ok button event. */ void remove_status_message() { guint status_id = gtk_statusbar_get_context_id(GTK_STATUSBAR(status_bar), "mess"); gtk_statusbar_pop(GTK_STATUSBAR(status_bar), status_id); } /*! Output a info message to the status message bar The message type is automatically set to SPLT_MESSAGE_INFO. If you don't want that use put_status_message instead. \param text The text that has to be displayed. */ void put_status_message(const gchar *text) { put_status_message_with_type(text, SPLT_MESSAGE_INFO); } /*! Output a message to the status message bar. \param text The text that has to be displayed. \param splt_message_type The type of the message. If the type is to be set to SPLT_MESSAGE_INFO put_status_message can be used instead; The enum for the message types is defined in libmp3splt.h */ void put_status_message_with_type(const gchar *text, splt_message_type mess_type) { if (mess_type == SPLT_MESSAGE_INFO) { guint status_id = gtk_statusbar_get_context_id(GTK_STATUSBAR(status_bar), "mess"); gtk_statusbar_pop(GTK_STATUSBAR(status_bar), status_id); gtk_statusbar_push(GTK_STATUSBAR(status_bar), status_id, text); } put_message_in_history(text, mess_type); } //!event for the cancel button void cancel_button_event(GtkWidget *widget, gpointer data) { gint err = SPLT_OK; mp3splt_stop_split(the_state,&err); print_status_bar_confirmation(err); if (widget != NULL) { gtk_widget_set_sensitive(widget, FALSE); } put_status_message(_(" info: stopping the split process.. please wait")); } //!event for the split button void split_button_event(GtkWidget *widget, gpointer data) { //if we are not splitting if (!we_are_splitting) { mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_DEFAULT); gint err = SPLT_OK; put_options_from_preferences(); //output format if (mp3splt_get_int_option(the_state, SPLT_OPT_SPLIT_MODE,&err) != SPLT_OPTION_NORMAL_MODE) { if (!get_checked_output_radio_box()) { mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_FORMAT); } } filename_to_split = inputfilename_get(); filename_path_of_split = outputdirectory_get(); if (filename_path_of_split != NULL) { we_are_splitting = TRUE; create_thread(split_it, NULL, TRUE, NULL); gtk_widget_set_sensitive(GTK_WIDGET(cancel_button), TRUE); } else { put_status_message((gchar *)_(" error: no file selected")); } } else { put_status_message((gchar *)_(" error: split in progress...")); } } //!creates the toolbar GtkWidget *create_toolbar() { GtkWidget *box = gtk_hbox_new(FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(box), 0); gtk_box_pack_start(GTK_BOX(box), gtk_image_new_from_stock(GTK_STOCK_APPLY, GTK_ICON_SIZE_SMALL_TOOLBAR), FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(box), gtk_label_new(_("Split !")), FALSE, FALSE, 0); GtkWidget *split_button = gtk_button_new(); gtk_container_add(GTK_CONTAINER(split_button), box); gtk_widget_set_tooltip_text(split_button,_("Split !")); gtk_container_set_border_width(GTK_CONTAINER(split_button), 0); gtk_button_set_relief(GTK_BUTTON(split_button), GTK_RELIEF_HALF); g_signal_connect(G_OBJECT(split_button), "clicked", G_CALLBACK(split_button_event), NULL); GtkWidget *vbox = gtk_vbox_new(FALSE, 0); GtkWidget *hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox), split_button, TRUE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); return vbox; } //!event for the "messages history" button void show_messages_history_dialog(GtkWidget *widget, gpointer data) { gtk_widget_show_all(GTK_WIDGET(mess_history_dialog)); } #ifndef NO_GNOME void ShowHelp() { GError* gerror = NULL; gtk_show_uri(gdk_screen_get_default(), "ghelp:mp3splt-gtk", gtk_get_current_event_time(), &gerror); } #endif static gchar *my_dgettext(const gchar *key, const gchar *domain) { return dgettext("mp3splt-gtk", key); } //!creates the menu bar GtkWidget *create_menu_bar() { GtkWidget *menu_box = gtk_hbox_new(FALSE,0); static GtkActionEntry const entries[] = { //name, stock id, label { "FileMenu", NULL, N_("_File") }, { "HelpMenu", NULL, N_("_Help") }, //name, stock id, label, accelerator, tooltip { "Open", GTK_STOCK_OPEN, N_("_Open..."), "<Ctrl>O", N_("Open"), G_CALLBACK(browse_button_event) }, { "Import", GTK_STOCK_FILE, N_("_Import splitpoints..."), "<Ctrl>I", N_("Import"), G_CALLBACK(import_event) }, { "Export", GTK_STOCK_SAVE_AS, N_("_Export splitpoints..."), "<Ctrl>E", N_("Export"), G_CALLBACK(ChooseCueExportFile) }, { "Split", GTK_STOCK_APPLY, N_("_Split !"), "<Ctrl>S", N_("Split"), G_CALLBACK(split_button_event) }, { "Messages history", GTK_STOCK_INFO, N_("Messages _history"), "<Ctrl>H", N_("Messages history"), G_CALLBACK(show_messages_history_dialog) }, { "Quit", GTK_STOCK_QUIT, N_("_Quit"), "<Ctrl>Q", N_("Quit"), G_CALLBACK(quit) }, #ifndef NO_GNOME { "Contents", GTK_STOCK_HELP, N_("_Contents"), "F1", N_("Contents"), G_CALLBACK(ShowHelp)}, #endif { "About", GTK_STOCK_ABOUT, N_("_About"), "<Ctrl>A", N_("About"), G_CALLBACK(about_window)}, }; static const gchar *ui_info = "<ui>" " <menubar name='MenuBar'>" " <menu action='FileMenu'>" " <menuitem action='Open'/>" " <separator/>" " <menuitem action='Import'/>" " <menuitem action='Export'/>" " <separator/>" " <menuitem action='Split'/>" " <menuitem action='Messages history'/>" " <separator/>" " <menuitem action='Quit'/>" " </menu>" " <menu action='HelpMenu'>" #ifndef NO_GNOME " <menuitem action='Contents'/>" #endif " <menuitem action='About'/>" " </menu>" " </menubar>" "</ui>"; GtkActionGroup *actions = gtk_action_group_new ("Actions"); gtk_action_group_set_translation_domain(actions, "mp3splt-gtk"); gtk_action_group_set_translate_func(actions, (GtkTranslateFunc)my_dgettext, NULL, NULL); //adding the GtkActionEntry to GtkActionGroup gtk_action_group_add_actions (actions, entries, G_N_ELEMENTS(entries), NULL); GtkUIManager *ui = gtk_ui_manager_new (); //set action to the ui gtk_ui_manager_insert_action_group (ui, actions, 0); //set the actions to the window gtk_window_add_accel_group (GTK_WINDOW (window), gtk_ui_manager_get_accel_group (ui)); //add ui from string gtk_ui_manager_add_ui_from_string(ui, ui_info, -1, NULL); //attach the menu gtk_box_pack_start (GTK_BOX (menu_box), gtk_ui_manager_get_widget(ui, "/MenuBar"), FALSE, FALSE, 0); GtkWidget *toolbar = (GtkWidget *)create_toolbar(); gtk_box_pack_start(GTK_BOX(menu_box), toolbar, TRUE, TRUE, 0); return menu_box; } /*!creates a cool button with image from stock \param label_text The text that has to be displayed on the button \param stock_id The name of the stock image to be displayed on the button \param toggle_or_not TRUE means we create a toggle button */ GtkWidget *create_cool_button(gchar *stock_id, gchar *label_text, gint toggle_or_not) { GtkWidget *box; GtkWidget *label; GtkWidget *image; GtkWidget *button; box = gtk_hbox_new(FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER (box), 2); image = gtk_image_new_from_stock(stock_id, GTK_ICON_SIZE_MENU); gtk_box_pack_start(GTK_BOX(box), image, FALSE, FALSE, 3); if (label_text != NULL) { label = gtk_label_new (label_text); gtk_label_set_text_with_mnemonic(GTK_LABEL(label),label_text); gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 3); } if (toggle_or_not) { button = gtk_toggle_button_new(); } else { button = gtk_button_new(); } gtk_container_add(GTK_CONTAINER(button),box); return button; } //!main vbox GtkWidget *create_main_vbox() { //big ain box contailning all with statusbar GtkWidget *main_vbox; //used for pages GtkWidget *frame; //the tree view GtkTreeView *tree_view; //the main window tabbed notebook GtkWidget *notebook; /* label for the notebook */ GtkWidget *notebook_label; /* main vertical box with statusbar */ main_vbox = gtk_vbox_new (FALSE, 0); gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 0); frame = (GtkWidget *)create_choose_file_frame(); gtk_box_pack_start(GTK_BOX(main_vbox), frame, FALSE, FALSE, 0); /* tabbed notebook */ notebook = gtk_notebook_new(); gtk_box_pack_start (GTK_BOX (main_vbox), notebook, TRUE, TRUE, 0); gtk_notebook_popup_enable(GTK_NOTEBOOK(notebook)); gtk_notebook_set_show_tabs(GTK_NOTEBOOK(notebook), TRUE); gtk_notebook_set_show_border(GTK_NOTEBOOK(notebook), FALSE); gtk_notebook_set_scrollable(GTK_NOTEBOOK(notebook), TRUE); //creating the tree view GtkWidget *splitpoints_vbox; splitpoints_vbox = gtk_vbox_new (FALSE, 0); gtk_container_set_border_width (GTK_CONTAINER (splitpoints_vbox), 0); tree_view = (GtkTreeView *)create_tree_view(); frame = (GtkWidget *)create_choose_splitpoints_frame(tree_view); gtk_container_add(GTK_CONTAINER(splitpoints_vbox), frame); /* player page */ player_vbox = gtk_vbox_new(FALSE,0); notebook_label = gtk_label_new((gchar *)_("Player")); //player control frame player_box = (GtkWidget *)create_player_control_frame(tree_view); gtk_box_pack_start(GTK_BOX(player_vbox), player_box, FALSE, FALSE, 0); //playlist control frame playlist_box = (GtkWidget *)create_player_playlist_frame(); gtk_box_pack_start(GTK_BOX(player_vbox), playlist_box, TRUE, TRUE, 0); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), player_vbox, (GtkWidget *)notebook_label); /* splitpoints page */ notebook_label = gtk_label_new((gchar *)_("Splitpoints")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), splitpoints_vbox, (GtkWidget *)notebook_label); /* split files frame */ GtkWidget *split_files_vbox = gtk_vbox_new (FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(split_files_vbox), 0); frame = (GtkWidget *)create_split_files(); gtk_container_add(GTK_CONTAINER(split_files_vbox), frame); notebook_label = gtk_label_new((gchar *)_("Split files")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), split_files_vbox, (GtkWidget *)notebook_label); /* freedb page */ GtkWidget *freedb_vbox; freedb_vbox = gtk_vbox_new (FALSE, 0); gtk_container_set_border_width (GTK_CONTAINER (freedb_vbox), 0); frame = (GtkWidget *)create_freedb_frame(); gtk_container_add(GTK_CONTAINER(freedb_vbox), frame); notebook_label = gtk_label_new((gchar *)_("FreeDB")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), freedb_vbox, (GtkWidget *)notebook_label); /* special split page */ GtkWidget *special_split_vbox; special_split_vbox = gtk_vbox_new (FALSE, 0); gtk_container_set_border_width (GTK_CONTAINER (special_split_vbox), 0); frame = (GtkWidget *)create_special_split_page(); gtk_container_add(GTK_CONTAINER(special_split_vbox), frame); notebook_label = gtk_label_new(_("Type of split")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), special_split_vbox, (GtkWidget *)notebook_label); /* preferences page */ GtkWidget *preferences_vbox; preferences_vbox = gtk_vbox_new (FALSE, 0); gtk_container_set_border_width (GTK_CONTAINER (preferences_vbox), 0); frame = (GtkWidget *)create_choose_preferences(); gtk_container_add(GTK_CONTAINER(preferences_vbox), frame); notebook_label = gtk_label_new((gchar *)_("Preferences")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), preferences_vbox, (GtkWidget *)notebook_label); /* progress bar */ percent_progress_bar = gtk_progress_bar_new(); gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(percent_progress_bar), 0.0); gtk_progress_bar_set_text(GTK_PROGRESS_BAR(percent_progress_bar), ""); #if GTK_MAJOR_VERSION >= 3 gtk_progress_bar_set_show_text(GTK_PROGRESS_BAR(percent_progress_bar), TRUE); #endif GtkWidget *hbox = gtk_hbox_new (FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox), percent_progress_bar, TRUE, TRUE, 0); //stop button cancel_button = create_cool_button(GTK_STOCK_CANCEL,_("S_top"), FALSE); g_signal_connect(G_OBJECT(cancel_button), "clicked", G_CALLBACK(cancel_button_event), NULL); gtk_box_pack_start(GTK_BOX(hbox), cancel_button, FALSE, TRUE, 3); gtk_widget_set_sensitive(GTK_WIDGET(cancel_button), FALSE); gtk_box_pack_start(GTK_BOX(main_vbox), hbox, FALSE, FALSE, 2); /* show messages history dialog */ create_mess_history_dialog(); /* statusbar */ status_bar = gtk_statusbar_new(); GtkWidget *mess_history_button = create_cool_button(GTK_STOCK_INFO, NULL, FALSE); gtk_button_set_relief(GTK_BUTTON(mess_history_button), GTK_RELIEF_NONE); gtk_widget_set_tooltip_text(mess_history_button,_("Messages history")); gtk_box_pack_start(GTK_BOX(status_bar), mess_history_button, FALSE, FALSE, 0); g_signal_connect(G_OBJECT(mess_history_button), "clicked", G_CALLBACK(show_messages_history_dialog), NULL); gtk_box_pack_start(GTK_BOX(main_vbox), status_bar, FALSE, FALSE, 0); return main_vbox; } static void move_and_resize_main_window() { const ui_main_window *main_win = ui_get_main_window_infos(ui); gint x = main_win->root_x_pos; gint y = main_win->root_y_pos; if (x != 0 && y != 0) { gtk_window_move(GTK_WINDOW(window), x, y); } else { gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); } gtk_window_resize(GTK_WINDOW(window), main_win->width, main_win->height); } void create_all() { #ifdef __WIN32__ set_language(); #endif initialize_window(); GtkWidget *window_vbox = gtk_vbox_new(FALSE, 0); gtk_container_add(GTK_CONTAINER(window), window_vbox); GtkWidget *menu_bar; menu_bar = (GtkWidget *)create_menu_bar(); gtk_box_pack_start(GTK_BOX(window_vbox), menu_bar, FALSE, FALSE, 0); GtkWidget *main_vbox = (GtkWidget *)create_main_vbox(); gtk_box_pack_start(GTK_BOX(window_vbox), main_vbox, TRUE, TRUE, 0); load_preferences(); move_and_resize_main_window(); gtk_widget_show_all(window); if (selected_player != PLAYER_GSTREAMER) { gtk_widget_hide(playlist_box); } hide_freedb_spinner(); } /*!Output an error message from libmp3splt to the status bar \param The error number from the library. */ void print_status_bar_confirmation(gint confirmation) { char *error_from_library = mp3splt_get_strerror(the_state, confirmation); if (error_from_library != NULL) { put_status_message(error_from_library); free(error_from_library); error_from_library = NULL; } } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/main_win.h��������������������������������������������������������������������0000644�0001750�0001750�00000004706�11753301705�013400� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: main_win.h * * header of main_win.c * *********************************************************/ #ifndef MAIN_WIN_H #define MAIN_WIN_H #include <libmp3splt/mp3splt.h> #ifdef __WIN32__ #define PIXMAP_PATH "" #define IMAGEDIR "" #endif #define WINDOW_X 700 #define WINDOW_Y 450 enum { DROP_PLAIN, DROP_STRING, DROP_URI_LIST }; static const GtkTargetEntry drop_types[] = { { "text/plain", 0, DROP_PLAIN }, { "STRING", 0, DROP_STRING }, { "text/uri-list", 0, DROP_URI_LIST } }; //close the window and exit button function void quit(GtkWidget *widget, gpointer data); void initialize_window(); void about_window(GtkWidget *widget, gpointer *data); void remove_status_message(); void put_status_message(const gchar *text); void put_status_message_with_type(const gchar *text, splt_message_type mess_type); void split_button_event(); GtkWidget *create_toolbar(); GtkWidget *create_menu_bar(); GtkWidget *create_cool_button(gchar *stock_id, gchar *label_text, gint toggle_or_not); GtkWidget *create_main_vbox(); void create_all(); void print_status_bar_confirmation(gint confirmation); void cancel_button_event(GtkWidget *widget, gpointer data); void put_status_message(const gchar *text); #endif ����������������������������������������������������������mp3splt-gtk-0.7.2/src/utilities.c�������������������������������������������������������������������0000644�0001750�0001750�00000012030�11753301701�013566� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * miscellaneous utilities * * Miscellaneous utilities like the check if a string may * contain a valid file- or directory name. ********************************************************/ #include <gtk/gtk.h> #include <stdlib.h> #include <string.h> #include <libmp3splt/mp3splt.h> #include <glib.h> #include <glib/gi18n.h> #include <glib/gstdio.h> #include "player.h" #include "preferences_tab.h" #include "main_win.h" //!check if the string passed as an argument points to a file gint is_filee(const gchar *fname) { if (fname == NULL) { return FALSE; } struct stat buffer; gint status; status = g_stat(fname, &buffer); if (status == 0) { //if it is a file if (S_ISREG(buffer.st_mode) != 0) { return TRUE; } else { return FALSE; } } else { return FALSE; } } /*!check if a string points to a directory \todo why guchar? */ gint check_if_dir(guchar *fname) { struct stat buffer; g_stat((gchar *)fname, &buffer); //if it is a directory if (S_ISDIR(buffer.st_mode) != 0) return TRUE; else return FALSE; } /*! check if a sting points to a file \todo - Why guchar ? - And what is the difference to is_filee? */ gint check_if_file(guchar *fname) { struct stat buffer; g_stat((gchar *)fname, &buffer); //if it is a file if (S_ISREG(buffer.st_mode) != 0) return TRUE; else return FALSE; } /*! Issues the message "Processing file <filename>" into the message bar \param filename The filename that has to be printed. */ void print_processing_file(gchar *filename) { gint fname_status_size = (strlen(filename) + 255); gchar *fname_status = g_malloc(sizeof(char) * fname_status_size); g_snprintf(fname_status, fname_status_size, _("Processing file '%s' ..."), filename); put_status_message(fname_status); if (fname_status) { free(fname_status); fname_status = NULL; } } /*! Does this GtkContainer contain that object? \param GtkContainer The Container that has to be searched for the child object. \param my_child The child that has to be searched for. */ gboolean container_has_child(GtkContainer *container, GtkWidget *my_child) { GList *children = gtk_container_get_children(GTK_CONTAINER(container)); int i = 0; GtkWidget *child = NULL; while ((child = g_list_nth_data(children, i)) != NULL) { if (child == my_child) { return TRUE; } i++; } return FALSE; } /*! Removes trailing \\r or \\n characters from a filename \todo Cannot find any code that removes a trailing slash as this function would suggest */ void remove_end_slash_n_r_from_filename(char *filename) { if (filename == NULL) { return; } gint index = strlen(filename) - 1; while (index >= 0) { if (filename[index] == '\n' || filename[index] == '\r') { filename[index] = '\0'; } else if (filename[index] != '\0') { break; } index--; } } /*! transform text to utf8 \param text The text thet has to be converted \param free_or_not: TRUE if this function has to g_free() the text if during conversion it has to copy the text to a new (e.G. larger) buffer. \param must_be_freed reads true, if this function has allocated a new chunk of memory to have somewhere to put the output string in - which means that the memory the output string is in has to be freed after usage. \return */ gchar *transform_to_utf8(gchar *text, gint free_or_not, gint *must_be_freed) { gchar *temp; gsize bytes_read; gsize bytes_written; if(!(g_utf8_validate (text, -1,NULL)) && (text != NULL)) { temp = g_convert(text, -1, "UTF-8", "ISO-8859-1", &bytes_read, &bytes_written, NULL); if (free_or_not) g_free(text); *must_be_freed = TRUE; return temp; } *must_be_freed = FALSE; return text; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/utilities.h�������������������������������������������������������������������0000644�0001750�0001750�00000003123�11753301340�013575� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef UTILITIES_H gint check_if_we_have_player(); gint is_filee(const gchar *fname); gint check_if_dir(guchar *fname); gint check_if_file(guchar *fname); void print_processing_file(gchar *filename); void remove_end_slash_n_r_from_filename(char *filename); gchar *transform_to_utf8(gchar *text, gint free_or_not, gint *must_be_freed); gboolean container_has_child(GtkContainer *cont, GtkWidget *my_child); #define UTILITIES_H #endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/export.c����������������������������������������������������������������������0000644�0001750�0001750�00000014333�11533022607�013105� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2010 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The function that allows to export the current list of * splitpoints as a Cue sheet. *********************************************************/ #include <gtk/gtk.h> #include <glib/gi18n.h> #include <string.h> #include <errno.h> #include <stdio.h> #include "export.h" #include "main_win.h" #include "player_tab.h" #include "tree_tab.h" #include "ui_manager.h" #include "widgets_helper.h" extern ui_state *ui; /*! Export the current split points into a cue file \param filename The name of the file to write to. \todo - If we have previously imported the file... ...do we want to handle all the tags we do not use --- but that have been there? And if yes: How do we handle them best? - Is there any file format that better suits us than a cue file? - if our input file does not have an extension... ...how to handle this? (we output the extension in the "FILE" line.) - Is there really no simple C/GTK+ function for quoting quotes? */ void export_file(const gchar* filename) { FILE *outfile; GtkTreeModel *model; GtkTreeIter iter; if((outfile=fopen(filename,"w"))==0) { put_status_message((gchar *)strerror(errno)); return; }; if(fprintf(outfile,"REM CREATOR \"MP3SPLT_GTK\"\n")<0) { put_status_message((gchar *)strerror(errno)); return; } if(fprintf(outfile,"REM SPLT_TITLE_IS_FILENAME\n")<0) { put_status_message((gchar *)strerror(errno)); return; } // Determine which type our input file is of. gchar *extension=inputfilename_get(); gchar *tmp; while((tmp=strchr(extension,'.'))) { extension=++tmp; } if(fprintf(outfile,"FILE \"%s\" %s\n",inputfilename_get(),extension)<0) { put_status_message((gchar *)strerror(errno)); return; }; model = gtk_tree_view_get_model(tree_view); //if the table is not empty get iter number if(gtk_tree_model_get_iter_first(model, &iter)) { // The track number gint count = 1; do { // All information we need for this track gchar *description; gint mins,secs,hundr; gboolean keep; gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, COL_DESCRIPTION,&description, COL_MINUTES, &mins, COL_SECONDS, &secs, COL_HUNDR_SECS, &hundr, COL_CHECK, &keep, -1); // Sometimes libmp3splt introduces an additional split point // way below the end of the file --- that breaks cue import // later => skip all points with extremely high time values. if(mins<357850) { // Output the track header if(fprintf(outfile,"\tTRACK %02i AUDIO\n",count++)<0) { put_status_message((gchar *)strerror(errno)); return; }; // Output the track description escaping any quotes if(fprintf(outfile,"\t\tTITLE \"")<0) { put_status_message((gchar *)strerror(errno)); return; } gchar *outputchar; for(outputchar=description;*outputchar!='\0';outputchar++) { if(*outputchar=='"') { if(fprintf(outfile,"\\\"")<0) { put_status_message((gchar *)strerror(errno)); return; } } else { if(fprintf(outfile,"%c",*outputchar)<0) { put_status_message((gchar *)strerror(errno)); return; } } } if(fprintf(outfile,"\" \n")<0) { put_status_message((gchar *)strerror(errno)); return; }; if(!keep) { if(fprintf(outfile,"\t\tREM NOKEEP\n")<0) { put_status_message((gchar *)strerror(errno)); return; } } if(fprintf(outfile,"\t\tINDEX 01 %d:%02d:%02d\n",mins,secs,hundr)<0) { put_status_message((gchar *)strerror(errno)); return; } } } while(gtk_tree_model_iter_next(model, &iter)); } fclose(outfile); } //! Choose the file to save the session to void ChooseCueExportFile(GtkWidget *widget, gpointer data) { // file chooser GtkWidget *file_chooser; //creates the dialog file_chooser = gtk_file_chooser_dialog_new(_("Select cue file name"), NULL, GTK_FILE_CHOOSER_ACTION_SAVE, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT, NULL); wh_set_browser_directory_handler(ui, file_chooser); // tells the dialog to list only cue files GtkWidget *our_filter = (GtkWidget *)gtk_file_filter_new(); gtk_file_filter_set_name (GTK_FILE_FILTER(our_filter), _("cue files (*.cue)")); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.cue"); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), GTK_FILE_FILTER(our_filter)); gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(file_chooser),TRUE); if (gtk_dialog_run(GTK_DIALOG(file_chooser)) == GTK_RESPONSE_ACCEPT) { gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(file_chooser)); //Write the output file export_file(filename); g_free(filename); } //destroy the dialog gtk_widget_destroy(file_chooser); } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/export.h����������������������������������������������������������������������0000644�0001750�0001750�00000002512�11505753062�013113� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2010 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef _EXPORT_H #define _EXPORT_H #include <gtk/gtk.h> void export_file(const gchar* filename); void ChooseCueExportFile(GtkWidget *widget, gpointer data); #endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/widgets_helper.c��������������������������������������������������������������0000644�0001750�0001750�00000014571�11753301343�014576� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * * this file contains the code for the widgets helpers. ********************************************************/ #include "widgets_helper.h" static guint _wh_add_row_to_table(); static GtkWidget *_wh_put_in_new_hbox_with_margin(GtkWidget *widget, gint margin); static void _wh_attach_to_table(GtkWidget *table, GtkWidget *widget, guint start_column, guint end_column, guint row, int expand); static void _wh_add_in_table_with_label(GtkWidget *table, const gchar *label_text, GtkWidget *widget, int expand); /*! Generates a window portion containing a caption and a vbox This function works like a chapter heading in a text processing system: You specify a title and the text processor returns an object consisting of a title and a vbox you can put the chapter contents in.\n Is used to generate the consecutive named sections in a preferences tab. */ GtkWidget *wh_set_title_and_get_vbox(GtkWidget *widget, const gchar *title) { GtkWidget *vbox = gtk_vbox_new(FALSE, 0); GtkWidget *label = gtk_label_new(NULL); gtk_label_set_markup(GTK_LABEL(label), title); GtkWidget *label_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(label_hbox), label, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), label_hbox, FALSE, FALSE, 5); GtkWidget *hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox), widget, TRUE, TRUE, 16); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); return vbox; } GtkWidget *wh_new_table() { GtkWidget *table = gtk_table_new(1, 2, FALSE); gtk_table_set_col_spacing(GTK_TABLE(table), 0, 0); gtk_table_set_col_spacing(GTK_TABLE(table), 1, 5); return table; } void wh_add_in_table(GtkWidget *table, GtkWidget *widget) { guint last_row = _wh_add_row_to_table(table); _wh_attach_to_table(table, widget, 1, 3, last_row, TRUE); } void wh_add_in_table_with_label_expand(GtkWidget *table, const gchar *label_text, GtkWidget *widget) { _wh_add_in_table_with_label(table, label_text, widget, TRUE); } void wh_add_in_table_with_label(GtkWidget *table, const gchar *label_text, GtkWidget *widget) { _wh_add_in_table_with_label(table, label_text, widget, FALSE); } GtkWidget *wh_put_in_new_hbox_with_margin_level(GtkWidget *widget, gint margin_level) { return _wh_put_in_new_hbox_with_margin(widget, 6 * margin_level); } GtkWidget *wh_new_entry(void *callback) { GtkWidget *entry = gtk_entry_new(); gtk_editable_set_editable(GTK_EDITABLE(entry), TRUE); if (callback) { g_signal_connect(G_OBJECT(entry), "changed", G_CALLBACK(callback), NULL); } return entry; } GtkWidget *wh_new_button(const gchar *button_label) { return gtk_button_new_with_mnemonic(button_label); } void wh_get_widget_size(GtkWidget *widget, gint *width, gint *height) { #if GTK_MAJOR_VERSION <= 2 GtkAllocation allocation; gtk_widget_get_allocation(widget, &allocation); if (width != NULL) { *width = allocation.width; } if (height != NULL) { *height= allocation.height; } #else if (width != NULL) { *width = gtk_widget_get_allocated_width(widget); } if (height != NULL) { *height = gtk_widget_get_allocated_height(widget); } #endif } static void _wh_folder_changed_event(GtkFileChooser *chooser, gpointer data) { ui_state *ui = (ui_state *) data; ui_set_browser_directory(ui, gtk_file_chooser_get_current_folder(chooser)); } void wh_set_browser_directory_handler(ui_state *ui, GtkWidget* dialog) { const gchar *browser_dir = ui_get_browser_directory(ui); if (browser_dir) { gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(dialog), browser_dir); } g_signal_connect(GTK_FILE_CHOOSER(dialog), "current-folder-changed", G_CALLBACK(_wh_folder_changed_event), ui); } static guint _wh_add_row_to_table(GtkWidget *table) { guint rows; guint columns; g_object_get(G_OBJECT(table), "n-rows", &rows, "n-columns", &columns, NULL); guint new_rows = rows + 1; gtk_table_resize(GTK_TABLE(table), new_rows, columns); gtk_table_set_row_spacing(GTK_TABLE(table), new_rows - 1, 4); return new_rows; } static GtkWidget *_wh_put_in_new_hbox_with_margin(GtkWidget *widget, gint margin) { GtkWidget *hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox), widget, TRUE, TRUE, margin); return hbox; } static void _wh_add_in_table_with_label(GtkWidget *table, const gchar *label_text, GtkWidget *widget, int expand) { guint last_row = _wh_add_row_to_table(table); GtkWidget *label = gtk_label_new(label_text); gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5); _wh_attach_to_table(table, label, 1, 2, last_row, FALSE); _wh_attach_to_table(table, widget, 2, 3, last_row, expand); } static void _wh_attach_to_table(GtkWidget *table, GtkWidget *widget, guint start_column, guint end_column, guint row, int expand) { GtkWidget *my_widget = widget; GtkWidget *hbox; GtkAttachOptions xoptions = GTK_FILL; if (expand) { xoptions |= GTK_EXPAND; } else { hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(hbox), widget, FALSE, FALSE, 0); my_widget = hbox; } gtk_table_attach(GTK_TABLE(table), my_widget, start_column, end_column, row-1, row, xoptions, GTK_FILL | GTK_EXPAND, 0, 0); } ���������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/widgets_helper.h��������������������������������������������������������������0000644�0001750�0001750�00000003714�11753301335�014601� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef WIDGETS_HELPER_H #include <gtk/gtk.h> #include "ui_manager.h" GtkWidget *wh_set_title_and_get_vbox(GtkWidget *widget, const gchar *title); GtkWidget *wh_put_in_new_hbox_with_margin_level(GtkWidget *widget, gint margin_level); GtkWidget *wh_new_table(); void wh_add_in_table(GtkWidget *table, GtkWidget *widget); void wh_add_in_table_with_label(GtkWidget *table, const gchar *label_text, GtkWidget *widget); void wh_add_in_table_with_label_expand(GtkWidget *table, const gchar *label_text, GtkWidget *widget); GtkWidget *wh_new_entry(gpointer callback); GtkWidget *wh_new_button(const gchar *button_label); void wh_get_widget_size(GtkWidget *widget, gint *width, gint *height); void wh_set_browser_directory_handler(ui_state *ui, GtkWidget* dialog); #define WIDGETS_HELPER_H #endif ����������������������������������������������������mp3splt-gtk-0.7.2/src/preferences_tab.c�������������������������������������������������������������0000644�0001750�0001750�00000130702�11753301323�014711� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * along with this program; if not, write to the Free Software * You should have received a copy of the GNU General Public License * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The preferences tab * * this file contains the code for the preferences tab where * the preferences can be chosen. ********************************************************/ #include <gtk/gtk.h> #include <glib/gi18n.h> #include <glib.h> #include <glib/gstdio.h> #include <string.h> #include <libmp3splt/mp3splt.h> #include "preferences_tab.h" #include "player.h" #include "util.h" #include "player_tab.h" #include "utilities.h" #include "main_win.h" #include "preferences_manager.h" #include "widgets_helper.h" #include "combo_helper.h" #include "radio_helper.h" #include "options_manager.h" #include "ui_manager.h" #include "widgets_helper.h" /*! The name of the output directory. Can be accessed by void outputdirectory_set() and outputdirectory_get(). */ GString *outputdirname = NULL; //! The textbox that shows the name of the output directory GtkWidget *directory_entry = NULL; //!output for the cddb,cue and freedb file output GtkWidget *output_entry = NULL; GtkWidget *output_label = NULL; //!choose the player box GtkWidget *player_combo_box = NULL; GtkWidget *player_refresh_rate_spinner = NULL; //!list where we stock the preferences combo box content GList *player_pref_list = NULL; GList *text_options_list = NULL; //selected player gint selected_player = PLAYER_GSTREAMER; //!the language radio button GtkWidget *radio_button = NULL; //!radio button for choosing default or custom output options GtkWidget *radio_output = NULL; //!radio button for tags options GtkWidget *tags_radio = NULL; GtkWidget *tags_version_radio = NULL; //split options //!frame mode option GtkWidget *frame_mode = NULL; //!auto-adjust option GtkWidget *adjust_mode = NULL; // when ticked, name for split tag derived from filename GtkWidget *names_from_filename = NULL; GtkWidget *create_dirs_from_output_files = NULL; /*!defgroup modeparameters adjust mode parameters @{ */ GtkWidget *spinner_adjust_gap = NULL; GtkWidget *gap_label = NULL; GtkWidget *spinner_adjust_offset = NULL; GtkWidget *offset_label = NULL; GtkWidget *spinner_adjust_threshold = NULL; GtkWidget *threshold_label = NULL; //@} /*!defgroup options for tags from filename @{ */ GtkWidget *replace_underscore_by_space_check_box = NULL; GtkComboBox *artist_text_properties_combo = NULL; GtkComboBox *album_text_properties_combo = NULL; GtkComboBox *title_text_properties_combo = NULL; GtkComboBox *comment_text_properties_combo = NULL; GtkComboBox *genre_combo = NULL; GtkWidget *comment_tag_entry = NULL; GtkWidget *regex_entry = NULL; GtkWidget *test_regex_fname_entry = NULL; GtkWidget *sample_result_label = NULL; GtkWidget *extract_tags_box = NULL; //@} extern gint timeout_value; extern GtkWidget *player_box; extern GtkWidget *playlist_box; extern GtkWidget *queue_files_button; extern splt_state *the_state; extern gint selected_split_mode; extern gint split_file_mode; extern GtkWidget *spinner_time; extern GtkWidget *spinner_equal_tracks; extern gint file_browsed; static GtkWidget *create_extract_tags_from_filename_options_box(); static GtkWidget *create_test_regex_table(); extern void clear_current_description(void); extern void copy_filename_to_current_description(const gchar *fname); extern ui_state *ui; /*!Returns the selected language must be free() the result after using it. */ GString *get_checked_language() { GSList *radio_button_list; radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_button)); GtkWidget *our_button; //0 = german, 1 = french, 2 = english our_button = (GtkWidget *)g_slist_nth_data(radio_button_list, 0); if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(our_button))) { return g_string_new("de_DE"); } else { our_button = (GtkWidget *)g_slist_nth_data(radio_button_list, 1); if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON(our_button))) { return g_string_new("fr_FR"); } } return g_string_new("en"); } //!returns the checked output radio box gboolean get_checked_output_radio_box() { //get the radio buttons GSList *radio_button_list; radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_output)); //we check which bubble is checked GtkToggleButton *test; gint i, selected = 0; //O = default output mode //1 = custom output mode for(i = 0; i<2;i++) { test = (GtkToggleButton *)g_slist_nth_data(radio_button_list,i); if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(test))) { selected = i; } } return selected; } //!returns the checked tags radio box gint get_checked_tags_version_radio_box() { //get the radio buttons GSList *radio_button_list; radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(tags_version_radio)); //we check which bubble is checked GtkToggleButton *test; gint i, selected = 0; //O = The same version as the original file //1 = ID3v1 //2 = ID3v2 //3 = ID3v1 & ID3v2 for(i = 0; i<4;i++) { test = (GtkToggleButton *)g_slist_nth_data(radio_button_list,i); if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(test))) { selected = i; } } return selected; } //! Set the name of the output directory void outputdirectory_set(gchar *dirname) { if(dirname!=NULL) { // Free the old string before allocating memory for the new one if(outputdirname!=NULL)g_string_free(outputdirname,TRUE); outputdirname=g_string_new(dirname); // Update the text in the gui field displaying the output // directory - if this field is already there and thus can // be updated. if(directory_entry!=NULL) gtk_entry_set_text(GTK_ENTRY(directory_entry), dirname); } } /*! Get the name of the output directory \return - The name of the output directory, if a directory is set. - NULL, otherwise. */ gchar* outputdirectory_get() { if(outputdirname!=NULL) return(outputdirname->str); else return NULL; } void save_preferences(GtkWidget *widget, gpointer data) { gchar *filename = get_preferences_filename(); GKeyFile *my_key_file = g_key_file_new(); g_key_file_load_from_file(my_key_file, filename, G_KEY_FILE_KEEP_COMMENTS, NULL); //save_path g_key_file_set_string(my_key_file, "split", "save_path", outputdirectory_get()); //player g_key_file_set_integer(my_key_file, "player", "default_player", selected_player); g_key_file_set_integer(my_key_file, "player", "refresh_rate", gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(player_refresh_rate_spinner))); #ifdef __WIN32__ //language GString *selected_lang; selected_lang = (GString *)get_checked_language(); g_key_file_set_string(my_key_file, "general", "language", selected_lang->str); g_string_free(selected_lang, TRUE); selected_lang = NULL; #endif //frame mode g_key_file_set_boolean(my_key_file, "split", "frame_mode", gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(frame_mode))); //adjust mode g_key_file_set_boolean(my_key_file, "split", "adjust_mode", gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(adjust_mode))); //adjust threshold g_key_file_set_integer(my_key_file, "split", "adjust_threshold", gtk_spin_button_get_value(GTK_SPIN_BUTTON(spinner_adjust_threshold)) * 100); //adjust offset g_key_file_set_integer(my_key_file, "split", "adjust_offset", gtk_spin_button_get_value(GTK_SPIN_BUTTON(spinner_adjust_offset)) * 100); //adjust gap g_key_file_set_integer(my_key_file, "split", "adjust_gap", gtk_spin_button_get_value(GTK_SPIN_BUTTON(spinner_adjust_gap))); g_key_file_set_boolean(my_key_file, "output", "splitpoint_names_from_filename", gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(names_from_filename))); //output format g_key_file_set_string(my_key_file, "output", "output_format", gtk_entry_get_text(GTK_ENTRY(output_entry))); //default output format g_key_file_set_boolean(my_key_file, "output", "default_output_format", get_checked_output_radio_box()); g_key_file_set_boolean(my_key_file, "output", "create_dirs_if_needed", gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(create_dirs_from_output_files))); //tags g_key_file_set_integer(my_key_file, "split", "tags", rh_get_active_value(tags_radio)); //replace underscores by space g_key_file_set_boolean(my_key_file, "split", "replace_underscore_by_space", gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(replace_underscore_by_space_check_box))); //artist text properties g_key_file_set_integer(my_key_file, "split", "artist_text_properties", ch_get_active_value(artist_text_properties_combo)); //album text properties g_key_file_set_integer(my_key_file, "split", "album_text_properties", ch_get_active_value(album_text_properties_combo)); //title text properties g_key_file_set_integer(my_key_file, "split", "title_text_properties", ch_get_active_value(title_text_properties_combo)); //comment text properties g_key_file_set_integer(my_key_file, "split", "comment_text_properties", ch_get_active_value(comment_text_properties_combo)); //genre gchar *genre_value = ch_get_active_str_value(genre_combo); if (genre_value != NULL) { g_key_file_set_string(my_key_file, "split", "genre", genre_value); } const gchar *comment = gtk_entry_get_text(GTK_ENTRY(comment_tag_entry)); if (comment != NULL) { g_key_file_set_string(my_key_file, "split", "default_comment_tag", comment); } const gchar *regex_text = gtk_entry_get_text(GTK_ENTRY(regex_entry)); if (regex_text != NULL) { g_key_file_set_string(my_key_file, "split", "tags_from_filename_regex", regex_text); } const gchar *test_regex_fname = gtk_entry_get_text(GTK_ENTRY(test_regex_fname_entry)); if (test_regex_fname_entry != NULL) { g_key_file_set_string(my_key_file, "split", "test_regex_fname", test_regex_fname); } //tags version g_key_file_set_integer(my_key_file, "split", "tags_version", get_checked_tags_version_radio_box()); //type of split: split mode g_key_file_set_integer(my_key_file, "split", "split_mode", selected_split_mode); //time value g_key_file_set_integer(my_key_file, "split", "split_mode_time_value", gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner_time))); //type of split: file mode g_key_file_set_integer(my_key_file, "split", "file_mode", split_file_mode); //equal time tracks value g_key_file_set_integer(my_key_file, "split", "split_mode_equal_time_tracks", gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner_equal_tracks))); const ui_main_window *main_win = ui_get_main_window_infos(ui); g_key_file_set_integer(my_key_file, "gui", "root_x_position", main_win->root_x_pos); g_key_file_set_integer(my_key_file, "gui", "root_y_position", main_win->root_y_pos); g_key_file_set_integer(my_key_file, "gui", "width", main_win->width); g_key_file_set_integer(my_key_file, "gui", "height", main_win->height); const char *browser_directory = ui_get_browser_directory(ui); if (browser_directory != NULL) { g_key_file_set_string(my_key_file, "gui", "browser_directory", browser_directory); } gchar *key_data = g_key_file_to_data(my_key_file, NULL, NULL); //we write to the preference file FILE *preferences_file; preferences_file = (FILE *)g_fopen(filename,"w"); g_fprintf(preferences_file,"%s", key_data); fclose(preferences_file); preferences_file = NULL; //we free memory g_free(key_data); g_key_file_free(my_key_file); if (filename) { g_free(filename); filename = NULL; } } //!creates a scrolled window GtkWidget *create_scrolled_window() { GtkWidget *scrolled_window; scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(scrolled_window), GTK_SHADOW_NONE); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); return scrolled_window; } //!cddb and cue output mode radio box event void output_radio_box_event(GtkToggleButton *radio_b, gpointer data) { GtkWidget *output_label = (GtkWidget *)data; gint selected = get_checked_output_radio_box(); //custom output mode if (selected == 0) { gtk_widget_set_sensitive(GTK_WIDGET(output_entry), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(output_label), TRUE); mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_FORMAT); } else { gtk_widget_set_sensitive(GTK_WIDGET(output_entry), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(output_label), FALSE); mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_DEFAULT); } save_preferences(NULL, NULL); } //! Create the "select language" box GtkWidget *create_language_box() { GtkWidget *radio_vbox = gtk_vbox_new (FALSE, 0); radio_button = gtk_radio_button_new_with_label(NULL, "English"); g_signal_connect(GTK_TOGGLE_BUTTON(radio_button), "toggled", G_CALLBACK(save_preferences), NULL); gtk_box_pack_start(GTK_BOX(radio_vbox), radio_button, TRUE, TRUE, 0); radio_button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(radio_button), "Français"); g_signal_connect(GTK_TOGGLE_BUTTON(radio_button), "toggled", G_CALLBACK(save_preferences), NULL); gtk_box_pack_start(GTK_BOX(radio_vbox), radio_button, TRUE, TRUE, 0); radio_button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(radio_button), "Deutsch"); g_signal_connect(GTK_TOGGLE_BUTTON (radio_button), "toggled", G_CALLBACK(save_preferences), NULL); gtk_box_pack_start(GTK_BOX(radio_vbox), radio_button, TRUE, TRUE, 0); return wh_set_title_and_get_vbox(radio_vbox, _("<b>Choose language (requires restart)</b>")); } //! Creates the language preferences page GtkWidget *create_pref_language_page() { GtkWidget *language_hbox = gtk_hbox_new(FALSE, 0);; //vertical box inside the scrolled window GtkWidget *language_inside_hbox = gtk_hbox_new(FALSE, 0);; //scrolled window GtkWidget *scrolled_window; scrolled_window = create_scrolled_window(); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), GTK_WIDGET(language_inside_hbox)); gtk_box_pack_start(GTK_BOX(language_hbox), scrolled_window, TRUE, TRUE, 0); //vertical box inside the horizontal box from the scrolled window GtkWidget *vbox = gtk_vbox_new(FALSE, 0);; gtk_box_pack_start(GTK_BOX(language_inside_hbox), vbox, TRUE, TRUE, 10); GtkWidget *lang_box = create_language_box(); gtk_box_pack_start(GTK_BOX(vbox), lang_box, FALSE, FALSE, 10); return language_hbox; } //! Events for browse dir button void browse_dir_button_event(GtkWidget *widget, gpointer data) { // file chooser GtkWidget *dir_chooser; //creates and shows the dialog dir_chooser = gtk_file_chooser_dialog_new(_("Choose split directory"), NULL, GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); wh_set_browser_directory_handler(ui, dir_chooser); if (gtk_dialog_run(GTK_DIALOG(dir_chooser)) == GTK_RESPONSE_ACCEPT) { gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dir_chooser)); outputdirectory_set(filename); g_free (filename); filename = NULL; save_preferences(NULL, NULL); } //destroys dialog gtk_widget_destroy(dir_chooser); } //!disables adjust parameters void disable_adjust_spinners() { gtk_widget_set_sensitive(spinner_adjust_threshold, FALSE); gtk_widget_set_sensitive(spinner_adjust_offset, FALSE); gtk_widget_set_sensitive(spinner_adjust_gap, FALSE); gtk_widget_set_sensitive(threshold_label, FALSE); gtk_widget_set_sensitive(offset_label, FALSE); gtk_widget_set_sensitive(gap_label, FALSE); } //!enables adjust parameters void enable_adjust_spinners() { gtk_widget_set_sensitive(spinner_adjust_threshold, TRUE); gtk_widget_set_sensitive(spinner_adjust_offset, TRUE); gtk_widget_set_sensitive(spinner_adjust_gap, TRUE); gtk_widget_set_sensitive(threshold_label, TRUE); gtk_widget_set_sensitive(offset_label, TRUE); gtk_widget_set_sensitive(gap_label, TRUE); } //!adjust event void adjust_event(GtkToggleButton *adjust_mode, gpointer user_data) { //if it is toggled if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(adjust_mode))) { if (!gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(frame_mode))) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(frame_mode),TRUE); } enable_adjust_spinners(); } else { //disable spinners disable_adjust_spinners(); } save_preferences(NULL, NULL); } //!frame mode event void frame_event(GtkToggleButton *frame_mode, gpointer user_data) { if (!gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(frame_mode))) { if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(adjust_mode))) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(adjust_mode),FALSE); } } save_preferences(NULL, NULL); } void splitpoints_from_filename_event(GtkToggleButton *frame_mode, gpointer user_data) { gint splitpoints_from_filename = FALSE; if (!gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(names_from_filename))) { splitpoints_from_filename = FALSE; } else { splitpoints_from_filename = TRUE; } if (splitpoints_from_filename == TRUE && file_browsed == TRUE) { copy_filename_to_current_description(inputfilename_get()); } else { clear_current_description(); } save_preferences(NULL, NULL); } //!action for the set default prefs button void set_default_prefs_event(GtkWidget *widget, gpointer data) { //set frame mode inactive gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(frame_mode), FALSE); //set adjust mode inactive gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(adjust_mode), FALSE); //set adjust mode preferences gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_adjust_threshold), SPLT_DEFAULT_PARAM_THRESHOLD); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_adjust_offset), SPLT_DEFAULT_PARAM_OFFSET); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_adjust_gap), SPLT_DEFAULT_PARAM_GAP); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(names_from_filename), FALSE); save_preferences(NULL, NULL); } //!events for the "set current song directory" void song_dir_button_event(GtkWidget *widget, gpointer data) { outputdirectory_set(""); save_preferences(NULL, NULL); } //!Creates the box the output directory can be choosen in GtkWidget *create_directory_box() { GtkWidget *dir_hbox = gtk_hbox_new(FALSE, 0); //directory entry directory_entry = gtk_entry_new(); gtk_editable_set_editable(GTK_EDITABLE(directory_entry), FALSE); gtk_box_pack_start(GTK_BOX(dir_hbox), directory_entry, TRUE, TRUE, 0); // Put the right text into the text box containing the output directory // name if this name was provided on command line if(outputdirectory_get()!=NULL) gtk_entry_set_text(GTK_ENTRY(directory_entry), outputdirectory_get()); //browse dir button GtkWidget *browse_dir_button = (GtkWidget *) create_cool_button(GTK_STOCK_DIRECTORY,_("Br_owse dir"), FALSE); g_signal_connect(G_OBJECT(browse_dir_button), "clicked", G_CALLBACK(browse_dir_button_event), NULL); gtk_box_pack_start(GTK_BOX(dir_hbox), browse_dir_button, FALSE, FALSE, 8); //to set the directory for split files to the current song //directory GtkWidget *song_dir_button = (GtkWidget *) create_cool_button(GTK_STOCK_CLEAR, _("_Song dir"), FALSE); g_signal_connect(G_OBJECT(song_dir_button), "clicked", G_CALLBACK(song_dir_button_event), NULL); gtk_box_pack_start(GTK_BOX(dir_hbox), song_dir_button, FALSE, FALSE, 0); return wh_set_title_and_get_vbox(dir_hbox, _("<b>Directory for split files</b>")); } //! Creates the box for split mode selection GtkWidget *create_split_options_box() { GtkWidget *vbox = gtk_vbox_new(FALSE, 0); //names from filename names_from_filename = gtk_check_button_new_with_mnemonic(_("_Splitpoint name from filename (testing)")); gtk_box_pack_start(GTK_BOX(vbox), names_from_filename, FALSE, FALSE, 0); g_signal_connect(G_OBJECT(names_from_filename), "toggled", G_CALLBACK(splitpoints_from_filename_event), NULL); create_dirs_from_output_files = gtk_check_button_new_with_mnemonic(_("_Create directories from filenames ")); gtk_box_pack_start(GTK_BOX(vbox), create_dirs_from_output_files, FALSE, FALSE, 0); g_signal_connect(G_OBJECT(create_dirs_from_output_files), "toggled", G_CALLBACK(save_preferences), NULL); //frame mode option frame_mode = gtk_check_button_new_with_mnemonic(_("F_rame mode (useful" " for mp3 VBR) (mp3 only)")); gtk_box_pack_start(GTK_BOX(vbox), frame_mode, FALSE, FALSE, 0); g_signal_connect(G_OBJECT(frame_mode), "toggled", G_CALLBACK(frame_event), NULL); //auto adjust option adjust_mode = gtk_check_button_new_with_mnemonic(_("_Auto-adjust mode (uses" " silence detection to auto-adjust splitpoints)")); gtk_box_pack_start(GTK_BOX(vbox), adjust_mode, FALSE, FALSE, 0); g_signal_connect(G_OBJECT(adjust_mode), "toggled", G_CALLBACK(adjust_event), NULL); //parameters for the adjust option GtkWidget *horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox), horiz_fake, FALSE, FALSE, 0); GtkWidget *param_vbox = gtk_vbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(horiz_fake), param_vbox, FALSE, FALSE, 25); //threshold level horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); threshold_label = gtk_label_new(_("Threshold level (dB):")); gtk_box_pack_start(GTK_BOX(horiz_fake), threshold_label, FALSE, FALSE, 0); GtkAdjustment *adj = (GtkAdjustment *) gtk_adjustment_new(0.0, -96.0, 0.0, 0.5, 10.0, 0.0); spinner_adjust_threshold = gtk_spin_button_new (adj, 0.5, 2); g_signal_connect(G_OBJECT(spinner_adjust_threshold), "value_changed", G_CALLBACK(save_preferences), NULL); gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_adjust_threshold, FALSE, FALSE, 6); //offset level horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); offset_label = gtk_label_new(_("Cutpoint offset (0 is the begin of silence " "and 1 the end):")); gtk_box_pack_start(GTK_BOX(horiz_fake), offset_label, FALSE, FALSE, 0); //adjustement for the offset spinner adj = (GtkAdjustment *)gtk_adjustment_new(0.0, -2, 2, 0.05, 10.0, 0.0); //the offset spinner spinner_adjust_offset = gtk_spin_button_new (adj, 0.05, 2); g_signal_connect(G_OBJECT(spinner_adjust_offset), "value_changed", G_CALLBACK(save_preferences), NULL); gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_adjust_offset, FALSE, FALSE, 6); //gap level (seconds) horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); gap_label = gtk_label_new(_("Gap level (seconds around splitpoint to " "search for silence):")); gtk_box_pack_start(GTK_BOX(horiz_fake), gap_label, FALSE, FALSE, 0); adj = (GtkAdjustment *) gtk_adjustment_new(0.0, 0, 2000, 1.0, 10.0, 0.0); spinner_adjust_gap = gtk_spin_button_new (adj, 1, 0); g_signal_connect(G_OBJECT(spinner_adjust_gap), "value_changed", G_CALLBACK(save_preferences), NULL); gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_adjust_gap, FALSE, FALSE, 6); disable_adjust_spinners(); //set default preferences button //horizontal box fake for the gap level horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox), horiz_fake, FALSE, FALSE, 0); GtkWidget *set_default_prefs_button = (GtkWidget *)create_cool_button(GTK_STOCK_PREFERENCES, _("Set _default split" " options"),FALSE); g_signal_connect(G_OBJECT(set_default_prefs_button), "clicked", G_CALLBACK(set_default_prefs_event), NULL); gtk_box_pack_start (GTK_BOX (horiz_fake), set_default_prefs_button, FALSE, FALSE, 5); return wh_set_title_and_get_vbox(vbox, _("<b>Split options</b>")); } //!creates the splitpoints preferences page GtkWidget *create_pref_splitpoints_page() { GtkWidget *general_hbox = gtk_hbox_new(FALSE,0); GtkWidget *inside_hbox = gtk_hbox_new(FALSE,0); GtkWidget *scrolled_window = create_scrolled_window(); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), GTK_WIDGET(inside_hbox)); gtk_box_pack_start(GTK_BOX(general_hbox), scrolled_window, TRUE, TRUE, 0); //vertical box inside the horizontal box from the scrolled window GtkWidget *inside_vbox = gtk_vbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(inside_hbox), inside_vbox, TRUE, TRUE, 5); GtkWidget *dir_box = create_directory_box(); gtk_box_pack_start(GTK_BOX(inside_vbox), dir_box, FALSE, FALSE, 2); GtkWidget *split_options_box = create_split_options_box(); gtk_box_pack_start(GTK_BOX(inside_vbox), split_options_box, FALSE, FALSE, 1); return general_hbox; } //!event when changing the combo box player void player_combo_box_event(GtkComboBox *widget, gpointer data) { disconnect_button_event(NULL, NULL); selected_player = ch_get_active_value(widget); if (selected_player == PLAYER_GSTREAMER) { hide_connect_button(); gtk_widget_show(playlist_box); } else { show_connect_button(); close_playlist_popup_window_event(NULL, NULL); gtk_widget_hide(playlist_box); } gtk_widget_show(player_box); gtk_widget_show(queue_files_button); save_preferences(NULL, NULL); } void update_timeout_value(GtkWidget *refresh_rate_spinner, gpointer data) { timeout_value = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(player_refresh_rate_spinner)); restart_player_timer(); save_preferences(NULL, NULL); } //!Create the box the player backend can be selected with GtkWidget *create_player_options_box() { GtkWidget *vbox = gtk_vbox_new(FALSE, 0); GtkWidget *horiz_fake = gtk_hbox_new(FALSE, 0); GtkWidget *label = gtk_label_new(_("Player:")); gtk_box_pack_start(GTK_BOX(horiz_fake), label, FALSE, FALSE, 0); player_combo_box = GTK_WIDGET(ch_new_combo()); #ifndef NO_AUDACIOUS ch_append_to_combo(GTK_COMBO_BOX(player_combo_box), "Audacious", PLAYER_AUDACIOUS); #endif ch_append_to_combo(GTK_COMBO_BOX(player_combo_box), "SnackAmp", PLAYER_SNACKAMP); #ifndef NO_GSTREAMER ch_append_to_combo(GTK_COMBO_BOX(player_combo_box), "GStreamer", PLAYER_GSTREAMER); #endif g_signal_connect(G_OBJECT(player_combo_box), "changed", G_CALLBACK(player_combo_box_event), NULL); gtk_box_pack_start(GTK_BOX(horiz_fake), player_combo_box, FALSE, FALSE, 5); gtk_box_pack_start(GTK_BOX(vbox), horiz_fake, FALSE, FALSE, 0); //Player Splitpoints view refresh rate horiz_fake = gtk_hbox_new(FALSE,0); label = gtk_label_new(_("Refresh player every ")); gtk_box_pack_start(GTK_BOX(horiz_fake), label, FALSE, FALSE, 0); GtkAdjustment *adj = (GtkAdjustment *) gtk_adjustment_new(0.0, 20, 1000, 10.0, 100.0, 0.0); player_refresh_rate_spinner = gtk_spin_button_new(adj, 0, 0); gtk_spin_button_set_wrap(GTK_SPIN_BUTTON(player_refresh_rate_spinner), TRUE); g_signal_connect(G_OBJECT(player_refresh_rate_spinner), "value_changed", G_CALLBACK(update_timeout_value), NULL); gtk_box_pack_start(GTK_BOX(horiz_fake), player_refresh_rate_spinner, FALSE, FALSE, 5); gtk_box_pack_start(GTK_BOX(horiz_fake), gtk_label_new(_("milliseconds.")), FALSE, FALSE, 3); gtk_box_pack_start(GTK_BOX(vbox), horiz_fake, FALSE, FALSE, 5); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(horiz_fake), gtk_label_new(_("Higher refresh rate decreases CPU usage - default is 200.")), FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), horiz_fake, FALSE, FALSE, 5); return wh_set_title_and_get_vbox(vbox, _("<b>Player options</b>")); } //!creates the player preferences page GtkWidget *create_pref_player_page() { GtkWidget *player_hbox = gtk_hbox_new(FALSE, 0);; GtkWidget *inside_hbox = gtk_hbox_new(FALSE, 0);; GtkWidget *scrolled_window = create_scrolled_window(); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), GTK_WIDGET(inside_hbox)); gtk_box_pack_start(GTK_BOX(player_hbox), scrolled_window, TRUE, TRUE, 0); //vertical box inside the horizontal box from the scrolled window GtkWidget *vbox = gtk_vbox_new(FALSE, 0);; gtk_box_pack_start(GTK_BOX(inside_hbox), vbox, TRUE, TRUE, 5); //choose player combo box GtkWidget *player_options_box = create_player_options_box(); gtk_box_pack_start(GTK_BOX(vbox), player_options_box, FALSE, FALSE, 3); return player_hbox; } //!update the save buttons on an output entry event gboolean output_entry_event(GtkWidget *widget, GdkEventKey *event, gpointer user_data) { //we check if the output format is correct const char *data = gtk_entry_get_text(GTK_ENTRY(output_entry)); gint error = SPLT_OUTPUT_FORMAT_OK; mp3splt_set_oformat(the_state, data, &error); remove_status_message(); print_status_bar_confirmation(error); save_preferences(NULL, NULL); return FALSE; } //!Create the box the output file name is displayed in GtkWidget *create_output_filename_box() { GtkWidget *vbox = gtk_vbox_new(FALSE, 0); //default/custom radio buttons radio_output = gtk_radio_button_new_with_label(NULL, _("Default format")); gtk_box_pack_start(GTK_BOX(vbox), radio_output, FALSE, FALSE, 0); radio_output = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(radio_output), _("Custom format")); gtk_box_pack_start(GTK_BOX(vbox), radio_output, FALSE, FALSE, 0); //output entry GtkWidget *horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox), horiz_fake, FALSE, FALSE, 5); output_entry = gtk_entry_new(); gtk_editable_set_editable(GTK_EDITABLE(output_entry), TRUE); g_signal_connect(G_OBJECT(output_entry), "key_release_event", G_CALLBACK(output_entry_event), NULL); gtk_entry_set_max_length(GTK_ENTRY(output_entry),244); gtk_box_pack_start(GTK_BOX(horiz_fake), output_entry, TRUE, TRUE, 0); //output label horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(vbox), horiz_fake, FALSE, FALSE, 5); output_label = gtk_label_new(_(" @f - file name\n" " @a - artist name\n" " @p - performer of each song (does not" " always exist)\n" " @b - album title\n" " @t - song title\n" " @g - genre\n" " @n - track number")); gtk_box_pack_start(GTK_BOX(horiz_fake), output_label, FALSE, FALSE, 0); g_signal_connect(GTK_TOGGLE_BUTTON(radio_output), "toggled", G_CALLBACK(output_radio_box_event), output_label); return wh_set_title_and_get_vbox(vbox, _("<b>Output filename format</b>")); } //!creates the output preferences page GtkWidget *create_pref_output_page() { GtkWidget *output_hbox = gtk_hbox_new(FALSE, 0);; GtkWidget *output_inside_hbox = gtk_hbox_new(FALSE, 0);; GtkWidget *scrolled_window = create_scrolled_window(); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), GTK_WIDGET(output_inside_hbox)); gtk_box_pack_start(GTK_BOX(output_hbox), scrolled_window, TRUE, TRUE, 0); GtkWidget *vbox = gtk_vbox_new(FALSE, 0);; gtk_box_pack_start(GTK_BOX(output_inside_hbox), vbox, TRUE, TRUE, 5); GtkWidget *output_fname_box = create_output_filename_box(); gtk_box_pack_start(GTK_BOX(vbox), output_fname_box, FALSE, FALSE, 2); return output_hbox; } void change_tags_options(GtkToggleButton *button, gpointer data) { if (extract_tags_box != NULL) { if (rh_get_active_value(tags_radio) == TAGS_FROM_FILENAME) { gtk_widget_set_sensitive(extract_tags_box, SPLT_TRUE); } else { gtk_widget_set_sensitive(extract_tags_box, SPLT_FALSE); } } save_preferences(NULL, NULL); } //!Create the box for the Tags options GtkWidget *create_tags_options_box() { GtkWidget *vbox = gtk_vbox_new(FALSE, 0); tags_radio = rh_append_radio_to_vbox(tags_radio, _("Original file tags"), ORIGINAL_FILE_TAGS, change_tags_options, vbox); tags_radio = rh_append_radio_to_vbox(tags_radio, _("Default tags (cddb or cue tags)"), DEFAULT_TAGS, change_tags_options, vbox); tags_radio = rh_append_radio_to_vbox(tags_radio, _("No tags"), NO_TAGS, change_tags_options, vbox); tags_radio = rh_append_radio_to_vbox(tags_radio, _("Extract tags from filename"), TAGS_FROM_FILENAME, change_tags_options, vbox); extract_tags_box = create_extract_tags_from_filename_options_box(); gtk_widget_set_sensitive(extract_tags_box, SPLT_FALSE); gtk_box_pack_start(GTK_BOX(vbox), extract_tags_box, FALSE, FALSE, 2); return wh_set_title_and_get_vbox(vbox, _("<b>Split files tags</b>")); } static GtkComboBox *create_genre_combo() { GtkComboBox *combo = ch_new_combo(); int i = 0; for (i = 0;i < SPLT_ID3V1_NUMBER_OF_GENRES;i++) { ch_append_to_combo(combo, splt_id3v1_genres[i], 0); } g_signal_connect(G_OBJECT(combo), "changed", G_CALLBACK(save_preferences), NULL); return combo; } static GtkComboBox *create_text_preferences_combo() { GtkComboBox *combo = ch_new_combo(); ch_append_to_combo(combo, _("No change"), SPLT_NO_CONVERSION); ch_append_to_combo(combo, _("lowercase"), SPLT_TO_LOWERCASE); ch_append_to_combo(combo, _("UPPERCASE"), SPLT_TO_UPPERCASE); ch_append_to_combo(combo, _("First uppercase"), SPLT_TO_FIRST_UPPERCASE); ch_append_to_combo(combo, _("Word Uppercase"), SPLT_TO_WORD_FIRST_UPPERCASE); g_signal_connect(G_OBJECT(combo), "changed", G_CALLBACK(save_preferences), NULL); return combo; } void test_regex_event(GtkWidget *widget, gpointer data) { put_tags_from_filename_regex_options(); const gchar *test_regex_filename = gtk_entry_get_text(GTK_ENTRY(test_regex_fname_entry)); mp3splt_set_filename_to_split(the_state, test_regex_filename); gint error = SPLT_OK; splt_tags *tags = mp3splt_parse_filename_regex(the_state, &error); print_status_bar_confirmation(error); if (error >= 0) { GString *regex_result = g_string_new(NULL); g_string_append(regex_result, _("<artist>: ")); if (tags->artist) { g_string_append(regex_result, tags->artist); } g_string_append(regex_result, "\n"); g_string_append(regex_result, _("<album>: ")); if (tags->album) { g_string_append(regex_result, tags->album); } g_string_append(regex_result, "\n"); g_string_append(regex_result, _("<title>: ")); if (tags->title) { g_string_append(regex_result, tags->title); } g_string_append(regex_result, "\n"); g_string_append(regex_result, _("<genre>: ")); if (tags->genre) { g_string_append(regex_result, tags->genre); } g_string_append(regex_result, "\n"); g_string_append(regex_result, _("<comment>: ")); if (tags->comment) { g_string_append(regex_result, tags->comment); } g_string_append(regex_result, "\n"); g_string_append(regex_result, _("<year>: ")); if (tags->year) { g_string_append(regex_result, tags->year); } g_string_append(regex_result, "\n"); g_string_append(regex_result, _("<track>: ")); if (tags->track >= 0) { g_string_append_printf(regex_result, "%d", tags->track); } gchar *regex_result_text = g_string_free(regex_result, FALSE); if (regex_result_text) { gtk_label_set_text(GTK_LABEL(sample_result_label), regex_result_text); g_free(regex_result_text); } } else { gtk_label_set_text(GTK_LABEL(sample_result_label), ""); } mp3splt_free_one_tag(tags); } static GtkWidget *create_extract_tags_from_filename_options_box() { GtkWidget *table = wh_new_table(); regex_entry = wh_new_entry(save_preferences); wh_add_in_table_with_label_expand(table, _("Regular expression:"), regex_entry); GtkWidget *regex_label = gtk_label_new(_( "Above enter PERL-like regular expression using named subgroups.\nFollowing names are recognized:\n" " (?<artist>) - artist name\n" " (?<album>) - album title\n" " (?<title>) - track title\n" " (?<tracknum>) - current track number\n" //" (?<tracks>) - total number of tracks\n" " (?<year>) - year of emission\n" " (?<genre>) - genre\n" " (?<comment>) - comment")); gtk_misc_set_alignment(GTK_MISC(regex_label), 0.0, 0.5); wh_add_in_table(table, wh_put_in_new_hbox_with_margin_level(regex_label, 2)); text_options_list = g_list_append(text_options_list, GINT_TO_POINTER(SPLT_NO_CONVERSION)); text_options_list = g_list_append(text_options_list, GINT_TO_POINTER(SPLT_TO_LOWERCASE)); text_options_list = g_list_append(text_options_list, GINT_TO_POINTER(SPLT_TO_UPPERCASE)); text_options_list = g_list_append(text_options_list, GINT_TO_POINTER(SPLT_TO_FIRST_UPPERCASE)); text_options_list = g_list_append(text_options_list, GINT_TO_POINTER(SPLT_TO_WORD_FIRST_UPPERCASE)); replace_underscore_by_space_check_box = gtk_check_button_new_with_mnemonic(_("_Replace underscores by spaces")); g_signal_connect(G_OBJECT(replace_underscore_by_space_check_box), "toggled", G_CALLBACK(save_preferences), NULL); wh_add_in_table(table, replace_underscore_by_space_check_box); artist_text_properties_combo = create_text_preferences_combo(); wh_add_in_table_with_label(table, _("Artist text properties:"), GTK_WIDGET(artist_text_properties_combo)); album_text_properties_combo = create_text_preferences_combo(); wh_add_in_table_with_label(table, _("Album text properties:"), GTK_WIDGET(album_text_properties_combo)); title_text_properties_combo = create_text_preferences_combo(); wh_add_in_table_with_label(table, _("Title text properties:"), GTK_WIDGET(title_text_properties_combo)); comment_text_properties_combo = create_text_preferences_combo(); wh_add_in_table_with_label(table, _("Comment text properties:"), GTK_WIDGET(comment_text_properties_combo)); genre_combo = create_genre_combo(); wh_add_in_table_with_label(table, _("Genre tag:"), GTK_WIDGET(genre_combo)); comment_tag_entry = wh_new_entry(save_preferences); wh_add_in_table_with_label_expand(table, _("Comment tag:"), comment_tag_entry); GtkWidget *test_regex_expander = gtk_expander_new(_("Regular expression test")); gtk_container_add(GTK_CONTAINER(test_regex_expander), create_test_regex_table()); wh_add_in_table(table, test_regex_expander); return wh_put_in_new_hbox_with_margin_level(GTK_WIDGET(table), 3); } static GtkWidget *create_test_regex_table() { GtkWidget *table = wh_new_table(); GtkWidget *sample_test_hbox = gtk_hbox_new(FALSE, 0); test_regex_fname_entry = wh_new_entry(save_preferences); gtk_box_pack_start(GTK_BOX(sample_test_hbox), test_regex_fname_entry, TRUE, TRUE, 0); GtkWidget *test_regex_button = wh_new_button(_("_Test")); gtk_box_pack_start(GTK_BOX(sample_test_hbox), test_regex_button, FALSE, FALSE, 5); g_signal_connect(G_OBJECT(test_regex_button), "clicked", G_CALLBACK(test_regex_event), NULL); wh_add_in_table_with_label_expand(table, _("Sample filename:"), sample_test_hbox); sample_result_label = gtk_label_new(""); gtk_misc_set_alignment(GTK_MISC(sample_result_label), 0.0, 0.5); wh_add_in_table_with_label_expand(table, _("Sample result:"), sample_result_label); return wh_put_in_new_hbox_with_margin_level(GTK_WIDGET(table), 3); } //!Create the box we can select with if to create ID1 and/or ID2 Tags GtkWidget *create_tags_version_box() { GtkWidget *vbox = gtk_vbox_new(FALSE, 0); tags_version_radio = gtk_radio_button_new_with_label(NULL, _("ID3v1 & ID3v2 tags")); gtk_box_pack_start(GTK_BOX(vbox), tags_version_radio, FALSE, FALSE, 0); g_signal_connect(GTK_TOGGLE_BUTTON(tags_version_radio), "toggled", G_CALLBACK(save_preferences), NULL); tags_version_radio = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(tags_version_radio), _("ID3v2 tags")); gtk_box_pack_start(GTK_BOX(vbox), tags_version_radio, FALSE, FALSE, 0); g_signal_connect(GTK_TOGGLE_BUTTON(tags_version_radio), "toggled", G_CALLBACK(save_preferences), NULL); tags_version_radio = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(tags_version_radio), _("ID3v1 tags")); g_signal_connect(GTK_TOGGLE_BUTTON(tags_version_radio), "toggled", G_CALLBACK(save_preferences), NULL); gtk_box_pack_start(GTK_BOX(vbox), tags_version_radio, FALSE, FALSE, 0); tags_version_radio = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (tags_version_radio),_("Same tags version as the input file")); g_signal_connect(GTK_TOGGLE_BUTTON(tags_version_radio), "toggled", G_CALLBACK(save_preferences), NULL); gtk_box_pack_start(GTK_BOX(vbox), tags_version_radio, FALSE, FALSE, 0); return wh_set_title_and_get_vbox(vbox, _("<b>Tags version (mp3 only)</b>")); } //! Create the tags settings tab GtkWidget *create_pref_tags_page() { GtkWidget *outside_vbox = gtk_vbox_new(FALSE, 0);; GtkWidget *inside_hbox = gtk_hbox_new(FALSE, 0); GtkWidget *scrolled_window = create_scrolled_window(); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), GTK_WIDGET(inside_hbox)); gtk_box_pack_start(GTK_BOX(outside_vbox), scrolled_window, TRUE, TRUE, 0); GtkWidget *vbox = gtk_vbox_new(FALSE, 0);; gtk_box_pack_start(GTK_BOX(inside_hbox), vbox, TRUE, TRUE, 5); GtkWidget *tags_version_box = create_tags_version_box(); gtk_box_pack_start(GTK_BOX(vbox), tags_version_box, FALSE, FALSE, 2); GtkWidget *tags_opts_box = create_tags_options_box(); gtk_box_pack_start(GTK_BOX(vbox), tags_opts_box, FALSE, FALSE, 1); return outside_vbox; } //!creates the preferences tab GtkWidget *create_choose_preferences() { //our preferences vbox GtkWidget *pref_vbox = gtk_vbox_new(FALSE, 0); GtkWidget *notebook = gtk_notebook_new(); gtk_box_pack_start(GTK_BOX(pref_vbox), notebook, TRUE, TRUE, 0); gtk_notebook_popup_enable(GTK_NOTEBOOK(notebook)); gtk_notebook_set_show_tabs(GTK_NOTEBOOK(notebook), TRUE); gtk_notebook_set_show_border(GTK_NOTEBOOK(notebook), FALSE); gtk_notebook_set_scrollable(GTK_NOTEBOOK(notebook), TRUE); /* split preferences */ GtkWidget *splitpoints_prefs = (GtkWidget *)create_pref_splitpoints_page(); GtkWidget *notebook_label = gtk_label_new(_("Split")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), splitpoints_prefs, (GtkWidget *)notebook_label); /* tags preferences */ GtkWidget *tags_prefs = (GtkWidget *)create_pref_tags_page(); notebook_label = gtk_label_new(_("Tags")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), tags_prefs, (GtkWidget *)notebook_label); /* output preferences */ GtkWidget *output_prefs = (GtkWidget *)create_pref_output_page(); notebook_label = gtk_label_new(_("Output")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), output_prefs, (GtkWidget *)notebook_label); /* player preferences */ GtkWidget *player_prefs = (GtkWidget *)create_pref_player_page(); notebook_label = gtk_label_new(_("Player")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), player_prefs, (GtkWidget *)notebook_label); /* language preferences page */ #ifdef __WIN32__ GtkWidget *language_prefs = (GtkWidget *)create_pref_language_page(); notebook_label = gtk_label_new(_("Language")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), language_prefs, (GtkWidget *)notebook_label); #endif return pref_vbox; } ��������������������������������������������������������������mp3splt-gtk-0.7.2/src/preferences_tab.h�������������������������������������������������������������0000644�0001750�0001750�00000005131�11753301351�014714� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: preferences_tab.h * * heder of preferences_tab.c * *********************************************************/ #ifndef _PREFERENCES_TAB_H #define _PREFERENCES_TAB_H #define NUMBER_OF_TAGS_MODES 4 #define NO_TAGS 0 #define DEFAULT_TAGS 1 #define ORIGINAL_FILE_TAGS 2 #define TAGS_FROM_FILENAME 3 GtkWidget *create_scrolled_window(); gboolean get_checked_output_radio_box(); gint get_checked_tags_version_radio_box(); void radio_box_changed_event(GtkToggleButton *radio_b, gpointer data); GtkWidget *create_pref_general_page(); void browse_dir_button_event(GtkWidget *widget, gpointer data); void disable_adjust_spinners(); void enables_adjust_spinners(); void adjust_event(GtkToggleButton *adjust_mode, gpointer user_data); void frame_event(GtkToggleButton *frame_mode, gpointer user_data); void set_default_prefs_event(GtkWidget *widget, gpointer data); void song_dir_button_event(GtkWidget *widget, gpointer data); GtkWidget *create_pref_splitpoints_page(); GString *get_checked_language(); void save_preferences(GtkWidget *widget, gpointer data); GtkWidget *create_save_buttons_hbox(); void combo_remove_unavailable_players(); void player_combo_box_event(GtkComboBox *widget, gpointer data); GtkWidget *create_choose_player_combo(); GtkWidget *create_pref_player_page(); GtkWidget *create_choose_preferences(); void outputdirectory_set(gchar *dirname); gchar *outputdirectory_get(); #endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/messages.c��������������������������������������������������������������������0000644�0001750�0001750�00000016245�11753301353�013401� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The messages history dialog *********************************************************/ #include <gtk/gtk.h> #include <glib/gi18n.h> #include <libmp3splt/mp3splt.h> #include "main_win.h" GtkWidget *mess_history_dialog = NULL; GtkTextBuffer *mess_hist_buffer = NULL; GtkTextTagTable *mess_hist_tag_table = NULL; GtkWidget *mess_hist_view = NULL; gint debug_is_active = FALSE; void create_mess_history_dialog(); extern splt_state *the_state; //! Returns the current local time in form of a string const char *get_current_time() { time_t cur_time = { 0 }; static char time_str[128] = { '\0' }; cur_time = time(NULL); const struct tm *tm = localtime(&cur_time); strftime(time_str, sizeof(time_str), "(%H:%M:%S) ", tm); return time_str; } //! Record this message in the message history void put_message_in_history(const gchar *message, splt_message_type mess_type) { if (mess_type == SPLT_MESSAGE_INFO || (mess_type == SPLT_MESSAGE_DEBUG && debug_is_active)) { GtkTextTag *gray_tag = gtk_text_tag_table_lookup(mess_hist_tag_table, "gray_bold"); GtkTextIter iter; const char *current_time = get_current_time(); gtk_text_buffer_get_end_iter(GTK_TEXT_BUFFER(mess_hist_buffer), &iter); gtk_text_buffer_insert_with_tags(GTK_TEXT_BUFFER(mess_hist_buffer), &iter, current_time, -1, gray_tag, NULL); gtk_text_buffer_insert(GTK_TEXT_BUFFER(mess_hist_buffer), &iter, message, -1); gtk_text_buffer_insert(GTK_TEXT_BUFFER(mess_hist_buffer), &iter, "\n", -1); gtk_text_iter_set_line_offset(&iter, 0); GtkTextMark *mark = gtk_text_buffer_get_mark(mess_hist_buffer, "end"); gtk_text_buffer_move_mark(mess_hist_buffer, mark, &iter); gtk_text_view_scroll_mark_onscreen(GTK_TEXT_VIEW(mess_hist_view), mark); } } //! Hide the message history dialog void mess_history_hide(GtkDialog *dialog, gint response_id, gpointer data) { gtk_widget_hide(mess_history_dialog); } /*! Hide the message history dialog Takes less arguments than mess_history_hide. \todo Do we really still need both functions doing the same? They do not seem to use the arguments they differ in at all */ void mess_history_hide2(GtkWidget *widget, gpointer data) { mess_history_hide(NULL, 0, NULL); //TODO: ugly HACK! create_mess_history_dialog(); } //! Add tags to the message history entry void add_mess_hist_tags() { GtkTextTag *tag = gtk_text_tag_new("gray_bold"); GValue fg_val = { 0 }; g_value_init(&fg_val, G_TYPE_STRING); g_value_set_static_string(&fg_val, "gray"); g_object_set_property(G_OBJECT(tag), "foreground", &fg_val); gtk_text_tag_table_add(mess_hist_tag_table, tag); } //! The event that is issued if the user clicks on a message tag void debug_check_event(GtkToggleButton *debug_toggle, gpointer user_data) { if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(debug_toggle))) { debug_is_active = TRUE; } else { debug_is_active = FALSE; } } //! The event issued when the "Clear messages" button is clicked void clear_messages_event(GtkWidget *widget, gpointer data) { GtkTextIter start_iter; GtkTextIter end_iter; gtk_text_buffer_get_start_iter(mess_hist_buffer, &start_iter); gtk_text_buffer_get_end_iter(mess_hist_buffer, &end_iter); gtk_text_buffer_delete(mess_hist_buffer, &start_iter, &end_iter); } //! The portion of the message history dialog that contains the messages GtkWidget *create_text_component() { GtkWidget *vbox = gtk_vbox_new(FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(vbox), 3); //text view mess_hist_tag_table = gtk_text_tag_table_new(); add_mess_hist_tags(); mess_hist_buffer = gtk_text_buffer_new(mess_hist_tag_table); GtkTextIter iter; gtk_text_buffer_get_end_iter(mess_hist_buffer, &iter); gtk_text_buffer_create_mark(mess_hist_buffer, "end", &iter, TRUE); mess_hist_view = gtk_text_view_new_with_buffer(mess_hist_buffer); gtk_text_view_set_editable(GTK_TEXT_VIEW(mess_hist_view), FALSE); gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(mess_hist_view), FALSE); gtk_text_view_set_left_margin(GTK_TEXT_VIEW(mess_hist_view), 5); GtkWidget *scrolled_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled_window), GTK_SHADOW_NONE); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_container_add(GTK_CONTAINER(scrolled_window), mess_hist_view); //top GtkWidget *hbox = gtk_hbox_new(FALSE, 0); //debug option GtkWidget *debug_check_button = gtk_check_button_new_with_mnemonic(_("Enable _debug messages")); g_signal_connect(G_OBJECT(debug_check_button), "toggled", G_CALLBACK(debug_check_event), NULL); gtk_box_pack_start(GTK_BOX(hbox), debug_check_button, FALSE, FALSE, 0); //clear button GtkWidget *clear_button = create_cool_button(GTK_STOCK_CLEAR, _("C_lear"), FALSE); g_signal_connect(G_OBJECT(clear_button), "clicked", G_CALLBACK(clear_messages_event), NULL); gtk_box_pack_end(GTK_BOX(hbox), clear_button, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); gtk_box_pack_start(GTK_BOX(vbox), scrolled_window, TRUE, TRUE, 3); return vbox; } //! Create the message history dialog void create_mess_history_dialog() { mess_history_dialog = gtk_dialog_new_with_buttons(_("Messages history"), NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, NULL); gtk_window_set_default_size(GTK_WINDOW(mess_history_dialog), 550, 300); g_signal_connect_swapped(mess_history_dialog, "response", G_CALLBACK(mess_history_hide), NULL); g_signal_connect(G_OBJECT(mess_history_dialog), "delete_event", G_CALLBACK(mess_history_hide2), NULL); gtk_window_set_position(GTK_WINDOW(mess_history_dialog), GTK_WIN_POS_CENTER); GtkWidget *text_component = create_text_component(); GtkWidget *area = gtk_dialog_get_content_area(GTK_DIALOG(mess_history_dialog)); gtk_box_pack_start(GTK_BOX(area), text_component, TRUE, TRUE, 0); } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/messages.h��������������������������������������������������������������������0000644�0001750�0001750�00000003001�11753301357�013374� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: messages.h * * header of messages.c * *********************************************************/ #ifndef MESSAGES_H #define MESSAGES_H GtkWidget *create_mess_history_dialog(); void put_message_in_history(const gchar *message, splt_message_type mess_type); #endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/dialog_helper.c���������������������������������������������������������������0000644�0001750�0001750�00000002576�11753301361�014371� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * * this file contains the code for the widgets helpers. ********************************************************/ #include "dialog_helper.h" ����������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/dialog_helper.h���������������������������������������������������������������0000644�0001750�0001750�00000002365�11753301364�014375� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef DIALOG_HELPER_H #include <gtk/gtk.h> #define DIALOG_HELPER_H #endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/options_manager.c�������������������������������������������������������������0000644�0001750�0001750�00000024400�11753301367�014754� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * Get the current state of all GUI buttons * * The code contained in this file reads out the current * state of all GUI buttons and saves it into the structure * the_state. ********************************************************/ #include <string.h> #include <gtk/gtk.h> #include <glib/gi18n.h> #include <libmp3splt/mp3splt.h> #include "util.h" #include "player_tab.h" #include "freedb_tab.h" #include "main_win.h" #include "preferences_tab.h" #include "special_split.h" #include "player_tab.h" #include "combo_helper.h" #include "options_manager.h" #include "radio_helper.h" extern gint debug_is_active; extern splt_state *the_state; extern GtkWidget *output_entry; extern gchar *filename_to_split; extern gint selected_split_mode; extern GtkWidget *frame_mode; extern GtkWidget *adjust_mode; extern GtkWidget *spinner_adjust_gap; extern GtkWidget *spinner_adjust_offset; extern GtkWidget *spinner_adjust_threshold; extern GtkWidget *spinner_time; extern GtkWidget *spinner_equal_tracks; extern GtkWidget *create_dirs_from_output_files; extern GtkWidget *all_spinner_silence_number_tracks; extern GtkWidget *all_spinner_silence_minimum; extern GtkWidget *all_spinner_track_minimum; extern GtkWidget *all_spinner_silence_offset; extern GtkWidget *all_spinner_silence_threshold; extern GtkWidget *all_spinner_trim_silence_threshold; extern GtkWidget *all_silence_remove_silence; extern GList *text_options_list; extern GtkWidget *replace_underscore_by_space_check_box; extern GtkComboBox *artist_text_properties_combo; extern GtkComboBox *album_text_properties_combo; extern GtkComboBox *title_text_properties_combo; extern GtkComboBox *comment_text_properties_combo; extern GtkComboBox *genre_combo; extern GtkWidget *comment_tag_entry; extern GtkWidget *regex_entry; extern GtkWidget *tags_radio; /*! Update the output options Update the output options in the_state by reading out the state of the GUI controls. All other options are read out in put_options_from_preferences() */ void update_output_options() { filename_to_split = inputfilename_get(); mp3splt_set_filename_to_split(the_state, filename_to_split); if (get_checked_output_radio_box() == 0) { mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_FORMAT); const char *data = gtk_entry_get_text(GTK_ENTRY(output_entry)); gint error = SPLT_OUTPUT_FORMAT_OK; mp3splt_set_oformat(the_state, data, &error); print_status_bar_confirmation(error); } else { mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_DEFAULT); } mp3splt_set_int_option(the_state, SPLT_OPT_DEBUG_MODE, debug_is_active); } /*! Update the the_state structure Updates the the_state structure by reading out the state of the GUI controls. The only exception is that all options that are directly connected to audio output have been split into a separate function: update_output_options() */ void put_options_from_preferences() { if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(frame_mode))) { mp3splt_set_int_option(the_state, SPLT_OPT_FRAME_MODE, SPLT_TRUE); } else { mp3splt_set_int_option(the_state, SPLT_OPT_FRAME_MODE, SPLT_FALSE); } if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(adjust_mode))) { mp3splt_set_int_option(the_state, SPLT_OPT_AUTO_ADJUST, SPLT_TRUE); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_OFFSET, gtk_spin_button_get_value(GTK_SPIN_BUTTON(spinner_adjust_offset))); mp3splt_set_int_option(the_state, SPLT_OPT_PARAM_GAP, gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner_adjust_gap))); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_THRESHOLD, gtk_spin_button_get_value(GTK_SPIN_BUTTON(spinner_adjust_threshold))); } else { mp3splt_set_int_option(the_state, SPLT_OPT_AUTO_ADJUST, SPLT_FALSE); } mp3splt_set_int_option(the_state, SPLT_OPT_INPUT_NOT_SEEKABLE, SPLT_FALSE); mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_NORMAL_MODE); switch (selected_split_mode) { case SELECTED_SPLIT_NORMAL: mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_NORMAL_MODE); break; case SELECTED_SPLIT_WRAP: mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_WRAP_MODE); break; case SELECTED_SPLIT_TIME: mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_TIME_MODE); mp3splt_set_float_option(the_state, SPLT_OPT_SPLIT_TIME, gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner_time))); break; case SELECTED_SPLIT_EQUAL_TIME_TRACKS: mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_LENGTH_MODE); mp3splt_set_int_option(the_state, SPLT_OPT_LENGTH_SPLIT_FILE_NUMBER, gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner_equal_tracks))); break; case SELECTED_SPLIT_SILENCE: mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_SILENCE_MODE); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_THRESHOLD, gtk_spin_button_get_value(GTK_SPIN_BUTTON(all_spinner_silence_threshold))); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_OFFSET, gtk_spin_button_get_value(GTK_SPIN_BUTTON(all_spinner_silence_offset))); mp3splt_set_int_option(the_state, SPLT_OPT_PARAM_NUMBER_TRACKS, gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(all_spinner_silence_number_tracks))); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_MIN_LENGTH, gtk_spin_button_get_value(GTK_SPIN_BUTTON(all_spinner_silence_minimum))); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_MIN_TRACK_LENGTH, gtk_spin_button_get_value(GTK_SPIN_BUTTON(all_spinner_track_minimum))); if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(all_silence_remove_silence))) { mp3splt_set_int_option(the_state, SPLT_OPT_PARAM_REMOVE_SILENCE, SPLT_TRUE); } else { mp3splt_set_int_option(the_state, SPLT_OPT_PARAM_REMOVE_SILENCE, SPLT_FALSE); } break; case SELECTED_SPLIT_TRIM_SILENCE: mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_TRIM_SILENCE_MODE); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_THRESHOLD, gtk_spin_button_get_value(GTK_SPIN_BUTTON(all_spinner_trim_silence_threshold))); break; case SELECTED_SPLIT_ERROR: mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_ERROR_MODE); break; default: break; } gint selected_tags_value = rh_get_active_value(tags_radio); if (selected_tags_value == NO_TAGS) { mp3splt_set_int_option(the_state, SPLT_OPT_TAGS, SPLT_NO_TAGS); } else if (selected_tags_value == DEFAULT_TAGS) { mp3splt_set_int_option(the_state, SPLT_OPT_TAGS, SPLT_CURRENT_TAGS); } else if (selected_tags_value == ORIGINAL_FILE_TAGS) { mp3splt_set_int_option(the_state, SPLT_OPT_TAGS, SPLT_TAGS_ORIGINAL_FILE); } else if (selected_tags_value == TAGS_FROM_FILENAME) { put_tags_from_filename_regex_options(); } gint tags_radio_choice = get_checked_tags_version_radio_box(); if (tags_radio_choice == 0) { mp3splt_set_int_option(the_state, SPLT_OPT_FORCE_TAGS_VERSION, 0); } else if (tags_radio_choice == 1) { mp3splt_set_int_option(the_state, SPLT_OPT_FORCE_TAGS_VERSION, 1); } else if (tags_radio_choice == 2) { mp3splt_set_int_option(the_state, SPLT_OPT_FORCE_TAGS_VERSION, 2); } else if (tags_radio_choice == 3) { mp3splt_set_int_option(the_state, SPLT_OPT_FORCE_TAGS_VERSION, 12); } mp3splt_set_int_option(the_state, SPLT_OPT_DEBUG_MODE, debug_is_active); mp3splt_set_int_option(the_state, SPLT_OPT_CREATE_DIRS_FROM_FILENAMES, gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(create_dirs_from_output_files))); } void put_tags_from_filename_regex_options() { mp3splt_set_int_option(the_state, SPLT_OPT_TAGS, SPLT_TAGS_FROM_FILENAME_REGEX); gint underscores = gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON(replace_underscore_by_space_check_box)); mp3splt_set_int_option(the_state, SPLT_OPT_REPLACE_UNDERSCORES_TAG_FORMAT, underscores); mp3splt_set_int_option(the_state, SPLT_OPT_ARTIST_TAG_FORMAT, ch_get_active_value(artist_text_properties_combo)); mp3splt_set_int_option(the_state, SPLT_OPT_ALBUM_TAG_FORMAT, ch_get_active_value(album_text_properties_combo)); mp3splt_set_int_option(the_state, SPLT_OPT_TITLE_TAG_FORMAT, ch_get_active_value(title_text_properties_combo)); mp3splt_set_int_option(the_state, SPLT_OPT_COMMENT_TAG_FORMAT, ch_get_active_value(comment_text_properties_combo)); const gchar *regular_expression = gtk_entry_get_text(GTK_ENTRY(regex_entry)); mp3splt_set_input_filename_regex(the_state, regular_expression); const gchar *default_comment = gtk_entry_get_text(GTK_ENTRY(comment_tag_entry)); if (strlen(default_comment) == 0) { default_comment = NULL; } mp3splt_set_default_comment_tag(the_state, default_comment); mp3splt_set_default_genre_tag(the_state, ch_get_active_str_value(genre_combo)); } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/options_manager.h�������������������������������������������������������������0000644�0001750�0001750�00000002526�11753301372�014762� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef OPTIONS_MANAGER_H void update_output_options(); void put_options_from_preferences(); void put_tags_from_filename_regex_options(); #define OPTIONS_MANAGER_H #endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/combo_helper.c����������������������������������������������������������������0000644�0001750�0001750�00000007225�11753301375�014232� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * * this file contains the code for the combo helpers. ********************************************************/ #include <string.h> #include "combo_helper.h" GtkComboBox *ch_new_combo() { GtkListStore *store = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_INT); GtkComboBox *combo = GTK_COMBO_BOX( gtk_combo_box_new_with_model(GTK_TREE_MODEL(store))); GtkCellRenderer *cell = gtk_cell_renderer_text_new(); gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combo), cell, TRUE); gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(combo), cell, "text", 0, NULL); return combo; } void ch_append_to_combo(GtkComboBox *combo, const gchar *text, gint value) { GtkTreeIter iter; GtkListStore *store = GTK_LIST_STORE(gtk_combo_box_get_model(combo)); gtk_list_store_append(store, &iter); gtk_list_store_set(store, &iter, 0, text, 1, value, -1); } gchar *ch_get_active_str_value(GtkComboBox *combo) { gchar *value = NULL; GtkTreeIter iter; gboolean has_selection = gtk_combo_box_get_active_iter(combo, &iter); if (has_selection) { GtkTreeModel *store = gtk_combo_box_get_model(combo); gtk_tree_model_get(store, &iter, 0, &value, -1); } return value; } gint ch_get_active_value(GtkComboBox *combo) { gint value = -1; GtkTreeIter iter; gboolean has_selection = gtk_combo_box_get_active_iter(combo, &iter); if (has_selection) { GtkTreeModel *store = gtk_combo_box_get_model(combo); gtk_tree_model_get(store, &iter, 1, &value, -1); } return value; } void ch_set_active_str_value(GtkComboBox *combo, gchar *new_value) { GtkTreeIter iter; GtkTreeModel *store = gtk_combo_box_get_model(combo); gboolean valid_row = gtk_tree_model_get_iter_first(store, &iter); while (valid_row) { gchar *value; gtk_tree_model_get(store, &iter, 0, &value, -1); if (strcmp(value, new_value) == 0) { gtk_combo_box_set_active_iter(combo, &iter); return; } valid_row = gtk_tree_model_iter_next(store, &iter); } } void ch_set_active_value(GtkComboBox *combo, gint new_value) { GtkTreeIter iter; GtkTreeModel *store = gtk_combo_box_get_model(combo); gboolean valid_row = gtk_tree_model_get_iter_first(store, &iter); while (valid_row) { gint value; gtk_tree_model_get(store, &iter, 1, &value, -1); if (value == new_value) { gtk_combo_box_set_active_iter(combo, &iter); return; } valid_row = gtk_tree_model_iter_next(store, &iter); } } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/combo_helper.h����������������������������������������������������������������0000644�0001750�0001750�00000003074�11753301404�014226� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef COMBO_HELPER_H #include <gtk/gtk.h> GtkComboBox *ch_new_combo(); void ch_append_to_combo(GtkComboBox *combo, const gchar *text, gint value); gint ch_get_active_value(GtkComboBox *combo); gchar *ch_get_active_str_value(GtkComboBox *combo); void ch_set_active_value(GtkComboBox *combo, gint value); void ch_set_active_str_value(GtkComboBox *combo, gchar *new_value); #define COMBO_HELPER_H #endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/split_files.c�����������������������������������������������������������������0000644�0001750�0001750�00000036330�11753301406�014103� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The split tab * * file that handles the split files tab from the main * window **********************************************************/ #include <gtk/gtk.h> #include <glib/gi18n.h> #include <string.h> #include <glib.h> #include <glib/gstdio.h> #include "util.h" #include "player.h" #include "player_tab.h" #include "split_files.h" #include "utilities.h" #include "main_win.h" //!our split tree GtkWidget *split_tree; //!number of rows in the split table gint split_table_number = 0; //!handle box for detaching window GtkWidget *split_handle_box; //!queue files button GtkWidget *queue_files_button; //!remove file button GtkWidget *remove_file_button; //!remove file button GtkWidget *remove_all_files_button; extern gint selected_player; extern gint split_files; extern gboolean timer_active; //!split files enumeration enum { COL_NAME, COL_FILENAME, SPLIT_COLUMNS }; //!creates the model for the split tree GtkTreeModel *create_split_model() { GtkListStore *model; model = gtk_list_store_new(SPLIT_COLUMNS, G_TYPE_STRING, G_TYPE_STRING); return GTK_TREE_MODEL (model); } //!creates the tree GtkTreeView *create_split_files_tree() { GtkTreeView *tree_view; GtkTreeModel *model; //create the model model = (GtkTreeModel *)create_split_model(); //create the tree view tree_view = (GtkTreeView *) gtk_tree_view_new_with_model (model); return tree_view; } //!creates split columns void create_split_columns (GtkTreeView *tree_view) { GtkCellRendererText *renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new()); g_object_set_data(G_OBJECT(renderer), "col", GINT_TO_POINTER(COL_NAME)); GtkTreeViewColumn *name_column = gtk_tree_view_column_new_with_attributes (_("Filename"), GTK_CELL_RENDERER(renderer), "text", COL_NAME, NULL); //appends columns to the list of columns of tree_view gtk_tree_view_insert_column(GTK_TREE_VIEW(tree_view), GTK_TREE_VIEW_COLUMN(name_column),COL_NAME); gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(name_column), 0.5); gtk_tree_view_column_set_sizing(GTK_TREE_VIEW_COLUMN(name_column), GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_resizable(name_column, TRUE); } //!removes all rows from the split files table void remove_all_split_rows () { GtkTreeIter iter; GtkTreeView *tree_view = (GtkTreeView *)split_tree; GtkTreeModel *model; model = gtk_tree_view_get_model(tree_view); //while we still have rows in the table while (split_table_number > 0) { gtk_tree_model_get_iter_first(model, &iter); gtk_list_store_remove (GTK_LIST_STORE (model), &iter); //remove values from the splitpoint array split_table_number--; } } /*! finding the real name of the file, without the path \todo why guchar instead of gchar ? */ guchar *get_real_name_from_filename(guchar *filename) { while (strchr((gchar *) filename, G_DIR_SEPARATOR)!=NULL) filename = (guchar *)strchr((gchar *)filename, G_DIR_SEPARATOR) + 1; return filename; } //!add a row to the table void add_split_row(const gchar *name) { GtkTreeIter iter; GtkTreeView *tree_view = (GtkTreeView *)split_tree; GtkTreeModel *model; model = gtk_tree_view_get_model(tree_view); gtk_list_store_append (GTK_LIST_STORE (model), &iter); //sets text in the minute, second and milisecond column gtk_list_store_set (GTK_LIST_STORE (model), &iter, COL_NAME,get_real_name_from_filename((guchar *)name), COL_FILENAME,name, -1); //add 1 to the row number of the table split_table_number++; } //!return the n_th filename from the split files gchar *get_filename_from_split_files(gint number) { gchar *filename = NULL; GtkTreeIter iter; GtkTreeModel *model; GtkTreePath *path = NULL; //get the model model = gtk_tree_view_get_model(GTK_TREE_VIEW(split_tree)); path = gtk_tree_path_new_from_indices (number-1 ,-1); //get the iter correspondig to the path if(gtk_tree_model_get_iter(model, &iter, path)) { gtk_tree_model_get(model, &iter, COL_FILENAME, &filename, -1); } gtk_tree_path_free(path); return filename; } //!queue button event void queue_files_button_event( GtkWidget *widget, gpointer data ) { //if not connected to player, we connect to player if (!timer_active) { connect_button_event(NULL,NULL); } //our file list GList *file_list = NULL; //the name of the file that we put in the queue gchar *filename; GtkTreeIter iter; GtkTreeModel *model; GtkTreePath *path = NULL; //get the model model = gtk_tree_view_get_model(GTK_TREE_VIEW(split_tree)); gint number = split_files; //put the split filenames in a g_list while(number >= 0) { path = gtk_tree_path_new_from_indices (number ,-1); //get the iter correspondig to the path if(gtk_tree_model_get_iter(model, &iter, path)) { gtk_tree_model_get(model, &iter, COL_FILENAME, &filename, -1); //add it to the queue file file_list = g_list_append(file_list, strdup(filename)); g_free(filename); } gtk_tree_path_free(path); number--; } if (file_list != NULL) { player_add_files(file_list); } //free memory g_list_foreach(file_list, (GFunc)g_free, NULL); g_list_free(file_list); } //!event for the remove file button void remove_file_button_event(GtkWidget *widget, gpointer data) { GtkTreeIter iter; GtkTreeModel *model; GtkTreePath *path; GList *selected_list = NULL; GList *current_element = NULL; GtkTreeSelection *selection; //get the model model = gtk_tree_view_get_model(GTK_TREE_VIEW(split_tree)); //get the selection selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(split_tree)); //get selected rows selected_list = gtk_tree_selection_get_selected_rows(selection, &model); //the name of the file that we have clicked on gchar *filename; //while the list is not empty and we have numbers in the table //(splitnumber >0) while (g_list_length(selected_list) > 0) { //get the last element current_element = g_list_last(selected_list); path = current_element->data; //get the iter correspondig to the path gtk_tree_model_get_iter(model, &iter, path); gtk_tree_model_get(model, &iter, COL_FILENAME, &filename, -1); g_remove(filename); //remove the path from the selected list gtk_list_store_remove (GTK_LIST_STORE (model), &iter); selected_list = g_list_remove(selected_list, path); //remove 1 to the row number of the table split_table_number--; //free memory gtk_tree_path_free(path); g_free(filename); } if (split_table_number == 0) { gtk_widget_set_sensitive(queue_files_button, FALSE); gtk_widget_set_sensitive(remove_all_files_button, FALSE); } gtk_widget_set_sensitive(remove_file_button,FALSE); //we free the selected elements g_list_foreach (selected_list, (GFunc)gtk_tree_path_free, NULL); g_list_free (selected_list); } //!event for the remove file button void remove_all_files_button_event(GtkWidget *widget, gpointer data) { GtkTreeIter iter; GtkTreeModel *model; model = gtk_tree_view_get_model(GTK_TREE_VIEW(split_tree)); //filename to erase gchar *filename; //for all the splitnumbers while (split_table_number > 0) { gtk_tree_model_get_iter_first(model, &iter); gtk_tree_model_get(model, &iter, COL_FILENAME, &filename, -1); g_remove(filename); gtk_list_store_remove (GTK_LIST_STORE (model), &iter); split_table_number--; g_free(filename); } gtk_widget_set_sensitive(remove_all_files_button,FALSE); gtk_widget_set_sensitive(remove_file_button,FALSE); gtk_widget_set_sensitive(queue_files_button,FALSE); } //!creates the horizontal queue buttons horizontal box GtkWidget *create_queue_buttons_hbox() { //our horizontal box GtkWidget *hbox; hbox = gtk_hbox_new(FALSE,0); //button for queueing all files queue_files_button = (GtkWidget *) create_cool_button(GTK_STOCK_UNINDENT, _("_Queue files to player"),FALSE); gtk_box_pack_start (GTK_BOX (hbox), queue_files_button, FALSE, FALSE, 5); gtk_widget_set_sensitive(queue_files_button, FALSE); g_signal_connect (G_OBJECT (queue_files_button), "clicked", G_CALLBACK (queue_files_button_event), NULL); //button for removing a file remove_file_button = (GtkWidget *) create_cool_button(GTK_STOCK_DELETE, _("_Delete selected files"),FALSE); gtk_box_pack_start (GTK_BOX (hbox), remove_file_button, FALSE, FALSE, 5); gtk_widget_set_sensitive(remove_file_button,FALSE); g_signal_connect (G_OBJECT (remove_file_button), "clicked", G_CALLBACK (remove_file_button_event), NULL); //button for removing a file remove_all_files_button = (GtkWidget *) create_cool_button(GTK_STOCK_DELETE, _("D_elete all files"),FALSE); gtk_box_pack_start (GTK_BOX (hbox), remove_all_files_button, FALSE, FALSE, 5); gtk_widget_set_sensitive(remove_all_files_button,FALSE); g_signal_connect (G_OBJECT (remove_all_files_button), "clicked", G_CALLBACK (remove_all_files_button_event), NULL); return hbox; } //! Issued when a row is clicked on void split_tree_row_activated(GtkTreeView *tree_view, GtkTreePath *arg1, GtkTreeViewColumn *arg2, gpointer data) { GtkTreeIter iter; GtkTreeModel *model; GList *selected_list = NULL; GList *current_element = NULL; GtkTreeSelection *selection; GtkTreePath *path; //get the model model = gtk_tree_view_get_model(GTK_TREE_VIEW(tree_view)); //get the selection selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); //get selected rows selected_list = gtk_tree_selection_get_selected_rows(selection, &model); //get the last element current_element = g_list_first(selected_list); path = current_element->data; //get the iter correspondig to the path gtk_tree_model_get_iter(model, &iter, path); //the name of the file that we have clicked on gchar *filename = NULL; gtk_tree_model_get(model, &iter, COL_FILENAME, &filename, -1); //connecting to player connect_button_event (NULL, NULL); //set the entry with the current filename change_current_filename(filename); //starts playing, 0 means start playing connect_to_player_with_song(0); //free memory gtk_tree_path_free(path); if (filename) { g_free(filename); filename = NULL; } } //!split selection has changed void split_selection_changed(GtkTreeSelection *selec, gpointer data) { GtkTreeModel *model; GtkTreeSelection *selection; GList *selected_list = NULL; //get the model model = gtk_tree_view_get_model(GTK_TREE_VIEW(split_tree)); //get the selection selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(split_tree)); //get selected rows selected_list = gtk_tree_selection_get_selected_rows(selection, &model); if (g_list_length(selected_list) > 0) { gtk_widget_set_sensitive(remove_file_button,TRUE); } } //!Issued when closing the new window after detaching void close_split_popup_window_event( GtkWidget *window, gpointer data ) { GtkWidget *window_child; window_child = gtk_bin_get_child(GTK_BIN(window)); gtk_widget_reparent(GTK_WIDGET(window_child), GTK_WIDGET(split_handle_box)); gtk_widget_destroy(window); } //!Issued when we detach the handle void handle_split_detached_event (GtkHandleBox *handlebox, GtkWidget *widget, gpointer data) { //new window GtkWidget *window; window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_widget_reparent(GTK_WIDGET(widget), GTK_WIDGET(window)); g_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (close_split_popup_window_event), NULL); gtk_widget_show(GTK_WIDGET(window)); } //!creates the split files tab GtkWidget *create_split_files() { //our vertical box GtkWidget *vbox; vbox = gtk_vbox_new(FALSE,0); /* handle box for detaching */ split_handle_box = gtk_handle_box_new(); gtk_container_add(GTK_CONTAINER (split_handle_box), GTK_WIDGET(vbox)); //handle event g_signal_connect(split_handle_box, "child-detached", G_CALLBACK(handle_split_detached_event), NULL); // scrolled window and the tree //create the tree and add it to the scrolled window split_tree = (GtkWidget *) create_split_files_tree(); //scrolled window for the tree GtkWidget *scrolled_window; scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(scrolled_window), GTK_SHADOW_NONE); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_box_pack_start (GTK_BOX (vbox), scrolled_window, TRUE, TRUE, 0); //create columns create_split_columns (GTK_TREE_VIEW(split_tree)); //add the tree to the scrolled window gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET(split_tree)); g_signal_connect (G_OBJECT (split_tree), "row-activated", G_CALLBACK (split_tree_row_activated), NULL); //selection for the tree GtkWidget *split_tree_selection; split_tree_selection = (GtkWidget *) gtk_tree_view_get_selection(GTK_TREE_VIEW(split_tree)); g_signal_connect (G_OBJECT (split_tree_selection), "changed", G_CALLBACK (split_selection_changed), NULL); gtk_tree_selection_set_mode(GTK_TREE_SELECTION(split_tree_selection), GTK_SELECTION_MULTIPLE); // horizontal box with queue buttons GtkWidget *queue_buttons_hbox; queue_buttons_hbox = (GtkWidget *)create_queue_buttons_hbox(); gtk_box_pack_start (GTK_BOX (vbox), queue_buttons_hbox, FALSE, FALSE, 2); return split_handle_box; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/split_files.h�����������������������������������������������������������������0000644�0001750�0001750�00000004773�11753301413�014114� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: split_files.h * * header of split_files.c * *********************************************************/ GtkTreeModel *create_split_model(); GtkTreeView *create_split_files_tree(); void create_split_columns (GtkTreeView *tree_view); void remove_all_split_rows (); guchar *get_real_naame(guchar *filename); void add_split_row(const gchar *name); void remove_split_selected_row(); void queue_files_button_event( GtkWidget *widget, gpointer data ); void remove_file_button_event(GtkWidget *widget, gpointer data); GtkWidget *create_queue_buttons_hbox(); void split_tree_row_activated (GtkTreeView *tree_view, GtkTreePath *arg1, GtkTreeViewColumn *arg2, gpointer data); void split_selection_changed(GtkTreeSelection *selection, gpointer data); void close_split_popup_window_event( GtkWidget *window, gpointer data ); void handle_split_detached_event (GtkHandleBox *handlebox, GtkWidget *widget, gpointer data); GtkWidget *create_split_files(); gchar *get_filename_from_split_files(gint number); �����mp3splt-gtk-0.7.2/src/backward_inactive.svg���������������������������������������������������������0000644�0001750�0001750�00000016644�11513400616�015606� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="18.564678" height="12.263247" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="backward_inactive.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#e1e1e1;stop-opacity:1;" offset="0" id="stop3156" /> <stop style="stop-color:#757575;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154" id="radialGradient3823" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154-6" id="radialGradient3823-8" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3154-6"> <stop style="stop-color:#c4ffc2;stop-opacity:1;" offset="0" id="stop3156-8" /> <stop style="stop-color:#29e900;stop-opacity:1;" offset="1" id="stop3158-8" /> </linearGradient> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3005" xlink:href="#linearGradient3154" inkscape:collect="always" /> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3005-9" xlink:href="#linearGradient3154-6-3" inkscape:collect="always" /> <linearGradient id="linearGradient3154-6-3"> <stop style="stop-color:#c4ffc2;stop-opacity:1;" offset="0" id="stop3156-8-6" /> <stop style="stop-color:#29e900;stop-opacity:1;" offset="1" id="stop3158-8-8" /> </linearGradient> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3039" xlink:href="#linearGradient3154" inkscape:collect="always" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3154-6-3" id="linearGradient3834" x1="155.85469" y1="172.76819" x2="164.06802" y2="172.76819" gradientUnits="userSpaceOnUse" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="26.415406" inkscape:cx="-3.7063769" inkscape:cy="6.1311764" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" showgrid="false" inkscape:window-maximized="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-488.44253,-541.85433)"> <path sodipodi:type="star" style="fill:url(#radialGradient3823);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:65.10584259;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="path2162" sodipodi:sides="4" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="276.1543" sodipodi:r2="278.92676" sodipodi:arg1="-2.3619232" sodipodi:arg2="-1.576525" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 329.32828,326.78486 390.53474,-2.23728 2.23729,390.53474 -390.53474,2.23729 z" transform="matrix(-0.00937546,0,0,0.02516329,495.67684,534.87774)" /> <path sodipodi:type="star" style="fill:url(#radialGradient3039);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:34.96260071;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="path2162-4-0" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(-0.03070093,0,0,0.02664656,512.73944,534.10434)" /> <path sodipodi:type="star" style="fill:url(#radialGradient3005);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:34.96260071;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="path2162-4" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(-0.03070093,0,0,0.02664656,519.06692,534.10434)" /> </g> </svg> ��������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/xmms_control.c����������������������������������������������������������������0000644�0001750�0001750�00000016401�11753301421�014304� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * from BMP to Audacious patch from Roberto Neri - 2007,2008 * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * xmms control * * this file contains the functions that control the xmms * player ********************************************************/ #include <stdlib.h> #include <gtk/gtk.h> #include <glib/gi18n.h> #include <time.h> #include <unistd.h> #include <string.h> #ifndef NO_AUDACIOUS #include <audacious/audctrl.h> #include <audacious/dbus.h> //ugly hack until fix DBusGProxy *dbus_proxy = NULL; static DBusGConnection *dbus_connection = NULL; #endif #include "player.h" #ifndef NO_AUDACIOUS //!Acquires informations about the song void myxmms_get_song_infos(gchar *total_infos) { //the frequency gint freq; //rate kb/s gint rate; //number of channels (mono/stereo) gint nch; gchar rate_str[32] = { '\0' }; gchar freq_str[32] = { '\0' }; gchar nch_str[32] = { '\0' }; //infos about the song audacious_remote_get_info(dbus_proxy, &rate, &freq, &nch); g_snprintf(rate_str,32, "%d", rate/1000); g_snprintf(freq_str,32, "%d", freq/1000); if (nch == 2) { snprintf(nch_str, 32, "%s", _("stereo")); } else { snprintf(nch_str, 32, "%s", _("mono")); } gchar *_Kbps = _("Kbps"); gchar *_Khz = _("Khz"); if (rate != 0) { g_snprintf(total_infos,512, "%s %s %s %s %s", rate_str,_Kbps,freq_str, _Khz,nch_str); } else { total_infos[0] = '\0'; } } /*!returns the filename The filename is allocated by this function and must be g_free'ed after use. */ gchar *myxmms_get_filename() { gchar *fname; //position of the song in the playlist gint playlist_position; playlist_position = audacious_remote_get_playlist_pos(dbus_proxy); fname = audacious_remote_get_playlist_file(dbus_proxy, playlist_position); //erase file:// and replace %20 with spaces gchar *fname2 = g_filename_from_uri(fname,NULL,NULL); g_free(fname); fname = NULL; return fname2; } //!returns the number of songs in the playlist gint myxmms_get_playlist_number() { return audacious_remote_get_playlist_length(dbus_proxy); } /*!returns the title of the song The filename is allocated by this function and must be g_free'ed after use. */ gchar *myxmms_get_title_song() { gchar *title; //position of the song in the playlist gint playlist_position; playlist_position = audacious_remote_get_playlist_pos(dbus_proxy); title = audacious_remote_get_playlist_title(dbus_proxy,playlist_position); return title; } //!returns elapsed time gint myxmms_get_time_elapsed() { return audacious_remote_get_output_time(dbus_proxy); } //!starts xmms void myxmms_start() { gint timer; time_t lt; static gchar *exec_command; exec_command = "audacious"; gchar *exec_this = g_strdup_printf("%s &", exec_command); system(exec_this); timer = time(<); while (!audacious_remote_is_running(dbus_proxy) && ((time(<) - timer) < 4)) { usleep(0); } g_free(exec_this); } //!selects the last file in the playlist void myxmms_select_last_file() { gint number; number = audacious_remote_get_playlist_length(dbus_proxy); audacious_remote_set_playlist_pos(dbus_proxy,(number-1)); } //!plays the last file of the playlist void myxmms_play_last_file() { myxmms_select_last_file(); audacious_remote_play(dbus_proxy); } //!add files to the xmms playlist void myxmms_add_files(GList *list) { //change filenames into URLs GList *list_pos = list; //for each element of the list while (list_pos) { //duplicate the filename gchar *dup_filename = strdup(list_pos->data); //free the GList data content //g_free(list_pos->data); //put the new GList data content list_pos->data = g_filename_to_uri(dup_filename,NULL,NULL); //free the duplicated filename g_free(dup_filename); dup_filename = NULL; //move to the next element list_pos = g_list_next(list_pos); } audacious_remote_playlist_add(dbus_proxy, list); } //!sets the volume level void myxmms_set_volume(gint volume) { audacious_remote_set_main_volume(dbus_proxy, volume); } //!returns volume level gint myxmms_get_volume() { return audacious_remote_get_main_volume(dbus_proxy); } /*!starts xmms with songs \param list The list of the songs to start xmms with \todo Which format is this list in? */ void myxmms_start_with_songs(GList *list) { myxmms_start(); myxmms_add_files(list); } //!returns TRUE if xmms is running; if not, FALSE gint myxmms_is_running() { if (!dbus_connection) { dbus_connection = dbus_g_bus_get(DBUS_BUS_SESSION, NULL); } if (!dbus_proxy) { dbus_proxy = dbus_g_proxy_new_for_name(dbus_connection, AUDACIOUS_DBUS_SERVICE, AUDACIOUS_DBUS_PATH, AUDACIOUS_DBUS_INTERFACE); } if (!audacious_remote_is_running(dbus_proxy)) return FALSE; else return TRUE; } //!returns TRUE if xmms is paused, if not, FALSE gint myxmms_is_paused() { if (!audacious_remote_is_paused(dbus_proxy)) return FALSE; else return TRUE; } //!Start playing the current song void myxmms_play() { audacious_remote_play(dbus_proxy); } //!Stop playing the current song void myxmms_stop() { audacious_remote_stop(dbus_proxy); } //!Pause playing the current song void myxmms_pause() { audacious_remote_pause(dbus_proxy); } //!Switch to the next song void myxmms_next() { audacious_remote_playlist_next(dbus_proxy); } //!Switch to the previous song void myxmms_prev() { audacious_remote_playlist_prev(dbus_proxy); } //!jump to time void myxmms_jump(gint position) { audacious_remote_jump_to_time(dbus_proxy, position); } //!returns the total duration of the current song gint myxmms_get_total_time() { gint playlist_position; playlist_position = audacious_remote_get_playlist_pos(dbus_proxy); return audacious_remote_get_playlist_time(dbus_proxy,playlist_position); } //!returns TRUE if xmms is playing, else FALSE gint myxmms_is_playing() { if(audacious_remote_is_playing(dbus_proxy)) return TRUE; else return FALSE; } //!quits the player void myxmms_quit() { audacious_remote_quit(dbus_proxy); } #endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/xmms_control.h����������������������������������������������������������������0000644�0001750�0001750�00000004030�11753301333�014306� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: xmms_control.h * * header to xmms_control.c * * xmms_control.c controls the xmms player * *********************************************************/ void myxmms_get_song_infos(gchar *total_infos); gchar *myxmms_get_filename(); gint myxmms_get_playlist_number(); gchar *myxmms_get_title_song(); gint myxmms_get_time_elapsed(); void myxmms_start(); void myxmms_select_last_file(); void myxmms_play_last_file(); void myxmms_add_files(GList *list); void myxmms_set_volume(gint volume); gint myxmms_get_volume(); void myxmms_start_with_songs(GList *list); gint myxmms_is_running(); gint myxmms_is_paused(); void myxmms_play(); void myxmms_stop(); void myxmms_pause(); void myxmms_next(); void myxmms_prev(); void myxmms_jump(gint position); gint myxmms_get_total_time(); gint myxmms_is_playing(); void myxmms_quit(); ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/forward.svg�������������������������������������������������������������������0000644�0001750�0001750�00000016573�11513400616�013613� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="17.383955" height="11.521334" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="forward.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#c2d7ff;stop-opacity:1;" offset="0" id="stop3156" /> <stop style="stop-color:#0052e9;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154" id="radialGradient3823" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154-6" id="radialGradient3823-8" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3154-6"> <stop style="stop-color:#c4ffc2;stop-opacity:1;" offset="0" id="stop3156-8" /> <stop style="stop-color:#29e900;stop-opacity:1;" offset="1" id="stop3158-8" /> </linearGradient> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3005" xlink:href="#linearGradient3154" inkscape:collect="always" /> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3005-9" xlink:href="#linearGradient3154-6-3" inkscape:collect="always" /> <linearGradient id="linearGradient3154-6-3"> <stop style="stop-color:#c4ffc2;stop-opacity:1;" offset="0" id="stop3156-8-6" /> <stop style="stop-color:#29e900;stop-opacity:1;" offset="1" id="stop3158-8-8" /> </linearGradient> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3039" xlink:href="#linearGradient3154" inkscape:collect="always" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3154-6-3" id="linearGradient3834" x1="155.85469" y1="172.76819" x2="164.06802" y2="172.76819" gradientUnits="userSpaceOnUse" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="19.646425" inkscape:cx="9.7514186" inkscape:cy="6.2660808" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" showgrid="false" inkscape:window-maximized="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-488.98167,-542.22567)"> <path sodipodi:type="star" style="fill:url(#radialGradient3005);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:37.58040258;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path2162-4" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(0.02856234,0,0,0.02479039,477.79951,535.07132)" /> <path sodipodi:type="star" style="fill:url(#radialGradient3039);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:37.58040258;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path2162-4-0" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(0.02856234,0,0,0.02479039,483.68623,535.07132)" /> <path sodipodi:type="star" style="fill:url(#radialGradient3823);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:69.98059286;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path2162" sodipodi:sides="4" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="276.1543" sodipodi:r2="278.92676" sodipodi:arg1="-2.3619232" sodipodi:arg2="-1.576525" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 329.32828,326.78486 390.53474,-2.23728 2.23729,390.53474 -390.53474,2.23729 z" transform="matrix(0.00872238,0,0,0.02341045,499.56027,535.79085)" /> </g> </svg> �������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/mp3splt-gtk.png���������������������������������������������������������������0000664�0001750�0001750�00000053113�11454363575�014332� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������‰PNG  ��� IHDR���½���c���Îão���sRGB�®Îé���bKGD�ÿ�ÿ�ÿ ½§“��� pHYs�� �� �šœ���tIMEÙ/dõQÞ���tEXtComment�Created with The GIMPïd%n�� �IDATxÚìw¼]U™þ¿k÷Ón¿7÷¦‡$@BI *]é ¢,c™±×±÷†(c/£ãŒJµ€`AP)"½$„ éõöÓw]ë÷Ç.9÷r‚âÌïÎçs’{Ú.k?ë]Ïû¼e ¥ÏÅC!xþñüãŸüPÏ`ž¶Ñäýôó þñ¿‚ûýù|_“cJÐ'`-@žüúyÐ?ÿøÿ ôªå™½ž ü@ßbٵĠOz½7€?úçÿ O_Ëäo D“^O°üÆÕ’§‘�Þhù»u<úçÿ¿€^&Ï0|Øòw:!xè+ß x+yÚÉÿ¦eašR1ðƒ�ešñÿσþùÇÿè[~òô’ÿƒôûB™Z{c ŸÞò–EÁ÷É9ßÇl±ú"þó–þùÇÿèU èƒä.Ðp®K£å{! „(¥”1‰žè- Ïm¾OІt`)…!åÓÛçAÿüãô)¥I­{ ¨¸.ú¤I![8>“AŸR(�m@7д+EQJlÀÔ´ÌÚO�½”(M{ú’g¥¯Nµd{Ï´ŸÉÛÛ×9Lþl_¿Ý×q>Ûs|¦ïÿ/ÿT@-¯Å>Þßßc˜¼¿ ÔFÓˆ€@J\ Œ·`:Êå›M‚dbˆÉœ^LRkl —€¾ 躤¤-yß’2sjŸfé' Èßõx.¶ñìg_û¦cÛßc¶çøÏÚîÿåøÿÇ©5Rf<ÞM�o'Ÿ…€ÛlÒLV�­ãO£7)§7p€ KÓè“’ö„öØÉ÷&kùü½qY¥öÌb!ön ”Š÷‘PJÄ¡†VK#öb‘¦´:-Ûžð÷>~ÿLïíí¸žvéØícÿÞß×ÿSŒÕÓþž<®éŸ“ÇtªmLþ/çǤóœrì§ÚÖTç2é¤*MÐ+yßM^; Ž'(ŽBaLJhUoZß.%BÐuøáG¼Øó<¢(DJ…R !2™–‰³Ð2`b ઠŸMޤÛhÝVëv&ooûÛßã˜j¿SO8µ×}Nõºõüö¶ÿÉçØúÞTã³·óÝ×qOuìûÛÉûÝ×>Ÿ>!Ÿ¾ýÉŸOµŸ½ÃT¿OŸ†a`Û6+W®¼=uÊëó ~[ óÓ,½˜‚‭i8RÆàWŠbµZÅ÷}Â0Ì€®”šr€övñö6ð“/ø¾À¼¿ ž<¨ûº(Ï0÷÷õþN¼gš<{ϾÎ÷™ŽéÙ¯Ò{7bï¶÷|!š¦¡i†aÄòa!|®Ejš•šN?…C«º”š†%e¬Ùû¾ëº„a8ìr ¶¯Þ—uØpöµ:ì Dû÷þX´ýY¦Zeö5YÿY Ü_ îm?ûó~뵟è|Æ€œüÙT“SÓ4Â0Ì�EQeV\Ó´ÔÙv…„aˆ‚ RÜ¥ 7'}Ê@ª1à„®£EQ ~¥bË/f†A`zr{ƾ¬ê¾@¼·Ù¾/�îkyÜ—¥Ý_Šð\mòqìÏ*ölÀ¹·Udo9Xév4MC×ut]GJ‰”­EBi½Ö­ÀM¿Óº¥RÊ ´†adŸ�^,Bàû~¶O¥1Ž&ìÇq¤”xž‡a„aH‹ih Ë=†{ʄɽYz¢híQ Mt¥Q!e„”2;ùÖÁH­þT€› °­ßüyúYë ·þfoqòñ<Ó…Ÿ| Ï\û¢+{ƒÖsm=Ô’µžëäÿ§š8­ÛIŸ)¸Rðím¿­ß×uÃ02à뺎eY!ð<0 '€@×uòù|ö½ (—ËA€eY‹ELÓIJ¬ŒŽŒ¡”B×u|ßgxx˜|>O±XĶm àÑhd“Ï÷}”RضM¡PÀó<òù<¥RµZ5u|c ] ûŽ{»˜ºŽˆ¢X¯M}ÔÖY¾7ÀO¶{³¸“¿?ùï©èÒTßû{­âTËóT4c_¾C ŒÖßM^m&ºõ÷Qe4±u¬ ÃÈ^§@lk­VC)…aX–…iš&Àäí§+òÞ&<€mÛhMÓ¤­­ ]×i6›¸®›SJ;R€Z–E>ŸÇ0 <Ï£Ñh`Y±â8Žã`YAP¯×QJÑÝÝCµZehhˆ\.Ç´iÓ²}*¥èêê&—sèêêbdtŒÍ›6R©T¨Õ«ôõÌaÎܬZyc¦éèz ú)§ûú(Š¥¡©‚Ï´½-ÝÏäÄ=Ó>öfýž ¤Sñέ­x“¿#„È�®ëzÆCS¤ßK–Ûì;“Ÿ)ÐÂ0¤Ñh¯œ{”/Û¶±m;ÛW l)%õz×u‰¢(;¾ôXu]ǶmLÓ$‚LlHÿO§õü…˜¦™:;˲2>Nß÷‰¢ˆ®®.:;;ÉårVÉ+@±XÌ&Z|Üš¦!¥Ä²,r¹\ö!D2É ðë( Ó§Ó××GWWÓ¦õÒ××GgWõz/JåÙ¾}#?ùñ‡âc‡ÐÐQJñgxûÂnúLtÛ§éÚûâÔûZò[iJ:0­ icë6[™t�[W„V9«dé1D gSJe°•gN^¡Z­a p˲2@¶ž‹a8Ž“M‚½MìÖãNA™»aÙ2¯ëzFM<ÏË,nÙûQeÎ\¡PÀ4ÍŒ2AMÀÄé9ضã8ÙJ•ž³®ëDQÄèè(•J™îîéÔjCèš@74J¥"…B)%®ëN8†(Šh6›Ùñ×ëu —£y9‹E±ØÉÊÿÈcÞŒRŠF£ã8˜¦NGg'œx–=—B¾ƒry3CÃ;ÉY]œ}îG¹êŠK¹ïþÇèï¡XÜÌÐàV^ýt] D:-¬d*j#öô“G ˆâÁ3Qj"h'ƒnxp«”^´Ô¡i]–[AŸ2Ý÷Þ¸}+W ´t»éöZ÷3y%I¿gšfÆ]Ó‰9ÙÒ¦"À©#çº.®ëf“[×õ BˆÌò¥4#åÕ©Åv]ß÷'Ld¥TxÃ0¨V« }ˆSLâ‰! yòùAày–eÑÕÕ•YêZ­J­VÁqÚ±sÝÌš½Œw6ýyr9“þþ6mʳzÕ­¬|ð·T«»²Õ&}¤çW¯×‰Â€öÎY|ñË¿fûöuŒïâž»¯å¡U!—‹'[|­%gœý~zûðÙOžA¥RKÆS§Xèäê_ßGeüwÜxÃÅŠ%6¬Ï‘ËåÃ×m$+è†�±¿AdƒýH@µ^°V`µ.û“ÁŸZÙt)Ÿ ¤éLŸ.»“Á•n+‚ –j*š“n:™¢(Âó¼(&–í`y4Í ^§VÇóšÙi=‡Ôâzž—¼õ¸r¹J)LÓL,˜™Y´ôÂ0Ì�Ýj­•’¸.hšNI¢(¤X,¢iÏAÓ4ªÕjfÑSëíû>ÍfßóÑt³Îy;Gùú{§±eóF~ùËÏ"£!â‰ÓF£Fàûûâ×1wî<6mÞʼyK8rÅKYµêVÞö/熳gÂßô!^zÚ«9奯ç§ÿóa{ä|?¤^¯g Œa4›5Î>÷=aó¾÷ŽiÚ@<~ù|žB¡€eY”ÇGøÄ®æáîä;ßx-Åb;==Ó0Mƒááa¾þ7âØÓùÐçÎCh&•J\®@½ÞÈbD®ë¢ *f"jߌùYƒ^M^¢S+‘ZŸ©<ÿVgªÙlf¼°Õ¦Ÿ×ëõŒ §ËoÊQ[A–J¦é‰·žåd+žS úx29twOgöœƒèé™K©­üùÏ—áoiâûîÕ#DÍf“f³‰”½�x^]×3~kYVf©Óó3M3søÒcH'N<Á¡­½÷ æp8…|Žõëáš_]LwwAeÛBÐ××—M^]×ééé¡V«02"ùÒ%7ñ‚cf³iƒm[¦ÃÀôC0L?üî[èºJœUŸZuœ³Ïý8}s¸úòqãÖaÚ|쿤§×à'?úaóð-[ãßÿgžý:víªÒ?mO¬Ñ0»F–e¡dÀÇ?õ ZõW®ùåWèéÈ®‹ïû™Ï²{÷N>ø‘Ëð›ã\uå%ô÷Ïbll”\.‡ïûäó6óÆå?»„mÛÖEù\ž-[6#¥¤««·Ù$rŽiú‚†Ñ?úÖºC D©ôÔºœO^ÖS˘‚3]šS5ÕlSÐú¾ÏøøxvaSn[*•p'[QÒ‹ÒV§lò¾}ßÇó<‚  ÙlR(tÐß?—Ùs–0}ÆAtu÷ãØyüÀcÃú‡Ø±}-AàfÊCzÜJ),˦Pè ­½›Ù³âÄ“^F¥¼ ?Pèz˲±L‹f³ÆöíؼiÕê.r¹mmmtvvEFƒZ­F½^'æÌYÂKO;•ãO8ƒ\î�êu0òYzØñ´µuó³ÿù(ííÝ™EcccYp°··‡|ÞbÁÂcxÓ[¾Æÿó>øžÿ@ÁA‹Žâ oú4|,ëׯ" <4Í$Š|,Ëæß}€ýðsüøGïcæÌ94šðÕ/ü€³±}ë¬_·r˜öôL£Þð�Á­7_ ‰£›­úRò–ý‡-_Ƨ>þ<hQ$ à ãï ,À÷ëóÂÏ0ÿ€ÃøÊ—. aóæM™oãûU>ð¡«ÑuÉo¯¿4[Ý«µj†ÑÑ”3vbc¾®¡!Ÿ[z“&ê{…B!fjÅRKš:ˆ¾ïgÏôbI©0 DZÉåòÉ/‰"IµZÁó<ÏEÓ†¡cú'q²<ÚÊ)S §ûJ¹kL'lfÎZÊ‹;Ù³bÓÆGxì±Ûð}…T«cŒ¢i‚ÎÎÎdƒ”Ï‹(»8èà²hÑ‘,Z|Ý=ýì|‚Ûn^Éλ‰"Ew×�‹>šc—ŸŠ¦éÔëeî¹ë*vl”z½œ©é¹äó%Ž?ñ",«Àµ×ü_½ø“¼öµŸä¥§½ž¶öN:Ús8v˲³1m öÄT1 V­ṟ¯äÐÃOâ£~ ¯¾Çqˆ"ɶ­°sçF.ûégßAÿt+Ž:‹Þð~¾ôù·rï½7ÐÕ3 ßÁ駟Ƚ÷òío|;¼JxÃYç¼Üðûÿd㦠†•]sÓ4xÝEŸâ¨£Nãûßú ³gHµZÍ&DjðšÍ&›6=Λßv&rÇí×ÓÓ;DZX‚}Ñ _²eÇqùO/¥½­“Z­ÆØØx6~ANP‰$ ™˜e©ž;Ы–d4ÙjMÓr ÄVëšZ_]×P*Â÷‰LáûßÃ�)Ã8y-ŠÐt‹ÎÎnÚÚºÐ4‰R2㯞çe©Ùlf*F«5J©M<(‚b±ãO¸ãŽÓúgrÙϾ̪•7Ñl–)•ÚÐ4-Y…$ù¼‰R>…|7ÇŸôF¸¯9ÆãßÏÎ]#Ì·˜9sç³îÉU\qù7¸õæ«1 39Å£ÞÉøø0ÇŸðJ …6| ƒ»7 嚦e>aØäóEn»ågŒQ-W(ä-~þ³ÏræYgc[}Œ—ǸõÖ?áû¹œÀqœ %)#*Õ o{û×9ïUòîwžÃC«nI(“N©ÔF¡çw×]ŠëºèºÉöí›8ù%ðÙ/}…¼ëÍlÚ´ŠE‹—€Ð ÜQ^ñÊ7ây‚ß]÷5î¼óú켤Œ8ö…¯à%§½‘m[ŸâòË>Š¦Ù™Ó†sçΙg½-[dåW£”‘MÐ\.‡ã8„aÈïfáÂ#‘‘ËÚµÐ?0ËÊe“btd”³^öa6ozŒ[þòšÍa`{¨òTМÜá}"¥ôF¥Kj}Rç4u,SéNÓaèáû.†‘gæÌ#™;ïpæ/8˜Ù³Úè›ÖNgW;¶?u½€ëJ*•€'×>Ì÷¾ó¯@¬é6›MÆÇÇ3ë‘röT_Ö4 Û¶Ï^â6+8¹"'œrÇ÷*¦ÏfëÖ‡ydõõÉEèÂó|4MÇsëèzÀ‹»€Ozž?Ìmù6wßñcÆÆ†QØ,;ò5ôô̦§[ãënáŽÛ¯Í&V:ÔÛ·­gxhkl¥¤­­“ry÷%(Õ¾òy›Rir†dllŒžÉì9‡ãùð±žÆªUwÑÓÝYúTå¨UËœqÖ»9ñ¤ó©Ölî¿÷6¦Më§T*fáùTIQJQ­T8|ù™œwþGˆ|›nü5‡~4aÐÄvtfÌx!góIúzà§?½Ó0P*¾Î}ÓfóÕ¯ý’þpW]ñº»h6›™q«Õj|æóW!£+/ÿ&Õª‡¦ùY¤V)Iø âº.M·Á5¿º”»îø–mÓÖÖÆøØBH^{Ñ'™Ö7—/þ¼ŒZf«|qš Ñ’ÑþlZ@=#è[‚Si‘ ¦U‘‰G ßo"¥†ã´sì çˆeÇ2wÞáôô.¤Tê$ŸWø¾ V“ DÔë5Â`a2{^'N¡ÂŽèë`xx„ÑÑ‘X k fL–ôZu÷E‹᜗½•s_þ.<víÚÁ÷ÝN4(–ºc7_FŒ—‡h4|~ðãkñý<¿þå×xdõuf‰|®¦k°ø¥|âÓdÓ–ýÓ[6­Î¼ÖGúL›6€¦[çñÇïaÛ¶-är¹Ì©NUž”£7›M*•1t³ÄEoþ–½™ð£¬_{?3¦O§½½f³™×u]„�ËÔùÈG?ƺuto}<je|ßM ([ …"åñq>ö±¯S®h¬[·  íbÖ¬9lߺ–¯}í;4ý^~üß÷Å+‰R¡qîËÞÁ…¯ù_þâ… mfæÌ g>šï{̘1‡öŽNî¸ýFîøÛ¯™?ÿ ¢HfiÅBÛgp׺8_^JF††h6Œðú×¼ž+¯ø•Ê&,Ó <šÍFt519LLˆƒ¨I9úâï}bå[SŽ Ïó²¨`kàCˆXvÔ4¶Ž^–úŽ;îD^zÚñ4›:kÙÅý÷®dxxJ¥L$¶íÐÑÕÃòe‡ÒÛÓɺ'wP*€Ûft¤JÆN²RrBàj²V¯ë:2аò%]zïx÷ç™=û†‡jÌž]ä²Ëþ›;þvÅb7–e32<H£Yå¸Îæó_ø«V>Êw¿ýAV¯¼S³h†cÌ›3Z­Ê‘Ë–Ò×ÕÅSOF\}õn¿}eâV]``sXÀ†§Vó×Û®açÎ!Èår”J¥ ô–e†>ãc»A´ó¡÷}„íÛãÈÃ^ehšÁØØx¦Ð¤/•@—½àꀜc06ZçäSN㦋e±'f`Y…B‘îžNfÌš†ØÞànàÀE ™>}.š±eÛ8ý3å¿¿“Ëÿç3ü«8âÈ“Y¶üh.ÿé¥|å‹§#4ÏÛ#6¤ ›6ï|ç‘Æ×/y#=â†a kfâÿy®K{[‰\2õ:NÎáÑGWñš×}œFÓå;ß~½==hºNqù”R‰=o-&Iã#R=­xE=Žl–nœ:.©”˜ú¹Aà£k:->†³Ï}=Å’bdx?øþwyâñMlݼÔ(¨:AÐd×® •jööN~úó_’Ï—htwA|¡Ó’X¶Žm³ÜTŸmÍ/©×*K],9ô$Ž{ñùØv?#ÃUÚÚÓ§[¬^u㣻PííìܵžÁÁݼûýßá­o{3ÕÊzÞõŽ×Q«mFIEÍwÁ4yjÃSÏÂ… éítwÞÏ[ßòzÆF7¢ë­|Gç4N>åµLŸ~�µÚ8Ü=åòfzzz2Ù2ŸÏ·¹šM—Où0ïÿÀë¸þú›Ù´y„w¾çì\y?=ò`ݵ'È¿q@Êg|,bãºGéé;˜3à›ßøoÝÍêÕE>íH©(‹”Jy–z6›6–Yµê¯üñ?ÇqÚ‚G}”K¿ñW¶í€ƒÊ¿½çüé†+yrÍ5<pÏÿ •†eh4 f©ilÙ²•³Ïù7²œ‡úJz>Sj”” $v¡€aØ8N';¶­! r¶‰c[xÍ& æ/åu¾™½ïÕ¶t1#£ãD‘D×DlS2Yöøk1­Ø‚x6ÀÏ&8 Å`Ù£iµj¡éœò’7sì±+èhøÖ·¾Ç}÷݇e):;»™6­þþiäry|ÏÅ÷ïâÄ“ÞÁË_ñi,sœ‘Á ËŸOGI ÂvæÍ]ÁîÁ{Ð5|¾€e™‰¤óÅX¥ˆ¨Õ*¸^ƒ7üËЄÍM7þ3Nÿ>fÏ7¸í¶-lxjÃûٵkÃ0Xxà N?õXfL³¸åæÇÙ¹óQ,Ë "LÓF#ׯG>ú:ºNeÛvxôÑ•ŒŽ<•œ÷+ŸË9úèÓ9ù” Ù½k3×üêbjµAÚJ%T±˜Q4L¯i :““O~%¹|Ãìä´ÓÏçÅ/<¶ÎNòW\ËÈàg0-!ÌÌaOíímÜßïY¹ò\ÞûC¹óŽ:åò�Wÿâv~ù««¸âÊŸ±î‰{hkkËÛ‘‘!¾vñ…ŒŽîŒGJ¶lÝÆñ'žÅŠ£–pí5¿æ›ÿñfÎ쥿¶“ÃvЉ¬cÛí(¥¨ÕªT«ª• üÐYóønþç¿?ÂÀÀ�‚T¡DL!=·I®½‡ÞžYÜ{Ïï)‹tu¶>¾ç‚|á‹_ä㹈zusì“5I€P¡¡ {BÏçš–E¢öpûý/|ßG¶µH7J3ñ�dˆÓ´X¶üh>ø ¹å–[yï{>a@©dE±0>>Nøø~@¥Rf×®2o}Ût\øçŸ>ï|ç;9þ]bÛNpò Xrè Öÿæ/†•ä’ø™#§ë:õzÏkÐÕÝÃYç^H!§øã ¿¢Xjç E3Yÿ<r÷\wÝÞA©Ô†ïûvøñ|æs—ã6»Ö<± MÓ±í<APÃóâàÔ‰'Å'>~×ÿ\V?²nBÒ€íäyõ…ÿÎ’%Çr÷]×±ú¡¿ÐlQ,æ³4ÚÔ í›¶ˆE‹ŽC±æ±»ùò—ÞH,_¾œø›ÜqÏ0ŸùÔ¹\üå X±â(@% I˜E‰m;GOOßûî{xäÑ{8ÿ¼Ó8páÙ¬ Ž9ö,LKñ¯o% jDQD¥Rapp0KÕ¥fƒZµÊi§]@{üðeÎìl§€ç†…¡ë˜†L$`€J¹Œëú¸nƒw¼÷›T*5¾ÿíw0´{S«°, ÀK|]×(õÎâø.âч¯áðÖ`&B(jÕ ãcCœwÞÇxóEç³`á"Ì_†aæY÷äjvíÞÓ M`è=]ÝM§\®@bí¥TùÎsmé÷ꊄ—šHéÒh ñÆ·^Êi§_@±McÓ¦« ‚Óúfà890{ö,ºººÐ4z½ÊÎÛ)—‡èëëett”‘‘ººº(—=*9dÉjÕ™\}•ÇØØ8•J5và,+‰ÔZ B:xǾðl ù¾þÕw³pá‹8ûìeë6A?Ü{×Ϲù¦ËB£Ùôˆ¢€E‹dÖÌ6Ö¬¦Z³XûĦŒ~†ëºxžÇüùóñ˜>Ãã _øøÝ•™ÑÞÞÍ’¥/â„ÏÇu+\÷›¯3<´9;ÆÖ,H-±JãcƒÜü—R«'ÑIƒjµÎe?¿‡fc7Ÿúôa{ï}’R©„e™òjµ8/%NÕµ)<¼ï:V>ð;Þýî5œ~Æ»Ø5˜gùò×ÓÓýCvÖ©T*R—s9Ó²Ù¹c;_ò zûŽb÷ÎP²ŒeÏ¢^¯áûJIò¹|,C>2Š@)t]# ]–z,§roxÍi4›;2®ä¯Œ>Ž­S,´qêéocÙòùÅUÇ÷=:ÚK8–C­.8ìðs¸ðÂéV‡ù÷ü]»vrß½7²ñ©ÛÐtœeÒô|tMP,µ#£¯§8«´P\)èxÎ@ŸXy ȘkêI¢¿Že÷P, PWŒ K¶l-'r¢iZhºÈòPÒUBˆóæŸJÿôƒÙ±sC1íèfh<¢^ó˜{džî­£iZ’äefVªX, „†¦8ï•ãÉ'VñÓÿú4ccC¼æu±lù‹Ø¾£†7nE× COoÅ´þÙ4]( a²mÛ& #Îá.—Ë�ÌŸ Gù2v ÂèÈ0Z§¾ô-JEÚÛ»0M‹±ÑÜróÏ(oÏ–ÞtR¤ñ‹Ôá“Ά1 A{{G–²ÛÛ? 4ÉŠ+PªHw×—^úߨ¶©$ifçäØˆeYè†ddd˜ë{7G}A§£«— ¤³sf–\–оe|ß絯9›o­ðõ¯þ]שV«q¤<ËFUX–I>rP2dlt„òøç¾ì ,^¼ˆ¯|éß9á„#iï˜Gÿ<æÎ™C¡8@D„QD½Ú`ë–5<p÷éí*1:4ë V=º{úyðÞ_ð›_|F#@7,Š…<ºaÑÝÕAI*ÕE±P ’’ ”hš %A‚Ð@) ÓD=]ªÿ¨dÙ  ÃHèÊ(‡,y)/>îu Ì"Š"º;tÝ¥TÊaÙ:º;nÍf“F£ë6©×ʼäDÎ8ûT]ƒ[n{ˆöŽnܰ›¡AW·E!¯3<<L±XâÈ#—S.W(—Ç ¥|,<’£9“‡øwÞù;ªÕ­ôöörÂñó1¬O¬ãW¿¸…uO>±'/Dê¼a}�� �IDATIjµŽ3 Øv™¯|éó<pÿÔjõ̪†É%—\Ì´Ç "8ã´–ñ>®ºzwßu Þÿ;qt]Ë 8R‡:Í‘I#Ñ­Qê4‰. ˆù¾/3>:Æ‘GÉ‚…&Ÿýì'ùýïAoo/F#SARÇ=¥9¦i†!…B; ¸ÿÞßÒÛw›6Žñ½o_L±ØMŽ0 ³ˆ°®ëHåñ†7Œ»%¼án¹å2ÚÚL”,`[y„€F­ŠŠBLÓ¤Q¯rú™ïåü ^FFøž$—9ýŒW06288Ä®ëXõÀíŒ ocó¦Çѵ�)=l+—ðq°tA£Ñ Z©06²5NŽ&y …"Q$ÑtÝÐ ‚˜Îj”’¦Eya„ï„‘̨fBo&·’ÿûÕ)ŸV9¥Å(ÏkÒÛ7Y³æáyMjµ:šfÐÝ=—ƒ9†je;†;Rår™jµJ¥RÆu«¼ü¼^VÙÁ¿èóÜqÇ8N‘ kGéÈrð¢òyÂ0L€FÃM¢°M^rK}žZÃï~ûcòy‹Ri3g…Sœi¶o¹•ŸþäsÑ ££ )aà8&·ß~-—ýüKlݲvB.~ HÁ‚ 9÷Üqÿƒ:¿þÅM\{í7yì±?ã8q.Pk¶g½^OdÁBþ45:u@Ó<¥§—Q Êã;i„Š£Ž:Š~ðûÜzËÍÌ™3—B¡qøÖZÒô·i)^œàÖÍËVE’{î¾’_^}1¹\žB!ŽâV«r¹"ÅR†ápì±/çÔ—¼‰;\¼†â}ïýJHÆFv°{×:¶m{Ôk–iÒÓ;·¹K¾ô.Ö?µ†Í›6ah‚™3û |z­N.—'çä¨Uªhº ··EÔÊŠ…"¶má6TÊe? é6 ÃË´± Ðoâº>~$ñ=Ÿ0’ 4)i¸>JhÝLVx -M©|zÖ€z®ƒS Ç¹á êõ:¦i"ñAS(¥Ñh´øx¢Hr×W i&AÐdttŒryŒf³m—(g²víî¿ÿÆF·ÑÓ3‡ûîù+‡:™³ÐôF™õëÄ2óK=²älÎ:÷=\ÿ›oñÀ}¿¥­}Û·ïä´3ÞÃ+Ïk×çxá ÉŽí÷3^ÙÂâŋٶm;F)¦épß=7d`L•R�Ïó9à€Pè¼>ÿù+ضm%躕0ަQà4+tªÂ–VЧ uÝ&Õê‹øÁþÈÅ—\Éõ×}š¾¾®$Õ¤TêbllŽ“§­­-Ë'JW®x›qZà '¾•~ÿ+®»ö{ôôôËåÑ„ÆÀÀ"^ðÂ8-¢ÔÖM==½lß¾•ÕÞGoo'7ÜËömO²{÷& ]`[º–¨"¡Çîí±mójl;Λ:pþ\òù<µJ™]ƒÃtttÐ×ÓÍðà ¥‚ƒÐ^#ö bé2b|l”j¥L£Gq5]CBEI. J†€D×5B©ˆB‰Tļ=MÆØÔj/ þnNŸVOé€/± Ç)022ÄSëeΜƒ©VÇØ¾}=Û·>ÌSëï#B¤t³BË2˜=ûp^zêÛèê^ν÷¬¢^¡»Û!—‹xpåm¼EŽëÂúõvíòÉç:‘²ÉÐðnN~ÉkXqÔIüâÊO²uË£,Z´ˆ¾¾™\sÍÕ¼ò±ì°<«vÙµ«Èck¶£ìÞ=„a”J¥ŒG§jHš¢œÒ‘(Š8ïüç ßÎS",s{îú}ê„4æÖtçÔ‚§´#-ë"¾8…B!+øˆkHë4› Vu6/8ö¾ý­áûþˆ“‹«¦Äk_÷iž\{7¿½îÛ y„fb*óqòù<Qäašm¼ú5Ÿcå7pë-WÆc ŒŽ‘ÏwIÉŸnúCƒ›)£k Çqp.B×(‹ ·u¢0$ð›I®‹ÂC@á8¥b]ÓÐøÍ*Íz•îÎvººÚ! °-ƒF½‚ïÇ%Ã2ABu¼Šç»I*A„aêèZœ“…x®K$%R)¤TD "DŠ…T±/£¢ /Óˆ±Øgúûsœ­sºn°}ÛZ,32bí“°ñ©©Vwšço¤QÈ0l²ðÀ¥œyö«ùóŸ~ÍŸÿtU’»nR¯‘/øôtÆ޵Fƒi}‹Ø´q‘áýï7]‹øÛí7±eój|î»ïÊå›i+õÐ7m¦m“/Žð‰O|“¿Ý~kÆ(áó{ruÂ0Ìj>÷ÔÇVä‚WŸÅ@ÿL6oqyâñ)—Ë´·wÄi¬I!G«dEÑ„ÆWaâØæÍ=˜¡¡§(WFÙ¹s(®2‹‘29`Þ!yÔ™~“+.û,åòN®ˆahÔëç½êµ¼äÔ¤½sÃÃë™5{Qd ¤ë6ᤓßÂég¼‰¾ÿ˜DY±@)<ßÇ÷=|'ÞãžÛÄÐ44]# ",Ó¤PÈ‘Ï;q~TRúg˜:¶m"(¢;NìК&†ŠˆÃá{* 0 ƒÀóh64ëuChSG�Íf¬·#b.¢é±ò^äoIbÀ'Y’ ˆ¤ T©…RQZ2é6c«/’U3}îgúÁ³Í²Lc�jO‰`ÈÈðFÆF7³ú¡ßgœc?÷ôÈ °,›…Î¥·Ïã±GþHµ¼™åG¾€®®.|„bQ1kÖ4Êc°mK)$3fÄ)§Ç'?ñv.¸ð <´ê>º»;дøÄçÍ;‚W¼âý} šcÃwsÓ/åðÃç36–£Vs±m{B]lkšîžb‘ˆÙspÈ! i4MV®¼k~ùSr9 Ë2³bí´ jÑ®[k<ð(Ž}Ñ´µuâù.ããV=x A8ÆÀÀ"œ\‘Ñ‘ÍÜwïõ îÞ„®ë-5gœõ!ŽyÁ«Ø¸a”W_x&‹ŸÄå?/ÕªB)—™3rÚ¯báü…|û[_àÓ?B®˜\w…ièèB¡Ÿï6P*DKRB¿‘Eë=¢ºØ¶…eÄ·|ÞÆ4 \ÏCŠ0NÙõ#|*Rx^<A”¤2§NëIJ€®i]‹w#2Šˆ‚F"N ¥ÄaS¥DœÍ(!Ré$±._#’Q"¨¤ “ˤöÖCó9‰ÈNæ|ß›Pëš~ž¶~HSO¥Ô˜>c³f¿€G^Çî]›1 ï¬^ýÃû9ì°CÉå;Ši2}ú\xáÔª9ùä“xè¡•ô÷P(–pœÛ¶måä“_ÂÞxk×Õ0t?楆B×Û±,I>?¡ VVÖø¾ÏØØ ó8ý¬·3<Öƒüá÷ßeÍã72oÞº{fRÈ·S*uaccÛß™Yü4�•ËåYxЋ˜9ûz{û0ôåñ ô¿€ O­çá‡eýºU ïÀ÷ƒÌˆWMÓxèþ«xû»ÞÎØÈµJ‡-u8ùŠŸQñ±Lß\¿ÿüÁ§r]7èÈŠS\·‰ºX†@G £(£*DŽ­c›Fâ—D€ÅN›eY¸>"Œ•B×bÃFq”5 C*£ÒA(|¡i”4Æ:‘” mÓŠÓèIסô-Šðƒ�ßó‘R%'IçU  D¶¿X“ßgGçÄÒ·zÅ Ò%=uæZ‹µ'×»zžOè7˜1ë Î}ùÙ½küÃÕ<ùä“(%Ñ„Ð�IWw†ÝÃÐH…éÓ9dÉ[Ù¸áA~síµ¬}b%íttt‚RŒŽÒl4™¿`�Ó ‘2àÜzëh𯨨(ºN¦¨´vë²l›B¡ Ó°ÑtƒÞÞ9ó‚Wp̱ç0>ZŲòqÄYvØièFœé×hŒ36º‰ry3õúhR…¯g…*–eQ*ydõµ\ÿ›/P®T ƒØÚ†Aß·È´“‰gâ8¹¬¤0»\® %]Þtá2æÎYFgwƒ{ï]Ë–-Oa’fC1wÞLfMŸ‰ïê¸n±Æ8†¦á2ðИZDÎÑЄ2B•#4!PzâwH©PQH”´ V =¦(1õKºSHA¤@!Ð4Í0âè­i „ŽDáºqBbI„¦a™†iűÓD7L C¡á¹###„ªQ„ŒB"&MZ ü#¾'¡’ÉY®Ïª-ÝþdY¶N€ ÍaOÓ&7pJéOLw\œ\ŽÙs1oÞü馟rÿ}@*E>_$Ÿ/Ëåñšý3Y¿.¢^“ #£[øÖ7?̶­kÈå;Ñu+Yà£$,9ôzúŽfÛ„<þø*FGÖaš’r9Žð:N'—†aqèagÐÕ5\®H¾ÐFWw/9§HOï,tæZahð ºzº©”w02¼‘Jy7ÆžW§V«eÛ4½6õvïÞÐ> ÓÈ….º®‘Ëí)¯L•—”ÿÇô&N¦Ó4›:¾ñÐÃw ¤Ž@ÑÞÞƒ†¢¿7©i îÚ‰Nˆ&#’PÓ° cÇE4R(!¤B‰8 #ˆsa„¦É(I­Ž»%D‰Ì-4®Çy…RÅ Šaš„„RD€[k% Bðì$x1m ¤@“ñ bèN.‡m;˜–™ÐC-ɱ¥"W(bçŠx®Kµ^G Ÿ(’…„aÄ¿÷ŽÔ“J[ŸÓ4¡"•åRE¢5 ™êбŽÿ½|Å+˜5ûnøÃ¯ÞÈâÅ ±í|Öwzmísزe”žž6lx˜?ÿéŠð¹¹\!æž–E4™Ö¿s^þIº»gQ¯Õ0Mƒƒ>šµ¯`Öì¥ôöÎaÚ´éØN‘'×Þ‰R°øàãÐuòø ÃÃOQÙ0H¥²›Ý»6S«%‘Ï8Šl[¶ã izÖ¡ÑhdÝRg8íêU­Vñ</óÒ‚šŽövdŒ0t-®çÅ÷=ŠùÅÎN„’Ô+e|ß# ƒ¸ZLH0âzÐN§ˆc;hT+ã˜Ba)?VItM ¤ t!Ðt%%RBFH¥PB) CEÊìºÉ(æÔš'‹Y¶…mç1ìX~ Ã&€@)„Ô@7’•ËĶœ|Ó2ãx‚ ›Ã!0ô¤[’>"„Àõ¼øn žOD„‘ŒU']§³³Ã4(—«qÁPԜЇf2Íþ{ûŽû©Ñ‹äŽ‚F,I‹6&wH—\®Äóàˆ#Nfû¶5<pßoдØKO“Ÿrù<Žc£ë–U R¡ÞáÏú¬þííäó¥ŒFyžG$%3g-fþü%ø~ß÷h6j”ËÃ,>䪕]Œïäá‡bÃSkд˜†­_wW–Ã’†åSړϰm;qHC‚ Ĭ(=­ÚJÛ‡hš÷k̺;$¹þIy*B |DZ±-3¶n~ƒ¼¥SÊ1M¯Y!ò5tMÇÒ’Û' ÀHÒðQA„z±râ{ÒG“~œ§nšÈH‹ëDcÍ…0 ˆ"ÐYU¡*E† Ø! ‘TD‘Ââ¶$&„m–N1_¢é¹Ôjõ¬ö4%Žca&AºØ@˜†•К€HJ4ÜP胦&Ü!¨7šÔëµ=I‹± DzlÇNb{ºb4 ™¦ûê9úÏJ-iG‚8± ¨eÁ|®DÿÀ,?òtzzf²îÉ;Ù¹c ºž—vˆ)A4e„çEìÞ½ÁÁ­ŒŒlf||7½YÍmª£ÇE*àû’ O=Jµ:̶­kÚD½> 4°Ì8sll )#l{O{ŽÖ®iipÉ4 5¶š›ïù  Q­U©Õªx^ÓÖÑYφA*¤’hBwâæMŽeÆJ“ôJawÂÕT„ˆ$: -DQ\§A†JFH*F2Y9 $„Ë2P¡BÈ0n „ž§Pl]G]×Tˆ(\×GªÄ1MR¤5ÓB7-$‰"P:A¤pý?R8–ƒç(¡“+”hïèHmt]£Ùpñ4 Í0ˆ² š…mk„Q\ÝhºÙ*×׿&ô,J3h£(Ê·4ò¦nLîf÷Ï}ë ØŒ(’”J=ôÌgÁ‚ÃééAW×t:»úéèè¥Ù¨PoTظa¯ùa0JG‡CGÇlªÕjVÚ'„ ½ÁC³Ùdp÷=D2Ê’·Ò`Në,7M“b±ÈÚ'nåɵ·¡ë:Åb‘\.G!ŸÃ¶Û3GzÏò§2j$¥dÚ´Þ¬òË÷âUBKª|œ\¯áãzMܦ‹›PŽ‚c“·LšM e›=vã�”D&8 LSöu MBä#’Ûr †®cèqÁuz‰|*ãü|¥*^î£(éPEÈHÆA·äµtA{[®Û Ùt±l'—ÇvrD¡d¼6„TŠœ4prNÎ&ð5×§ÑðÐ5M×0 ›z£ŽSȃÔÐ5“/ Ð¯ÔÑ´ØštÈ‹ÜNµºöŽ,Û!’žß$\ÆÆÆ2¹: ㎦Óĸ™;¡3†išôõÍf欃˜Ö?b±)›7®bóæG²Õ4JÒ6ÞiãçⱿ:}vcÚîî~-~1 \ÎôùXNËŠgæí·ýˆÛ×â ‰ €Mļ8-JHéJ: Æ„J“¤ÒÒ³ì¥R)iÞ&_•,‰yLÓ@fË–-Ôë tMÃóìÞ½“r¹‚ŸôÌ)äs ELËÀ±í8SO†øÍ:(…¥ ŒœEÁ1@ÉœPÈh‚XaHZ±õ‰Mˆ¸ÀAF(ZV´!¥ÚS»ŸhÑqÁ…@ªX튤LeEòºµåIL«òÅ„Y$ò @³ Ì|; ÁHe„Z3žð>è6¹‚H\/B¢£ ݲÉç ôLëÃrì8r\Ê…Š;vP­P(˜”J½,_q6×_ûu„Ðq›ÕJ?¨#PضC[{Óikë¢Xì,¶ly˜ñ±íÙêœ6ú’R¢63f.åˆe§0köb'Ïèè.wmˆWÒäš·*4i`qOG¸¿/ýàÙ€>½WgºW,v 4Í›cýºUT«ƒ4›# <òùº®!P \WR­V'4pJyt: Òv­”v;Kûê¤Ö»ÙŒ;ŠÅºI…ŒŽ á6]šÍFœÇAœ6\*ÁБ‘„ BD¶®ã8¶©zuDd!…@‰¸î“(î‡R&÷ÖÊŠ’•D"PQ˜9¨Ib7JÅΞŒZ•±'çU%:t$÷È„YåÈz¶ÈDìÞó»D‚œíàGPs}B¡#…¯ ¢ªõƒC£Éñj¸~ˆëyøaHIœ|?ðÉçòÔëuÆ+e"YÇòh6<n ¦žž^zûf1cú� ¾¾¾¹Ôjc”JEjõQ*•1->‘ÓÎxË–N©­@³†¡±mÛ:V?t7¬Êzx¦ÆÌ²,œ\SO{;‹MWW?†iÏmPoT ÿi­[;Õ¥¾ØÓ[<7E$jŠž7: jõQì¯xžŸ,q¦º££Ó4³NdéìnkkKÚuÄ” îzU§Ñ¨áû1Ýq›.õFÒŠ: ã¶tF\pŽóEÈ0D©ˆÐ÷p=…%±ŒØ*؆À69ÇDF éaé2†`äz^¼2Èßõ ½äv1*P™4SJ¥<%DÌ­³à‹ÌÂàY¨:µÞ’–×2‰’èßdra: ZÚÆ¶H¿i¤’lBÅFOF ¡I¤ÒðI{‡…a9Èj…iýs9÷åç3sÖ<ò¹ÜsïßøÕÕ—ÐÞÞ‹ I¹ÝÂeéÒ¥,Y2î¾^,»—f÷ÒÛÓƒát²îÉ�×UŒŽ5XµòF,C`½}ðö}»vÛ<øàÍÜøÇrÔÑgpØaÇÓÝ3ÿúÑÇYµò/´µuâ8y‚ Ž~;NžöŽ~–,}r,¶§R%}ÂÐçá‡ndddSÖ¢¼U,iíœ×ÚÞpÝøþáÂðô.âÉ’#øÍ¬)il䎞çâºÍ¤,pO+?DZ0MÅ=Ù«ÕµZ•f#¶Ðñ³™P™dàI„ Ñ”ˆóFT„!bz¡›9»H˜³¨×kqÓÕH¡T„.ºòiTÇhV@!QRb;•I‘ C"¥…ÁPÊ4Î ãy.È:|¥](¢¬-L%I„R ÐÓ÷c¥*ý=-ß™¬À¥-.öu¥b6 ®Åõ«š¦144B³é2}ÆV¬8‡Je#Ã],?õu̘¹Œ_]} FÃИÉÒCç Å'Q*ÀÎ]ƒ<úÈüæ¢OqÏÝó—[¾ÎüËèìè%—Ë36>È}÷ü Éœ¹‡³xÑÁhB±ö‰{X³æ^vïÚÆ’¥'`6¶­#eƒb± Ç)LèšP,õ²ðÀcyñ‹_M½>ÆŽmk©TFñü&Qè±eóÃxnuB§¼}5ûýGo‘´? O)ŽèiaB\b—ö­˜ƒ».ÃÃCøžJáäótvtP*•0u·}llŒF½‘É}Aà#ÃS‹ƒMC8¦Žc›˜–‰@â7«HÓ(’H&€Vñ™(R"#™äŽ(H¸¶a¤7–2é|E{�©R ’ÀOE{,s³'XeÔ„âd99Ç»…¢¤ÿü£·8÷<îîîLÍH å«UãO¸€»î¼Ž;žÀu%¾¯sÊKÞÀ¿âr¾öå×S,örÑ›>I­Úà‘‡n`hh+cãCìØ:È›Þòi~ò“ϲyó=üí¯W"e€çÕ´Á®Ãç.þ2å‘ßñ±¾¡±‹ p™;§ƒ®®»vn§Ù¬g‚A¬´éôM›ÍGœÊ¬Ù‹¹å–«Ù¼ñ*•¡¤;t”ÝÉ$Ž{˜™BÓZKÐÚ–}ª» >W “–Œ(éeiX–I{{ ßó©UªŒúA˜(-ž‡®‹8’ç{¸õ¸ ­Z¯Ò¨×㌾(¶¦"މcê€.2pÚ–EζÐõ8:øu<×Cª¤m_b……ˆéOª(2‰¢I™:‹I.’P{x³T{Òï´$ë©t{-4C¥ Uñê‘Zµ›Øû¼XI·¯AàØo~ëçxðþß±mëêõ¸ÖaÕÊ[8ãÌ·ñݯ¿Û6ùü¿Áš'¶ð««¾Êôéäò9<w„#–ŸBW—`ÇŽG0 0ãvzaÜBDðÊ ¾Å1+s羓8€þyDa@µòóæ–èèÈsû_WQ«Ö0 3I-±XÀ‚B3 yäf6oZM¥2ˆï»DQ˜9­¹\.ËbMS\Zïì2ù>ÿlKòÒYé±ÔçS¯Uñ\7é{†P¶ëÖ¤ô©×ÆiÔ0¦ÅÅBaq/öLçÖ4 ]Ã2L,ÓD'7y®Ÿ9¹‘´ÞHœ?÷tÌèCvçITc’U™¥náØ*ž�dàÞÃß§ >Íš'oDâïÌâÛß~é-MlÓ"ùööfÏîçŠËVbfö|rí=¬}üŒW]˜0Çïú·×0wÞ<Ðâ;Pœóòw°kg“¼ã „•DIc÷­sÞyÇ&i'6JéT+#ØVœ…Y®Ä«äšÇî¢Z-S,æ0 ‹R©‡ ¤³s€íÛ×°þÉ»øíilçyÇ3³÷IrIŠº,É%ߎãÈI|µIŠ\@’Þ(š¶Z¤m€¢-´E _Š ´Iš¶è‘ÄNÓ4ÓÍíÖV\çð+²¤X–l‰¢DJäÞ³Çì̼ý0ó̾»ZJ´LÙŽº,Hîg¯ÿû¼ÿçú?®ÛÃ0TÔ3-\$°TÃêïû¥$¤.ªsJ)° ’Ífƒz­‚ÓébŠxØk…À?tèüÀ‘™†¸<™[½‘ Ò 4=7ØÎ<× ’4¡3dÃúÑðt'R,±Òf««k¬Y·Ú}>²aܸÄ`u$ ¶mÛÆ]w¿—ô/p]‰‰I|ß'ŸÏãô>û÷ðñþûÈß‘Íå‚F¸S$7ÜxGž;FœLâñ`þS ñÒãuw¼ËšeùLt:M©4Ãòò)ºS¥«H¦¦Ù4ËËûi·ë¤R¦çæ[ßJ"‘ã©§¾AÛ>M2ܹõr=4)V]š}ôÐ¥|ê\:K°Ë÷I…V³‰ò\ñ ¶"·ˆ…µ6Êï—ñb„ö4l?Pzʇž J…½Ÿ†åF &°Ôf …ü´Åà]Àê\Ъ!$« ¶ÈýT|¿<òŒþ‚ Ö}îê_pðœLèËårlÙ²…Ó§OòÎwý:~å#5­Ì¸çС}Äbq&òi”‚Í›ç°í h`Y©tž|.ÏýOaZf ­ú �ž {ïx3†O· Åd ˜\oÒlÖ¸÷–w“ÊnÂu¡×ëR©Ôعë5ÜzëÏâ8M^xþ Ü^5ÊÀK]–4ºËnµiÓ&R©Ýn—jµ5Ãw»ÝÏtxÜÓ%½Îñ±T08Ù€˜e‰$¦á‡êSà…©fÞéˆV„ô##AC€Š^$Øô£%¾ò5 2—Rç‚WÔ—šo*†ŠÅ‚ÊÊd*N"#5êFØ0áù¸"mÑsq±tî€ì¸¾ªÕj«nÚx +'ŸOÒëõ¨V«QJß0LŠÅ++( V«Gz˜™L†éÒtºÐhœdb¢¾”¦,“Ùé©°ìÄ ‘�Ûn„å!·¿özffJ<ñÃTÊ5Þô¦wsõµo¤Ûm³xòõÚé0pà8¤úh#}D3“ñ��ŠIDATÆ€>Åf˜»o$ʼn](+%ÀG¡°ð%ãèy>® *6ú 3#+&B<Ñ*UýÚm±Å’©4ÂHKᇬ³ÒzcÖâÖ/7°/dáãñ‰dœt*I:“$•Š“HÄI$àÅ`J¸®OÏñh·;4›-šÍNw�øRƒ’L&Éçód³~á—>ÈC}Ã0#°K"G¢lž­v߃f³‹éýÍ[æ}HZd³iL3ÍÌ T•øø†‰Óõiµ{XN3òÅ®¿nŽÒD–ûǯ͕øõßø#N.®ð•/ÿÚbÔ<¬*­[)Í•hÍpTf£,üú9=¡|”„Î=?à^¾×ø’2Œ¾ðk_‹[k!=*L«]ŸÅV¯<°×sis‹T2A&›"—K“ ŸN'ˆÅ-ñx(OCù&®«h6Ú¬¬T0ŒòÈ8µRŠL&ƒëº4› îºû|õËM&“�'!eÓ XÉDŠv—¨c,¡gË–mx¾Çêj#0ÑŸ“(F˜¬œ­°e³âôÒ­–K,Ö&7Ñæv~|à~ïý$›»šÏ|úC,~†™™™~%ehé¥PQB”ú¤ÅZ­¦M­ñ‡Ñ Îù}9jo#«0”éºAóë†BÊ?'}>*Â1}8§±ñUb­7ŠÞ5F¥ÏdRäò)2éÙ\2¸?À4¬°£*†ï›Ôk­Ïv±íVX_ä,¦@s>Ëâ  ×õ°m›‰‰‰°Õ¥ÓéÒhÔé$“ –—–¢&}0¨ÕÊ .“‡ÿÓjíEMMü¦cG÷ãº÷}êOÉdr¤ÓYÚí:Fð-e3ðÁ}œn˜Æ÷S NôBÙ?Ê¢J›¦ cÖÇûíŽHê]²²R²¢×áÁÙ™õ‚ñãÁ6J5(0è§Í×|EjtÃåtˆš³eYÄâ1‰ÉdÀíÓéÉdœ\.iZ$’iL#ò-L3F½a“L%Ù[ƒ I¸°ëºA×Qº¿Ã¦R)îýÙßdÏž[±[Uêµ2ËË'Ù÷ð²ï‘8øÌ“Äb1 …@üªÛ©à1ÉTQqìè¸âŠ­㔂äsô¹G9thÉDœlv’ÉÉ)Nž\àÚù˜™»†¶ ßøÚlš}›ææÉdú”F¨Œ>‰\Š u#(èdAH)‹Dz†}¥—jíÍõvMé1i_¤….€°!!àìDr‘¬ƒ~»L¾f1ˆî€©sˆ[¿JÊè+ÓšJݰe |Ë-oevVÑjêÙÜ{öÜI±¸ƒ={îå®»~•l®„mÛüûýE£QŽºÝÒé Ï=w”k®¹—­[@©fTä§O1 ê¥|”ß%“Ébš&­V‹V«ÍkoßËŽ»8qâßùöY]9E» [¶î&™ÌÒív”'$#Ö]Â’ÒØÞjµ¢bÃZ­F½^§ÙlFååç+K¸4ôFë3ö«�/_‹}±ÔFx¬j/v»=âm+¨²Ì0ÿ 0Í®ƒï›4êml»Î[òûú.ô;…Ç!ÉpÇîb²33òs¥|‚Oüëï²²RçwÞ÷\·ÊCߺ×õ¨VOG‘×u) ´;{®›çè±6žðm ¦Ói²ÙlTΛH‹¶ÓîpöÌYÊ•2»ç·²yÓŸ¾ïk”+gI§ Õò¹õ5ïàûßûoN.ˆoñd÷§UB£¢8§WW'¦64³=†éÆ‚]Ï÷é9=:m+ÔR÷£6ÄD<F³̇ŠYq †ç)šÍ•JV»4Gc ŒNìtvlOc`à8n8œB¬b‡ùݯçÇO‚n·_Ö-Ýa¶m³ºz0™)Á‡?ü%ì–ÇTÉŒê{D­MWpètƒú*»Õ"Ÿ‡T ¾÷Øýœ=̽²›]毽ٙM,œØï{£OuÕå¨G7,L“šÑ•ÏTïv{©åcÐ_À÷'y‰^ϥݑ†qnÇÁ¶épË21-+ÈPDo:m‡FÓ¦Óî 5Ù÷e/âñ8Ùl†tÚ »‹úƒ•®¸~O‰o~½ŸÐ‘ˆôöž8q‚éé]`ÀÇ>ú^víÜ>Ð¥&`ë;/�L3~NñúÓ<®».Îìl’L.åntgTnú¼. j²×‹ÌäýÊkÑÁ?ý«øúM)ð<EÏñP¾,�˲„Œ؉˜‘ï©h'è9N$‰¨[Z¹v¯×£ÕQ(Ó ²zŠRišN§C.—cii…ÙYøî#_²Þ™L&°Ö`°ÁŸ蓸žï¹$ImPrŸF‰µð—JÓ´Zmvì|×]ÿ±û9x0°òŸà_øÀŸ\…ÛÅ•WÞÊ?J¯×‰¬ûpF_Ðå´áÐÞÀ{•¹¤Žìhm|Œ¾4;ô‡L+z=v»G½Þ¢R±Y]m°ºR§^oQ¯Ù4ê6†M»Ý¡çô"ÀŸ{-ŸT*…ã8|é‹°oŸâÈѪÕ*¶mã8wßû+(¥xöÈ÷£ˆI¡PˆT•ý¯½ý>ÿ¹oSȧqœ^<“hüH¯ªH™¼æ¶]lš»‚}ß}ŒS§Éd2<öèøþQš-—»ï}/{vßI»íDâO² ¤_VÊt¥·auç~;&š™5ÇP½4œ~=»ã¸ÑÍu½ÇsNŠ~øÇaß#Ÿ ´þßó‡”˧)—Ï’ÏßÈï¿ÿ×X8©Èç ÄãñH+Sc�Š“X1ŸGþ"±xb ÓM¬¬ô.‹Åív»Ôj|ßgÛÖMìßÿ>‰RÓÓÓA³H šå*×ÍçØ±#9 :àbò0ú(Ôt:M.—‹d S©LOOS*•Ó}“KNoÂõ ýø`¤ú!`Òã;_Ö׿Dý<½ÈJbÞ"*U(ä9qü�ðÇI­¾ÀæÍ7pûßA½ÞaqñYÒéd4†TÀ³,îxý»8xðY¾óíû) $¶.@¶mG€'xÇΘ†É§>ñ·<sàLNNP*ÍP­VY©ÀäD+#žHÁ0í ï!x"‚+}ÒÕ!­N§3¼Ò#>ºoðR€oÁÀpä82@˜�& ƒ d²Ùì”8(Jº¬½>=]¤N¤µo¸<V¿é©wý¦+,‹¥ 2«Yž|âa ƒ·¾í]¬¬xüÃG›o¹‡£Ï=ÂòÒ&' ,µ-›æ®dçÎÝÜxÓ›ùó?{;ž DH&SÄãñˆOK²Kø|6›ò7Þx½žÍ§ï¿/Ò¿™šš¢\®àtRÜþº[Èå'xþ…%žýÉ|¿eÅêã‡ki$áÖn·# ™¯ÇéõÏBÝX,†mÛe 4€P 6ÂûqPéÈŽ-ý(K?ÌG%.õ%kQ¢ó‡XC‰f�´ÛK|òßþ†L&I6›bÓ¬Éüü=zfÙìD4hͲ,f7íä-?÷Ûl¿b7éT–üɧ(W–hÙ5\·ËóÇ~ÄñD¢·n8¡Ri£üñDŒ©©MT*i~¼ÿ1fgK8Nнµ²r×uxè;ò¾÷ý2Nw wÞù[<û“c|û›ÿÀÌLr õO¨`ݡ뿖;Y¾J)΋áøëù2õÀó<&''#Ž(çH§s´Ûu¦g‹¼ðüq ö”ËåàyZu–—°}ûµìÙ³—³+'Y^:Îêê…Âl´“‹Ì XÜL6W¢çÔPØTªŠcÏ?H­zÓô0Œ óÌ™3ôz]lûN•J¥Ìܦ4Û·Y‘¨^^,M#ºò.¨³ˆaº§Æ».ôcZ³^ËÿRÏ>WRøÙl–T*ôɦR¤Ó)¶m{=å•¶}:ì~R‘¤ãØ|íÁ¢Õj‘H$˜˜(119G>?Iyu‘ÕÕ%b1+*Ëå§yÃ?ÏWìÁõ·½æ-œ>}ˆo}ë˸n‹¥ÓGøÉáïS©œè“a€ãÂd²€a”J³¤REšÍfDËF9µžçŒj…4Ê�¾¾`6Â⯋ÓÅðï1§ýÙö%"S­VÉf³ :·ï}'O?ý(ËKq]/Ø’_]QY)³g©U—qÝn$uØçÜpõÕ71¿{žÛ_w›·¦˜ž)09¹ÓÈãt;ÔjË8Ž4ó'“ôz.®—àêko#›™¤QoqøðANŸ:J:“ $ÉC§Y€¯ •J%&''ÐT*ªøÔK;ôAv’¬súË<$ªÕÌç L•¶S©,‡uê%þŸ8¹p‚+¯¼2r¬ …•J%â÷úÈO UŠóšL&QJÑlTøÜg?Ì}ŸüŠ4W]½›«¯šgë¶yVWmÿáWY]=I,À‹Y<ü?ßâgÞô‹”J›¹fþ ¼ù-ogqñqr¹Ü@–YÏ?ˆÑn·#zÔü–_vÉ<ëYê1§¿Ìé’L—HÈî=÷rý wrráYæ6ïäà3R¯-Q*•h4d³YšÍfÁÀH…c2™Äqœh`D&“‰xv�þ™LVËæøóG8ò“g@õÈ2d22™ìÀ‚™˜(°zöʯãyAÍÌl‰d2˜2ï8~ô<z$J¦2І©^/ïw£Ä[Ç ÿ);ú"JÁ”\v’n§ÅÌìVNßÏÑçÃ4M¦¦¦¢d”ðãáÂ5}ðœˆG‹Å(Äêºnj ¨F2åéãºÝ®S®±eË6rÙ?zòÇÌÎîennùÂ33Û©VÏÒëy‘õŽØC½Ò ¬9Ð ®'å†Ù—bé×Ëé'ÆœþÕãË—¾¸xÅÅÃá�gÎ<K½^öíd“„8õÁp6½OBª’ñÕw�±þÝn'Y*$% ™LÓ4YZ^æÔâi®¼êVæ6_…ç§ð•¢¼ò¦iE>ˆ<¥ÓiŠÅb4u]^‡n±ôz]}¿9ŽmÛ•1§¿Œ/@m·Û‘5à XO:E6P)ÓÈäñ|>e<Ûí6Íf€\.Xİ5QèhM ØÄÙNoÛ6år•JåyŽyŠ›n¾‡|n‚­[®¡Û F I-P"‘ˆ(‹Þ&˜N§£»$¬^Ö8ý¹ec ÿJ‚_Oô($¢×ÍýÐKzeö“ˆ«JŒÜ²,šÍft=)nK¥RQ´D€N—D¨7‹…}®–ÿ¾÷ vïÞËî=¯cvvÅâVbY±A ²€õñ¤²ÃÈãrÿyØÅ‹äE–!xczó*ˆäè% :MÑ¿©\”Ç…Nˆƒ( ’ì’ˆeY‘jX]©É—>V½´Âó‚uÏóH§S‹2Ù³³»Èå&I$³:ø¦iE;†,^}�‡™yѹ®©×èÍÆ‡,•z¥d“ÆÇ¨8ýp¶Rþ«-éåºe–ra^$“I²Ùl”œ?@�/ààë‹J�)Ï$š§pøÐÙ{ÇÛØ±óz¶]q3ÚBÔé%Ïc™ì$i+N,æL«Ôx½i½ÙàãņÇDQìåþ0϶þòSÔÊôâÜ:Ž :é2báå>½^H~'Xßi¤¹»Ÿ8 cÚ­3|æë˜¦b~÷^n»ímìúÁ@‰A£-‰Dšlv& b~y [;ª_öRjYF½ßF_YLÉX™L¾ÜèÆËMmFÕî +ƒéÙL MêÚb­}ßJ à NGƒð2™L4^txw‘dáåòzüP¦V]ä‰Çÿ‹bq†»ïý%ºÝÿûÝ/Ðh¬„ís‹ÓìÞ½—D2Îáƒßˆ@¯· Žz×ÙP£~1–^Iwþ°ðÎô/ïç €ÕÁ?LFéÃè¥Êâ0µÑi‹„&…Ç ]’P¨ä dn˜\K¢:rî á¯ã/ÏOqõµ{9vt?vƒRi{ïx33Ûi·+Ñu‡w­ánÕˆÛº-½q_œ�Ù&õ}ØÚü;ô§W*”©¿Žµ¸ÿ¨$„&‡˜ðwáðú€Y0⌋0IIO—Ëe|¿Ì¾÷U®»~/7ßtozó¯Q)/ã8-¦¦¶O¤h4Î`šÖ9 GZ½”AÃè(À« ~ð>àÁÀpõFáa¾u¹¢ÏþÓÃ_Ó{¾]I_:Ÿµ½ìW¤²[ˆe—¥ÑÊšõ{'N<ÃéÓÏòôbó֫غež¹ÍWR¯¯Òj5XZ:B¥R¡ÑhD ŽÖ kè„ w ¦åx!f‡)Z¥÷å"¦‰ tÃ[Gâ¼ÃaËqøòÕ³�ÖâýëQµ+݃TTö¢Ù$ö/õ=Rë“J¥"‡?hlopôÈã>ø`0·yùü$¾ß£V«Òé´qÂ8¡V:í¦!¯è„aIg(<éŸÏÒS/üÇ®ïÓÚ€­‰#GŽ<Æò­0¶/ŸÚ˜à¿ Ý¡/]þÖž/-çh³„ñ´ïÝÒÎ<tÃóŒ_–öò¼2œ7X 'LíõY¬=Òu˜¿»!à›€­Åä‚iÞ(àÇ”RÊè/w¥½Á^xA¨É0ŠÓ Aûô?]À׿³áÇ×Z�jˆ>˜#~У-™vl$@cÚ¹²`¬5ð¤ÎóZ„…Ø@• Õ ô@BJ¿Nl­À·Ã Tꔢ¤e…2(!Ì1Fm¹(ÃX{QHòk­sôä˜~ÎðÿÉó 'ÓF]÷|çê×U#&a®uÿú£=~Ÿë}žó}®k}þ#˜¨„Rê¼;ÀZ÷ë 75púJÌ÷‰–a`½?ã!ô`Tø<Nháë@9Ä«ìÞ0ÍQJ©Ø(Ç5\=íðBñðG,~xŸ5ô"5>PÎwÿFœ38ˆxý×½˜k­÷u¾Ô÷¹‘ŸÙˆóFZ{¥.>µP*ÓìOb~Lšž�kÄk:ßµΩ§Q±ö•§­5¬ýš–^¶ ±ä= iY¤=/ÚžÌQ ãC¼º�íº(›1¯NˆÙføZˆßaÐ3 ôžv‘Vx¿®¤”ç‘Мc úñ±ÞòÀó6&@5‚ôBÌvBÜÚ!Sé® úЙÕßÓ.,ü>®Þò1èÇÇšÇ~x÷Ž6ö´èMw8‚£Bës>¥ Ãì‹£Ó<ls €A?>^Žc-çY¨Ž,€„•Ò<–QÉ)_ãñžfù ãA?>^M G£0>ƒñyÿ ŽÊ¤†6�éÜÛF;&ãc|¼Ð3ÄNnjÀ Œf1‰§1èÇÇ+ úÇÕy€mlTÍŒ1®3/â7�°ÿç^› m«Ô����IEND®B`‚�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/backward.svg������������������������������������������������������������������0000644�0001750�0001750�00000016600�11513400616�013714� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="17.383955" height="11.521334" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="backward.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#c2d7ff;stop-opacity:1;" offset="0" id="stop3156" /> <stop style="stop-color:#0052e9;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154" id="radialGradient3823" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154-6" id="radialGradient3823-8" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3154-6"> <stop style="stop-color:#c4ffc2;stop-opacity:1;" offset="0" id="stop3156-8" /> <stop style="stop-color:#29e900;stop-opacity:1;" offset="1" id="stop3158-8" /> </linearGradient> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3005" xlink:href="#linearGradient3154" inkscape:collect="always" /> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3005-9" xlink:href="#linearGradient3154-6-3" inkscape:collect="always" /> <linearGradient id="linearGradient3154-6-3"> <stop style="stop-color:#c4ffc2;stop-opacity:1;" offset="0" id="stop3156-8-6" /> <stop style="stop-color:#29e900;stop-opacity:1;" offset="1" id="stop3158-8-8" /> </linearGradient> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3039" xlink:href="#linearGradient3154" inkscape:collect="always" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3154-6-3" id="linearGradient3834" x1="155.85469" y1="172.76819" x2="164.06802" y2="172.76819" gradientUnits="userSpaceOnUse" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="26.415406" inkscape:cx="-4.2754646" inkscape:cy="5.7606146" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" showgrid="false" inkscape:window-maximized="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-489.01162,-542.22567)"> <path sodipodi:type="star" style="fill:url(#radialGradient3823);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:69.98059082;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path2162" sodipodi:sides="4" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="276.1543" sodipodi:r2="278.92676" sodipodi:arg1="-2.3619232" sodipodi:arg2="-1.576525" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 329.32828,326.78486 390.53474,-2.23728 2.23729,390.53474 -390.53474,2.23729 z" transform="matrix(-0.00872238,0,0,0.02341045,495.81697,535.79085)" /> <path sodipodi:type="star" style="fill:url(#radialGradient3039);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:37.58040237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path2162-4-0" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(-0.02856234,0,0,0.02479039,511.69101,535.07132)" /> <path sodipodi:type="star" style="fill:url(#radialGradient3005);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:37.58040237;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path2162-4" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(-0.02856234,0,0,0.02479039,517.57773,535.07132)" /> </g> </svg> ��������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/ui_manager.c������������������������������������������������������������������0000644�0001750�0001750�00000006146�11753301431�013675� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #include <gtk/gtk.h> #include "ui_manager.h" void ui_set_browser_directory(ui_state *ui, const gchar *directory) { ui_infos *infos = ui->infos; if (infos->browser_directory) { g_free(infos->browser_directory); infos->browser_directory = NULL; } if (directory == NULL) { infos->browser_directory = NULL; return; } infos->browser_directory = g_strdup(directory); } const gchar *ui_get_browser_directory(ui_state *ui) { return ui->infos->browser_directory; } void ui_set_main_win_position(ui_state *ui, gint x, gint y) { if (x == 0 && y == 0) { return; } ui_main_window *main_win = ui->infos->main_win; main_win->root_x_pos = x; main_win->root_y_pos = y; } void ui_set_main_win_size(ui_state *ui, gint width, gint height) { ui_main_window *main_win = ui->infos->main_win; main_win->width = width; main_win->height = height; } const ui_main_window *ui_get_main_window_infos(ui_state *ui) { return ui->infos->main_win; } static void ui_main_window_new(ui_infos *infos) { ui_main_window *main_win = g_malloc0(sizeof(ui_main_window)); main_win->root_x_pos = 0; main_win->root_y_pos = 0; main_win->width = UI_DEFAULT_WIDTH; main_win->height = UI_DEFAULT_HEIGHT; infos->main_win = main_win; } static void ui_infos_new(ui_state *ui) { ui_infos *infos = g_malloc0(sizeof(ui_infos)); ui_main_window_new(infos); infos->browser_directory = NULL; ui->infos = infos; } ui_state *ui_state_new() { ui_state *ui = g_malloc0(sizeof(ui_state)); ui_infos_new(ui); return ui; } static void ui_main_window_free(ui_main_window **main_win) { if (!main_win || !*main_win) { return; } g_free(*main_win); *main_win = NULL; } static void ui_infos_free(ui_infos **infos) { if (!infos || !*infos) { return; } ui_main_window_free(&(*infos)->main_win); g_free(*infos); *infos = NULL; } void ui_state_free(ui_state *ui) { if (ui) { ui_infos_free(&ui->infos); g_free(ui); } } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/ui_manager.h������������������������������������������������������������������0000644�0001750�0001750�00000003571�11753301433�013703� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef _UI_MANAGER_H #define UI_DEFAULT_WIDTH 550 #define UI_DEFAULT_HEIGHT 420 typedef struct { gint root_x_pos; gint root_y_pos; gint width; gint height; } ui_main_window; typedef struct { gchar *browser_directory; ui_main_window *main_win; } ui_infos; typedef struct { ui_infos *infos; } ui_state; ui_state *ui_state_new(); void ui_state_free(ui_state *ui); void ui_set_browser_directory(ui_state *ui, const gchar *directory); const gchar *ui_get_browser_directory(ui_state *ui); void ui_set_main_win_position(ui_state *ui, gint x, gint y); void ui_set_main_win_size(ui_state *ui, gint width, gint height); const ui_main_window *ui_get_main_window_infos(ui_state *ui); #define _UI_MANAGER_H #endif ���������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/Makefile.am�������������������������������������������������������������������0000644�0001750�0001750�00000004060�11751531527�013460� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������ if NO_IMAGES_DIR appicondir = imagedir = else appicondir = $(datadir)/pixmaps imagedir = $(datadir)/mp3splt-gtk endif image_DATA = backward.svg backward_inactive.svg image_DATA+= forward.svg forward_inactive.svg image_DATA+= play.svg play_inactive.svg image_DATA+= stop.svg stop_inactive.svg image_DATA+= pause.svg pause_inactive.svg appicon_DATA = mp3splt-gtk.png mp3splt-gtk_ico.svg SOURCES = $(appicon_DATA) $(image_DATA) EXTRA_DIST = $(appicon_DATA) $(image_DATA) bin_PROGRAMS = mp3splt-gtk mp3splt_gtk_SOURCES = \ tree_tab.c tree_tab.h \ main_win.c main_win.h \ xmms_control.c xmms_control.h \ gstreamer_control.c gstreamer_control.h \ player.c player.h \ player_tab.c player_tab.h \ preferences_tab.c preferences_tab.h \ utilities.c utilities.h \ split_files.c split_files.h \ freedb_tab.c freedb_tab.h \ snackamp_control.c snackamp_control.h \ special_split.c special_split.h\ mp3splt-gtk.c mp3splt-gtk.h \ util.h \ multiple_files.c multiple_files.h \ messages.c messages.h \ import.c import.h \ options_manager.c options_manager.h \ preferences_manager.c preferences_manager.h \ widgets_helper.c widgets_helper.h \ combo_helper.c combo_helper.h \ radio_helper.c radio_helper.h \ export.c export.h \ ui_manager.c ui_manager.h \ dialog_helper.c dialog_helper.h INCLUDES = @GTK_CFLAGS@ @MP3SPLT_CFLAGS@ mp3splt_gtk_LDADD = @GTK_LIBS@ -lgthread-2.0 @MP3SPLT_LIBS@ -lm # Define a C macro LOCALEDIR indicating where catalogs will be installed. localedir = $(datadir)/locale DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ if !GNOME DEFS += -DNO_GNOME endif if WIN32 INCLUDES += -mms-bitfields -enable-stdcall-fixup mp3splt_gtk_LDFLAGS = -mwindows mp3splt_gtk_LDADD += -lwsock32 -lshlwapi else DEFS += -DPIXMAP_PATH=\"$(appicondir)\" -DIMAGEDIR=\"$(imagedir)\" endif if AUDACIOUS mp3splt_gtk_LDADD += @AUDACIOUS_LIBS@ INCLUDES += @AUDACIOUS_CFLAGS@ -I/usr/include/dbus-1.0 -I/usr/include/dbus-1.0/include else DEFS += -DNO_AUDACIOUS endif if GSTREAMER mp3splt_gtk_LDADD += @GST_LIBS@ INCLUDES += @GST_CFLAGS@ else DEFS += -DNO_GSTREAMER endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/Makefile.in�������������������������������������������������������������������0000644�0001750�0001750�00000055524�11753562402�013502� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in 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. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = mp3splt-gtk$(EXEEXT) @GNOME_FALSE@am__append_1 = -DNO_GNOME @WIN32_TRUE@am__append_2 = -mms-bitfields -enable-stdcall-fixup @WIN32_TRUE@am__append_3 = -lwsock32 -lshlwapi @WIN32_FALSE@am__append_4 = -DPIXMAP_PATH=\"$(appicondir)\" -DIMAGEDIR=\"$(imagedir)\" @AUDACIOUS_TRUE@am__append_5 = @AUDACIOUS_LIBS@ @AUDACIOUS_TRUE@am__append_6 = @AUDACIOUS_CFLAGS@ -I/usr/include/dbus-1.0 -I/usr/include/dbus-1.0/include @AUDACIOUS_FALSE@am__append_7 = -DNO_AUDACIOUS @GSTREAMER_TRUE@am__append_8 = @GST_LIBS@ @GSTREAMER_TRUE@am__append_9 = @GST_CFLAGS@ @GSTREAMER_FALSE@am__append_10 = -DNO_GSTREAMER subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/gnome-doc-utils.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/mp3splt.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(appicondir)" \ "$(DESTDIR)$(imagedir)" PROGRAMS = $(bin_PROGRAMS) am_mp3splt_gtk_OBJECTS = tree_tab.$(OBJEXT) main_win.$(OBJEXT) \ xmms_control.$(OBJEXT) gstreamer_control.$(OBJEXT) \ player.$(OBJEXT) player_tab.$(OBJEXT) \ preferences_tab.$(OBJEXT) utilities.$(OBJEXT) \ split_files.$(OBJEXT) freedb_tab.$(OBJEXT) \ snackamp_control.$(OBJEXT) special_split.$(OBJEXT) \ mp3splt-gtk.$(OBJEXT) multiple_files.$(OBJEXT) \ messages.$(OBJEXT) import.$(OBJEXT) options_manager.$(OBJEXT) \ preferences_manager.$(OBJEXT) widgets_helper.$(OBJEXT) \ combo_helper.$(OBJEXT) radio_helper.$(OBJEXT) export.$(OBJEXT) \ ui_manager.$(OBJEXT) dialog_helper.$(OBJEXT) mp3splt_gtk_OBJECTS = $(am_mp3splt_gtk_OBJECTS) am__DEPENDENCIES_1 = mp3splt_gtk_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) mp3splt_gtk_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(mp3splt_gtk_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ DIST_SOURCES = $(mp3splt_gtk_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } DATA = $(appicon_DATA) $(image_DATA) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUDACIOUS_CFLAGS = @AUDACIOUS_CFLAGS@ AUDACIOUS_LIBS = @AUDACIOUS_LIBS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ $(am__append_1) \ $(am__append_4) $(am__append_7) $(am__append_10) DEPDIR = @DEPDIR@ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@ DOC_USER_FORMATS = @DOC_USER_FORMATS@ DOXYGEN = @DOXYGEN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FAKE_GTK_CFLAGS = @FAKE_GTK_CFLAGS@ FAKE_GTK_LIBS = @FAKE_GTK_LIBS@ GMSGFMT = @GMSGFMT@ GRAPHVIZ = @GRAPHVIZ@ GREP = @GREP@ GST_CFLAGS = @GST_CFLAGS@ GST_LIBS = @GST_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HELP_DIR = @HELP_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LOCALEDIR = @LOCALEDIR@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MP3SPLT_CFLAGS = @MP3SPLT_CFLAGS@ MP3SPLT_LIBS = @MP3SPLT_LIBS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ # Define a C macro LOCALEDIR indicating where catalogs will be installed. localedir = $(datadir)/locale localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @NO_IMAGES_DIR_FALSE@appicondir = $(datadir)/pixmaps @NO_IMAGES_DIR_TRUE@appicondir = @NO_IMAGES_DIR_FALSE@imagedir = $(datadir)/mp3splt-gtk @NO_IMAGES_DIR_TRUE@imagedir = image_DATA = backward.svg backward_inactive.svg forward.svg \ forward_inactive.svg play.svg play_inactive.svg stop.svg \ stop_inactive.svg pause.svg pause_inactive.svg appicon_DATA = mp3splt-gtk.png mp3splt-gtk_ico.svg SOURCES = $(appicon_DATA) $(image_DATA) EXTRA_DIST = $(appicon_DATA) $(image_DATA) mp3splt_gtk_SOURCES = \ tree_tab.c tree_tab.h \ main_win.c main_win.h \ xmms_control.c xmms_control.h \ gstreamer_control.c gstreamer_control.h \ player.c player.h \ player_tab.c player_tab.h \ preferences_tab.c preferences_tab.h \ utilities.c utilities.h \ split_files.c split_files.h \ freedb_tab.c freedb_tab.h \ snackamp_control.c snackamp_control.h \ special_split.c special_split.h\ mp3splt-gtk.c mp3splt-gtk.h \ util.h \ multiple_files.c multiple_files.h \ messages.c messages.h \ import.c import.h \ options_manager.c options_manager.h \ preferences_manager.c preferences_manager.h \ widgets_helper.c widgets_helper.h \ combo_helper.c combo_helper.h \ radio_helper.c radio_helper.h \ export.c export.h \ ui_manager.c ui_manager.h \ dialog_helper.c dialog_helper.h INCLUDES = @GTK_CFLAGS@ @MP3SPLT_CFLAGS@ $(am__append_2) \ $(am__append_6) $(am__append_9) mp3splt_gtk_LDADD = @GTK_LIBS@ -lgthread-2.0 @MP3SPLT_LIBS@ -lm \ $(am__append_3) $(am__append_5) $(am__append_8) @WIN32_TRUE@mp3splt_gtk_LDFLAGS = -mwindows all: all-am .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) mp3splt-gtk$(EXEEXT): $(mp3splt_gtk_OBJECTS) $(mp3splt_gtk_DEPENDENCIES) $(EXTRA_mp3splt_gtk_DEPENDENCIES) @rm -f mp3splt-gtk$(EXEEXT) $(mp3splt_gtk_LINK) $(mp3splt_gtk_OBJECTS) $(mp3splt_gtk_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/combo_helper.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dialog_helper.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/export.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/freedb_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gstreamer_control.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main_win.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/messages.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mp3splt-gtk.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiple_files.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/options_manager.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/player.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/player_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preferences_manager.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preferences_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/radio_helper.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/snackamp_control.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/special_split.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/split_files.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tree_tab.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ui_manager.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utilities.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/widgets_helper.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmms_control.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` install-appiconDATA: $(appicon_DATA) @$(NORMAL_INSTALL) test -z "$(appicondir)" || $(MKDIR_P) "$(DESTDIR)$(appicondir)" @list='$(appicon_DATA)'; test -n "$(appicondir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appicondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appicondir)" || exit $$?; \ done uninstall-appiconDATA: @$(NORMAL_UNINSTALL) @list='$(appicon_DATA)'; test -n "$(appicondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appicondir)'; $(am__uninstall_files_from_dir) install-imageDATA: $(image_DATA) @$(NORMAL_INSTALL) test -z "$(imagedir)" || $(MKDIR_P) "$(DESTDIR)$(imagedir)" @list='$(image_DATA)'; test -n "$(imagedir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(imagedir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(imagedir)" || exit $$?; \ done uninstall-imageDATA: @$(NORMAL_UNINSTALL) @list='$(image_DATA)'; test -n "$(imagedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(imagedir)'; $(am__uninstall_files_from_dir) ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) $(DATA) installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(appicondir)" "$(DESTDIR)$(imagedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-appiconDATA install-imageDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-appiconDATA uninstall-binPROGRAMS \ uninstall-imageDATA .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic ctags distclean distclean-compile \ distclean-generic distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-appiconDATA \ install-binPROGRAMS install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-imageDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \ ps ps-am tags uninstall uninstall-am uninstall-appiconDATA \ uninstall-binPROGRAMS uninstall-imageDATA # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/special_split.c���������������������������������������������������������������0000644�0001750�0001750�00000051347�11753301441�014425� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The batch processing tab * * this file is for the special split tab, where automatic * split modes can be selected *..*******************************************************/ #include <gtk/gtk.h> #include <glib/gi18n.h> #include <libmp3splt/mp3splt.h> #include "special_split.h" #include "preferences_tab.h" #include "main_win.h" #include "multiple_files.h" GtkWidget *time_label = NULL; GtkWidget *spinner_time = NULL; GtkWidget *equal_tracks_label = NULL; GtkWidget *spinner_equal_tracks = NULL; gint selected_split_mode = SELECTED_SPLIT_NORMAL; gint split_file_mode = FILE_MODE_SINGLE; GtkWidget *split_mode_radio_button = NULL; GtkWidget *file_mode_radio_button = NULL; GtkWidget *multiple_files_component = NULL; GtkWidget *all_spinner_silence_number_tracks; GtkWidget *all_spinner_silence_minimum; GtkWidget *all_spinner_track_minimum; GtkWidget *all_spinner_silence_offset; GtkWidget *all_spinner_silence_threshold; GtkWidget *all_spinner_trim_silence_threshold; GtkWidget *all_silence_remove_silence; GtkWidget *all_threshold_label; GtkWidget *all_trim_threshold_label; GtkWidget *all_offset_label; GtkWidget *all_number_of_tracks_label; GtkWidget *all_min_silence_label; GtkWidget *all_min_track_label; //! Get the split mode static gint get_selected_split_mode(GtkToggleButton *radio_b) { GSList *radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_b)); gint selected = SELECTED_SPLIT_NORMAL; gint i = 0; for(i = 0; i < NUMBER_OF_SPLIT_MODES;i++) { GtkToggleButton *test = (GtkToggleButton *) g_slist_nth_data(radio_button_list,i); if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(test))) { selected = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(test), "split_type_id")); } } return selected; } //! Set the split mode void select_split_mode(int split_mode) { GSList *split_mode_radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(split_mode_radio_button)); gint i = 0; for(i = 0; i < NUMBER_OF_SPLIT_MODES;i++) { GtkToggleButton *test = (GtkToggleButton *) g_slist_nth_data(split_mode_radio_button_list, i); int id = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(test), "split_type_id")); if (split_mode == id) { gtk_toggle_button_set_active(test, TRUE); return; } } } void deactivate_silence_parameters() { gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_silence_number_tracks), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_silence_minimum), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_track_minimum), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_silence_offset), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_silence_threshold), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_silence_remove_silence), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_threshold_label), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_offset_label), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_number_of_tracks_label), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_min_silence_label), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_min_track_label), FALSE); } void activate_silence_parameters() { gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_silence_number_tracks), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_silence_minimum), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_track_minimum), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_silence_offset), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_silence_threshold), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_silence_remove_silence), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_threshold_label), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_offset_label), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_number_of_tracks_label), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_min_silence_label), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_min_track_label), TRUE); } void deactivate_trim_parameters() { gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_trim_silence_threshold), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(all_trim_threshold_label), FALSE); } void activate_trim_parameters() { gtk_widget_set_sensitive(GTK_WIDGET(all_spinner_trim_silence_threshold), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(all_trim_threshold_label), TRUE); } //! Issued when the split mode selection changed void split_mode_changed(GtkToggleButton *radio_b, gpointer data) { selected_split_mode = get_selected_split_mode(radio_b); int enable_time = (selected_split_mode == SELECTED_SPLIT_TIME); gtk_widget_set_sensitive(GTK_WIDGET(spinner_time), enable_time); gtk_widget_set_sensitive(GTK_WIDGET(time_label), enable_time); int enable_split_equal_time = (selected_split_mode == SELECTED_SPLIT_EQUAL_TIME_TRACKS); gtk_widget_set_sensitive(GTK_WIDGET(spinner_equal_tracks), enable_split_equal_time); gtk_widget_set_sensitive(GTK_WIDGET(equal_tracks_label), enable_split_equal_time); if (selected_split_mode == SELECTED_SPLIT_SILENCE) { activate_silence_parameters(); } else { deactivate_silence_parameters(); } if (selected_split_mode == SELECTED_SPLIT_TRIM_SILENCE) { activate_trim_parameters(); } else { deactivate_trim_parameters(); } save_preferences(NULL, NULL); } //! Issued when the track duration for split after every n seconds is changed static void spinner_time_changed(GtkSpinButton *spinner, gpointer data) { gint time = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner)); gchar time_text[1024] = { '\0' }; g_snprintf(time_text, 1024, _("Split every %2d seconds."), time); gtk_label_set_text(GTK_LABEL(time_label), time_text); save_preferences(NULL, NULL); } //! Issued when the number of tracks for equal length splitting is changed static void spinner_equal_tracks_changed(GtkSpinButton *spinner, gpointer data) { gint equal_tracks = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner)); gchar equal_tracks_text[1024] = { '\0' }; g_snprintf(equal_tracks_text, 1024, _("Split in %2d equal time tracks."), equal_tracks); gtk_label_set_text(GTK_LABEL(equal_tracks_label), equal_tracks_text); save_preferences(NULL, NULL); } //! Issued when channge between single file and batch processing mode is requested static void split_file_mode_changed(GtkToggleButton *radio_b, gpointer data) { GSList *radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_b)); GtkToggleButton *current_radio_button = (GtkToggleButton *) g_slist_nth_data(radio_button_list,0); if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(current_radio_button))) { split_file_mode = FILE_MODE_MULTIPLE; gtk_widget_set_sensitive(multiple_files_component, TRUE); } else { split_file_mode = FILE_MODE_SINGLE; gtk_widget_set_sensitive(multiple_files_component, FALSE); } save_preferences(NULL, NULL); } //! Creates the split mode window part static GtkWidget *create_split_mode() { GtkWidget *local_vbox = gtk_vbox_new(FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(local_vbox), 3); //normal split split_mode_radio_button = gtk_radio_button_new_with_label(NULL, _("Normal")); gtk_box_pack_start (GTK_BOX (local_vbox), split_mode_radio_button, FALSE, FALSE, 2); g_signal_connect(GTK_TOGGLE_BUTTON(split_mode_radio_button), "toggled", G_CALLBACK (split_mode_changed), NULL); g_object_set_data(G_OBJECT(split_mode_radio_button), "split_type_id", GINT_TO_POINTER(SELECTED_SPLIT_NORMAL)); //time split split_mode_radio_button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(split_mode_radio_button), _("Time")); gtk_box_pack_start(GTK_BOX(local_vbox), split_mode_radio_button, FALSE, FALSE, 2); g_signal_connect(GTK_TOGGLE_BUTTON(split_mode_radio_button), "toggled", G_CALLBACK(split_mode_changed), NULL); g_object_set_data(G_OBJECT(split_mode_radio_button), "split_type_id", GINT_TO_POINTER(SELECTED_SPLIT_TIME)); // GtkWidget *big_horiz_fake = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(local_vbox), big_horiz_fake, FALSE, FALSE, 0); GtkWidget *horiz_fake = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(big_horiz_fake), horiz_fake, FALSE, FALSE, 25); gint default_time = 60; gchar time_text[1024] = { '\0' }; g_snprintf(time_text, 1024, _("Split every %2d seconds."), default_time); time_label = gtk_label_new(time_text); gtk_box_pack_start(GTK_BOX(horiz_fake), time_label, FALSE, FALSE, 0); GtkAdjustment *adj = (GtkAdjustment *)gtk_adjustment_new(0.0, 1, 2000, 1.0, 10.0, 0.0); spinner_time = gtk_spin_button_new(adj, 1, 0); gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_time, FALSE, FALSE, 6); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_time), default_time); gtk_widget_set_sensitive(GTK_WIDGET(spinner_time), FALSE); gtk_widget_set_sensitive(time_label, FALSE); g_signal_connect(G_OBJECT(spinner_time), "value-changed", G_CALLBACK(spinner_time_changed), NULL); //split in equal length split_mode_radio_button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(split_mode_radio_button), _("Equal time tracks")); gtk_box_pack_start(GTK_BOX(local_vbox), split_mode_radio_button, FALSE, FALSE, 2); g_signal_connect(GTK_TOGGLE_BUTTON(split_mode_radio_button), "toggled", G_CALLBACK(split_mode_changed), NULL); g_object_set_data(G_OBJECT(split_mode_radio_button), "split_type_id", GINT_TO_POINTER(SELECTED_SPLIT_EQUAL_TIME_TRACKS)); // big_horiz_fake = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(local_vbox), big_horiz_fake, FALSE, FALSE, 0); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(big_horiz_fake), horiz_fake, FALSE, FALSE, 25); gint default_tracks = 10; gchar equal_length_text[1024] = { '\0' }; g_snprintf(equal_length_text, 1024, _("Split in %2d equal time tracks."), default_tracks); equal_tracks_label = gtk_label_new(time_text); gtk_box_pack_start(GTK_BOX(horiz_fake), equal_tracks_label, FALSE, FALSE, 0); adj = (GtkAdjustment *)gtk_adjustment_new(0.0, 1, 2000, 1.0, 10.0, 0.0); spinner_equal_tracks = gtk_spin_button_new(adj, 1, 0); gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_equal_tracks, FALSE, FALSE, 6); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_equal_tracks), default_time); gtk_widget_set_sensitive(GTK_WIDGET(spinner_equal_tracks), FALSE); gtk_widget_set_sensitive(equal_tracks_label, FALSE); g_signal_connect(G_OBJECT(spinner_equal_tracks), "value-changed", G_CALLBACK(spinner_equal_tracks_changed), NULL); //trim using silence detection split_mode_radio_button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(split_mode_radio_button), (gchar *)_("Trim using silence detection")); gtk_box_pack_start(GTK_BOX(local_vbox), split_mode_radio_button, FALSE, FALSE, 2); g_signal_connect(GTK_TOGGLE_BUTTON(split_mode_radio_button), "toggled", G_CALLBACK(split_mode_changed), NULL); g_object_set_data(G_OBJECT(split_mode_radio_button), "split_type_id", GINT_TO_POINTER(SELECTED_SPLIT_TRIM_SILENCE)); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(local_vbox), horiz_fake, FALSE, FALSE, 0); GtkWidget *param_vbox = gtk_vbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(horiz_fake), param_vbox, FALSE, FALSE, 25); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); all_trim_threshold_label = gtk_label_new(_("Threshold level (dB) : ")); gtk_box_pack_start(GTK_BOX(horiz_fake), all_trim_threshold_label, FALSE, FALSE, 0); adj = (GtkAdjustment *)gtk_adjustment_new(0.0, -96.0, 0.0, 0.5, 10.0, 0.0); all_spinner_trim_silence_threshold = gtk_spin_button_new(adj, 0.5, 2); gtk_box_pack_start(GTK_BOX(horiz_fake), all_spinner_trim_silence_threshold, FALSE, FALSE, 0); //silence split split_mode_radio_button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(split_mode_radio_button), (gchar *)_("Silence - split with silence detection")); gtk_box_pack_start(GTK_BOX(local_vbox), split_mode_radio_button, FALSE, FALSE, 2); g_signal_connect(GTK_TOGGLE_BUTTON(split_mode_radio_button), "toggled", G_CALLBACK(split_mode_changed), NULL); g_object_set_data(G_OBJECT(split_mode_radio_button), "split_type_id", GINT_TO_POINTER(SELECTED_SPLIT_SILENCE)); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(local_vbox), horiz_fake, FALSE, FALSE, 0); param_vbox = gtk_vbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(horiz_fake), param_vbox, FALSE, FALSE, 25); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); all_threshold_label = gtk_label_new(_("Threshold level (dB) : ")); gtk_box_pack_start(GTK_BOX(horiz_fake), all_threshold_label, FALSE, FALSE, 0); adj = (GtkAdjustment *)gtk_adjustment_new(0.0, -96.0, 0.0, 0.5, 10.0, 0.0); all_spinner_silence_threshold = gtk_spin_button_new(adj, 0.5, 2); gtk_box_pack_start(GTK_BOX(horiz_fake), all_spinner_silence_threshold, FALSE, FALSE, 0); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); all_offset_label = gtk_label_new(_("Cutpoint offset (0 is the begin of silence,and 1 the end) : ")); gtk_box_pack_start(GTK_BOX(horiz_fake), all_offset_label, FALSE, FALSE, 0); adj = (GtkAdjustment *)gtk_adjustment_new(0.0, -2, 2, 0.05, 10.0, 0.0); all_spinner_silence_offset = gtk_spin_button_new(adj, 0.05, 2); gtk_box_pack_start(GTK_BOX(horiz_fake), all_spinner_silence_offset, FALSE, FALSE, 0); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); all_number_of_tracks_label = gtk_label_new(_("Number of tracks (0 means all tracks) : ")); gtk_box_pack_start(GTK_BOX(horiz_fake), all_number_of_tracks_label, FALSE, FALSE, 0); adj = (GtkAdjustment *)gtk_adjustment_new(0.0, 0, 2000, 1, 10.0, 0.0); all_spinner_silence_number_tracks = gtk_spin_button_new(adj, 1, 0); gtk_box_pack_start(GTK_BOX(horiz_fake), all_spinner_silence_number_tracks, FALSE, FALSE, 0); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); all_min_silence_label = gtk_label_new(_("Minimum silence length (seconds) : ")); gtk_box_pack_start(GTK_BOX(horiz_fake), all_min_silence_label, FALSE, FALSE, 0); adj = (GtkAdjustment *)gtk_adjustment_new(0.0, 0, 2000, 0.5, 10.0, 0.0); all_spinner_silence_minimum = gtk_spin_button_new(adj, 1, 2); gtk_box_pack_start(GTK_BOX(horiz_fake), all_spinner_silence_minimum, FALSE, FALSE, 0); horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); all_min_track_label = gtk_label_new(_("Minimum track length (seconds) : ")); gtk_box_pack_start(GTK_BOX(horiz_fake), all_min_track_label, FALSE, FALSE, 0); adj = (GtkAdjustment *)gtk_adjustment_new(0.0, 0, 2000, 0.5, 10.0, 0.0); all_spinner_track_minimum = gtk_spin_button_new(adj, 1, 2); gtk_box_pack_start(GTK_BOX(horiz_fake), all_spinner_track_minimum, FALSE, FALSE, 0); all_silence_remove_silence = gtk_check_button_new_with_label(_("Remove silence between tracks")); gtk_box_pack_start(GTK_BOX(param_vbox), all_silence_remove_silence, FALSE, FALSE, 0); gtk_spin_button_set_value(GTK_SPIN_BUTTON(all_spinner_silence_number_tracks), SPLT_DEFAULT_PARAM_TRACKS); gtk_spin_button_set_value(GTK_SPIN_BUTTON(all_spinner_silence_minimum), SPLT_DEFAULT_PARAM_MINIMUM_LENGTH); gtk_spin_button_set_value(GTK_SPIN_BUTTON(all_spinner_silence_offset), SPLT_DEFAULT_PARAM_OFFSET); gtk_spin_button_set_value(GTK_SPIN_BUTTON(all_spinner_silence_threshold), SPLT_DEFAULT_PARAM_THRESHOLD); gtk_spin_button_set_value(GTK_SPIN_BUTTON(all_spinner_trim_silence_threshold), SPLT_DEFAULT_PARAM_THRESHOLD); deactivate_silence_parameters(); deactivate_trim_parameters(); //wrap split split_mode_radio_button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(split_mode_radio_button), _("Wrap - split files created with mp3wrap or albumwrap (mp3 only)")); gtk_box_pack_start(GTK_BOX(local_vbox), split_mode_radio_button, FALSE, FALSE, 2); g_signal_connect(GTK_TOGGLE_BUTTON(split_mode_radio_button), "toggled", G_CALLBACK(split_mode_changed), NULL); g_object_set_data(G_OBJECT(split_mode_radio_button), "split_type_id", GINT_TO_POINTER(SELECTED_SPLIT_WRAP)); //error mode split split_mode_radio_button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(split_mode_radio_button), _("Error mode (mp3 only)")); gtk_box_pack_start(GTK_BOX(local_vbox), split_mode_radio_button, FALSE, FALSE, 2); g_signal_connect(GTK_TOGGLE_BUTTON(split_mode_radio_button), "toggled", G_CALLBACK(split_mode_changed), NULL); g_object_set_data(G_OBJECT(split_mode_radio_button), "split_type_id", GINT_TO_POINTER(SELECTED_SPLIT_ERROR)); select_split_mode(SELECTED_SPLIT_NORMAL); GtkWidget *scrolled_window = create_scrolled_window(); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), GTK_WIDGET(local_vbox)); return scrolled_window; } //! Creates the selection between single file split and batch processing static GtkWidget *create_single_multiple_split_modes() { GtkWidget *local_vbox = gtk_vbox_new(FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(local_vbox), 3); //single file file_mode_radio_button = gtk_radio_button_new_with_label(NULL, _("Single file")); gtk_box_pack_start(GTK_BOX(local_vbox), file_mode_radio_button, FALSE, FALSE, 2); g_signal_connect(GTK_TOGGLE_BUTTON(file_mode_radio_button), "toggled", G_CALLBACK(split_file_mode_changed), NULL); //multiple files file_mode_radio_button = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON(file_mode_radio_button), _("Batch processing")); gtk_box_pack_start(GTK_BOX(local_vbox), file_mode_radio_button, FALSE, FALSE, 2); g_signal_connect(GTK_TOGGLE_BUTTON(file_mode_radio_button), "toggled", G_CALLBACK(split_file_mode_changed), NULL); GtkWidget *multiple_files_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(local_vbox), multiple_files_hbox, TRUE, TRUE, 2); multiple_files_component = create_multiple_files_component(); gtk_widget_set_sensitive(multiple_files_component, FALSE); gtk_box_pack_start(GTK_BOX(multiple_files_hbox), multiple_files_component, TRUE, TRUE, 5); GtkWidget *scrolled_window = create_scrolled_window(); gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolled_window), GTK_WIDGET(local_vbox)); return scrolled_window; } //!creates the special split page GtkWidget *create_special_split_page() { GtkWidget *vbox = gtk_vbox_new(FALSE, 0);; /* tabbed notebook */ GtkWidget *notebook = gtk_notebook_new(); gtk_box_pack_start(GTK_BOX(vbox), notebook, TRUE, TRUE, 0); gtk_notebook_popup_enable(GTK_NOTEBOOK(notebook)); gtk_notebook_set_show_tabs(GTK_NOTEBOOK(notebook), TRUE); gtk_notebook_set_show_border(GTK_NOTEBOOK(notebook), FALSE); gtk_notebook_set_scrollable(GTK_NOTEBOOK(notebook), TRUE); GtkWidget *notebook_label = gtk_label_new(_("Split mode")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), create_split_mode(), (GtkWidget *)notebook_label); notebook_label = gtk_label_new(_("File mode")); gtk_notebook_append_page(GTK_NOTEBOOK(notebook), create_single_multiple_split_modes(), (GtkWidget *)notebook_label); return vbox; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/special_split.h���������������������������������������������������������������0000644�0001750�0001750�00000003374�11753301444�014432� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef SPECIAL_SPLIT_H #define FILE_MODE_SINGLE 1 #define FILE_MODE_MULTIPLE 0 #define SELECTED_SPLIT_TRIM_SILENCE 6 #define SELECTED_SPLIT_SILENCE 5 #define SELECTED_SPLIT_EQUAL_TIME_TRACKS 4 #define SELECTED_SPLIT_NORMAL 3 #define SELECTED_SPLIT_TIME 2 #define SELECTED_SPLIT_WRAP 1 #define SELECTED_SPLIT_ERROR 0 #define NUMBER_OF_SPLIT_MODES 6 void select_split_mode(int split_mode); void deactivate_silence_parameters(); void activate_silence_parameters(); void split_mode_changed (GtkToggleButton *radio_b, gpointer data); GtkWidget *create_special_split_page(); #define SPECIAL_SPLIT_H #endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/pause.svg���������������������������������������������������������������������0000644�0001750�0001750�00000023054�11513144100�013245� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13.375" height="12.53125" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="pause.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient3850"> <stop id="stop3852" offset="0" style="stop-color:#ffac02;stop-opacity:0.50400001;" /> <stop id="stop3854" offset="1" style="stop-color:#ffc400;stop-opacity:1;" /> </linearGradient> <linearGradient id="linearGradient5111"> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop5113" /> <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop5115" /> </linearGradient> <linearGradient id="linearGradient3161"> <stop style="stop-color:#2c9ce8;stop-opacity:1;" offset="0" id="stop3163" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3165" /> </linearGradient> <linearGradient id="linearGradient3158"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3160" /> <stop style="stop-color:#fffcfc;stop-opacity:1;" offset="1" id="stop3162" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3158" id="linearGradient3166" x1="343.90701" y1="527.39569" x2="635.65576" y2="360.81635" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient4137"> <stop style="stop-color:#00ff00;stop-opacity:0;" offset="0" id="stop4139" /> <stop id="stop4147" offset="0.5" style="stop-color:#00ff00;stop-opacity:1;" /> <stop style="stop-color:#00ff00;stop-opacity:1;" offset="1" id="stop4141" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient4137" id="radialGradient4145" cx="436.80746" cy="494.4108" fx="436.80746" fy="494.4108" r="185.17741" gradientTransform="matrix(1.2235362,-0.5446939,0.5814184,1.3060295,-412.82479,53.892637)" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3153"> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3155" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="1" id="stop3157" /> </linearGradient> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop id="stop3151" offset="0.5" style="stop-color:#ffffff;stop-opacity:1;" /> <stop style="stop-color:#9b0000;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#ff0c0c;stop-opacity:0.50400001;" offset="0" id="stop3156" /> <stop style="stop-color:#ff2300;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3162" id="linearGradient3167" gradientUnits="userSpaceOnUse" x1="161.31094" y1="575.80811" x2="180.54237" y2="575.80811" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3153" id="radialGradient3169" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,1.1923401,0,-28.118883)" cx="-175" cy="146.19353" fx="-175" fy="146.19353" r="20.126865" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3161" id="radialGradient3167" cx="351.25055" cy="594.79358" fx="351.25055" fy="594.79358" r="24" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.3076652,2.1716075e-6,-2.3541417e-6,1.4170433,-108.73894,-245.03349)" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient5111" id="radialGradient5117" cx="356.61749" cy="592.42078" fx="356.61749" fy="592.42078" r="24" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.767096,-0.00314281,0.00303291,0.7402712,81.260899,146.98955)" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient5111" id="radialGradient3014" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.2110643,0.03842593,-0.11805932,1.1738083,-5.3284231,-124.67094)" cx="356.61749" cy="592.42078" fx="356.61749" fy="592.42078" r="24" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154-6" id="radialGradient3817-8" cx="353.35184" cy="595.29504" fx="353.35184" fy="595.29504" r="12" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5723657,0.03212797,-0.03489336,1.7077056,-180.9011,-433.25825)" /> <linearGradient id="linearGradient3154-6"> <stop style="stop-color:#ff0c0c;stop-opacity:0.50400001;" offset="0" id="stop3156-8" /> <stop style="stop-color:#ff2300;stop-opacity:1;" offset="1" id="stop3158-8" /> </linearGradient> <radialGradient r="12" fy="595.29504" fx="353.35184" cy="595.29504" cx="353.35184" gradientTransform="matrix(0.68610479,0.02154006,0.04473785,0.6367646,78.051205,209.66338)" gradientUnits="userSpaceOnUse" id="radialGradient3029" xlink:href="#linearGradient3850" inkscape:collect="always" /> <radialGradient r="12" fy="595.29504" fx="353.35184" cy="595.29504" cx="353.35184" gradientTransform="matrix(1.5723657,0.03212797,-0.03489336,1.7077056,-180.9011,-433.25825)" gradientUnits="userSpaceOnUse" id="radialGradient3029-4" xlink:href="#linearGradient3154-6-3" inkscape:collect="always" /> <linearGradient id="linearGradient3154-6-3"> <stop style="stop-color:#ff0c0c;stop-opacity:0.50400001;" offset="0" id="stop3156-8-3" /> <stop style="stop-color:#ff2300;stop-opacity:1;" offset="1" id="stop3158-8-3" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3850" id="radialGradient3856" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.60328921,0.02676458,0.02657269,0.637526,126.41143,207.38647)" cx="353.32071" cy="595.53052" fx="353.32071" fy="595.53046" r="12" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.949002" inkscape:cx="-4.8269888" inkscape:cy="6.2702591" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" width="48px" height="48px" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-maximized="1" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-343.96875,-591.625)"> <rect style="fill:url(#radialGradient3029);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.90981007;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="rect3169-4" width="4.198554" height="11.566265" x="344.41293" y="592.12054" rx="0.114345" ry="2.6209421" /> <rect style="fill:url(#radialGradient3856);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.90981007;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="rect3169-4-8" width="4.198554" height="11.566265" x="352.68338" y="592.09113" rx="0.114345" ry="2.6209421" /> </g> </svg> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/forward_inactive.svg����������������������������������������������������������0000644�0001750�0001750�00000016236�11513400616�015471� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="17.383951" height="11.521334" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="forward_inactive.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#e1e1e1;stop-opacity:1;" offset="0" id="stop3156" /> <stop style="stop-color:#757575;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154" id="radialGradient3823" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154-6" id="radialGradient3823-8" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3154-6"> <stop style="stop-color:#c4ffc2;stop-opacity:1;" offset="0" id="stop3156-8" /> <stop style="stop-color:#29e900;stop-opacity:1;" offset="1" id="stop3158-8" /> </linearGradient> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3005" xlink:href="#linearGradient3154" inkscape:collect="always" /> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3005-9" xlink:href="#linearGradient3154-6-3" inkscape:collect="always" /> <linearGradient id="linearGradient3154-6-3"> <stop style="stop-color:#c4ffc2;stop-opacity:1;" offset="0" id="stop3156-8-6" /> <stop style="stop-color:#29e900;stop-opacity:1;" offset="1" id="stop3158-8-8" /> </linearGradient> <radialGradient r="180.93385" fy="494.83838" fx="585.97931" cy="494.83838" cx="585.97931" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" id="radialGradient3039" xlink:href="#linearGradient3154" inkscape:collect="always" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="26.415406" inkscape:cx="2.1253696" inkscape:cy="5.7606146" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" showgrid="false" inkscape:window-maximized="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-488.98166,-542.22567)"> <path sodipodi:type="star" style="fill:url(#radialGradient3005);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:37.58040619;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="path2162-4" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(0.02856233,0,0,0.02479039,477.79951,535.07132)" /> <path sodipodi:type="star" style="fill:url(#radialGradient3039);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:37.58040619;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="path2162-4-0" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(0.02856233,0,0,0.02479039,483.68623,535.07132)" /> <path sodipodi:type="star" style="fill:url(#radialGradient3823);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:69.98061371;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="path2162" sodipodi:sides="4" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="276.1543" sodipodi:r2="278.92676" sodipodi:arg1="-2.3619232" sodipodi:arg2="-1.576525" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 329.32828,326.78486 390.53474,-2.23728 2.23729,390.53474 -390.53474,2.23729 z" transform="matrix(0.00872238,0,0,0.02341045,499.56027,535.79085)" /> </g> </svg> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/player_tab.c������������������������������������������������������������������0000644�0001750�0001750�00000334166�11753301447�013725� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The player control tab * * this file is used for the player control tab **********************************************************/ #include <gtk/gtk.h> #include <glib/gi18n.h> #include <string.h> #include <libmp3splt/mp3splt.h> #include <unistd.h> #include <math.h> #ifdef __WIN32__ #include <winsock2.h> #define usleep(x) Sleep(x/1000) #endif #include "util.h" #include "tree_tab.h" #include "player.h" #include "player_tab.h" #include "main_win.h" #include "snackamp_control.h" #include "utilities.h" #include "split_files.h" #include "mp3splt-gtk.h" #include "ui_manager.h" #include "widgets_helper.h" #define DRAWING_AREA_WIDTH 400 #define DRAWING_AREA_HEIGHT 123 #define DRAWING_AREA_HEIGHT_WITH_SILENCE_WAVE 232 //! The text box showing the filename of the current input file. GtkWidget *entry; //! The browse button GtkWidget *browse_button; //! The fix ogg stream button GtkWidget *fix_ogg_stream_button; //! Tells us if the file was browsed or not gint file_browsed = FALSE; gint file_in_entry = FALSE; //handle box for detaching window GtkWidget *file_handle_box; GtkWidget *player_buttons_hbox = NULL; GtkWidget *drawing_area_expander; //if we have selected a correct file gint incorrect_selected_file = FALSE; gfloat total_draw_time = 0; static const gint hundr_secs_th = 20; static const gint tens_of_secs_th = 3 * 100; static const gint secs_th = 40 * 100; static const gint ten_secs_th = 3 * 6000; static const gint minutes_th = 20 * 6000; static const gint ten_minutes_th = 3 * 3600 * 100; extern GtkWidget *names_from_filename; extern splt_state *the_state; extern gint preview_start_position; extern gint preview_start_splitpoint; extern GtkWidget *browse_cddb_button; extern GtkWidget *browse_cue_button; //main window extern GtkWidget *window; extern GtkWidget *percent_progress_bar; //if we are currently splitting extern gint we_are_splitting; extern gchar *filename_to_split; extern gchar *filename_path_of_split; extern guchar *get_real_name_from_filename(guchar *filename); extern GtkWidget *cancel_button; extern gint debug_is_active; extern ui_state *ui; //our progress bar GtkWidget *progress_bar; //our progress bar adjustment GtkWidget *progress_adj; //volume bar GtkWidget *volume_button; //the time label GtkWidget *label_time; //minutes and seconds for the player gint player_seconds = 0, player_minutes = 0, player_hundr_secs = 0; //only for internal use when we change manually we have the real //time which is player_seconds and the imaginary time player_seconds2 gint player_seconds2 = 0, player_minutes2 = 0, player_hundr_secs2 = 0; //wether to change the volume of the player gboolean change_volume = TRUE; //to see if we are on the volume bar gboolean on_the_volume_button = FALSE; //variable that stocks if the song is playing or not gboolean playing = FALSE; //to see if we have a stream gboolean stream = FALSE; //the name of the song GtkWidget *song_name_label; //connect and disconnect to player buttons GtkWidget *connect_button; GtkWidget *disconnect_button; //informations about the playing song GtkWidget *song_infos; //player buttons GtkWidget *play_button; GtkWidget *stop_button; GtkWidget *pause_button; GtkWidget *player_add_button; GtkWidget *go_beg_button; GtkWidget *go_end_button; //silence wave GtkWidget *silence_wave_check_button = NULL; silence_wave *silence_points = NULL; gint number_of_silence_points = 0; gint malloced_num_of_silence_points = 0; gint show_silence_wave = FALSE; gint we_scan_for_silence = FALSE; //stock if the timer is active or not gboolean timer_active = FALSE; //id of the timeout, used to stop it gint timeout_id; //handle for detaching GtkWidget *player_handle; //handle for detaching playlist GtkWidget *playlist_handle; GtkWidget *playlist_handle_window; extern gint file_browsed; extern gint selected_player; extern GArray *splitpoints; extern gint splitnumber; //total time of the current song gfloat total_time = 0; //current time gfloat current_time = 0; //to see if the mouse has clicked on the progress bar gboolean mouse_on_progress_bar = FALSE; //just used here for the timer hack gint stay_turn = 0; //the witdh of the drawing area gint width_drawing_area = 0; //our drawing area GtkWidget *drawing_area = NULL; //drawing zoom coefficient gfloat zoom_coeff = 2.0; gfloat zoom_coeff_old; //drawing area buttons pressed gboolean button1_pressed = FALSE; gboolean button2_pressed = FALSE; //drawing area pushed point left button gint button_x; gint button_y; //drawing area pushed point right button gint button_x2; gint button_y2; //time where we move gfloat move_time; extern gboolean quick_preview; extern gint quick_preview_end_splitpoint; gint timeout_value = DEFAULT_TIMEOUT_VALUE; gint splitpoint_to_move = -1; //the splitpoints to move on the zoom progress bar gboolean move_splitpoints = FALSE; gboolean remove_splitpoints = FALSE; gboolean select_splitpoints = FALSE; gboolean check_splitpoint = FALSE; gint only_press_pause = FALSE; //our playlist tree GtkWidget *playlist_tree = NULL; gint playlist_tree_number = 0; //drawing area variables gint margin; gint real_erase_split_length; gint real_progress_length; gint real_move_split_length; gint real_checkbox_length; gint real_text_length; gint real_wave_length; // gint erase_split_ylimit; gint progress_ylimit; gint splitpoint_ypos; gint checkbox_ypos; gint text_ypos; gint wave_ypos; /*! \defgroup Playerbuttons Button images for the player \@{ */ GtkWidget *Go_BegButton_active; GtkWidget *Go_BegButton_inactive; GtkWidget *Go_EndButton_active; GtkWidget *Go_EndButton_inactive; GtkWidget *PlayButton_active; GtkWidget *PlayButton_inactive; GtkWidget *StopButton_active; GtkWidget *StopButton_inactive; GtkWidget *PauseButton_active; GtkWidget *PauseButton_inactive; //@} /*! The storage for the name of the input file. Designed to be accessed using inputfilename_set() and inputfilename_get(). */ GString *inputfilename; //remove file button GtkWidget *playlist_remove_file_button; //remove file button GtkWidget *playlist_remove_all_files_button; //playlist tree enumeration enum { COL_NAME, COL_FILENAME, PLAYLIST_COLUMNS }; //function declarations gint mytimer(gpointer data); extern void copy_filename_to_current_description(const gchar *fname); //! Set the name of the input file void inputfilename_set(const gchar *filename) { // Paranoia test. if(filename!=NULL) { // Free the old string before allocating memory for the new one if(inputfilename!=NULL)g_string_free(inputfilename,TRUE); inputfilename=g_string_new(filename); // Update the text in the gui field displaying the output // directory - if this field is already there and thus can // be updated. if(entry!=NULL) gtk_entry_set_text(GTK_ENTRY(entry), filename); } } /*! Get the name of the input file \return - The name of the input file, if set. - "", otherwise. */ gchar* inputfilename_get() { if(inputfilename!=NULL) return(inputfilename->str); else return ""; } //!function called from the library when scanning for the silence level void get_silence_level(long time, float level, void *user_data) { if (! silence_points) { silence_points = g_malloc(sizeof(silence_wave) * 3000); malloced_num_of_silence_points = 3000; } else if (number_of_silence_points >= malloced_num_of_silence_points) { silence_points = g_realloc(silence_points, sizeof(silence_wave) * (number_of_silence_points + 3000)); malloced_num_of_silence_points = number_of_silence_points + 3000; } silence_points[number_of_silence_points].time = time; silence_points[number_of_silence_points].level = abs(level); number_of_silence_points++; } gpointer detect_silence(gpointer data) { gint err = SPLT_OK; //erase previous points if (silence_points) { g_free(silence_points); silence_points = NULL; number_of_silence_points = 0; } enter_threads(); gtk_widget_set_sensitive(cancel_button, TRUE); filename_to_split = inputfilename_get(); exit_threads(); mp3splt_set_int_option(the_state, SPLT_OPT_DEBUG_MODE, debug_is_active); mp3splt_set_filename_to_split(the_state, filename_to_split); mp3splt_set_silence_level_function(the_state, get_silence_level, NULL); we_are_splitting = TRUE; we_scan_for_silence = TRUE; mp3splt_set_silence_points(the_state, &err); we_scan_for_silence = FALSE; we_are_splitting = FALSE; mp3splt_set_silence_level_function(the_state, NULL, NULL); enter_threads(); print_status_bar_confirmation(err); gtk_widget_set_sensitive(cancel_button, FALSE); refresh_drawing_area(); exit_threads(); return NULL; } /*! Initialize scanning for silence in the background. If showing the silence wave is disabled this function won't do anything. */ void scan_for_silence_wave() { if (we_scan_for_silence) { cancel_button_event(NULL, NULL); } if (timer_active) { create_thread(detect_silence, NULL, TRUE, NULL); } } /*! Change the name of the song that is to be cut and played Manages changing the filename itselves as well as recalculating the silence wave if needed. */ void change_current_filename(const gchar *fname) { const gchar *old_fname = inputfilename_get(); if (!old_fname) { inputfilename_set(fname); if (show_silence_wave) { scan_for_silence_wave(); } if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(names_from_filename))) { copy_filename_to_current_description(fname); } } else if (strcmp(old_fname,fname) != 0) { inputfilename_set(fname); if (show_silence_wave) { scan_for_silence_wave(); } if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(names_from_filename))) { copy_filename_to_current_description(fname); } } } //!resets and sets inactive the progress bar void reset_inactive_progress_bar() { gtk_widget_set_sensitive(GTK_WIDGET(progress_bar), FALSE); gtk_adjustment_set_value(GTK_ADJUSTMENT(progress_adj), 0); } //!resets and sets inactive the volume bar void reset_inactive_volume_button() { gtk_widget_set_sensitive(GTK_WIDGET(volume_button), FALSE); gtk_scale_button_set_value(GTK_SCALE_BUTTON(volume_button), 0); } //!resets the label time void reset_label_time() { if (strcmp(gtk_label_get_text(GTK_LABEL(label_time)),"") == 0) { gtk_label_set_text(GTK_LABEL(label_time), ""); } } //!resets song infos, frequency, etc.. void reset_song_infos() { gtk_label_set_text(GTK_LABEL(song_infos),""); } //!resets the song name label void reset_song_name_label() { gtk_label_set_text(GTK_LABEL(song_name_label), ""); } //!clear song data and makes inactive progress bar void clear_data_player() { //set browse button available gtk_widget_set_sensitive(browse_button, TRUE); reset_song_name_label(); reset_song_infos(); reset_inactive_volume_button(); reset_inactive_progress_bar(); reset_label_time(); } //!enables the buttons of the player void enable_player_buttons() { gtk_widget_set_sensitive(stop_button, TRUE); gtk_button_set_image(GTK_BUTTON(stop_button), g_object_ref(StopButton_active)); gtk_widget_set_sensitive(pause_button, TRUE); gtk_button_set_image(GTK_BUTTON(pause_button), g_object_ref(PauseButton_active)); if (selected_player != PLAYER_GSTREAMER) { gtk_widget_set_sensitive(go_beg_button, TRUE); gtk_button_set_image(GTK_BUTTON(go_beg_button), g_object_ref(Go_BegButton_active)); gtk_widget_set_sensitive(go_end_button, TRUE); gtk_button_set_image(GTK_BUTTON(go_end_button), g_object_ref(Go_EndButton_active)); } gtk_widget_set_sensitive(play_button, TRUE); gtk_button_set_image(GTK_BUTTON(play_button), g_object_ref(PlayButton_active)); } //!disables the buttons of the player void disable_player_buttons() { gtk_widget_set_sensitive(stop_button, FALSE); gtk_button_set_image(GTK_BUTTON(stop_button), g_object_ref(StopButton_inactive)); gtk_widget_set_sensitive(pause_button, FALSE); gtk_button_set_image(GTK_BUTTON(pause_button), g_object_ref(PauseButton_inactive)); gtk_widget_set_sensitive(go_beg_button, FALSE); gtk_button_set_image(GTK_BUTTON(go_beg_button), g_object_ref(Go_BegButton_inactive)); gtk_widget_set_sensitive(go_end_button, FALSE); gtk_button_set_image(GTK_BUTTON(go_end_button), g_object_ref(Go_EndButton_inactive)); gtk_widget_set_sensitive(play_button, FALSE); gtk_button_set_image(GTK_BUTTON(play_button), g_object_ref(PlayButton_inactive)); gtk_widget_set_sensitive(player_add_button, FALSE); gtk_widget_set_sensitive(silence_wave_check_button, FALSE); } //! Switches between connect and disconnect button when connecting to player void connect_change_buttons() { if (selected_player != PLAYER_GSTREAMER) { show_disconnect_button(); hide_connect_button(); } } //!disconnecting changing buttons void disconnect_change_buttons() { if (selected_player != PLAYER_GSTREAMER) { hide_disconnect_button(); show_connect_button(); } } /*!connect with the song fname \param fname the file name of the song \param start_playing - start playing - else dont start playing right now. */ void connect_with_song(const gchar *fname, gint start_playing) { //list with songs GList *song_list = NULL; if (fname != NULL) { song_list = g_list_append(song_list, strdup(fname)); //if we must also play the song if (start_playing == 0) { //if the player is not running, start it ,queue to playlist and //play the file if (!player_is_running()) { player_start_play_with_songs(song_list); } else { player_add_play_files(song_list); } } else { if (file_browsed) { //if the player is not running, start it ,queue to playlist and //play the file if (!player_is_running()) player_start_add_files(song_list); else if(!playing) player_add_files_and_select(song_list); else player_add_files(song_list); } } playing = TRUE; if (!timer_active) { timeout_id = g_timeout_add(timeout_value, mytimer, NULL); timer_active = TRUE; } enable_player_buttons(); if (player_is_running()) { connect_change_buttons(); } } //TODO: free elements of list g_list_free(song_list); } /*! connects to player with the song from the filename entry \param i 0 means then start playing, != 0 means dont start playing right now */ void connect_to_player_with_song(gint i) { const gchar *fname = fname = inputfilename_get(); //connect with the song fname connect_with_song(fname,i); } //!play button event void connect_button_event(GtkWidget *widget, gpointer data) { if (!player_is_running()) { player_start(); } mytimer(NULL); if (!timer_active) { if (selected_player == PLAYER_SNACKAMP) { connect_snackamp(8775); } timeout_id = g_timeout_add(timeout_value, mytimer, NULL); timer_active = TRUE; } //connect to player with song //1 means dont start playing connect_to_player_with_song(1); //set browse button unavailable if (selected_player != PLAYER_GSTREAMER) { gtk_widget_set_sensitive(browse_button, FALSE); } //!enable player buttons enable_player_buttons(); file_browsed = FALSE; change_volume = TRUE; //here we check if we have been connected if (!player_is_running()) { //if not, we put a message GtkWidget *dialog, *label; dialog = gtk_dialog_new_with_buttons (_("Cannot connect to player"), (GtkWindow *)window, GTK_DIALOG_MODAL, GTK_STOCK_OK, GTK_RESPONSE_NONE, NULL); switch(selected_player) { case PLAYER_SNACKAMP: label = gtk_label_new (_("\n Cannot connect to snackAmp player.\n" " Please download and install snackamp from\n" "\thttp://snackamp.sourceforge.net\n\n" " Verify that snackamp is running.\n" " Verify that your snackamp version is >= 3.1.3\n\n" " Verify that you have enabled socket interface in snackamp:\n" " You have to go to\n" "\tTools->Preferences->Miscellaneous\n" " from the snackamp menu and check\n" "\tEnable Socket Interface\n" " Only default port is supported for now(8775)\n" " After that, restart snackamp and mp3splt-gtk should work.\n")); break; case PLAYER_AUDACIOUS: label = gtk_label_new (_("\n Cannot connect to Audacious player.\n" " Verify that you have installed audacious.\n\n" " Put in your PATH variable the directory where the audacious" " executable is.\n" " If you don't know how to do that, start audacious manually" " and then try to connect.\n")); break; default: label = gtk_label_new(_("Cannot connect to player")); break; } g_signal_connect_swapped(dialog, "response", G_CALLBACK(gtk_widget_destroy), dialog); gtk_container_add(GTK_CONTAINER( gtk_dialog_get_content_area(GTK_DIALOG(dialog))), label); gtk_widget_show_all(dialog); } else { //changes connect/disconnect buttons connect_change_buttons(); } current_time = -1; check_update_down_progress_bar(); } //!checks if we have a stream void check_stream() { //if we have a stream if (total_time == -1) { stream = TRUE; //reset progress bar reset_inactive_progress_bar(); } else stream = FALSE; } //!disconnect button event void disconnect_button_event(GtkWidget *widget, gpointer data) { //if the timer is active, deactivate the function if (timer_active) { //we open socket channel if dealing with snackamp if (selected_player == PLAYER_SNACKAMP) { disconnect_snackamp(); } g_source_remove(timeout_id); timer_active = FALSE; } clear_data_player(); //set browse button available gtk_widget_set_sensitive(browse_button, TRUE); //changes connect/disconnect buttons disconnect_change_buttons(); //disable player buttons disable_player_buttons(); //update bottom progress bar to 0 and "" if (!we_are_splitting) { gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(percent_progress_bar), 0); gtk_progress_bar_set_text(GTK_PROGRESS_BAR(percent_progress_bar), ""); } const gchar *fname = inputfilename_get(); if (is_filee(fname)) { file_in_entry = TRUE; gtk_widget_set_sensitive(play_button, TRUE); gtk_button_set_image(GTK_BUTTON(play_button), g_object_ref(PlayButton_active)); } player_quit(); } void restart_player_timer() { if (timer_active) { g_source_remove(timeout_id); timeout_id = g_timeout_add(timeout_value, mytimer, NULL); } } //! play button event void play_event (GtkWidget *widget, gpointer data) { if (timer_active) { if (!player_is_running()) { player_start(); } player_play(); playing = TRUE; } else { //connects to player with the song //0 means also start playing connect_to_player_with_song(0); //set browse button unavailable if (selected_player != PLAYER_GSTREAMER) { gtk_widget_set_sensitive(browse_button, FALSE); } } gtk_widget_set_sensitive(pause_button, TRUE); gtk_button_set_image(GTK_BUTTON(pause_button), g_object_ref(PauseButton_active)); gtk_widget_set_sensitive(stop_button, TRUE); gtk_button_set_image(GTK_BUTTON(stop_button), g_object_ref(StopButton_active)); } //! stop button event void stop_event(GtkWidget *widget, gpointer data) { if (timer_active) { if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(pause_button))) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pause_button), FALSE); } if (player_is_running()) { playing = FALSE; } player_stop(); gtk_widget_set_sensitive(pause_button, FALSE); gtk_button_set_image(GTK_BUTTON(pause_button), g_object_ref(PauseButton_inactive)); gtk_widget_set_sensitive(stop_button, FALSE); gtk_button_set_image(GTK_BUTTON(stop_button), g_object_ref(StopButton_inactive)); } } //! pause button event void pause_event (GtkWidget *widget, gpointer data) { //only if connected to player if (timer_active) { if (player_is_running()) { if (!only_press_pause) { player_pause(); } } } } //! Event for the "previous" button void prev_button_event (GtkWidget *widget, gpointer data) { //only if connected to player if (timer_active) if (player_is_running()) player_prev(); } //! event for the "next" button void next_button_event (GtkWidget *widget, gpointer data) { //only if connected to player if (timer_active) if (player_is_running()) player_next(); } //!changes the position inside the song void change_song_position() { //new position of the song gint position; position = (player_seconds2 + player_minutes2*60)*1000 +player_hundr_secs2*10; player_jump(position); } //!adds a splitpoint from the player void enable_show_silence_wave(GtkToggleButton *widget, gpointer data) { if (gtk_toggle_button_get_active(widget)) { show_silence_wave = TRUE; if (number_of_silence_points == 0) { scan_for_silence_wave(); } } else { show_silence_wave = FALSE; if (we_scan_for_silence) { cancel_button_event(NULL, NULL); } //free the previous silence points if any if (silence_points != NULL) { g_free(silence_points); silence_points = NULL; } number_of_silence_points = 0; refresh_drawing_area(); } } void build_path(GString *path, const gchar *dir, const gchar *filename) { #ifdef __WIN32__ g_string_assign(path, "."); g_string_append(path, G_DIR_SEPARATOR_S); g_string_append(path, filename); #else if (strlen(dir) == 0) { g_string_assign(path, filename); } else { g_string_assign(path, dir); g_string_append(path, G_DIR_SEPARATOR_S); g_string_append(path, filename); } #endif } GtkWidget *create_volume_button() { volume_button = gtk_volume_button_new(); g_signal_connect(G_OBJECT(volume_button), "button-press-event", G_CALLBACK(volume_button_click_event), NULL); g_signal_connect(G_OBJECT(volume_button), "button-release-event", G_CALLBACK(volume_button_unclick_event), NULL); g_signal_connect(G_OBJECT(volume_button), "enter-notify-event", G_CALLBACK(volume_button_enter_event), NULL); g_signal_connect(G_OBJECT(volume_button), "leave-notify-event", G_CALLBACK(volume_button_leave_event), NULL); g_signal_connect(GTK_SCALE_BUTTON(volume_button), "value_changed", G_CALLBACK(change_volume_event), NULL); gtk_widget_set_sensitive(GTK_WIDGET(volume_button), FALSE); return volume_button; } //!creates the player buttons hbox GtkWidget *create_player_buttons_hbox(GtkTreeView *tree_view) { player_buttons_hbox = gtk_hbox_new(FALSE, 0); //go at the beginning button GString *Imagefile = g_string_new(""); build_path(Imagefile, IMAGEDIR, "backward"ICON_EXT); Go_BegButton_active= gtk_image_new_from_file(Imagefile->str); build_path(Imagefile, IMAGEDIR, "backward_inactive"ICON_EXT); Go_BegButton_inactive= gtk_image_new_from_file(Imagefile->str); go_beg_button = gtk_button_new(); gtk_button_set_image(GTK_BUTTON(go_beg_button), g_object_ref(Go_BegButton_inactive)); //put the new button in the box gtk_box_pack_start(GTK_BOX(player_buttons_hbox), go_beg_button, FALSE, FALSE, 0); gtk_button_set_relief(GTK_BUTTON(go_beg_button), GTK_RELIEF_NONE); g_signal_connect(G_OBJECT(go_beg_button), "clicked", G_CALLBACK(prev_button_event), NULL); gtk_widget_set_sensitive(go_beg_button, FALSE); gtk_widget_set_tooltip_text(go_beg_button, _("Previous")); //play button build_path(Imagefile, IMAGEDIR, "play"ICON_EXT); PlayButton_active= gtk_image_new_from_file(Imagefile->str); build_path(Imagefile, IMAGEDIR, "play_inactive"ICON_EXT); PlayButton_inactive= gtk_image_new_from_file(Imagefile->str); play_button = gtk_button_new(); gtk_button_set_image(GTK_BUTTON(play_button), g_object_ref(PlayButton_inactive)); //put the new button in the box gtk_box_pack_start(GTK_BOX(player_buttons_hbox), play_button, FALSE, FALSE, 0); gtk_button_set_relief(GTK_BUTTON(play_button), GTK_RELIEF_NONE); g_signal_connect(G_OBJECT(play_button), "clicked", G_CALLBACK(play_event), NULL); gtk_widget_set_sensitive(play_button, FALSE); gtk_widget_set_tooltip_text(play_button,_("Play")); //pause button build_path(Imagefile, IMAGEDIR, "pause"ICON_EXT); PauseButton_active= gtk_image_new_from_file(Imagefile->str); build_path(Imagefile, IMAGEDIR, "pause_inactive"ICON_EXT); PauseButton_inactive= gtk_image_new_from_file(Imagefile->str); pause_button = gtk_toggle_button_new(); gtk_button_set_image(GTK_BUTTON(pause_button), g_object_ref(PauseButton_inactive)); //put the new button in the box gtk_box_pack_start(GTK_BOX(player_buttons_hbox), pause_button, FALSE, FALSE, 0); gtk_button_set_relief(GTK_BUTTON(pause_button), GTK_RELIEF_NONE); g_signal_connect(G_OBJECT(pause_button), "clicked", G_CALLBACK(pause_event), NULL); gtk_widget_set_sensitive(pause_button, FALSE); gtk_widget_set_tooltip_text(pause_button,_("Pause")); //stop button build_path(Imagefile, IMAGEDIR, "stop"ICON_EXT); StopButton_active= gtk_image_new_from_file(Imagefile->str); build_path(Imagefile, IMAGEDIR, "stop_inactive"ICON_EXT); StopButton_inactive= gtk_image_new_from_file(Imagefile->str); stop_button = gtk_button_new(); gtk_button_set_image(GTK_BUTTON(stop_button), g_object_ref(StopButton_inactive)); //put the new button in the box gtk_box_pack_start(GTK_BOX(player_buttons_hbox), stop_button, FALSE, FALSE, 0); gtk_button_set_relief(GTK_BUTTON(stop_button), GTK_RELIEF_NONE); g_signal_connect(G_OBJECT(stop_button), "clicked", G_CALLBACK(stop_event), NULL); gtk_widget_set_sensitive(stop_button, FALSE); gtk_widget_set_tooltip_text(stop_button,_("Stop")); //go at the end button build_path(Imagefile, IMAGEDIR, "forward"ICON_EXT); Go_EndButton_active= gtk_image_new_from_file(Imagefile->str); build_path(Imagefile, IMAGEDIR, "forward_inactive"ICON_EXT); Go_EndButton_inactive= gtk_image_new_from_file(Imagefile->str); go_end_button = gtk_button_new(); gtk_button_set_image(GTK_BUTTON(go_end_button), g_object_ref(Go_EndButton_inactive)); //put the new button in the box gtk_box_pack_start(GTK_BOX(player_buttons_hbox), go_end_button, FALSE, FALSE, 0); gtk_button_set_relief(GTK_BUTTON(go_end_button), GTK_RELIEF_NONE); g_signal_connect(G_OBJECT(go_end_button), "clicked", G_CALLBACK(next_button_event), NULL); gtk_widget_set_sensitive(go_end_button, FALSE); gtk_widget_set_tooltip_text(go_end_button,_("Next")); g_string_free(Imagefile,TRUE); GtkWidget *vol_button = (GtkWidget *)create_volume_button(); gtk_box_pack_start(GTK_BOX(player_buttons_hbox), vol_button, FALSE, FALSE, 5); //add button player_add_button = (GtkWidget *)create_cool_button(GTK_STOCK_ADD, _("_Add"), FALSE); //put the new button in the box gtk_box_pack_start (GTK_BOX(player_buttons_hbox), player_add_button, FALSE, FALSE, 0); gtk_button_set_relief(GTK_BUTTON(player_add_button), GTK_RELIEF_NONE); g_signal_connect(G_OBJECT(player_add_button), "clicked", G_CALLBACK(add_splitpoint_from_player), tree_view); gtk_widget_set_sensitive(player_add_button, FALSE); gtk_widget_set_tooltip_text(player_add_button,_("Add splitpoint from player")); //silence wave check button silence_wave_check_button = (GtkWidget *) gtk_check_button_new_with_mnemonic(_("Amplitude _wave")); gtk_box_pack_end(GTK_BOX(player_buttons_hbox), silence_wave_check_button, FALSE, FALSE, 5); g_signal_connect(G_OBJECT(silence_wave_check_button), "toggled", G_CALLBACK(enable_show_silence_wave), NULL); gtk_widget_set_sensitive(silence_wave_check_button, FALSE); gtk_widget_set_tooltip_text(silence_wave_check_button, _("Shows the amplitude level wave")); /* connect player button */ connect_button = (GtkWidget *) create_cool_button(GTK_STOCK_CONNECT,_("_Connect"), FALSE); g_signal_connect(G_OBJECT(connect_button), "clicked", G_CALLBACK(connect_button_event), NULL); gtk_widget_set_tooltip_text(connect_button,_("Connect to player")); /* disconnect player button */ disconnect_button = (GtkWidget *) create_cool_button(GTK_STOCK_DISCONNECT,_("_Disconnect"), FALSE); g_signal_connect(G_OBJECT (disconnect_button), "clicked", G_CALLBACK(disconnect_button_event), NULL); gtk_widget_set_tooltip_text(disconnect_button,_("Disconnect from player")); return player_buttons_hbox; } //!song information about frequency, rate, stereo, etc GtkWidget *create_song_informations_hbox() { GtkWidget *song_info_hbox; song_info_hbox = gtk_hbox_new (FALSE, 0); song_infos = gtk_label_new (""); gtk_box_pack_start (GTK_BOX (song_info_hbox), song_infos, FALSE, FALSE, 40); //the label time label_time = gtk_label_new(""); gtk_box_pack_start (GTK_BOX (song_info_hbox), label_time, FALSE, FALSE, 5); return song_info_hbox; } //!when we unclick the progress bar gboolean progress_bar_unclick_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data) { change_song_position(); player_minutes = player_minutes2; player_seconds = player_seconds2; player_hundr_secs = player_hundr_secs2; mouse_on_progress_bar = FALSE; return FALSE; } //!when we click the progress bar gboolean progress_bar_click_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data) { mouse_on_progress_bar = TRUE; return FALSE; } //!returns the total time in hundreths of second gfloat get_total_time() { return total_time; } //!returns the total elapsed time gfloat get_elapsed_time() { gfloat adj_position = gtk_adjustment_get_value(GTK_ADJUSTMENT(progress_adj)); return (adj_position * total_time) / 100000; } void refresh_drawing_area() { gtk_widget_queue_draw(drawing_area); } //!updates bottom progress bar void check_update_down_progress_bar() { if (!we_are_splitting) { //if we are between 2 splitpoints, //we draw yellow rectangle gfloat total_interval = 0; gfloat progress_time = 0; gint splitpoint_time_left = -1; gint splitpoint_time_right = -1; gint splitpoint_left_index = -1; get_splitpoint_time_left_right(&splitpoint_time_left, &splitpoint_time_right, &splitpoint_left_index); if ((splitpoint_time_left != -1) && (splitpoint_time_right != -1)) { //percent progress bar stuff total_interval = splitpoint_time_right - splitpoint_time_left; if (total_interval != 0) { progress_time = (current_time-splitpoint_time_left)/ total_interval; } } else { if (splitpoint_time_right == -1) { total_interval = total_time - splitpoint_time_left; if (total_interval != 0) { progress_time = (current_time-splitpoint_time_left)/ total_interval; } } else { total_interval = splitpoint_time_right; if (total_interval != 0) { progress_time = current_time/total_interval; } } } //update the percent progress bar if (progress_time < 0) { progress_time = 0; } if (progress_time > 1) { progress_time = 1; } if ((progress_time >= 0) && (progress_time <= 1)) { gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(percent_progress_bar), progress_time); } gchar *progress_description = get_splitpoint_name(splitpoint_left_index-1); gchar description_shorted[512] = { '\0' }; //if we have a splitpoint on our right //and we are before the first splitpoint if (splitpoint_time_right != -1) { if (splitpoint_time_left == -1) { if (progress_description != NULL) { g_snprintf(description_shorted,60, _("before %s"), progress_description); } } else { if (progress_description != NULL) { g_snprintf(description_shorted, 60,"%s", progress_description); } } } else { if (splitpoint_time_left != -1) { if (progress_description != NULL) { g_snprintf(description_shorted, 60,"%s", progress_description); } } else { //TODO ugly code in 'fname' usage ! gchar *fname; fname = inputfilename_get(); fname = (gchar *)get_real_name_from_filename((guchar *)fname); g_snprintf(description_shorted,60,"%s",fname); if (fname != NULL) { if (strlen(fname) > 60) { description_shorted[strlen(description_shorted)-1] = '.'; description_shorted[strlen(description_shorted)-2] = '.'; description_shorted[strlen(description_shorted)-3] = '.'; } } } } //we put "..." if (progress_description != NULL) { if (strlen(progress_description) > 60) { description_shorted[strlen(description_shorted)-1] = '.'; description_shorted[strlen(description_shorted)-2] = '.'; description_shorted[strlen(description_shorted)-3] = '.'; } } gtk_progress_bar_set_text(GTK_PROGRESS_BAR(percent_progress_bar), description_shorted); g_free(progress_description); } } //!event when the progress bar value changed void progress_bar_value_changed_event(GtkRange *range, gpointer user_data) { refresh_drawing_area(); //progress position gfloat adj_position = (gint)gtk_adjustment_get_value(GTK_ADJUSTMENT(progress_adj)); //we get out the hundredth player_hundr_secs2 = (gint)current_time % 100; gint tt2; //we keep only the seconds tt2 = total_time / 100; current_time = (adj_position * tt2) / 100000; player_seconds2 = (gint)current_time % 60; player_minutes2 = (gint)current_time / 60; current_time = get_elapsed_time(); check_update_down_progress_bar(); } //!scroll event for the progress bar gboolean progress_bar_scroll_event (GtkWidget *widget, GdkEventScroll *event, gpointer user_data) { //-- return FALSE; } //!when we enter the progress bar gboolean progress_bar_enter_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data) { //-- return FALSE; } //!when we leave the progress bar gboolean progress_bar_leave_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data) { //-- return FALSE; } //!song progress bar GtkWidget *create_song_bar_hbox() { GtkWidget *song_bar_hbox; //our progress bar song_bar_hbox = gtk_hbox_new (FALSE, 0); progress_adj = (GtkWidget *)gtk_adjustment_new (0.0, 0.0, 100001.0, 0, 10000, 1000); progress_bar = gtk_hscale_new (GTK_ADJUSTMENT (progress_adj)); g_object_set(progress_bar, "draw-value", FALSE, NULL); //when we click on the bar g_signal_connect (G_OBJECT (progress_bar), "button-press-event", G_CALLBACK (progress_bar_click_event), NULL); //when we unclick on the bar g_signal_connect (G_OBJECT (progress_bar), "button-release-event", G_CALLBACK (progress_bar_unclick_event), NULL); //when are on the bar g_signal_connect (G_OBJECT (progress_bar), "enter-notify-event", G_CALLBACK (progress_bar_enter_event), NULL); //when move away from the bar g_signal_connect (G_OBJECT (progress_bar), "leave-notify-event", G_CALLBACK (progress_bar_leave_event), NULL); //when the bar is modified g_signal_connect (G_OBJECT (progress_bar), "value-changed", G_CALLBACK (progress_bar_value_changed_event), NULL); //when we scroll g_signal_connect (G_OBJECT (progress_bar), "scroll-event", G_CALLBACK (progress_bar_scroll_event), NULL); gtk_widget_set_sensitive(GTK_WIDGET(progress_bar), FALSE); gtk_box_pack_start (GTK_BOX (song_bar_hbox), progress_bar, TRUE, TRUE, 5); return song_bar_hbox; } //!prints information about the song, frequency, kbps, stereo void print_about_the_song() { gchar total_infos[512]; player_get_song_infos(total_infos); gtk_label_set_text(GTK_LABEL(song_infos), total_infos); } //!prints the player filename void print_player_filename() { gchar *fname = player_get_filename(); if ((fname != NULL) && (strcmp(fname, "disconnect"))) { change_current_filename(fname); } gchar *title; title = player_get_title(); gchar new_title[90]; g_snprintf(new_title,75, "%s",title); if (title != NULL) { if (strlen(title) > 75) { new_title[strlen(new_title)-1] = '.'; new_title[strlen(new_title)-2] = '.'; new_title[strlen(new_title)-3] = '.'; } } gtk_label_set_text(GTK_LABEL(song_name_label), new_title); g_free(fname); g_free(title); } /*! get time elapsed from the song and print it on the screen Also prints filename, frequency, bitrate, mono, stereo */ void print_all_song_infos() { //prints frequency, stereo, etc print_about_the_song(); print_player_filename(); } /*! prints the song time elapsed \param i - 0 means normal state - 1 means we reset the time */ void print_song_time_elapsed() { //temp is temporary gint time, temp; gchar seconds[16], minutes[16], seconds_minutes[64]; time = player_get_elapsed_time(); //the hundredth of seconds player_hundr_secs = (time % 1000) / 10; temp = (time/1000)/60; //sets the global variables //for the minutes and the seconds player_minutes = temp; player_seconds = (time/1000) - (temp*60); //calculate time and print time g_snprintf(minutes, 16, "%d", temp); g_snprintf(seconds, 16, "%d", (time/1000) - (temp*60)); //variables for the total time gchar total_seconds[16], total_minutes[16]; gint tt; tt = total_time * 10; temp = (tt/1000)/60; //calculate time and print time g_snprintf(total_minutes, 16, "%d", temp); g_snprintf(total_seconds, 16, "%d", (tt/1000) - (temp*60)); g_snprintf(seconds_minutes, 64, "%s : %s / %s : %s", minutes, seconds, total_minutes, total_seconds); gtk_label_set_text(GTK_LABEL(label_time), seconds_minutes); } //!change volume to match the players volume void change_volume_button() { if (!player_is_running()) { return; } gint volume = player_get_volume(); if (volume < 0) { return; } gtk_scale_button_set_value(GTK_SCALE_BUTTON(volume_button), volume / 100.0); } //!progress bar synchronisation with player void change_progress_bar() { if ((player_is_running()) && (!mouse_on_progress_bar)) { //new position of the progress bar gdouble adj_position; //total time in hundredths of seconds total_time = player_get_total_time() / 10; current_time = ((player_seconds + player_minutes*60)*100 + player_hundr_secs); adj_position = (current_time *100000) / total_time; gtk_adjustment_set_value(GTK_ADJUSTMENT(progress_adj), (gdouble) adj_position); current_time = get_elapsed_time(); //we check if the current time is between the preview //splitpoints, we cancel the preview gint stop_splitpoint = get_splitpoint_time(quick_preview_end_splitpoint) / 10; gint start_splitpoint = get_splitpoint_time(preview_start_splitpoint) / 10; if ((stop_splitpoint < (gint)(current_time-150)) || (start_splitpoint > (gint)(current_time+150))) { cancel_quick_preview(); } } } //!creates the filename player hbox GtkWidget *create_filename_player_hbox() { GtkWidget *filename_player_hbox; //horizontal filename's player box and filename label(song_name_label) filename_player_hbox = gtk_hbox_new (FALSE, 0); song_name_label = gtk_label_new (""); g_object_set(G_OBJECT(song_name_label), "selectable", FALSE, NULL); gtk_box_pack_start (GTK_BOX (filename_player_hbox), song_name_label, FALSE, FALSE, 15); return filename_player_hbox; } //!changes the volume of the player void change_volume_event(GtkScaleButton *volume_button, gdouble value, gpointer data) { if (!gtk_widget_get_sensitive(GTK_WIDGET(volume_button))) { return; } player_set_volume((gint)(value * 100)); } //!when we unclick the volume bar gboolean volume_button_unclick_event(GtkWidget *widget, GdkEventCrossing *event, gpointer user_data) { change_volume = TRUE; return FALSE; } //!when we click the volume bar gboolean volume_button_click_event(GtkWidget *widget, GdkEventCrossing *event, gpointer user_data) { change_volume = FALSE; return FALSE; } //!when we enter the volume bar gboolean volume_button_enter_event(GtkWidget *widget, GdkEventCrossing *event, gpointer user_data) { on_the_volume_button = TRUE; return FALSE; } //!when we leave the volume bar gboolean volume_button_leave_event(GtkWidget *widget, GdkEventCrossing *event, gpointer user_data) { on_the_volume_button = FALSE; return FALSE; } //!when closing the new window after detaching void close_player_popup_window_event( GtkWidget *window, gpointer data ) { GtkWidget *window_child; window_child = gtk_bin_get_child(GTK_BIN(window)); gtk_widget_reparent(GTK_WIDGET(window_child), GTK_WIDGET(player_handle)); gtk_widget_destroy(window); } //!when we detach the handle void handle_player_detached_event(GtkHandleBox *handlebox, GtkWidget *widget, gpointer data) { //new window GtkWidget *window; window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_widget_reparent(GTK_WIDGET(widget), GTK_WIDGET(window)); g_signal_connect(G_OBJECT(window), "delete_event", G_CALLBACK(close_player_popup_window_event), NULL); gtk_widget_show(GTK_WIDGET(window)); } //!returns the value of the right drawing area gfloat get_right_drawing_time() { gfloat left = 0; gfloat right = total_time / zoom_coeff; gfloat center = (right - left) / 2; gfloat offset = current_time - center; right += offset; return right; } //!returns the value of the left drawing area gfloat get_left_drawing_time() { gfloat right = total_time / zoom_coeff; gfloat center = right/2; gfloat left = current_time - center; return left; } /*!returns the hundreth of seconds rest of a time value \param time The time in hundreths of a second */ gint get_time_hundrsecs(gint time) { return time % 100; } /*!returns the seconds rest of a time \param time The time in hundreths of a second */ gint get_time_secs(gint time) { return (time / 100) % 60; } /*!returns the minutes of a time \param time The time in hundreth of a second */ gint get_time_mins(gint time) { return time / 6000; } /*!Converts a time value to a string we can display \param hundr_or_not = TRUE means we also draw hundr of secs \param time The time in hundreths of a second */ gchar *get_time_for_drawing(gchar *str, gint time, gboolean hundr_or_not, gint *number_of_chars) { gint mins = get_time_mins(time); gint secs = get_time_secs(time); if (hundr_or_not) { gint hundr = get_time_hundrsecs(time); *number_of_chars = g_snprintf(str,30, "%d:%02d:%02d", mins,secs,hundr); } else { *number_of_chars = g_snprintf(str,30, "%d:%02d", mins,secs); } return str; } //!Convert time into to pixels gint time_to_pixels(gint width, gfloat time) { return (width * time * zoom_coeff)/total_time; } //transform pixels to time gfloat pixels_to_time(gfloat width, gint pixels) { return (total_time * (gfloat)pixels)/(width * zoom_coeff); } /*!returns the position of a time mark on the screen \param width The width of the drawing \param The time in hundreths of a second */ gint get_draw_line_position(gint width, gfloat time) { //position to return gint position; gfloat offset_time = time - current_time; gint offset_pixel = time_to_pixels(width, offset_time); position = width/2 + offset_pixel; return position; } static void set_color(cairo_t *cairo, GdkColor *color) { gdk_cairo_set_source_color(cairo, color); } static void draw_rectangle(cairo_t *cairo, gboolean filled, gint x, gint y, gint width, gint height) { cairo_rectangle(cairo, x, y, width, height); if (filled) { cairo_fill(cairo); } cairo_stroke(cairo); } static void draw_arc(cairo_t *cairo, gboolean filled, gint x, gint y, double radius, double angle1, double angle2) { cairo_arc(cairo, x, y, radius, angle1, angle2); if (filled) { cairo_fill(cairo); } cairo_stroke(cairo); } static void draw_text(cairo_t *cairo, const gchar *text, gint x, gint y) { cairo_select_font_face(cairo, "Sans 11", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL); cairo_set_font_size(cairo, 11.0); cairo_move_to(cairo, x, y + 13); cairo_show_text(cairo, text); } static void draw_line_with_width(cairo_t *cairo, gint x1, gint y1, gint x2, gint y2, gboolean line_is_dashed, gboolean stroke, double line_width) { double dashes[] = { 1.0, 3.0 }; if (line_is_dashed) { cairo_set_dash(cairo, dashes, 2, -50.0); } else { cairo_set_dash(cairo, dashes, 0, 0.0); } cairo_set_line_width(cairo, line_width); cairo_set_line_cap(cairo, CAIRO_LINE_CAP_ROUND); cairo_move_to(cairo, x1, y1); cairo_line_to(cairo, x2, y2); if (stroke) { cairo_stroke(cairo); } } static void draw_line(cairo_t *cairo, gint x1, gint y1, gint x2, gint y2, gboolean line_is_dashed, gboolean stroke) { draw_line_with_width(cairo, x1, y1, x2, y2, line_is_dashed, stroke, 1.2); } static void draw_point(cairo_t *cairo, gint x, gint y) { draw_line(cairo, x, y, x, y, FALSE, FALSE); } void draw_motif(GtkWidget *da, cairo_t *gc, gint ylimit, gint x, gint model) { GdkColor color; switch(model){ case 0: //hundreths color.red = 65000;color.green = 0;color.blue = 0; break; case 1: //tens of seconds color.red = 0;color.green = 0;color.blue = 65000; break; case 2: //seconds color.red = 0;color.green = 65000;color.blue = 0; break; case 3: //ten seconds color.red = 65000;color.green = 0;color.blue = 40000; break; case 4: //minutes color.red = 1000;color.green = 10000;color.blue = 65000; break; case 5: //ten minutes color.red = 65000;color.green = 0;color.blue = 0; break; default: //hours color.red = 0;color.green = 0;color.blue = 0; break; } set_color (gc, &color); draw_point(gc,x,ylimit+6); draw_point(gc,x,ylimit+7); draw_point(gc,x,ylimit+8); draw_point(gc,x-1,ylimit+8); draw_point(gc,x+1,ylimit+8); draw_point(gc,x,ylimit+9); draw_point(gc,x-1,ylimit+9); draw_point(gc,x+1,ylimit+9); draw_point(gc,x-2,ylimit+9); draw_point(gc,x+2,ylimit+9); draw_point(gc,x-3,ylimit+9); draw_point(gc,x+3,ylimit+9); draw_point(gc,x,ylimit+10); draw_point(gc,x-1,ylimit+10); draw_point(gc,x+1,ylimit+10); draw_point(gc,x-2,ylimit+10); draw_point(gc,x+2,ylimit+10); draw_point(gc,x-3,ylimit+10); draw_point(gc,x+3,ylimit+10); cairo_stroke(gc); color.red = 0;color.green = 0;color.blue = 0; set_color(gc, &color); } //!draw the marks, minutes, seconds... void draw_marks(gint time_interval, gint left_mark, gint right_mark, gint ylimit, GtkWidget *da, cairo_t *gc) { gint left2 = (left_mark/time_interval) * time_interval; if (left2 < left_mark) left2 += time_interval; gint i; gint i_pixel; for (i=left2;i<=right_mark;i+=time_interval) { i_pixel = get_draw_line_position(width_drawing_area,i); switch(time_interval){ case 1: draw_motif(da, gc, ylimit, i_pixel,0); break; case 10: draw_motif(da, gc, ylimit,i_pixel,1); break; case 100: draw_motif(da, gc, ylimit,i_pixel,2); break; case 1000: draw_motif(da, gc, ylimit,i_pixel,3); break; case 6000: draw_motif(da, gc, ylimit,i_pixel,4); break; case 60000: draw_motif(da, gc, ylimit,i_pixel,5); break; default: draw_motif(da, gc, ylimit,i_pixel,6); break; } } } //!full cancel of the quick preview void cancel_quick_preview_all() { cancel_quick_preview(); quick_preview_end_splitpoint = -1; preview_start_splitpoint = -1; } //!cancels quick preview void cancel_quick_preview() { quick_preview = FALSE; } /*!motif for splitpoints \param draw false if we draw the splitpoint we move \param move FALSE means we don't move the splitpoint, \param move = TRUE means we move the splitpoint \param number_splitpoint is the current splitpoint we draw \param splitpoint_checked = TRUE if the splitpoint is checked */ void draw_motif_splitpoints(GtkWidget *da, cairo_t *gc, gint x,gint draw, gint current_point_hundr_secs, gboolean move, gint number_splitpoint) { int m = margin - 1; GdkColor color; Split_point point = g_array_index(splitpoints, Split_point, number_splitpoint); gboolean splitpoint_checked = point.checked; //top color color.red = 255 * 212; color.green = 255 * 100; color.blue = 255 * 200; set_color (gc, &color); //if it' the splitpoint we move, don't fill in the circle and //the square if (!draw) { //top buttons draw_rectangle (gc, FALSE, x-6,4, 11,11); } else { //top buttons draw_rectangle (gc, TRUE, x-6,4, 12,12); //if it's the splitpoint selected if (number_splitpoint == get_first_splitpoint_selected()) { //top color color.red = 255 * 220; color.green = 255 * 220; color.blue = 255 * 255; //set the color for the graphic context set_color (gc, &color); draw_rectangle (gc, TRUE, x-4,6, 8,8); } } //default color color.red = 255 * 212; color.green = 255 * 196; color.blue = 255 * 221; //set the color for the graphic context set_color (gc, &color); gint i; for(i = 0;i<5;i++) { draw_point (gc,x+i,erase_split_ylimit + m + 3); draw_point (gc,x-i,erase_split_ylimit + m + 3); draw_point (gc,x+i,erase_split_ylimit + m + 4); draw_point (gc,x-i,erase_split_ylimit + m + 4); } cairo_stroke(gc); //if we are currently moving this splitpoint if (move) { //we set the green or blue color if (splitpoint_checked) { color.red = 15000;color.green = 40000;color.blue = 25000; } else { color.red = 25000;color.green = 25000;color.blue = 40000; } set_color (gc, &color); draw_line(gc, x,erase_split_ylimit + m -8, x,progress_ylimit + m, TRUE, TRUE); } color.red = 255 * 22; color.green = 255 * 35; color.blue = 255 * 91; //set the color for the graphic context set_color (gc, &color); //draw the splitpoint motif for (i = -3;i <= 1;i++) { draw_point (gc,x,erase_split_ylimit + m +i); } for (i = 2;i <= 5;i++) { draw_point (gc,x,erase_split_ylimit + m + i); } for (i = 3;i <= 4;i++) { draw_point (gc,x-1,erase_split_ylimit + m + i); draw_point (gc,x+1,erase_split_ylimit + m + i); } for (i = 6;i <= 11;i++) { draw_point (gc,x,erase_split_ylimit + m + i); } //bottom splitpoint vertical bar for (i = 0;i < margin;i++) { draw_point (gc,x,progress_ylimit + m - i); } //bottom checkbox vertical bar for (i = 0;i < margin;i++) { draw_point (gc,x,splitpoint_ypos + m - i - 1); } cairo_stroke(gc); //bottom rectangle set_color (gc, &color); color.red = 25000;color.green = 25000;color.blue = 25000; //bottom check rectangle draw_rectangle (gc, FALSE, x-6,splitpoint_ypos + m, 12,12); //draw a cross with 2 lines if the splitpoint is checked if (splitpoint_checked) { // gint left = x - 6; gint right = x + 6; // gint top = splitpoint_ypos + m; gint bottom = splitpoint_ypos + m + 12; draw_line(gc, left, top, right, bottom, FALSE, TRUE); draw_line(gc, left, bottom, right, top, FALSE, TRUE); } //we set the color //-if the splitpoint is checked, set green color if (splitpoint_checked) { color.red = 15000;color.green = 40000;color.blue = 25000; } else { color.red = 25000;color.green = 25000;color.blue = 40000; } set_color(gc, &color); draw_arc(gc, FALSE, x, progress_ylimit + m+ 1 + 7, 14 / 2, 0, 2 * G_PI); //only fill the circle if we don't move that splitpoint if (draw) { draw_arc(gc, TRUE, x, progress_ylimit + m + 1 + 8, 16 / 2, 0, 2 * G_PI); } if (draw) { gint number_of_chars = 0; gchar str[30] = { '\0' }; get_time_for_drawing(str, current_point_hundr_secs, TRUE, &number_of_chars); draw_text(gc, str, x - (number_of_chars * 3), checkbox_ypos + margin - 1); } if (show_silence_wave) { //we set the black color color.red = 0;color.green = 0;color.blue = 0; set_color(gc, &color); gboolean dashed = FALSE; if (move) { dashed = TRUE; } draw_line(gc, x,text_ypos + margin, x,wave_ypos, dashed, TRUE); } } //!left, right mark in hundreths of seconds void draw_splitpoints(gint left_mark, gint right_mark, GtkWidget *da, cairo_t *gc) { Split_point current_point; //current point in hundreth of seconds gint current_point_hundr_secs; gint i; //we get all splitpoints for(i = 0; i < splitnumber; i++ ) { current_point = g_array_index(splitpoints, Split_point, i); current_point_hundr_secs = current_point.hundr_secs + current_point.secs * 100 + current_point.mins * 6000; //if the splitpoint is > left and < right //it must be visible ! if ((current_point_hundr_secs <= right_mark) &&(current_point_hundr_secs >= left_mark)) { //our split pixel (Ox) gint split_pixel; //if it's the splitpoint we move, we draw it differently gboolean draw = TRUE; if (splitpoint_to_move == i) { draw = FALSE; } split_pixel = get_draw_line_position(width_drawing_area, current_point_hundr_secs); draw_motif_splitpoints(da, gc, split_pixel, draw, current_point_hundr_secs, FALSE, i); } } } gint get_silence_wave_coeff() { gint points_coeff = 1; //num_of_points_coeff_f : ogg ~= 1, mp3 ~= 4 gfloat num_of_points_coeff_f = ceil((number_of_silence_points / total_time) * 10); gint num_of_points_coeff = (gint) num_of_points_coeff_f; gint coeff_adjust = 4; if (num_of_points_coeff == 1) { coeff_adjust = 1; } if (total_draw_time < secs_th) { points_coeff = 1; } else if (total_draw_time < ten_secs_th) { points_coeff = 2 * num_of_points_coeff; } else if (total_draw_time < minutes_th) { points_coeff = 4 * coeff_adjust * num_of_points_coeff; } else if (total_draw_time < ten_minutes_th) { points_coeff = 8 * coeff_adjust * num_of_points_coeff; } else { points_coeff = 32 * coeff_adjust * num_of_points_coeff; } return points_coeff; } //! Draws the silence wave void draw_silence_wave(gint left_mark, gint right_mark, GtkWidget *da, cairo_t *gc) { if (!silence_points || we_scan_for_silence) { return; } GdkColor color; color.red = 0;color.green = 0;color.blue = 0; set_color(gc, &color); gint i = 0; gint points_coeff = get_silence_wave_coeff(); gint times = 0; gint previous_x = 0; gint previous_y = 0; for (i = 0;i < number_of_silence_points;i++) { long time = silence_points[i].time; float level = silence_points[i].level; if ((time <= right_mark) && (time >= left_mark)) { if (i % points_coeff == 0) { gint x = get_draw_line_position(width_drawing_area, (gfloat) time); gint y = text_ypos + margin + (gint)floorf(level); if (times == 0) { cairo_move_to(gc, x, y); } else { draw_line_with_width(gc, previous_x, previous_y, x, y, FALSE, FALSE, 1.0); } previous_x = x; previous_y = y; times++; } } } cairo_stroke(gc); } #if GTK_MAJOR_VERSION <= 2 gboolean da_draw_event(GtkWidget *da, GdkEventExpose *event, gpointer data) { cairo_t *gc = gdk_cairo_create(da->window); #else gboolean da_draw_event(GtkWidget *da, cairo_t *gc, gpointer data) { #endif if (drawing_area_expander != NULL && !gtk_expander_get_expanded(GTK_EXPANDER(drawing_area_expander))) { return; } int width = 0, height = 0; wh_get_widget_size(da, &width, &height); if (show_silence_wave) { if (height != DRAWING_AREA_HEIGHT_WITH_SILENCE_WAVE) { gtk_widget_set_size_request(da, DRAWING_AREA_WIDTH, DRAWING_AREA_HEIGHT_WITH_SILENCE_WAVE); } } else { if (height != DRAWING_AREA_HEIGHT) { gtk_widget_set_size_request(da, DRAWING_AREA_WIDTH, DRAWING_AREA_HEIGHT); } } // margin = 4; // real_erase_split_length = 12; real_progress_length = 26; real_move_split_length = 16; real_checkbox_length = 12; real_text_length = 12; real_wave_length = 96; gint erase_splitpoint_length = real_erase_split_length + (margin * 2); gint progress_length = real_progress_length + margin; gint move_split_length = real_move_split_length + margin; gint text_length = real_text_length + margin; gint checkbox_length = real_checkbox_length + margin; gint wave_length = real_wave_length + margin; // erase_split_ylimit = erase_splitpoint_length; progress_ylimit = erase_split_ylimit + progress_length; splitpoint_ypos = progress_ylimit + move_split_length; checkbox_ypos = splitpoint_ypos + checkbox_length; text_ypos = checkbox_ypos + text_length + margin; wave_ypos = text_ypos + wave_length + margin; gint bottom_left_middle_right_text_ypos = text_ypos; if (show_silence_wave) { bottom_left_middle_right_text_ypos = wave_ypos; } GdkColor color; gint nbr_chars = 0; wh_get_widget_size(da, &width_drawing_area, NULL); color.red = 255 * 235;color.green = 255 * 235; color.blue = 255 * 235; set_color (gc, &color); //background rectangle draw_rectangle (gc, TRUE, 0,0, width_drawing_area, wave_ypos + text_length + 2); color.red = 255 * 255;color.green = 255 * 255;color.blue = 255 * 255; set_color (gc, &color); //background white rectangles draw_rectangle (gc, TRUE, 0,margin, width_drawing_area, real_erase_split_length); draw_rectangle (gc, TRUE, 0,erase_split_ylimit, width_drawing_area, progress_length); draw_rectangle (gc, TRUE, 0,progress_ylimit+margin, width_drawing_area, real_move_split_length); draw_rectangle (gc, TRUE, 0,splitpoint_ypos+margin, width_drawing_area, real_checkbox_length); draw_rectangle (gc, TRUE, 0,checkbox_ypos+margin, width_drawing_area, text_length); if (show_silence_wave) { draw_rectangle (gc, TRUE, 0, text_ypos + margin, width_drawing_area, wave_length); } //only if we are playing //and the timer active(connected to player) if(playing && timer_active) { gfloat left_time; gfloat right_time; gfloat center_time; left_time = get_left_drawing_time(); right_time = get_right_drawing_time(); center_time = current_time; //marks to draw seconds, minutes... gint left_mark = (gint)left_time; gint right_mark = (gint)right_time; if (left_mark < 0) { left_mark = 0; } if (right_mark > total_time) { right_mark = (gint)total_time; } //total draw time total_draw_time = right_time - left_time; gchar str[30] = { '\0' }; gint beg_pixel = get_draw_line_position(width_drawing_area,0); gint splitpoint_time_left = -1; gint splitpoint_time_right = -1; gint splitpoint_pixels_left = -1; gint splitpoint_pixels_right = -1; gint splitpoint_pixels_length = -1; gint splitpoint_left_index = -1; get_splitpoint_time_left_right(&splitpoint_time_left, &splitpoint_time_right, &splitpoint_left_index); if ((splitpoint_time_left != -1) && (splitpoint_time_right != -1)) { // splitpoint_pixels_left = get_draw_line_position(width_drawing_area, splitpoint_time_left); splitpoint_pixels_right = get_draw_line_position(width_drawing_area, splitpoint_time_right); splitpoint_pixels_length = splitpoint_pixels_right - splitpoint_pixels_left; //we put yellow rectangle between splitpoints //we set default black color color.red = 255 * 255;color.green = 255 * 255; color.blue = 255 * 210; //set the color for the graphic context set_color (gc, &color); draw_rectangle (gc, TRUE,splitpoint_pixels_left, erase_split_ylimit, splitpoint_pixels_length, progress_ylimit- erase_split_ylimit+1); } //we set blue color color.red = 255 * 150; color.green = 255 * 150; color.blue = 255 * 255; //set the color for the graphic context set_color (gc, &color); //if it's the first splitpoint from play preview if (quick_preview_end_splitpoint != -1) { gint right_pixel = get_draw_line_position(width_drawing_area, get_splitpoint_time(quick_preview_end_splitpoint)/10); gint left_pixel = get_draw_line_position(width_drawing_area, get_splitpoint_time(preview_start_splitpoint) /10); gint preview_splitpoint_length = right_pixel - left_pixel + 1; //top buttons draw_rectangle (gc, TRUE, left_pixel, progress_ylimit-2, preview_splitpoint_length,3); //if we have a quick preview on going, put red bar if (quick_preview) { color.red = 255 * 255;color.green = 255 * 160;color.blue = 255 * 160; //set the color for the graphic context set_color (gc, &color); //top buttons draw_rectangle (gc, TRUE, left_pixel, erase_split_ylimit, preview_splitpoint_length, 3); } } else { //if we draw until the end if ((preview_start_splitpoint != -1)&& (preview_start_splitpoint != (splitnumber-1))) { gint left_pixel = get_draw_line_position(width_drawing_area, get_splitpoint_time(preview_start_splitpoint) /10); //top buttons draw_rectangle (gc, TRUE, left_pixel, progress_ylimit-2, width_drawing_area-left_pixel, 3); //if we have a quick preview on going, put red bar if (quick_preview) { color.red = 255 * 255;color.green = 255 * 160;color.blue = 255 * 160; //set the color for the graphic context set_color (gc, &color); //top buttons draw_rectangle (gc, TRUE, left_pixel, erase_split_ylimit, width_drawing_area-left_pixel, 3); } } } //song start if ( left_time <= 0 ) { color.red = 255 * 235;color.green = 255 * 235; color.blue = 255 * 235; //set the color for the graphic context set_color (gc, &color); draw_rectangle (gc, TRUE, 0,0, beg_pixel, wave_ypos); } else { color.red = 30000;color.green = 0;color.blue = 30000; //set the color for the graphic context set_color (gc, &color); get_time_for_drawing(str, left_time, FALSE, &nbr_chars); draw_text(gc, str, 15, bottom_left_middle_right_text_ypos); } gint end_pixel = get_draw_line_position(width_drawing_area,total_time); //song end if ( right_time >= total_time ) { color.red = 255 * 235;color.green = 255 * 235; color.blue = 255 * 235; //set the color for the graphic context set_color (gc, &color); draw_rectangle (gc, TRUE, end_pixel,0, width_drawing_area, bottom_left_middle_right_text_ypos); } else { color.red = 30000;color.green = 0;color.blue = 30000; //set the color for the graphic context set_color (gc, &color); get_time_for_drawing(str, right_time, FALSE, &nbr_chars); draw_text(gc, str, width_drawing_area - 52, bottom_left_middle_right_text_ypos); } if (total_draw_time < hundr_secs_th) { //DRAW HUNDR OF SECONDS draw_marks(1, left_mark, right_mark, erase_split_ylimit+ progress_length/4, da, gc); } if (total_draw_time < tens_of_secs_th) { //DRAW TENS OF SECONDS draw_marks(10, left_mark, right_mark, erase_split_ylimit+ progress_length/4, da, gc); } if (total_draw_time < secs_th) { //DRAW SECONDS draw_marks(100, left_mark, right_mark, erase_split_ylimit+ progress_length/4, da, gc); } if (total_draw_time < ten_secs_th) { //DRAW TEN SECONDS draw_marks(1000, left_mark, right_mark, erase_split_ylimit+ progress_length/4, da, gc); } if (total_draw_time < minutes_th) { //DRAW MINUTES draw_marks(6000, left_mark, right_mark, erase_split_ylimit+ progress_length/4, da, gc); } if (total_draw_time < ten_minutes_th) { //DRAW TEN MINUTES draw_marks(60000, left_mark, right_mark, erase_split_ylimit+ progress_length/4, da, gc); } //DRAW HOURS draw_marks(100 * 3600, left_mark, right_mark, erase_split_ylimit+progress_length/4, da, gc); //draw mobile button1 position line if (button1_pressed) { gint move_time_bis = (gint)move_time; //if we don't move the splitpoints if (!move_splitpoints && !remove_splitpoints) { //if we have Audacious player selected as player, //we move only by seconds if (selected_player == PLAYER_AUDACIOUS) move_time_bis = (move_time_bis / 100) * 100; } gint move_pixel = get_draw_line_position(width_drawing_area, move_time_bis); //if we move the splitpoints if (move_splitpoints) { draw_motif_splitpoints(da, gc, move_pixel,TRUE, move_time, TRUE, splitpoint_to_move); //we set default black color color.red = 0;color.green = 0;color.blue = 0; //set the color for the graphic context set_color (gc, &color); get_time_for_drawing(str, current_time, FALSE, &nbr_chars); draw_text(gc, str, width_drawing_area/2-11, bottom_left_middle_right_text_ypos); } else //we move the time { //we set the red color color.red = 255 * 255;color.green = 0;color.blue = 0; set_color(gc, &color); draw_line(gc, move_pixel,erase_split_ylimit, move_pixel,progress_ylimit, TRUE, TRUE); if (show_silence_wave) { draw_line(gc, move_pixel,text_ypos + margin, move_pixel,wave_ypos, TRUE, TRUE); } //we set default black color color.red = 0;color.green = 0;color.blue = 0; //set the color for the graphic context set_color (gc, &color); get_time_for_drawing(str, move_time, FALSE, &nbr_chars); draw_text(gc, str, width_drawing_area/2-11, bottom_left_middle_right_text_ypos); } } else { //we set default black color color.red = 0;color.green = 0;color.blue = 0; //set the color for the graphic context set_color (gc, &color); get_time_for_drawing(str, center_time, FALSE, &nbr_chars); draw_text(gc, str, width_drawing_area/2-11, bottom_left_middle_right_text_ypos); } //we set default black color color.red = 0;color.green = 0;color.blue = 0; //set the color for the graphic context set_color (gc, &color); //we set the red color color.red = 255 * 255;color.green = 0;color.blue = 0; set_color(gc, &color); //the top middle line, current position draw_line(gc, width_drawing_area/2,erase_split_ylimit, width_drawing_area/2,progress_ylimit, FALSE, TRUE); //we draw the silence wave if we have it if (show_silence_wave) { draw_silence_wave(left_mark, right_mark, da, gc); //we set the red color color.red = 255 * 255;color.green = 0;color.blue = 0; set_color(gc, &color); //the draw silence wave middle line draw_line(gc, width_drawing_area/2,text_ypos + margin, width_drawing_area/2, wave_ypos, FALSE, TRUE); } //we draw the splitpoints draw_splitpoints(left_mark, right_mark, da, gc); } else { color.red = 255 * 212; color.green = 255 * 100; color.blue = 255 * 200; set_color (gc, &color); draw_text(gc, _(" left click on splitpoint selects it, right click erases it"), 0, margin - 3); color.red = 0;color.green = 0;color.blue = 0; set_color (gc, &color); draw_text(gc, _(" left click + move changes song position, right click + move changes zoom"), 0, erase_split_ylimit + margin); color.red = 15000;color.green = 40000;color.blue = 25000; set_color (gc, &color); draw_text(gc, _(" left click on point + move changes point position, right click play preview"), 0, progress_ylimit + margin); color.red = 0; color.green = 0; color.blue = 0; set_color (gc, &color); draw_text(gc, _(" left click on rectangle checks/unchecks 'keep splitpoint'"), 0, splitpoint_ypos + 1); } #if GTK_MAJOR_VERSION <= 2 cairo_destroy(gc); #endif return TRUE; } //returns the left splitpoint of the current play void get_splitpoint_time_left_right(gint *time_left, gint *time_right, gint *splitpoint_left) { gint i; Split_point current_point; gint current_point_hundr_secs; //we look at all splitpoints for(i = 0; i < splitnumber; i++ ) { current_point = g_array_index(splitpoints, Split_point, i); current_point_hundr_secs = current_point.hundr_secs + current_point.secs * 100 + current_point.mins * 6000; //if we found a valid splitpoint, we put them in a //list if (current_point_hundr_secs < current_time+DELTA) { *time_left = current_point_hundr_secs; } else { if (current_point_hundr_secs > current_time) { *time_right = current_point_hundr_secs; *splitpoint_left = i; break; } } } if (*splitpoint_left == -1) { *splitpoint_left = splitnumber; } } /*!Acquire the number of the splitpoint that has been clicked on \param type_clicked - 3 means right button - 1 means left button \param type - 1 means erase splitpoint area, - 2 means move splitpoint area, - 3 means check splitpoint area */ gint get_splitpoint_clicked(gint button_y, gint type_clicked, gint type) { //the time current position gint time_pos,time_right_pos,time_margin; gint left_time = get_left_drawing_time(); gint but_y; //we see if we click on a right button if (type_clicked != 3) { but_y = button_y; time_pos = left_time + pixels_to_time(width_drawing_area,button_x); } else { but_y = button_y2; time_pos = left_time + pixels_to_time(width_drawing_area,button_x2); } //we get this to find time_right_pos - time_right //to see what time we have for X pixels gint pixels_to_look_for = real_erase_split_length / 2; if (type == 2) { pixels_to_look_for = real_move_split_length / 2; } if (type_clicked != 3) { time_right_pos = left_time+ pixels_to_time(width_drawing_area,button_x + pixels_to_look_for); } else { time_right_pos = left_time+ pixels_to_time(width_drawing_area,button_x2 + pixels_to_look_for); } //the time margin is the margin for the splitpoint, //where we can click at his left or right time_margin = time_right_pos - time_pos; gint margin1, margin2; if (type == 2) { margin1 = progress_ylimit + margin; margin2 = progress_ylimit + margin + real_move_split_length; } else if (type == 1) { margin1 = margin; margin2 = margin + real_erase_split_length; } else //if (type == 3) { margin1 = splitpoint_ypos + margin; margin2 = splitpoint_ypos + margin + real_checkbox_length; } gint splitpoint_returned = -1; //if we are in the area to move the split if ((but_y > margin1) && (but_y < margin2)) { //we check what splitpoints we found Split_point current_point; //current point in hundreth of seconds gint current_point_hundr_secs; gint current_point_left,current_point_right; gint i; //we look at all splitpoints for(i = 0; i < splitnumber; i++ ) { current_point = g_array_index(splitpoints, Split_point, i); current_point_hundr_secs = current_point.hundr_secs + current_point.secs * 100 + current_point.mins * 6000; //left margin current_point_left = current_point_hundr_secs - time_margin; //right margin current_point_right = current_point_hundr_secs + time_margin; //if we found a valid splitpoint, we return it if ((time_pos >= current_point_left) && (time_pos <= current_point_right)) { splitpoint_returned = i; break; } } } return splitpoint_returned; } //!makes a quick preview of the song void player_quick_preview(gint splitpoint_to_preview) { if (splitpoint_to_preview != -1) { preview_start_position = get_splitpoint_time(splitpoint_to_preview); preview_start_splitpoint = splitpoint_to_preview; if (!player_is_playing()) { player_play(); usleep(50000); } if (player_is_paused()) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pause_button), FALSE); } if (splitpoint_to_preview < splitnumber-1) { quick_preview_end_splitpoint = splitpoint_to_preview + 1; } else { quick_preview_end_splitpoint = -1; } player_jump(preview_start_position); change_progress_bar(); put_status_message(_(" quick preview...")); quick_preview = FALSE; if (quick_preview_end_splitpoint != -1) { quick_preview = TRUE; } if (preview_start_splitpoint == (splitnumber-1)) { cancel_quick_preview_all(); } } } //!drawing area press event gboolean da_press_event (GtkWidget *da, GdkEventButton *event, gpointer data) { //only if we are playing //and the timer active(connected to player) if (playing && timer_active) { if (event->button == 1) { button_x = event->x; button_y = event->y; button1_pressed = TRUE; if ((button_y > progress_ylimit + margin) && (button_y < progress_ylimit + margin + real_move_split_length)) { splitpoint_to_move = get_splitpoint_clicked(button_y,1, 2); //if we have found splitpoints if (splitpoint_to_move != -1) { move_splitpoints = TRUE; } } else { //if we are in the area to remove a splitpoint if ((button_y > margin) && (button_y < margin + real_erase_split_length)) { gint splitpoint_selected; //TRUE means remove splitpoint area splitpoint_selected = get_splitpoint_clicked(button_y, 1, 1); //if we have found a splitpoint to select if (splitpoint_selected != -1) { select_splitpoints = TRUE; select_splitpoint(splitpoint_selected); } refresh_drawing_area(); } else { //if we are in the area to check a splitpoint if ((button_y > splitpoint_ypos + margin) && (button_y < splitpoint_ypos + margin + real_checkbox_length)) { gint splitpoint_selected = get_splitpoint_clicked(button_y, 1, 3); if (splitpoint_selected != -1) { check_splitpoint = TRUE; update_splitpoint_check(splitpoint_selected); } refresh_drawing_area(); } } } if (!move_splitpoints) { move_time = current_time; } else { move_time = get_splitpoint_time(splitpoint_to_move) / 10; } } else { //right click if (event->button == 3) { button_x2 = event->x; button_y2 = event->y; button2_pressed = TRUE; zoom_coeff_old = zoom_coeff; if ((button_y2 > progress_ylimit + margin) && (button_y2 < progress_ylimit + margin + real_move_split_length)) { gint splitpoint_to_preview = -1; splitpoint_to_preview = get_splitpoint_clicked(button_y2,3, 2); //player quick preview here!! player_quick_preview(splitpoint_to_preview); } else { //if we are in the area to remove a splitpoint if ((button_y2 > margin) && (button_y2 < margin + real_erase_split_length)) { gint splitpoint_to_erase = -1; //TRUE means remove splitpoint area splitpoint_to_erase = get_splitpoint_clicked(button_y2,3, 1); //if we have found a splitpoint to erase if (splitpoint_to_erase != -1) { remove_splitpoints = TRUE; remove_splitpoint(splitpoint_to_erase,TRUE); } refresh_drawing_area(); } } } } } return TRUE; } //!drawing area release event gboolean da_unpress_event (GtkWidget *da, GdkEventButton *event, gpointer data) { //only if we are playing //and the timer active(connected to player) if (playing && timer_active) { if (event->button == 1) { button1_pressed = FALSE; //if we move the current _position_ if (!move_splitpoints && !remove_splitpoints && !select_splitpoints && !check_splitpoint) { remove_status_message(); player_jump((gint)(move_time * 10)); change_progress_bar(); //if we have more than 2 splitpoints //if we are outside the split preview, we //cancel split preview if (quick_preview_end_splitpoint == -1) { if (move_time < get_splitpoint_time(preview_start_splitpoint) /10) { cancel_quick_preview_all(); } } else { if ((move_time < get_splitpoint_time(preview_start_splitpoint) /10) || (move_time > get_splitpoint_time(quick_preview_end_splitpoint) /10)) { cancel_quick_preview_all(); } else //if we are inside, we turn on quick preview { //if we don't have a preview with the last //splitpoint if (quick_preview_end_splitpoint != -1) { //we unpause the player if (player_is_paused()) { player_pause(); } quick_preview = TRUE; } } } } else { //if we moved the splitpoint if (move_splitpoints) { //we update the current splitpoint update_splitpoint_from_time(splitpoint_to_move, move_time); splitpoint_to_move = -1; } } move_splitpoints = FALSE; select_splitpoints = FALSE; check_splitpoint = FALSE; } else { if (event->button == 3) { button2_pressed = FALSE; remove_splitpoints = FALSE; } } } refresh_drawing_area(); return TRUE; } //!on drawing area event gboolean da_notify_event (GtkWidget *da, GdkEventMotion *event, gpointer data) { //only if we are playing //and the timer active(connected to player) if ((playing && timer_active) && (button1_pressed || button2_pressed)) { gint x, y; GdkModifierType state; gdk_window_get_pointer (event->window, &x, &y, &state); //drawing area width gint width = 0; wh_get_widget_size(drawing_area, &width, NULL); gfloat width_drawing_area = (gfloat) width; if (state) { //we push left button if (button1_pressed) { //if we move the splitpoints if (move_splitpoints) { gdouble splitpoint_time = get_splitpoint_time(splitpoint_to_move) / 10; move_time = splitpoint_time + pixels_to_time(width_drawing_area,(x - button_x)); } else { //if we remove a splitpoint if (remove_splitpoints || select_splitpoints || check_splitpoint) { move_time = current_time; } else { move_time = current_time + pixels_to_time(width_drawing_area,(x - button_x)); } } //if too left or too right if (move_time < 0) { move_time = 0; } if (move_time > total_time) { move_time = total_time; } refresh_drawing_area(); } else { if (button2_pressed) { gint diff = -((event->x - button_x2) * 1); if (diff < (-width_drawing_area + 1)) { diff = -width_drawing_area + 1; } if (diff > (width_drawing_area - 1)) { diff = width_drawing_area - 1; } zoom_coeff = diff / (width_drawing_area); if (zoom_coeff < 0) { zoom_coeff = 1/(zoom_coeff+1); } else { zoom_coeff = 1 - zoom_coeff; } zoom_coeff = zoom_coeff_old * zoom_coeff; if (zoom_coeff < 0.2) { zoom_coeff = 0.2; } if (zoom_coeff > 10 * total_time / 6000) { zoom_coeff = 10 * total_time / 6000; } refresh_drawing_area(); } } } } return TRUE; } static void drawing_area_expander_event(GObject *object, GParamSpec *param_spec, gpointer data) { if (object == NULL) { return; } GtkExpander *expander = GTK_EXPANDER(object); if (gtk_expander_get_expanded(expander)) { gtk_widget_show(silence_wave_check_button); } else { gtk_widget_hide(silence_wave_check_button); } } //!creates the progress drawing area under the player buttons GtkWidget *create_drawing_area() { GtkWidget *frame = gtk_frame_new(NULL); GdkColor color; color.red = 65000; color.green = 0; color.blue = 0; gtk_widget_modify_bg(frame, GTK_STATE_NORMAL, &color); gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_NONE); drawing_area = gtk_drawing_area_new(); gtk_widget_set_size_request(drawing_area, DRAWING_AREA_WIDTH, DRAWING_AREA_HEIGHT); #if GTK_MAJOR_VERSION <= 2 g_signal_connect(drawing_area, "expose_event", G_CALLBACK(da_draw_event), NULL); #else g_signal_connect(drawing_area, "draw", G_CALLBACK(da_draw_event), NULL); #endif g_signal_connect(drawing_area, "button_press_event", G_CALLBACK(da_press_event), NULL); g_signal_connect(drawing_area, "button_release_event", G_CALLBACK(da_unpress_event), NULL); g_signal_connect(drawing_area, "motion_notify_event", G_CALLBACK(da_notify_event), NULL); gtk_widget_set_events(drawing_area, gtk_widget_get_events(drawing_area) | GDK_LEAVE_NOTIFY_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK); gtk_container_add(GTK_CONTAINER(frame), drawing_area); drawing_area_expander = gtk_expander_new_with_mnemonic(_("Splitpoints _view")); gtk_expander_set_expanded(GTK_EXPANDER(drawing_area_expander), TRUE); g_signal_connect(drawing_area_expander, "notify::expanded", G_CALLBACK(drawing_area_expander_event), NULL); gtk_container_add(GTK_CONTAINER(drawing_area_expander), frame); return drawing_area_expander; } //!creates the control player frame, stop button, play button, etc. GtkWidget *create_player_control_frame(GtkTreeView *tree_view) { //the vbox has hboxes in it GtkWidget *vbox; GtkWidget *hbox; //really big hbox GtkWidget *really_big_hbox = gtk_hbox_new(FALSE, 0); //main hbox GtkWidget *main_hbox = gtk_hbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX(really_big_hbox), main_hbox, TRUE, TRUE, 4); vbox = gtk_vbox_new (FALSE, 0); gtk_box_pack_start(GTK_BOX(main_hbox), vbox, TRUE, TRUE, 0); /* handle box for detaching */ player_handle = gtk_handle_box_new(); gtk_container_add(GTK_CONTAINER (player_handle), GTK_WIDGET(really_big_hbox)); //handle event g_signal_connect(player_handle, "child-detached", G_CALLBACK(handle_player_detached_event), NULL); //the filename player hbox hbox = (GtkWidget *)create_filename_player_hbox(); gtk_container_set_border_width (GTK_CONTAINER (hbox), 0); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 5); //the song informations hbox = (GtkWidget *)create_song_informations_hbox(); gtk_container_set_border_width (GTK_CONTAINER (hbox), 0); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 3); //the vertical range progress scale //song progress bar hbox = (GtkWidget *)create_song_bar_hbox(); gtk_container_set_border_width (GTK_CONTAINER (hbox), 0); gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); //horizontal drawing area GtkWidget *drawing_area = create_drawing_area(); gtk_container_set_border_width(GTK_CONTAINER(drawing_area), 0); gtk_box_pack_start(GTK_BOX(vbox), drawing_area, FALSE, FALSE, 0); //our horizontal player button hbox hbox = (GtkWidget *)create_player_buttons_hbox(tree_view); gtk_container_set_border_width(GTK_CONTAINER(hbox), 0); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); return player_handle; } //!add a row to the table void add_playlist_file(const gchar *name) { if (is_filee(name)) { //check if the name already exists in the playlist gboolean name_already_exists_in_playlist = FALSE; GtkTreeIter iter; GtkTreeModel *model; GtkTreeView *tree_view = (GtkTreeView *)playlist_tree; model = gtk_tree_view_get_model(GTK_TREE_VIEW(tree_view)); gchar *filename = NULL; gint i = 0; GtkTreePath *path = NULL; //for all the files from the playlist, while (i < playlist_tree_number) { path = gtk_tree_path_new_from_indices(i ,-1); gtk_tree_model_get_iter(model, &iter, path); gtk_tree_model_get(model, &iter, COL_FILENAME, &filename, -1); if (strcmp(filename,name) == 0) { name_already_exists_in_playlist = TRUE; break; } g_free(filename); i++; } if (! name_already_exists_in_playlist) { gtk_widget_set_sensitive(playlist_remove_all_files_button,TRUE); gtk_list_store_append (GTK_LIST_STORE(model), &iter); //sets text in the minute, second and milisecond column gtk_list_store_set (GTK_LIST_STORE(model), &iter, COL_NAME,get_real_name_from_filename((guchar *)name), COL_FILENAME,name, -1); playlist_tree_number++; } } } //!when closing the new window after detaching void close_playlist_popup_window_event(GtkWidget *window, gpointer data) { if (playlist_handle_window == NULL) { return; } GtkWidget *window_child = gtk_bin_get_child(GTK_BIN(playlist_handle_window)); gtk_widget_reparent(GTK_WIDGET(window_child), GTK_WIDGET(playlist_handle)); gtk_widget_destroy(playlist_handle_window); } //!when we detach the handle void handle_playlist_detached_event(GtkHandleBox *handlebox, GtkWidget *widget, gpointer data) { playlist_handle_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_widget_reparent(GTK_WIDGET(widget), GTK_WIDGET(playlist_handle_window)); g_signal_connect(G_OBJECT(playlist_handle_window), "delete_event", G_CALLBACK(close_playlist_popup_window_event), NULL); gtk_widget_show(GTK_WIDGET(playlist_handle_window)); } //!creates the model for the playlist GtkTreeModel *create_playlist_model() { GtkListStore *model; model = gtk_list_store_new(PLAYLIST_COLUMNS, G_TYPE_STRING, G_TYPE_STRING); return GTK_TREE_MODEL(model); } //!creates the playlist tree GtkTreeView *create_playlist_tree() { GtkTreeModel *model = (GtkTreeModel *)create_playlist_model(); GtkTreeView *tree_view = (GtkTreeView *) gtk_tree_view_new_with_model(model); gtk_tree_view_set_headers_visible(tree_view, FALSE); return tree_view; } //!creates playlist columns void create_playlist_columns(GtkTreeView *tree_view) { GtkCellRendererText *renderer; GtkTreeViewColumn *name_column; //GtkTreeViewColumn *filename_column; //renderer creation renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new()); g_object_set_data(G_OBJECT(renderer), "col", GINT_TO_POINTER(COL_NAME)); name_column = gtk_tree_view_column_new_with_attributes (_("History"), GTK_CELL_RENDERER(renderer), "text", COL_NAME, NULL); //we dont insert the column to the tree view /* renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new ()); filename_column = gtk_tree_view_column_new_with_attributes (_("Complete filename"), GTK_CELL_RENDERER(renderer), "text", COL_FILENAME, NULL);*/ /* gtk_tree_view_insert_column (GTK_TREE_VIEW (tree_view), GTK_TREE_VIEW_COLUMN (filename_column),COL_FILENAME);*/ //appends columns to the list of columns of tree_view gtk_tree_view_insert_column(GTK_TREE_VIEW(tree_view), GTK_TREE_VIEW_COLUMN(name_column), COL_NAME); //middle alignment of the column name gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(name_column), 0.5); gtk_tree_view_column_set_sizing(GTK_TREE_VIEW_COLUMN(name_column), GTK_TREE_VIEW_COLUMN_AUTOSIZE); } //!split selection has changed void playlist_selection_changed(GtkTreeSelection *selec, gpointer data) { GtkTreeModel *model; GtkTreeSelection *selection; GList *selected_list = NULL; //get the model model = gtk_tree_view_get_model(GTK_TREE_VIEW(playlist_tree)); //get the selection selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(playlist_tree)); //get selected rows selected_list = gtk_tree_selection_get_selected_rows(selection, &model); if (g_list_length(selected_list) > 0) { gtk_widget_set_sensitive(playlist_remove_file_button, TRUE); } else { gtk_widget_set_sensitive(playlist_remove_file_button, FALSE); } } //!event for the remove file button void playlist_remove_file_button_event(GtkWidget *widget, gpointer data) { GtkTreeIter iter; GtkTreeModel *model; GtkTreePath *path; GList *selected_list = NULL; GList *current_element = NULL; GtkTreeSelection *selection; //get the model model = gtk_tree_view_get_model(GTK_TREE_VIEW(playlist_tree)); //get the selection selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(playlist_tree)); //get selected rows selected_list = gtk_tree_selection_get_selected_rows(selection, &model); //the name of the file that we have clicked on gchar *filename = NULL; //while the list is not empty and we have numbers in the table //(splitnumber >0) while (g_list_length(selected_list) > 0) { //get the last element current_element = g_list_last(selected_list); path = current_element->data; //get the iter correspondig to the path gtk_tree_model_get_iter(model, &iter, path); gtk_tree_model_get(model, &iter, COL_FILENAME, &filename, -1); //remove the path from the selected list gtk_list_store_remove(GTK_LIST_STORE(model), &iter); selected_list = g_list_remove(selected_list, path); //remove 1 to the row number of the table playlist_tree_number--; //free memory gtk_tree_path_free(path); g_free(filename); } if (playlist_tree_number == 0) { gtk_widget_set_sensitive(playlist_remove_all_files_button, FALSE); } gtk_widget_set_sensitive(playlist_remove_file_button,FALSE); //we free the selected elements g_list_foreach(selected_list, (GFunc)gtk_tree_path_free, NULL); g_list_free(selected_list); } //!event for the remove file button void playlist_remove_all_files_button_event(GtkWidget *widget, gpointer data) { GtkTreeIter iter; GtkTreeModel *model; model = gtk_tree_view_get_model(GTK_TREE_VIEW(playlist_tree)); //filename to erase gchar *filename = NULL; //for all the splitnumbers while (playlist_tree_number > 0) { gtk_tree_model_get_iter_first(model, &iter); gtk_tree_model_get(model, &iter, COL_FILENAME, &filename, -1); gtk_list_store_remove(GTK_LIST_STORE(model), &iter); playlist_tree_number--; g_free(filename); } gtk_widget_set_sensitive(playlist_remove_all_files_button,FALSE); gtk_widget_set_sensitive(playlist_remove_file_button,FALSE); } //!creates the horizontal queue buttons horizontal box GtkWidget *create_delete_buttons_hbox() { //our horizontal box GtkWidget *hbox = gtk_hbox_new(FALSE, 0); //button for removing a file playlist_remove_file_button = (GtkWidget *) create_cool_button(GTK_STOCK_DELETE, _("_Erase selected entries"),FALSE); gtk_box_pack_start(GTK_BOX(hbox), playlist_remove_file_button, FALSE, FALSE, 5); gtk_widget_set_sensitive(playlist_remove_file_button,FALSE); g_signal_connect(G_OBJECT(playlist_remove_file_button), "clicked", G_CALLBACK(playlist_remove_file_button_event), NULL); //button for removing a file playlist_remove_all_files_button = (GtkWidget *) create_cool_button(GTK_STOCK_DELETE, _("E_rase all history"),FALSE); gtk_box_pack_start(GTK_BOX(hbox), playlist_remove_all_files_button, FALSE, FALSE, 5); gtk_widget_set_sensitive(playlist_remove_all_files_button,FALSE); g_signal_connect(G_OBJECT(playlist_remove_all_files_button), "clicked", G_CALLBACK(playlist_remove_all_files_button_event), NULL); return hbox; } //!creates the playlist of the player GtkWidget *create_player_playlist_frame() { GtkWidget *vbox = gtk_vbox_new(FALSE, 0); // scrolled window and the tree //create the tree and add it to the scrolled window playlist_tree = (GtkWidget *) create_playlist_tree(); //scrolled window for the tree GtkWidget *scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(scrolled_window), GTK_SHADOW_NONE); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_box_pack_start(GTK_BOX(vbox), scrolled_window, TRUE, TRUE, 0); //create columns create_playlist_columns(GTK_TREE_VIEW(playlist_tree)); //add the tree to the scrolled window gtk_container_add(GTK_CONTAINER(scrolled_window), GTK_WIDGET(playlist_tree)); g_signal_connect(G_OBJECT(playlist_tree), "row-activated", G_CALLBACK(split_tree_row_activated), NULL); //selection for the tree GtkWidget *playlist_tree_selection = (GtkWidget *) gtk_tree_view_get_selection(GTK_TREE_VIEW(playlist_tree)); g_signal_connect(G_OBJECT(playlist_tree_selection), "changed", G_CALLBACK(playlist_selection_changed), NULL); gtk_tree_selection_set_mode(GTK_TREE_SELECTION(playlist_tree_selection), GTK_SELECTION_MULTIPLE); //horizontal box with delete buttons GtkWidget *delete_buttons_hbox = (GtkWidget *)create_delete_buttons_hbox(); gtk_box_pack_start(GTK_BOX(vbox), delete_buttons_hbox, FALSE, FALSE, 2); GtkWidget *history_expander = gtk_expander_new_with_mnemonic(_("H_istory")); gtk_expander_set_expanded(GTK_EXPANDER(history_expander), FALSE); gtk_container_add(GTK_CONTAINER(history_expander), vbox); GtkWidget *main_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(main_hbox), history_expander, TRUE, TRUE, 4); /* handle box for detaching */ playlist_handle = gtk_handle_box_new(); gtk_container_add(GTK_CONTAINER(playlist_handle), GTK_WIDGET(main_hbox)); g_signal_connect(playlist_handle, "child-detached", G_CALLBACK(handle_playlist_detached_event), NULL); return playlist_handle; } /*! timer used to print infos about the song Examples are the elapsed time and if it uses variable bitrate */ gint mytimer(gpointer data) { if (player_is_running()) { if (playing) { //if we have at least one song on the playlist if (player_get_playlist_number() > -1) { //if the player is playing, print the time if (player_is_playing()) { print_all_song_infos(); print_song_time_elapsed(); if(!gtk_widget_is_sensitive(progress_bar)) gtk_widget_set_sensitive(GTK_WIDGET(progress_bar), TRUE); } check_stream(); //if we have a stream, we must not change the progress bar if(!stream) { change_progress_bar(); } //part of quick preview if (preview_start_splitpoint != -1) { //if we have a splitpoint after the current //previewed one, update quick_preview_end if (preview_start_splitpoint+1 < splitnumber) { quick_preview_end_splitpoint = preview_start_splitpoint+1; } else { if (preview_start_splitpoint+1 == splitnumber) { quick_preview_end_splitpoint = -1; } } } //if we have a preview, stop if needed if (quick_preview) { gint stop_splitpoint = get_splitpoint_time(quick_preview_end_splitpoint) / 10; if ((stop_splitpoint < (gint)current_time) && (quick_preview_end_splitpoint != -1)) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pause_button), TRUE); cancel_quick_preview(); put_status_message(_(" quick preview finished, song paused")); } } //enable volume bar if needed if(!gtk_widget_is_sensitive(volume_button)) gtk_widget_set_sensitive(GTK_WIDGET(volume_button), TRUE); } else { playing = FALSE; reset_label_time(); } if (player_is_paused()) { if (!gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(pause_button))) { only_press_pause = TRUE; gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pause_button), TRUE); only_press_pause = FALSE; } } else { if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(pause_button))) { only_press_pause = TRUE; gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pause_button), FALSE); only_press_pause = FALSE; } } } else { //if not playing but still connected if ((player_minutes != 0) || (player_seconds != 0)) { player_minutes = 0; player_seconds = 0; } print_player_filename(); reset_song_infos(); reset_label_time(); //reset progress bar reset_inactive_progress_bar(); gtk_widget_set_sensitive(player_add_button, FALSE); gtk_widget_set_sensitive(silence_wave_check_button, FALSE); } //if connected, almost always change volume bar if ((change_volume)&& (!on_the_volume_button)) { change_volume_button(); } playing = player_is_playing(); if (playing) { if (!gtk_widget_get_sensitive(player_add_button)) { gtk_widget_set_sensitive(player_add_button, TRUE); } if (!gtk_widget_get_sensitive(silence_wave_check_button)) { gtk_widget_set_sensitive(silence_wave_check_button, TRUE); } if (!gtk_widget_get_sensitive(stop_button)) { gtk_widget_set_sensitive(stop_button, TRUE); gtk_button_set_image(GTK_BUTTON(stop_button), g_object_ref(StopButton_active)); } if (!gtk_widget_get_sensitive(pause_button)) { gtk_widget_set_sensitive(pause_button, TRUE); gtk_button_set_image(GTK_BUTTON(pause_button), g_object_ref(PauseButton_active)); } } else { if (gtk_widget_get_sensitive(stop_button)) { gtk_widget_set_sensitive(stop_button, FALSE); gtk_button_set_image(GTK_BUTTON(stop_button), g_object_ref(StopButton_inactive)); } if (gtk_widget_get_sensitive(pause_button)) { gtk_widget_set_sensitive(pause_button, FALSE); gtk_button_set_image(GTK_BUTTON(pause_button), g_object_ref(PauseButton_inactive)); } } return TRUE; } else { //if connected and player not running, disconnect.. clear_data_player(); playing = FALSE; disconnect_button_event(disconnect_button, NULL); return FALSE; } } /*!event for the file chooser cancel button Moved here from the file tab */ void file_chooser_cancel_event() { gtk_widget_set_sensitive(browse_button, TRUE); } //event for the file chooser ok button void file_chooser_ok_event(gchar *fname) { change_current_filename(fname); gtk_widget_set_sensitive(browse_button, TRUE); gtk_widget_set_sensitive(play_button, TRUE); gtk_button_set_image(GTK_BUTTON(play_button), g_object_ref(PlayButton_active)); file_browsed = TRUE; if (timer_active) { GList *song_list = NULL; song_list = g_list_append(song_list, fname); player_start_add_files(song_list); } } /*! \brief Events for browse button Also used for the cddb and cue browses. */ void browse_button_event(GtkWidget *widget, gpointer data) { if (GTK_IS_WIDGET(widget)) { gtk_widget_set_sensitive(widget, FALSE); } GtkWidget *file_chooser = gtk_file_chooser_dialog_new(_("Choose File"), NULL, GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); wh_set_browser_directory_handler(ui, file_chooser); GtkWidget *our_filter = (GtkWidget *)gtk_file_filter_new(); gtk_file_filter_set_name (GTK_FILE_FILTER(our_filter), _("mp3 and ogg files (*.mp3 *.ogg)")); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.mp3"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.ogg"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.MP3"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.OGG"); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), GTK_FILE_FILTER(our_filter)); our_filter = (GtkWidget *)gtk_file_filter_new(); gtk_file_filter_set_name (GTK_FILE_FILTER(our_filter), _("mp3 files (*.mp3)")); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.mp3"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.MP3"); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), GTK_FILE_FILTER(our_filter)); our_filter = (GtkWidget *)gtk_file_filter_new(); gtk_file_filter_set_name (GTK_FILE_FILTER(our_filter), _("ogg files (*.ogg)")); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.ogg"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.OGG"); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), GTK_FILE_FILTER(our_filter)); if (gtk_dialog_run(GTK_DIALOG(file_chooser)) == GTK_RESPONSE_ACCEPT) { gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(file_chooser)); file_chooser_ok_event(filename); if (filename) { g_free(filename); filename = NULL; } } else { file_chooser_cancel_event(); } gtk_widget_destroy(file_chooser); remove_status_message(); } //when closing the new window after detaching void close_file_popup_window_event( GtkWidget *window, gpointer data ) { GtkWidget *window_child; window_child = gtk_bin_get_child(GTK_BIN(window)); gtk_widget_reparent(GTK_WIDGET(window_child), GTK_WIDGET(file_handle_box)); gtk_widget_destroy(window); } //!when we detach the handle void handle_file_detached_event (GtkHandleBox *handlebox, GtkWidget *widget, gpointer data) { //new window GtkWidget *window; window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_widget_reparent(GTK_WIDGET(widget), GTK_WIDGET(window)); g_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (close_file_popup_window_event), NULL); gtk_widget_show(GTK_WIDGET(window)); } /*!fix ogg stream action we split from 0 to a big number */ gpointer fix_ogg_stream(gpointer data) { we_are_splitting = TRUE; enter_threads(); gtk_widget_set_sensitive(GTK_WIDGET(fix_ogg_stream_button), FALSE); put_options_from_preferences(); exit_threads(); gint err = 0; mp3splt_erase_all_splitpoints(the_state,&err); mp3splt_append_splitpoint(the_state, 0, NULL, SPLT_SPLITPOINT); mp3splt_append_splitpoint(the_state, LONG_MAX-1, NULL, SPLT_SKIPPOINT); mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_DEFAULT); mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_NORMAL_MODE); enter_threads(); remove_all_split_rows(); filename_to_split = (gchar *) inputfilename_get(); exit_threads(); gint confirmation = SPLT_OK; mp3splt_set_path_of_split(the_state,filename_path_of_split); mp3splt_set_filename_to_split(the_state,filename_to_split); confirmation = mp3splt_split(the_state); enter_threads(); print_status_bar_confirmation(confirmation); gtk_widget_set_sensitive(GTK_WIDGET(fix_ogg_stream_button), TRUE); exit_threads(); we_are_splitting = FALSE; return NULL; } //!we make a thread with fix_ogg_stream void fix_ogg_stream_button_event(GtkWidget *widget, gpointer data) { create_thread(fix_ogg_stream, NULL, TRUE, NULL); } GtkWidget *create_choose_file_frame() { /* file entry and browse button hbox */ GtkWidget *choose_file_hbox = gtk_hbox_new (FALSE, 0); //gtk_container_set_border_width(GTK_CONTAINER(choose_file_hbox), 6); /* handle box for detaching */ file_handle_box = gtk_handle_box_new(); gtk_container_add(GTK_CONTAINER(file_handle_box), GTK_WIDGET(choose_file_hbox)); g_signal_connect(file_handle_box, "child-detached", G_CALLBACK(handle_file_detached_event), NULL); /* filename entry */ entry = gtk_entry_new(); gtk_editable_set_editable(GTK_EDITABLE(entry), FALSE); gtk_box_pack_start(GTK_BOX(choose_file_hbox), entry , TRUE, TRUE, 4); // Display the input file name if we already have gotten one // from the command line if(inputfilename_get()!=NULL) gtk_entry_set_text(GTK_ENTRY(entry), inputfilename_get()); /* browse button */ browse_button = (GtkWidget *) create_cool_button(GTK_STOCK_OPEN,_("_Browse"), FALSE); g_signal_connect(G_OBJECT (browse_button), "clicked", G_CALLBACK(browse_button_event), (gpointer *)BROWSE_SONG); gtk_box_pack_start(GTK_BOX(choose_file_hbox), browse_button, FALSE, FALSE, 4); gtk_widget_set_tooltip_text(browse_button,_("Select file")); /* bottom buttons hbox */ //GtkWidget *bottom_buttons_hbox = gtk_hbox_new(FALSE,0); /* fix ogg stream button */ fix_ogg_stream_button = (GtkWidget *) create_cool_button(GTK_STOCK_HARDDISK,_("_Fix ogg stream"), FALSE); g_signal_connect(G_OBJECT(fix_ogg_stream_button), "clicked", G_CALLBACK(fix_ogg_stream_button_event), NULL); /* gtk_box_pack_start (GTK_BOX(bottom_buttons_hbox), fix_ogg_stream_button, FALSE, FALSE, 7); gtk_box_pack_start (GTK_BOX(main_choose_file_vbox), bottom_buttons_hbox, FALSE, FALSE, 0);*/ return file_handle_box; } //! Hide the connect button void hide_connect_button() { gtk_widget_hide(connect_button); } //! Show the connect button void show_connect_button() { if (! container_has_child(GTK_CONTAINER(player_buttons_hbox), connect_button)) { gtk_box_pack_start(GTK_BOX(player_buttons_hbox), connect_button, FALSE, FALSE, 7); } gtk_widget_show_all(connect_button); } //! Hide the disconnect button void hide_disconnect_button() { gtk_widget_hide(disconnect_button); } //! Show the disconnec button void show_disconnect_button() { if (! container_has_child(GTK_CONTAINER(player_buttons_hbox), disconnect_button)) { gtk_box_pack_start(GTK_BOX(player_buttons_hbox), disconnect_button, FALSE, FALSE, 7); } gtk_widget_show_all(disconnect_button); } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/player_tab.h������������������������������������������������������������������0000644�0001750�0001750�00000020613�11753301451�013712� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: player_tab.h * * header of player_tab.c * *********************************************************/ #ifndef _PLAYER_TAB_H #define _PLAYER_TAB_H #define ICON_EXT ".svg" #define DEFAULT_TIMEOUT_VALUE 200 //!time structure typedef struct { long time; float level; } silence_wave; //float comparison #define DELTA 5 //for the browse dir #define BROWSE_SONG 1 #define BROWSE_CDDB_FILE 2 #define BROWSE_CUE_FILE 3 void player_quick_preview(gint splitpoint_to_preview); void check_update_down_progress_bar(); void set_preview_active_if_needed(); void cancel_quick_preview_all(); void cancel_quick_preview(); void check_cancel_quick_preview(gint i); void get_splitpoint_time_left_right(gint *time_left, gint *time_right, gint *splitpoint_left); gint mytimer(gpointer data); void reset_inactive_progress_bar(); void reset_inactive_volume_button(); void reset_label_time(); void reset_song_infos(); void reset_song_name_label(); void clear_data_player(); void enable_player_buttons(); void disable_player_buttons(); void connect_change_buttons(); void disconnect_change_buttons(); void connect_with_song(const gchar *fname, gint i); void connect_to_player_with_song(gint i); void connect_button_event (GtkWidget *widget, gpointer data); void check_stream(); void disconnect_button_event (GtkWidget *widget, gpointer data); void play_event (GtkWidget *widget, gpointer data); void stop_event (GtkWidget *widget, gpointer data); void pause_event (GtkWidget *widget, gpointer data); void prev_button_event (GtkWidget *widget, gpointer data); void next_button_event (GtkWidget *widget, gpointer data); void change_song_position(); GtkWidget *create_player_buttons_hbox(GtkTreeView *tree_view); GtkWidget *create_song_informations_hbox(); gboolean progress_bar_unclick_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); gboolean progress_bar_click_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); gfloat get_total_time(); gfloat get_elapsed_time(); void refresh_drawing_area(); void progress_bar_value_changed_event (GtkRange *range, gpointer user_data); gboolean progress_bar_scroll_event (GtkWidget *widget, GdkEventScroll *event, gpointer user_data); gboolean progress_bar_enter_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); gboolean progress_bar_leave_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); GtkWidget *create_song_bar_hbox(); void print_about_the_song(); void print_player_filename(); void print_all_song_infos(); void print_song_time_elapsed(); void change_volume_button(); void change_progress_bar(); GtkWidget *create_filename_player_hbox(); void change_volume_event(GtkScaleButton *volume_button, gdouble value, gpointer data); gboolean volume_button_unclick_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); gboolean volume_button_click_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); gboolean volume_button_enter_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); gboolean volume_button_leave_event (GtkWidget *widget, GdkEventCrossing *event, gpointer user_data); gboolean volume_button_scroll_event (GtkWidget *widget, GdkEventScroll *event, gpointer user_data); GtkWidget *create_volume_control_box(); void close_player_popup_window_event( GtkWidget *window, gpointer data ); void handle_player_detached_event (GtkHandleBox *handlebox, GtkWidget *widget, gpointer data); gfloat get_right_drawing_time(); gfloat get_left_drawing_time(); gint get_time_hundrsecs(gint time); gint get_time_secs(gint time); gint get_time_mins(gint time); gchar *get_time_for_drawing(gchar *str, gint time, gboolean hundr_or_not, gint *number_of_chars); gint time_to_pixels(gint width, gfloat time); gfloat pixels_to_time(gfloat width, gint pixels); gint get_draw_line_position(gint width, gfloat time); void draw_motif(GtkWidget *da,cairo_t *gc, gint ylimit,gint x,gint model); void draw_marks(gint time_interval, gint left_mark,gint right_mark, gint ylimit, GtkWidget *da, cairo_t *gc); //motif for splitpoints //draw is false if we draw the splitpoint we move void draw_motif_splitpoints(GtkWidget *da, cairo_t *gc, gint x,gint draw, gint current_point_hundr_secs, gboolean move, gint number_splitpoint); void draw_splitpoints(gint left_mark, gint right_mark, GtkWidget *da, cairo_t *gc); gboolean da_expose_event (GtkWidget *da, GdkEventExpose *event, gpointer data); gboolean da_press_event (GtkWidget *da, GdkEventButton *event, gpointer data); gboolean da_unpress_event (GtkWidget *da, GdkEventButton *event, gpointer data); gboolean da_notify_event (GtkWidget *da, GdkEventMotion *event, gpointer data); GtkWidget *create_drawing_area(); GtkWidget *create_player_control_frame(GtkTreeView *tree_view); //moved from the file_tab void file_chooser_cancel_event(); void file_chooser_ok_event(gchar *fname); void browse_button_event( GtkWidget *widget, gpointer data ); void close_file_popup_window_event( GtkWidget *window, gpointer data ); void handle_file_detached_event (GtkHandleBox *handlebox, GtkWidget *widget, gpointer data); GtkWidget *create_choose_file_frame(); void change_current_filename(const gchar *fname); GtkWidget *create_player_playlist_frame(); void hide_connect_button(); void show_connect_button(); void hide_disconnect_button(); void show_disconnect_button(); void inputfilename_set(const gchar *filename); gchar *inputfilename_get(); void build_path(GString *path, const gchar *dir, const gchar *filename); void close_playlist_popup_window_event(GtkWidget *window, gpointer data); void restart_player_timer(); #endif ���������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/pause_inactive.svg������������������������������������������������������������0000644�0001750�0001750�00000023107�11513144100�015126� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13.375" height="12.53125" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="pause_inactive.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient3850"> <stop id="stop3852" offset="0" style="stop-color:#808080;stop-opacity:0.50400001;" /> <stop id="stop3854" offset="1" style="stop-color:#808080;stop-opacity:1;" /> </linearGradient> <linearGradient id="linearGradient5111"> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop5113" /> <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop5115" /> </linearGradient> <linearGradient id="linearGradient3161"> <stop style="stop-color:#2c9ce8;stop-opacity:1;" offset="0" id="stop3163" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3165" /> </linearGradient> <linearGradient id="linearGradient3158"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3160" /> <stop style="stop-color:#fffcfc;stop-opacity:1;" offset="1" id="stop3162" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3158" id="linearGradient3166" x1="343.90701" y1="527.39569" x2="635.65576" y2="360.81635" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient4137"> <stop style="stop-color:#00ff00;stop-opacity:0;" offset="0" id="stop4139" /> <stop id="stop4147" offset="0.5" style="stop-color:#00ff00;stop-opacity:1;" /> <stop style="stop-color:#00ff00;stop-opacity:1;" offset="1" id="stop4141" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient4137" id="radialGradient4145" cx="436.80746" cy="494.4108" fx="436.80746" fy="494.4108" r="185.17741" gradientTransform="matrix(1.2235362,-0.5446939,0.5814184,1.3060295,-412.82479,53.892637)" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3153"> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3155" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="1" id="stop3157" /> </linearGradient> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop id="stop3151" offset="0.5" style="stop-color:#ffffff;stop-opacity:1;" /> <stop style="stop-color:#9b0000;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#ff0c0c;stop-opacity:0.50400001;" offset="0" id="stop3156" /> <stop style="stop-color:#ff2300;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3162" id="linearGradient3167" gradientUnits="userSpaceOnUse" x1="161.31094" y1="575.80811" x2="180.54237" y2="575.80811" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3153" id="radialGradient3169" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,1.1923401,0,-28.118883)" cx="-175" cy="146.19353" fx="-175" fy="146.19353" r="20.126865" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3161" id="radialGradient3167" cx="351.25055" cy="594.79358" fx="351.25055" fy="594.79358" r="24" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.3076652,2.1716075e-6,-2.3541417e-6,1.4170433,-108.73894,-245.03349)" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient5111" id="radialGradient5117" cx="356.61749" cy="592.42078" fx="356.61749" fy="592.42078" r="24" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.767096,-0.00314281,0.00303291,0.7402712,81.260899,146.98955)" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient5111" id="radialGradient3014" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.2110643,0.03842593,-0.11805932,1.1738083,-5.3284231,-124.67094)" cx="356.61749" cy="592.42078" fx="356.61749" fy="592.42078" r="24" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154-6" id="radialGradient3817-8" cx="353.35184" cy="595.29504" fx="353.35184" fy="595.29504" r="12" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5723657,0.03212797,-0.03489336,1.7077056,-180.9011,-433.25825)" /> <linearGradient id="linearGradient3154-6"> <stop style="stop-color:#ff0c0c;stop-opacity:0.50400001;" offset="0" id="stop3156-8" /> <stop style="stop-color:#ff2300;stop-opacity:1;" offset="1" id="stop3158-8" /> </linearGradient> <radialGradient r="12" fy="595.29504" fx="353.35184" cy="595.29504" cx="353.35184" gradientTransform="matrix(0.68610479,0.02154006,0.04473785,0.6367646,78.051205,209.66338)" gradientUnits="userSpaceOnUse" id="radialGradient3029" xlink:href="#linearGradient3850" inkscape:collect="always" /> <radialGradient r="12" fy="595.29504" fx="353.35184" cy="595.29504" cx="353.35184" gradientTransform="matrix(1.5723657,0.03212797,-0.03489336,1.7077056,-180.9011,-433.25825)" gradientUnits="userSpaceOnUse" id="radialGradient3029-4" xlink:href="#linearGradient3154-6-3" inkscape:collect="always" /> <linearGradient id="linearGradient3154-6-3"> <stop style="stop-color:#ff0c0c;stop-opacity:0.50400001;" offset="0" id="stop3156-8-3" /> <stop style="stop-color:#ff2300;stop-opacity:1;" offset="1" id="stop3158-8-3" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3850" id="radialGradient3856" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.60328921,0.02676458,0.02657269,0.637526,126.41143,207.38647)" cx="353.32071" cy="595.53052" fx="353.32071" fy="595.53046" r="12" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="14.949002" inkscape:cx="-16.332774" inkscape:cy="6.2702591" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" width="48px" height="48px" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-maximized="1" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-343.96875,-591.625)"> <rect style="fill:url(#radialGradient3029);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.90981007;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="rect3169-4" width="4.198554" height="11.566265" x="344.41293" y="592.12054" rx="0.114345" ry="2.6209421" /> <rect style="fill:url(#radialGradient3856);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.90981007;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="rect3169-4-8" width="4.198554" height="11.566265" x="352.68338" y="592.09113" rx="0.114345" ry="2.6209421" /> </g> </svg> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/multiple_files.c��������������������������������������������������������������0000644�0001750�0001750�00000031607�11753301454�014610� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * Batch processing internals * * this file is for management for the the multiple files * mode that currently allows only for batch processing. *********************************************************/ #include <gtk/gtk.h> #include <glib/gi18n.h> #include <libmp3splt/mp3splt.h> #include "multiple_files.h" #include "main_win.h" #include "ui_manager.h" #include "widgets_helper.h" extern splt_state *the_state; extern ui_state *ui; GtkWidget *multiple_files_tree = NULL; gint multiple_files_tree_number = 0; GtkWidget *multiple_files_remove_file_button = NULL; GtkWidget *multiple_files_remove_all_files_button = NULL; #define MY_GTK_RESPONSE 200 //!Create the model for the batch processing file list GtkTreeModel *create_multiple_files_model() { GtkListStore *model; model = gtk_list_store_new(MULTIPLE_FILES_COLUMNS, G_TYPE_STRING, G_TYPE_STRING); return GTK_TREE_MODEL(model); } GtkTreeView *create_multiple_files_tree() { GtkTreeView *tree_view; GtkTreeModel *model; model = (GtkTreeModel *)create_multiple_files_model(); tree_view = (GtkTreeView *)gtk_tree_view_new_with_model(model); return tree_view; } void create_multiple_files_columns(GtkTreeView *tree_view) { GtkCellRendererText *renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new()); GtkTreeViewColumn *filename_column = gtk_tree_view_column_new_with_attributes (_("Complete filename"), GTK_CELL_RENDERER(renderer), "text", MULTIPLE_COL_FILENAME, NULL); gtk_tree_view_insert_column(GTK_TREE_VIEW(tree_view), GTK_TREE_VIEW_COLUMN(filename_column),MULTIPLE_COL_FILENAME); gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(filename_column), 0.5); gtk_tree_view_column_set_sizing(GTK_TREE_VIEW_COLUMN(filename_column), GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_sort_column_id(filename_column, MULTIPLE_COL_FILENAME); } void multiple_files_open_button_event(GtkWidget *widget, gpointer data) { gtk_dialog_response(GTK_DIALOG(data), MY_GTK_RESPONSE); } void multiple_files_add_button_event(GtkWidget *widget, gpointer data) { GtkWidget *file_chooser; GtkWidget *our_filter; file_chooser = gtk_file_chooser_dialog_new(_("Choose file or directory"), NULL, GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL); wh_set_browser_directory_handler(ui, file_chooser); GtkWidget *button = gtk_dialog_add_button(GTK_DIALOG(file_chooser), GTK_STOCK_ADD, MY_GTK_RESPONSE); gtk_button_set_use_stock(GTK_BUTTON(button), TRUE); g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(multiple_files_open_button_event), file_chooser); g_signal_connect(G_OBJECT(file_chooser), "file-activated", G_CALLBACK(multiple_files_open_button_event), file_chooser); gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(file_chooser), TRUE); //mp3 & ogg filter our_filter = (GtkWidget *)gtk_file_filter_new(); gtk_file_filter_set_name (GTK_FILE_FILTER(our_filter), _("mp3 and ogg files (*.mp3 *.ogg)")); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.mp3"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.MP3"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.ogg"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.OGG"); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), GTK_FILE_FILTER(our_filter)); //mp3 filter our_filter = (GtkWidget *)gtk_file_filter_new(); gtk_file_filter_set_name (GTK_FILE_FILTER(our_filter), _("mp3 files (*.mp3)")); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.mp3"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.MP3"); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), GTK_FILE_FILTER(our_filter)); //ogg filter our_filter = (GtkWidget *)gtk_file_filter_new(); gtk_file_filter_set_name (GTK_FILE_FILTER(our_filter), _("ogg files (*.ogg)")); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.ogg"); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*.OGG"); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), GTK_FILE_FILTER(our_filter)); //all files filter our_filter = (GtkWidget *)gtk_file_filter_new(); gtk_file_filter_set_name (GTK_FILE_FILTER(our_filter), _("All Files")); gtk_file_filter_add_pattern(GTK_FILE_FILTER(our_filter), "*"); gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(file_chooser), GTK_FILE_FILTER(our_filter)); //we push open, .. if (gtk_dialog_run(GTK_DIALOG(file_chooser)) == MY_GTK_RESPONSE) { GSList *files = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(file_chooser)); if (files) { gchar *filename = NULL; GtkTreeIter iter; GtkTreeModel *model = gtk_tree_view_get_model(GTK_TREE_VIEW(multiple_files_tree)); while (files) { filename = files->data; int err = SPLT_OK; int num_of_files_found = 0; char **splt_filenames = mp3splt_find_filenames(the_state, filename, &num_of_files_found, &err); if (splt_filenames) { int i = 0; for (i = 0;i < num_of_files_found;i++) { gtk_list_store_append(GTK_LIST_STORE(model), &iter); gtk_list_store_set (GTK_LIST_STORE(model), &iter, MULTIPLE_COL_FILENAME, splt_filenames[i], -1); multiple_files_tree_number++; if (splt_filenames[i]) { free(splt_filenames[i]); splt_filenames[i] = NULL; } } free(splt_filenames); splt_filenames = NULL; } g_free(filename); filename = NULL; files = g_slist_next(files); } g_slist_free(files); if (multiple_files_tree_number > 0) { gtk_widget_set_sensitive(multiple_files_remove_all_files_button, TRUE); } } } gtk_widget_destroy(file_chooser); } void multiple_files_remove_button_event(GtkWidget *widget, gpointer data) { GtkTreeIter iter; GtkTreeModel *model; GtkTreePath *path; GList *selected_list = NULL; GList *current_element = NULL; GtkTreeSelection *selection; model = gtk_tree_view_get_model(GTK_TREE_VIEW(multiple_files_tree)); selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(multiple_files_tree)); selected_list = gtk_tree_selection_get_selected_rows(selection, &model); //the name of the file that we have clicked on gchar *filename = NULL; while (g_list_length(selected_list) > 0) { //get the last element current_element = g_list_last(selected_list); path = current_element->data; //get the iter correspondig to the path gtk_tree_model_get_iter(model, &iter, path); gtk_tree_model_get(model, &iter, MULTIPLE_COL_FILENAME, &filename, -1); //remove the path from the selected list gtk_list_store_remove(GTK_LIST_STORE(model), &iter); selected_list = g_list_remove(selected_list, path); multiple_files_tree_number--; //free memory gtk_tree_path_free(path); g_free(filename); } if (multiple_files_tree_number == 0) { gtk_widget_set_sensitive(multiple_files_remove_all_files_button, FALSE); } gtk_widget_set_sensitive(multiple_files_remove_file_button,FALSE); //free the selected elements g_list_foreach(selected_list, (GFunc)gtk_tree_path_free, NULL); g_list_free(selected_list); } void multiple_files_remove_all_button_event(GtkWidget *widget, gpointer data) { GtkTreeIter iter; GtkTreeModel *model; model = gtk_tree_view_get_model(GTK_TREE_VIEW(multiple_files_tree)); //filename to erase gchar *filename = NULL; //for all the splitnumbers while (multiple_files_tree_number > 0) { gtk_tree_model_get_iter_first(model, &iter); gtk_tree_model_get(model, &iter, MULTIPLE_COL_FILENAME, &filename, -1); gtk_list_store_remove(GTK_LIST_STORE(model), &iter); multiple_files_tree_number--; g_free(filename); } gtk_widget_set_sensitive(multiple_files_remove_all_files_button,FALSE); gtk_widget_set_sensitive(multiple_files_remove_file_button,FALSE); } GtkWidget *create_multiple_files_buttons_hbox() { GtkWidget *hbox = gtk_hbox_new(FALSE,0); //button for adding file(s) GtkWidget *multiple_files_add_button = (GtkWidget *) create_cool_button(GTK_STOCK_ADD, _("_Add files"), FALSE); gtk_box_pack_start(GTK_BOX(hbox), multiple_files_add_button, FALSE, FALSE, 5); gtk_widget_set_sensitive(multiple_files_add_button, TRUE); g_signal_connect(G_OBJECT(multiple_files_add_button), "clicked", G_CALLBACK(multiple_files_add_button_event), NULL); //button for removing a file multiple_files_remove_file_button = (GtkWidget *) create_cool_button(GTK_STOCK_DELETE, _("_Remove selected entries"),FALSE); gtk_box_pack_start(GTK_BOX(hbox), multiple_files_remove_file_button, FALSE, FALSE, 5); gtk_widget_set_sensitive(multiple_files_remove_file_button,FALSE); g_signal_connect(G_OBJECT(multiple_files_remove_file_button), "clicked", G_CALLBACK(multiple_files_remove_button_event), NULL); //button for removing a file multiple_files_remove_all_files_button = (GtkWidget *) create_cool_button(GTK_STOCK_DELETE, _("R_emove all entries"),FALSE); gtk_box_pack_start(GTK_BOX(hbox), multiple_files_remove_all_files_button, FALSE, FALSE, 5); gtk_widget_set_sensitive(multiple_files_remove_all_files_button,FALSE); g_signal_connect(G_OBJECT(multiple_files_remove_all_files_button), "clicked", G_CALLBACK(multiple_files_remove_all_button_event), NULL); return hbox; } void multiple_files_selection_changed(GtkTreeSelection *selec, gpointer data) { GtkTreeModel *model; GtkTreeSelection *selection; GList *selected_list = NULL; model = gtk_tree_view_get_model(GTK_TREE_VIEW(multiple_files_tree)); selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(multiple_files_tree)); selected_list = gtk_tree_selection_get_selected_rows(selection, &model); if (g_list_length(selected_list) > 0) { gtk_widget_set_sensitive(multiple_files_remove_file_button,TRUE); } else { gtk_widget_set_sensitive(multiple_files_remove_file_button,FALSE); } } GtkWidget *create_multiple_files_component() { GtkWidget *vbox = gtk_vbox_new(FALSE, 0); multiple_files_tree = (GtkWidget *)create_multiple_files_tree(); GtkWidget *scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled_window), GTK_SHADOW_NONE); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_box_pack_start(GTK_BOX(vbox), scrolled_window, TRUE, TRUE, 0); //create columns create_multiple_files_columns(GTK_TREE_VIEW(multiple_files_tree)); //add the tree to the scrolled window gtk_container_add(GTK_CONTAINER(scrolled_window), GTK_WIDGET(multiple_files_tree)); //selection for the tree GtkWidget *multiple_files_tree_selection = (GtkWidget *) gtk_tree_view_get_selection(GTK_TREE_VIEW(multiple_files_tree)); g_signal_connect(G_OBJECT(multiple_files_tree_selection), "changed", G_CALLBACK(multiple_files_selection_changed), NULL); gtk_tree_selection_set_mode(GTK_TREE_SELECTION(multiple_files_tree_selection), GTK_SELECTION_MULTIPLE); //bottom horizontal box with buttons GtkWidget *buttons_hbox = (GtkWidget *)create_multiple_files_buttons_hbox(); gtk_box_pack_start(GTK_BOX(vbox), buttons_hbox, FALSE, FALSE, 2); return vbox; } �������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/multiple_files.h��������������������������������������������������������������0000644�0001750�0001750�00000002756�11753301457�014623� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: multiple_files.h * *********************************************************/ #ifndef MULTIPLE_FILES_H GtkWidget *create_multiple_files_component(); enum { /*COL_NAME,*/ MULTIPLE_COL_FILENAME, MULTIPLE_FILES_COLUMNS }; #define MULTIPLE_FILES_H #endif ������������������mp3splt-gtk-0.7.2/src/preferences_manager.c���������������������������������������������������������0000644�0001750�0001750�00000062316�11753301314�015562� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * *********************************************************/ /*!******************************************************** * \file * Save and read preferences * * This file contains the functions to save the preferences * on the hard disk and to read them again at the next * start of the program. ********************************************************/ #include <string.h> #include <stdlib.h> #include <unistd.h> #include <gtk/gtk.h> #include <glib/gi18n.h> #include <glib/gstdio.h> #include <libmp3splt/mp3splt.h> #include "player.h" #include "player_tab.h" #include "preferences_tab.h" #include "special_split.h" #include "combo_helper.h" #include "radio_helper.h" #include "ui_manager.h" extern GtkWidget *player_combo_box; extern GtkWidget *player_refresh_rate_spinner; extern gint selected_player; extern GList *player_pref_list; extern GtkWidget *radio_button; extern GtkWidget *file_mode_radio_button; extern GtkWidget *frame_mode; extern GtkWidget *adjust_mode; extern GtkWidget *names_from_filename; extern GtkWidget *spinner_adjust_gap; extern GtkWidget *spinner_adjust_offset; extern GtkWidget *spinner_adjust_threshold; extern GtkWidget *create_dirs_from_output_files; extern GtkWidget *spinner_time; extern GtkWidget *spinner_equal_tracks; extern GtkWidget *output_entry; extern GtkWidget *output_label; extern GtkWidget *radio_output; extern GtkWidget *tags_radio; extern GtkWidget *tags_version_radio; extern splt_state *the_state; extern GtkWidget *replace_underscore_by_space_check_box; extern GtkComboBox *artist_text_properties_combo; extern GtkComboBox *album_text_properties_combo; extern GtkComboBox *title_text_properties_combo; extern GtkComboBox *comment_text_properties_combo; extern GtkComboBox *genre_combo; extern GtkWidget *comment_tag_entry; extern GtkWidget *regex_entry; extern GtkWidget *test_regex_fname_entry; extern ui_state *ui; /*! Get the name of the preferences file. \attention filename returned must be freed after that functions also checks if we have a directory .mp3splt-gtk and if not it creates it. if we have a file .mp3splt-gtk, it makes a backup and then creates the directory result must be freed!!!! */ gchar *get_preferences_filename() { gchar mp3splt_dir[14] = ".mp3splt-gtk"; //used to see if the directory exists struct stat buffer; gint status; //home directory gchar *home_dir = g_strdup(g_get_home_dir()); #ifdef __WIN32__ //manage c:\ because the gtk dir returns us "c:\" //and the normal directories without the "\" if (home_dir[strlen(home_dir)-1] == '\\') { home_dir[strlen(home_dir)-1] = '\0'; } #endif gchar *mp3splt_dir_with_path = NULL; gint malloc_number = strlen(home_dir) + strlen(mp3splt_dir)+2; mp3splt_dir_with_path = malloc(malloc_number *sizeof(gchar *)); g_snprintf(mp3splt_dir_with_path, malloc_number, "%s%s%s", home_dir,G_DIR_SEPARATOR_S, mp3splt_dir); if (home_dir) { g_free(home_dir); home_dir = NULL; } gint fname_malloc_number = strlen(mp3splt_dir_with_path)+30; gchar *filename = malloc(fname_malloc_number*sizeof(gchar *)); status = g_stat(mp3splt_dir_with_path, &buffer); //if it is not a directory if ((status != 0) || (S_ISDIR(buffer.st_mode) == 0)) { //if its a file if ((status == 0) && (S_ISREG(buffer.st_mode) != 0)) { gchar *backup_file; malloc_number = strlen(mp3splt_dir_with_path)+5; backup_file = malloc(malloc_number*sizeof(gchar *)); snprintf(backup_file,malloc_number, "%s%s", mp3splt_dir_with_path,".bak"); //we rename the file g_rename(mp3splt_dir_with_path, backup_file); g_free(backup_file); } //if it is not a directory and not a file, we suppose we can //create the directory #ifdef __WIN32__ g_mkdir(mp3splt_dir_with_path, 0775); #else g_mkdir(mp3splt_dir_with_path, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); #endif } //the config filename+path g_snprintf(filename,fname_malloc_number, "%s%smp3splt-gtk_prefs", mp3splt_dir_with_path, G_DIR_SEPARATOR_S); if (mp3splt_dir_with_path) { g_free(mp3splt_dir_with_path); mp3splt_dir_with_path = NULL; } return filename; } /*! \brief Read the preferences from the preferences file. */ void load_preferences() { GKeyFile *key_file = g_key_file_new(); gchar *filename = get_preferences_filename(); //load config g_key_file_load_from_file(key_file, filename, G_KEY_FILE_KEEP_COMMENTS, NULL); if (filename) { g_free(filename); filename = NULL; } #ifdef __WIN32__ //language gchar *file_string = g_key_file_get_string(key_file, "general", "language", NULL); GString *lang = g_string_new(file_string); //0 = german, 1 = french, 2 = english gint list_number = 2; if (g_string_equal(lang,g_string_new("de")) || g_string_equal(lang,g_string_new("de_DE"))) { list_number = 0; } else if (g_string_equal(lang, g_string_new("fr")) || g_string_equal(lang, g_string_new("fr_FR"))) { list_number = 1; } GSList *radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_button)); GtkWidget *our_button = (GtkWidget *) g_slist_nth_data(radio_button_list, list_number); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(our_button), TRUE); g_free(file_string); g_string_free(lang, TRUE); file_string = NULL; lang = NULL; #endif // If outputdirectory_get()!=NULL the path where to output the split file // to has been set from command line if(outputdirectory_get()==NULL) { // No output_path from command-line => get the path from the preferences gchar *save_path = g_key_file_get_string(key_file, "split", "save_path", NULL); { if (save_path != NULL) { outputdirectory_set(save_path); } g_free(save_path); save_path = NULL; } } //player gint item = g_key_file_get_integer(key_file, "player", "default_player",NULL); ch_set_active_value(GTK_COMBO_BOX(player_combo_box), item); item = g_key_file_get_integer(key_file, "player", "refresh_rate", NULL); gtk_spin_button_set_value(GTK_SPIN_BUTTON(player_refresh_rate_spinner), item); update_timeout_value(NULL, NULL); //frame mode item = g_key_file_get_boolean(key_file, "split", "frame_mode", NULL); if (item) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(frame_mode),TRUE); } else { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(frame_mode),FALSE); } //adjust mode item = g_key_file_get_boolean(key_file, "split", "adjust_mode", NULL); if (item) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(adjust_mode),TRUE); } else { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(adjust_mode),FALSE); } item = g_key_file_get_boolean(key_file, "output", "splitpoint_names_from_filename", NULL); if (item) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(names_from_filename),TRUE); } else { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(names_from_filename),FALSE); } //adjust threshold gfloat item2; item = g_key_file_get_integer(key_file, "split", "adjust_threshold", NULL); item2 = item/100 + (item%100)/100.; gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_adjust_threshold), item2); //adjust offset item = g_key_file_get_integer(key_file, "split", "adjust_offset", NULL); item2 = item/100 + (item%100)/100.; gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_adjust_offset), item2); //adjust gap item = g_key_file_get_integer(key_file, "split", "adjust_gap", NULL); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_adjust_gap), item); //tags options gint tag_pref_file = g_key_file_get_integer(key_file, "split", "tags", NULL); GtkWidget *radio = rh_get_radio_from_value(tags_radio, tag_pref_file); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(radio), TRUE); //replace underscores by spaces item = g_key_file_get_boolean(key_file, "split", "replace_underscore_by_space", NULL); if (item) { gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(replace_underscore_by_space_check_box), TRUE); } else { gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON(replace_underscore_by_space_check_box), FALSE); } //artist text properties item = g_key_file_get_integer(key_file, "split", "artist_text_properties",NULL); if (item) { ch_set_active_value(artist_text_properties_combo, item); } else { ch_set_active_value(artist_text_properties_combo, SPLT_NO_CONVERSION); } //album text properties item = g_key_file_get_integer(key_file, "split", "album_text_properties",NULL); if (item) { ch_set_active_value(album_text_properties_combo, item); } else { ch_set_active_value(album_text_properties_combo, SPLT_NO_CONVERSION); } //title text properties item = g_key_file_get_integer(key_file, "split", "title_text_properties",NULL); if (item) { ch_set_active_value(title_text_properties_combo, item); } else { ch_set_active_value(title_text_properties_combo, SPLT_NO_CONVERSION); } //comment text properties item = g_key_file_get_integer(key_file, "split", "comment_text_properties",NULL); if (item) { ch_set_active_value(comment_text_properties_combo, item); } else { ch_set_active_value(comment_text_properties_combo, SPLT_NO_CONVERSION); } //genre gchar *default_genre = g_key_file_get_string(key_file, "split", "genre", NULL); if (default_genre) { ch_set_active_str_value(genre_combo, default_genre); g_free(default_genre); default_genre = NULL; } else { ch_set_active_str_value(genre_combo, SPLT_UNDEFINED_GENRE); } //default comment tag gchar *default_comment_tag = g_key_file_get_string(key_file, "split", "default_comment_tag", NULL); if (default_comment_tag) { gtk_entry_set_text(GTK_ENTRY(comment_tag_entry), default_comment_tag); g_free(default_comment_tag); default_comment_tag = NULL; } //regexp to parse filename into tags gchar *tags_from_fname_regex = g_key_file_get_string(key_file, "split", "tags_from_filename_regex", NULL); if (tags_from_fname_regex) { gtk_entry_set_text(GTK_ENTRY(regex_entry), tags_from_fname_regex); g_free(tags_from_fname_regex); tags_from_fname_regex = NULL; } gchar *test_regex_fname = g_key_file_get_string(key_file, "split", "test_regex_fname", NULL); if (test_regex_fname) { gtk_entry_set_text(GTK_ENTRY(test_regex_fname_entry), test_regex_fname); g_free(test_regex_fname); test_regex_fname = NULL; } //tags version tag_pref_file = g_key_file_get_integer(key_file, "split", "tags_version", NULL); GSList *tags_version_radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(tags_version_radio)); GtkWidget *the_selection = (GtkWidget *)g_slist_nth_data(tags_version_radio_button_list, tag_pref_file); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(the_selection), TRUE); //default output format or not gint default_output_format = g_key_file_get_boolean(key_file, "output", "default_output_format", NULL); GSList *output_radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_output)); GtkWidget *our_selection = (GtkWidget *)g_slist_nth_data(output_radio_button_list, default_output_format); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(our_selection), TRUE); if (default_output_format) { gtk_widget_set_sensitive(GTK_WIDGET(output_entry), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(output_label), FALSE); } //output format gchar *output_format = g_key_file_get_string(key_file, "output", "output_format", NULL); if (output_format) { gtk_entry_set_text(GTK_ENTRY(output_entry), output_format); g_free(output_format); output_format = NULL; } //create directories if needed item = g_key_file_get_boolean(key_file, "output", "create_dirs_if_needed", NULL); if (item) { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(create_dirs_from_output_files), TRUE); } else { gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(create_dirs_from_output_files), FALSE); } //type of split: split mode gint split_mode = g_key_file_get_integer(key_file, "split", "split_mode", NULL); select_split_mode(split_mode); //time value gint time_value = g_key_file_get_integer(key_file, "split", "split_mode_time_value", NULL); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_time), time_value); //file mode gint file_mode = g_key_file_get_integer(key_file, "split", "file_mode", NULL); GSList *file_mode_radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(file_mode_radio_button)); our_selection = (GtkWidget *)g_slist_nth_data(file_mode_radio_button_list, file_mode); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(our_selection), TRUE); //equal time tracks value gint equal_tracks = g_key_file_get_integer(key_file, "split", "split_mode_equal_time_tracks", NULL); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_equal_tracks), equal_tracks); gint root_x = g_key_file_get_integer(key_file, "gui", "root_x_position", NULL); gint root_y = g_key_file_get_integer(key_file, "gui", "root_y_position", NULL); if (root_x && root_y) { ui_set_main_win_position(ui, root_x, root_y); } gint width = g_key_file_get_integer(key_file, "gui", "width", NULL); gint height = g_key_file_get_integer(key_file, "gui", "height", NULL); if (width && height) { ui_set_main_win_size(ui, width, height); } gchar *browser_directory = g_key_file_get_string(key_file, "gui", "browser_directory", NULL); if (browser_directory) { ui_set_browser_directory(ui, browser_directory); g_free(browser_directory); } g_key_file_free(key_file); key_file = NULL; } /* \brief writes a default configuration file Also is used to write good values on a bad existing configuration file */ void write_default_preferences_file() { gchar *filename = get_preferences_filename(); GKeyFile *my_key_file = g_key_file_new(); g_key_file_load_from_file(my_key_file, filename, G_KEY_FILE_KEEP_COMMENTS, NULL); #ifdef __WIN32__ gchar *file_string = NULL; //default language if (!g_key_file_has_key(my_key_file, "general", "language",NULL)) { g_key_file_set_string(my_key_file, "general", "language", "en"); g_key_file_set_comment(my_key_file, "general", "language", "\n language of the gui: en = english, fr = french, de = german", NULL); } //if we have the key, but we have ugly values else { file_string = g_key_file_get_string(my_key_file, "general", "language", NULL); GString * lang_char = g_string_new(file_string); if((!g_string_equal(lang_char,g_string_new("en"))) &&(!g_string_equal(lang_char, g_string_new("fr"))) &&(!g_string_equal(lang_char, g_string_new("fr_FR"))) &&(!g_string_equal(lang_char, g_string_new("de"))) &&(!g_string_equal(lang_char, g_string_new("de_DE"))) ) { g_key_file_set_string(my_key_file, "general", "language", "en"); g_key_file_set_comment(my_key_file, "general", "language", "\n language of the gui: en = english, fr_FR = french, de_DE = german", NULL); } g_free(file_string); g_string_free(lang_char, TRUE); file_string = NULL; lang_char = NULL; } #endif //frame mode if (!g_key_file_has_key(my_key_file, "split", "frame_mode",NULL)) { g_key_file_set_boolean(my_key_file, "split", "frame_mode", FALSE); } //adjust mode if (!g_key_file_has_key(my_key_file, "split", "adjust_mode",NULL)) { g_key_file_set_boolean(my_key_file, "split", "adjust_mode", FALSE); } gint item; gfloat item2; //adjust threshold if (!g_key_file_has_key(my_key_file, "split", "adjust_threshold",NULL)) { g_key_file_set_integer(my_key_file, "split", "adjust_threshold", (int)(SPLT_DEFAULT_PARAM_THRESHOLD * 100)); } //if we have the key but we have ugly values else { item = g_key_file_get_integer(my_key_file, "split", "adjust_threshold", NULL); //convert to float item2 = item/100 + (item%100)/100.; if ((item2 < -96) || (item2 > 0)) { g_key_file_set_integer(my_key_file, "split", "adjust_threshold", (int)(SPLT_DEFAULT_PARAM_THRESHOLD * 100)); } } //adjust offset if (!g_key_file_has_key(my_key_file, "split", "adjust_offset",NULL)) { g_key_file_set_integer(my_key_file, "split", "adjust_offset", (int)(SPLT_DEFAULT_PARAM_OFFSET * 100)); } //if we have the key but we have ugly values else { item = g_key_file_get_integer(my_key_file, "split", "adjust_offset", NULL); //convert to float item2 = item/100 + (item%100)/100.; //if ugly values if ((item2 < -2) || (item2 > 2)) { g_key_file_set_integer(my_key_file, "split", "adjust_offset", (int)(SPLT_DEFAULT_PARAM_OFFSET * 100)); } } //adjust gap if (!g_key_file_has_key(my_key_file, "split", "adjust_gap",NULL)) { g_key_file_set_integer(my_key_file, "split", "adjust_gap", SPLT_DEFAULT_PARAM_GAP); } //if we have the key but we have ugly values else { item = g_key_file_get_integer(my_key_file, "split", "adjust_gap", NULL); //if ugly values if ((item < 0) || (item > 2000)) { g_key_file_set_integer(my_key_file, "split", "adjust_gap", SPLT_DEFAULT_PARAM_GAP); } } //tags options if (!g_key_file_has_key(my_key_file, "split", "tags",NULL)) { g_key_file_set_integer(my_key_file, "split", "tags", 1); g_key_file_set_comment(my_key_file, "split", "tags", "\n 0 - No tags, 1 - Default tags, 2 - Original tags, 3 - Tags from filename", NULL); } //tags version if (!g_key_file_has_key(my_key_file, "split", "tags_version",NULL)) { g_key_file_set_integer(my_key_file, "split", "tags_version", 0); g_key_file_set_comment(my_key_file, "split", "tags_version", "\n 0 - same tags version as the input file, 1 - ID3v1 tags," " 2 - ID3v2 tags, 3 - ID3v1 & ID3v2 tags", NULL); } //default player if (!g_key_file_has_key(my_key_file, "player", "default_player",NULL)) { g_key_file_set_integer(my_key_file, "player", "default_player", PLAYER_GSTREAMER); g_key_file_set_comment (my_key_file, "player", "default_player", "\n 1 = PLAYER_AUDACIOUS, 2 = PLAYER_SNACKAMP, 3 = PLAYER_GSTREAMER", NULL); } else { //check if we support selected player gint the_player = g_key_file_get_integer(my_key_file, "player", "default_player", NULL); if (the_player == PLAYER_AUDACIOUS) { #ifdef NO_AUDACIOUS g_key_file_set_integer(my_key_file, "player", "default_player", PLAYER_SNACKAMP); #endif } //if the value do not make sense else if ((the_player > PLAYER_GSTREAMER) || (the_player < 0)) { g_key_file_set_integer(my_key_file, "player", "default_player", PLAYER_GSTREAMER); } } if (!g_key_file_has_key(my_key_file, "player", "refresh_rate", NULL)) { g_key_file_set_integer(my_key_file, "player", "refresh_rate", DEFAULT_TIMEOUT_VALUE); } //output format if (!g_key_file_has_key(my_key_file, "output", "output_format",NULL)) { g_key_file_set_string(my_key_file, "output", "output_format", SPLT_DEFAULT_OUTPUT); g_key_file_set_comment (my_key_file, "output", "output_format", "\n the output format, contains @a," "@b, @g, @p, @t and @n, see the program for" " more details", NULL); } //default output path boolean if (!g_key_file_has_key(my_key_file, "output", "default_output_format",NULL)) { g_key_file_set_boolean(my_key_file, "output", "default_output_format", TRUE); g_key_file_set_comment(my_key_file, "output", "default_output_format", "\n can be true or false" " - if we use the default output or" " not for cddb, cue and freedb search", NULL); } //frame mode if (!g_key_file_has_key(my_key_file, "output", "create_dirs_if_needed", NULL)) { g_key_file_set_boolean(my_key_file, "output", "create_dirs_if_needed", TRUE); } //split save path (output dir) if (!g_key_file_has_key(my_key_file, "split", "save_path",NULL)) { #ifdef __WIN32__ const gchar *home_dir = g_get_home_dir(); gint dir_malloc_number = strlen(home_dir)+ 10; gchar *default_dir = malloc(dir_malloc_number*sizeof(gchar *)); g_snprintf(default_dir, dir_malloc_number, "%s\\Desktop",home_dir); //see if the directory exists struct stat buffer; gint status = g_stat(default_dir, &buffer); if ((status == 0) && (S_ISDIR(buffer.st_mode) == 0)) { g_snprintf(default_dir,dir_malloc_number, "%s",home_dir); } #else const gchar *default_dir = g_get_home_dir(); #endif g_key_file_set_string(my_key_file, "split", "save_path", default_dir); g_key_file_set_comment(my_key_file, "split", "save_path", "\n this is the path where you will find your split files ", NULL); #ifdef __WIN32__ g_free(default_dir); #endif } //type of split: split mode if (!g_key_file_has_key(my_key_file, "split", "split_mode",NULL)) { g_key_file_set_integer(my_key_file, "split", "split_mode", 3); g_key_file_set_comment(my_key_file, "split", "split_mode", "\n 0 - error mode, 1 - wrap mode, 2 - time mode, 3 - normal mode, 4 - equal time tracks", NULL); } //type of split: time value if (!g_key_file_has_key(my_key_file, "split", "split_mode_time_value",NULL)) { g_key_file_set_integer(my_key_file, "split", "split_mode_time_value", 60); g_key_file_set_comment(my_key_file, "split", "split_mode_time_value", "\n value in seconds to split every X seconds (for the time split)", NULL); } //type of split: file mode if (!g_key_file_has_key(my_key_file, "split", "file_mode",NULL)) { g_key_file_set_integer(my_key_file, "split", "file_mode", 1); g_key_file_set_comment(my_key_file, "split", "file_mode", "\n 0 - multiple files, 1 - single file", NULL); } //equal time tracks if (!g_key_file_has_key(my_key_file, "split", "split_mode_equal_time_tracks",NULL)) { g_key_file_set_integer(my_key_file, "split", "split_mode_equal_time_tracks", 10); g_key_file_set_comment(my_key_file, "split", "split_mode_equal_time_tracks", "\n number of tracks when to split in X tracks (for the equal time tracks split)", NULL); } gchar *key_data = g_key_file_to_data(my_key_file, NULL, NULL); //write content to the preferences file FILE *preferences_file = (FILE *)fopen(filename,"w"); g_fprintf(preferences_file,"%s", key_data); fclose(preferences_file); preferences_file = NULL; if (filename) { g_free(filename); filename = NULL; } g_free(key_data); key_data = NULL; g_key_file_free(my_key_file); } /*!\brief Create a preferences file --- if needed. checks if preferences file exists and if it does not, create it */ void check_pref_file() { //used to see if the file exists struct stat buffer; gint status; gchar *pref_file = get_preferences_filename(); status = stat(pref_file, &buffer); if ((status == 0) && (S_ISREG(buffer.st_mode) == 0) && (S_ISDIR(buffer.st_mode) != 0)) { //backup the directory gint malloc_number = strlen(pref_file)+5; gchar *backup_dir = malloc(malloc_number * sizeof(gchar *)); snprintf(backup_dir,malloc_number, "%s%s",pref_file,".bak"); //rename the directory g_rename(pref_file, backup_dir); g_free(backup_dir); backup_dir = NULL; } if (pref_file) { g_free(pref_file); pref_file = NULL; } write_default_preferences_file(); } //!sets the language, loaded only at start void set_language() { GKeyFile *key_file = g_key_file_new(); //filename gchar *filename = get_preferences_filename(); //load config g_key_file_load_from_file(key_file, filename, G_KEY_FILE_KEEP_COMMENTS, NULL); if (filename) { g_free(filename); filename = NULL; } gchar *lang = g_key_file_get_string(key_file, "general", "language", NULL); //NOTE: current function is only used for windows: code needs cleanup ? #ifdef __WIN32__ gchar lang_env[32] = { '\0' }; g_snprintf(lang_env, 32, "LANG=%s", lang); putenv(lang_env); #else setenv("LANGUAGE", lang,1); #endif //freeing memory g_free(lang); g_key_file_free(key_file); } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/preferences_manager.h���������������������������������������������������������0000644�0001750�0001750�00000002560�11753301465�015571� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef PREFERENCES_MANAGER_H gchar *get_preferences_filename(); void load_preferences(); void write_default_preferences_file(); void check_pref_file(); void set_language(); #define PREFERENCES_MANAGER_H #endif ������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/util.h������������������������������������������������������������������������0000644�0001750�0001750�00000003236�11753301470�012550� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * Structs and definitions shared amongst files * * this file has some structures and/or definition used by * more than one file * *********************************************************/ #ifndef _UTIL_H #define _UTIL_H //splitpoint structure typedef struct { //if we want to skip splitpoint, checked should be 0 //-otherwise, checked should be 1 gboolean checked; gint mins; gint secs; gint hundr_secs; } Split_point; #endif ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/mp3splt-gtk.c�����������������������������������������������������������������0000644�0001750�0001750�00000040717�11753301327�013761� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The main file, * * this file contains the main() function as well as some * globally used functions. *********************************************************/ #include <signal.h> #include <locale.h> #include <string.h> #include <ctype.h> #include <unistd.h> #include <sys/stat.h> #include <sys/types.h> #include <glib/gi18n.h> #include <glib.h> #include <gtk/gtk.h> #include <libmp3splt/mp3splt.h> #ifdef __WIN32__ #include <windows.h> #include <shlwapi.h> #endif #include "util.h" #include "special_split.h" #include "player.h" #include "utilities.h" #include "tree_tab.h" #include "main_win.h" #include "snackamp_control.h" #include "split_files.h" #include "preferences_tab.h" #include "multiple_files.h" #include "preferences_manager.h" #include "player_tab.h" #include "import.h" #include "mp3splt-gtk.h" #include "ui_manager.h" //the state splt_state *the_state = NULL; //the progress bar GtkWidget *progress_bar; extern GArray *splitpoints; extern gint splitnumber; extern GtkWidget *queue_files_button; extern gchar *filename_to_split; extern gchar *filename_path_of_split; //EXTERNAL OPTIONS //frame mode option extern GtkWidget *frame_mode; //auto-adjust option extern GtkWidget *adjust_mode; //gap parameter extern GtkWidget *spinner_adjust_gap; //offset parameter extern GtkWidget *spinner_adjust_offset; //threshold parameter extern GtkWidget *spinner_adjust_threshold; extern GtkWidget *create_dirs_from_output_files; //silence mode parameters //number of tracks parameter extern GtkWidget *spinner_silence_number_tracks; //number of tracks parameter extern GtkWidget *spinner_silence_minimum; //offset parameter extern GtkWidget *spinner_silence_offset; //threshold parameter extern GtkWidget *spinner_silence_threshold; //remove silence check button (silence mode parameter extern GtkWidget *silence_remove_silence; //spinner time extern GtkWidget *spinner_time; //player extern gint selected_player; //if we are currently splitting extern gint we_are_splitting; //if we quit the main program while splitting extern gint we_quit_main_program; //the percent progress bar extern GtkWidget *percent_progress_bar; //stop button to cancel the split extern GtkWidget *cancel_button; //the output entry extern GtkWidget *output_entry; extern GtkWidget *remove_all_files_button; extern gint split_file_mode; extern GtkWidget *multiple_files_tree; extern gint multiple_files_tree_number; //how many split files gint split_files = 0; //! move all options inside ui_state *ui = NULL; //! Add another file to the split_file tab void put_split_filename(const char *filename,int progress_data) { enter_threads(); if (!gtk_widget_get_sensitive(queue_files_button)) { gtk_widget_set_sensitive(queue_files_button, TRUE); } if (!gtk_widget_get_sensitive(remove_all_files_button)) { gtk_widget_set_sensitive(remove_all_files_button,TRUE); } add_split_row(filename); split_files++; gint fname_status_size = (strlen(filename) + 255); gchar *fname_status = g_malloc(sizeof(char) * fname_status_size); g_snprintf(fname_status, fname_status_size, _(" File '%s' created"), filename); put_status_message(fname_status); if (fname_status) { free(fname_status); fname_status = NULL; } #ifdef __WIN32__ while (gtk_events_pending()) { gtk_main_iteration(); } gdk_flush(); #endif exit_threads(); } //!Allows to set the value shown by the progress bar void change_window_progress_bar(splt_progress *p_bar) { gchar progress_text[1024] = " "; switch (p_bar->progress_type) { case SPLT_PROGRESS_PREPARE: g_snprintf(progress_text,1023, _(" preparing \"%s\" (%d of %d)"), p_bar->filename_shorted, p_bar->current_split, p_bar->max_splits); break; case SPLT_PROGRESS_CREATE: g_snprintf(progress_text,1023, _(" creating \"%s\" (%d of %d)"), p_bar->filename_shorted, p_bar->current_split, p_bar->max_splits); break; case SPLT_PROGRESS_SEARCH_SYNC: g_snprintf(progress_text,1023, _(" searching for sync errors...")); break; case SPLT_PROGRESS_SCAN_SILENCE: g_snprintf(progress_text,1023, _("S: %02d, Level: %.2f dB; scanning for silence..."), p_bar->silence_found_tracks, p_bar->silence_db_level); break; default: g_snprintf(progress_text,1023, " "); break; } gchar printed_value[1024] = { '\0' }; enter_threads(); gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(percent_progress_bar), p_bar->percent_progress); g_snprintf(printed_value,1023,"%6.2f %% %s", p_bar->percent_progress * 100, progress_text); gtk_progress_bar_set_text(GTK_PROGRESS_BAR(percent_progress_bar), printed_value); #ifdef __WIN32__ while (gtk_events_pending()) { gtk_main_iteration(); } gdk_flush(); #endif exit_threads(); } //! Split the file gpointer split_it(gpointer data) { gint confirmation = SPLT_OK; enter_threads(); remove_all_split_rows(); exit_threads(); gint err = SPLT_OK; mp3splt_erase_all_splitpoints(the_state,&err); //we erase previous tags if we don't have the option //splt_current_tags if ((mp3splt_get_int_option(the_state, SPLT_OPT_TAGS, &err) != (SPLT_CURRENT_TAGS) || split_file_mode == FILE_MODE_MULTIPLE)) { mp3splt_erase_all_tags(the_state,&err); } gint split_mode = mp3splt_get_int_option(the_state, SPLT_OPT_SPLIT_MODE, &err); enter_threads(); print_status_bar_confirmation(err); gchar *format = strdup(gtk_entry_get_text(GTK_ENTRY(output_entry))); exit_threads(); mp3splt_set_oformat(the_state, format, &err); if (format) { free(format); format = NULL; } //if we have the normal split mode, enable default output gint output_filenames = mp3splt_get_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES,&err); if (mp3splt_get_int_option(the_state, SPLT_OPT_SPLIT_MODE,&err) == SPLT_OPTION_NORMAL_MODE) { mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_CUSTOM); } mp3splt_set_path_of_split(the_state,filename_path_of_split); gint multiple_files_error = SPLT_FALSE; if (split_file_mode == FILE_MODE_SINGLE) { enter_threads(); if (split_mode == SPLT_OPTION_NORMAL_MODE) { put_splitpoints_in_the_state(the_state); } print_processing_file(filename_to_split); exit_threads(); mp3splt_set_filename_to_split(the_state, filename_to_split); confirmation = mp3splt_split(the_state); } else { if (multiple_files_tree_number > 0) { enter_threads(); gchar *filename = NULL; GtkTreeIter iter; GtkTreePath *path; GtkTreeModel *model = gtk_tree_view_get_model(GTK_TREE_VIEW(multiple_files_tree)); exit_threads(); gint row_number = 0; while (row_number < multiple_files_tree_number) { enter_threads(); if (split_mode == SPLT_OPTION_NORMAL_MODE) { put_splitpoints_in_the_state(the_state); } path = gtk_tree_path_new_from_indices(row_number ,-1); gtk_tree_model_get_iter(model, &iter, path); gtk_tree_model_get(model, &iter, MULTIPLE_COL_FILENAME, &filename, -1); print_processing_file(filename); exit_threads(); mp3splt_set_filename_to_split(the_state, filename); confirmation = mp3splt_split(the_state); if (filename) { g_free(filename); filename = NULL; } if (confirmation < 0) { break; } row_number++; enter_threads(); mp3splt_erase_all_tags(the_state, &err); print_status_bar_confirmation(err); err = SPLT_OK; mp3splt_erase_all_splitpoints(the_state, &err); print_status_bar_confirmation(err); exit_threads(); } } else { multiple_files_error = SPLT_TRUE; enter_threads(); put_status_message(_(" error: no files found in multiple files mode")); exit_threads(); } } /*! reenable default output if necessary */ mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, output_filenames); enter_threads(); //we show infos about the split action print_status_bar_confirmation(confirmation); //see the cancel button gtk_widget_set_sensitive(GTK_WIDGET(cancel_button), FALSE); //we look if we have pushed the exit button if (we_quit_main_program) { quit(NULL,NULL); } if (confirmation >= 0 && !multiple_files_error) { gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(percent_progress_bar), 1.0); gtk_progress_bar_set_text(GTK_PROGRESS_BAR(percent_progress_bar), _(" finished")); } we_are_splitting = FALSE; exit_threads(); return NULL; } /*!handler for the SIGPIPE signal This signal is issued by snackamp on close. */ void sigpipe_handler(gint sig) { if (player_is_running() && selected_player == PLAYER_SNACKAMP) { disconnect_snackamp(); } } gboolean sigint_called = FALSE; //!handler for the SIGINT signal void sigint_handler(gint sig) { if (!sigint_called) { sigint_called = TRUE; we_quit_main_program = TRUE; quit(NULL,NULL); } } //!prints a message from the library void put_message_from_library(const char *message, splt_message_type mess_type) { gchar *mess = g_strdup(message); if (mess) { gint i = 0; //replace '\n' with ' ' for (i = 0;i < strlen(mess);i++) { if (mess[i] == '\n') { mess[i] = ' '; } } enter_threads(); put_status_message_with_type(mess, mess_type); #ifdef __WIN32__ while (gtk_events_pending()) { gtk_main_iteration(); } gdk_flush(); #endif exit_threads(); g_free(mess); mess = NULL; } } GThread *create_thread(GThreadFunc func, gpointer data, gboolean joinable, GError **error) { /*#ifdef __WIN32__ func(data); return NULL; return g_thread_create(func, data, joinable, error); #else*/ return g_thread_create(func, data, joinable, error); //#endif } void enter_threads() { gdk_threads_enter(); } void exit_threads() { gdk_threads_leave(); } /*! The traditional C main function \todo - Handle the case that more than one input file is specified at the command line. Until now we just open the first one of the specified files which on windows is basically what notepad does.\n And decide what to do in this case: - Going into the multiple files mode will mean that our functionality is enabled if several files are opened at once in Windows - And opening a separate instance of our program would mean that windows and nautilus behaviour are consistent (nautilus seems to open every file separately) but - does this really make sense? - Handle the case that the specified inputfile is a playlist file - Set the full path to the file to make sure that the player will find it even if we are called in a different directory than the file is in and stuff. - Gstreamer needs a fully qualified path to the audio file in order to be able to play it back. Don't know why. But what I know is that on solaris realpath() may return a relative filename. And there might be an old system around that does not malloc() memory for a pathname if the pathname we give to it is 0 => find a solution that works everywhere. */ gint main(gint argc, gchar *argv[], gchar **envp) { ui = ui_state_new(); int OptionChar; //init threads g_thread_init(NULL); gdk_threads_init(); gint error = 0; //close nicely signal (SIGINT, sigint_handler); #ifndef __WIN32__ signal (SIGPIPE, sigpipe_handler); #endif //create new state the_state = mp3splt_new_state(&error); //used for gettext setlocale (LC_ALL, ""); textdomain ("mp3splt-gtk"); #ifdef __WIN32__ char mp3splt_uninstall_file[2048] = { '\0' }; DWORD dwType, dwSize = sizeof(mp3splt_uninstall_file) - 1; SHGetValue(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\mp3splt-gtk"), TEXT("UninstallString"), &dwType, mp3splt_uninstall_file, &dwSize); gchar *end = strrchr(mp3splt_uninstall_file, SPLT_DIRCHAR); if (end) { *end = '\0'; } gchar *executable_dir = NULL; gchar *executable = strdup(argv[0]); end = strrchr(executable, SPLT_DIRCHAR); if (end) { *end = '\0'; executable_dir = executable; } else { if (mp3splt_uninstall_file[0] != '\0') { executable_dir = mp3splt_uninstall_file; } } bindtextdomain(MP3SPLT_LIB_GETTEXT_DOMAIN, "translations"); bindtextdomain("mp3splt-gtk", "translations"); #else bindtextdomain("mp3splt-gtk", LOCALEDIR); #endif bind_textdomain_codeset("mp3splt-gtk", "UTF-8"); // Allow the gtk to parse all gtk arguments from the command // line first gtk_init(&argc, &argv); // Now pass all remaining arguments to getopt. opterr = 0; while ((OptionChar = getopt (argc, argv, "d:")) != -1) switch (OptionChar) { case 'd': fprintf (stderr, _("Trying to set the output directory to %s.\n"), optarg); outputdirectory_set((gchar *)optarg); #ifdef __WIN32__ mkdir(optarg); #else mkdir(optarg, 0777); #endif if(!check_if_dir((guchar *)optarg)) { fprintf(stderr,_("Error: The specified output directory is inaccessible!\n")); exit(-1); } break; case '?': if (optopt == 'd') fprintf (stderr, _("Option -%c requires an argument.\n"), optopt); else if (isprint (optopt)) fprintf (stderr, _("Unknown option `-%c'.\n"), optopt); else fprintf (stderr, _("Unknown option character `\\x%x'.\n"), optopt); return 1; default: abort (); } // If we have a filename at the command line is checked after the // GUI is up. //We initialise the splitpoints array splitpoints = g_array_new(FALSE, FALSE, sizeof (Split_point)); //check if preferences file exists //and if it does not create it check_pref_file(); mp3splt_set_progress_function(the_state,change_window_progress_bar); mp3splt_set_split_filename_function(the_state,put_split_filename); mp3splt_set_message_function(the_state, put_message_from_library); mp3splt_set_int_option(the_state, SPLT_OPT_DEBUG_MODE, SPLT_FALSE); mp3splt_set_int_option(the_state, SPLT_OPT_SET_FILE_FROM_CUE_IF_FILE_TAG_FOUND, SPLT_TRUE); //add special directory search for plugins on Windows #ifdef __WIN32__ if (executable != NULL) { if (executable[0] != '\0') { g_setenv("GST_PLUGIN_PATH", ".\\", TRUE); mp3splt_append_plugins_scan_dir(the_state, executable); _chdir(executable); } } #endif //main program create_all(); error = mp3splt_find_plugins(the_state); if (error < 0) { print_status_bar_confirmation(error); } // Now let's see if we found a filename at the command line. if (optind != argc) { if(!check_if_file((guchar *)argv[optind])) { fprintf (stderr, _("Cannot open input file %s\n"), argv[optind]); return 1; } #ifndef __WIN32__ // If we start the player it will find a file with a relative // pathname. But if the player is already running it might // need an absolute path. char *inputfilename=realpath(argv[optind],NULL); handle_import(inputfilename); free(inputfilename); #else handle_import(argv[optind]); #endif } gdk_threads_enter(); gtk_main(); exit_threads(); mp3splt_free_state(the_state, &error); ui_state_free(ui); return 0; } �������������������������������������������������mp3splt-gtk-0.7.2/src/mp3splt-gtk.h�����������������������������������������������������������������0000644�0001750�0001750�00000003246�11753562262�013771� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: mp3splt-gtk.h * * header of mp3splt-gtk.c * *********************************************************/ #ifndef _MP3SPLT_GTK_H #define _MP3SPLT_GTK_H void put_options_from_preferences(); gpointer split_it(gpointer data); void sigpipe_handler(gint sig); GThread *create_thread(GThreadFunc func, gpointer data, gboolean joinable, GError **error); void enter_threads(); void exit_threads(); #define MP3SPLT_GTK_DATE "13/05/12" #endif ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/play.svg����������������������������������������������������������������������0000644�0001750�0001750�00000007661�11512671475�013126� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="13.438153" height="13.466091" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="play.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#c4ffc2;stop-opacity:1;" offset="0" id="stop3156" /> <stop style="stop-color:#29e900;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154" id="radialGradient3823" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154" id="radialGradient3282" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="5.9639406" inkscape:cx="-22.389392" inkscape:cy="11.567542" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" showgrid="false" inkscape:window-maximized="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-493.34587,-541.55691)"> <path sodipodi:type="star" style="fill:url(#radialGradient3282);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:31.41368294;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path2162" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(0.03416932,0,0,0.02965691,479.86287,532.83963)" /> </g> </svg> �������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/player.c����������������������������������������������������������������������0000644�0001750�0001750�00000026315�11753301477�013074� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you ca nredistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * Functions to access the currently selected player * * this file is used to play for the appropriate player, * for example if we choose snackamp, the player will use * snackamp **********************************************************/ #include <glib.h> #include <stdio.h> #include "player.h" #include "snackamp_control.h" #include "xmms_control.h" #include "gstreamer_control.h" extern int selected_player; //!returns the elapsed time of the player gint player_get_elapsed_time() { if (selected_player == PLAYER_SNACKAMP) { return snackamp_get_time_elapsed(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_get_time_elapsed(); #endif #endif } else { #ifndef NO_GSTREAMER return gstreamer_get_time_elapsed(); #endif } return 0; } //!returns total time of the song gint player_get_total_time() { if (selected_player == PLAYER_SNACKAMP) { return snackamp_get_total_time(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_get_total_time(); #endif #endif } else { #ifndef NO_GSTREAMER return gstreamer_get_total_time(); #endif } return 0; } //!returns FALSE if the player is not running, else TRUE gint player_is_running() { if (selected_player == PLAYER_SNACKAMP) { return snackamp_is_running(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_is_running(); #endif #endif } else { #ifndef NO_GSTREAMER return gstreamer_is_running(); #endif } return 0; } //!starts the player void player_start() { if (selected_player == PLAYER_SNACKAMP) { snackamp_start(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_start(); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_start(); #endif } } //!start player and add files to playlist void player_start_add_files(GList *list) { if (selected_player == PLAYER_SNACKAMP) { snackamp_start_with_songs(list); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_start_with_songs(list); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_start_with_songs(list); #endif } } //!add files to playlist void player_add_files(GList *list) { if (selected_player == PLAYER_SNACKAMP) { snackamp_add_files(list); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_add_files(list); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_add_files(list); #endif } } //!add files to playlist void player_add_files_and_select(GList *list) { if (selected_player == PLAYER_SNACKAMP) { snackamp_add_files(list); snackamp_select_last_file(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_add_files(list); myxmms_select_last_file(); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_add_files(list); gstreamer_select_last_file(); #endif } } //!add files to playlist void player_add_play_files(GList *list) { player_add_files(list); if (selected_player == PLAYER_SNACKAMP) { //snackamp adds files just after the current one //and not at the end of the playlist snackamp_next(); //snackamp_play_last_file(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_play_last_file(); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_play_last_file(); #endif } } //!starts the player void player_start_play_with_songs(GList *list) { if (selected_player == PLAYER_SNACKAMP) { snackamp_start_with_songs(list); snackamp_play_last_file(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_start_with_songs(list); myxmms_play_last_file(); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_start_with_songs(list); gstreamer_play_last_file(); #endif } } //!plays the song void player_play() { if (selected_player == PLAYER_SNACKAMP) { snackamp_play(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_play(); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_play(); #endif } } //!stops the song void player_stop() { if (selected_player == PLAYER_SNACKAMP) { snackamp_stop(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_stop(); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_stop(); #endif } } //!pause the song void player_pause() { if (selected_player == PLAYER_SNACKAMP) { snackamp_pause(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_pause(); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_pause(); #endif } } //!pass to the next song void player_next() { if (selected_player == PLAYER_SNACKAMP) { snackamp_next(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_next(); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_next(); #endif } } //!pass to the previous song void player_prev() { if (selected_player == PLAYER_SNACKAMP) { snackamp_prev(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_prev(); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_prev(); #endif } } //!jumps to a position in the song void player_jump(gint position) { if (selected_player == PLAYER_SNACKAMP) { snackamp_jump(position); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_jump(position); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_jump(position); #endif } } /*!get infos about the song \param total_infos The result of this function call */ void player_get_song_infos(gchar *total_infos) { if (selected_player == PLAYER_SNACKAMP) { snackamp_get_song_infos(total_infos); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_get_song_infos(total_infos); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_get_song_infos(total_infos); #endif } } #include <stdio.h> //!returns TRUE if the player is playing, else FALSE gint player_is_playing() { if (selected_player == PLAYER_SNACKAMP) { return snackamp_is_playing(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_is_playing(); #endif #endif } else { #ifndef NO_GSTREAMER return gstreamer_is_playing(); #endif } return 0; } //! Check if the player is paused gint player_is_paused() { if (selected_player == PLAYER_SNACKAMP) { return snackamp_is_paused(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_is_paused(); #endif #endif } else { #ifndef NO_GSTREAMER return gstreamer_is_paused(); #endif } return 0; } /*!gets the filename of the current song The returned string must be g_free'd after use */ gchar *player_get_filename() { if (selected_player == PLAYER_SNACKAMP) { return snackamp_get_filename(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_get_filename(); #endif #endif } else { #ifndef NO_GSTREAMER return gstreamer_get_filename(); #endif } return 0; } /*!Get the title of the song The returned string must be g_freed after use */ gchar *player_get_title() { if (selected_player == PLAYER_SNACKAMP) { return snackamp_get_title_song(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_get_title_song(); #endif #endif } else { #ifndef NO_GSTREAMER return gstreamer_get_title_song(); #endif } return 0; } //!gets the volume of the player gint player_get_volume() { if (selected_player == PLAYER_SNACKAMP) { return snackamp_get_volume(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_get_volume(); #endif #endif } else { #ifndef NO_GSTREAMER return gstreamer_get_volume(); #endif } return 0; } //!sets the volume of the player void player_set_volume(gint volume) { if (selected_player == PLAYER_SNACKAMP) { snackamp_set_volume(volume); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS myxmms_set_volume(volume); #endif #endif } else { #ifndef NO_GSTREAMER gstreamer_set_volume(volume); #endif } } //!returns the number of songs in the playlist gint player_get_playlist_number() { if (selected_player == PLAYER_SNACKAMP) { return snackamp_get_playlist_number(); } else if (selected_player == PLAYER_AUDACIOUS) { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_get_playlist_number(); #endif #endif } else { #ifndef NO_GSTREAMER return gstreamer_get_playlist_number(); #endif } return 0; } //!quits the player gint player_quit() { /*if (selected_player == PLAYER_SNACKAMP) { return snackamp_quit(); } else { #ifndef __WIN32__ #ifndef NO_AUDACIOUS return myxmms_quit(); #endif #endif }*/ if (selected_player == PLAYER_GSTREAMER) { #ifndef NO_GSTREAMER gstreamer_quit(); #endif } return 0; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/player.h����������������������������������������������������������������������0000644�0001750�0001750�00000004230�11753301502�013056� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: player.h * * header of player.c, defines constants, etc.. * *********************************************************/ #define PLAYER_AUDACIOUS 1 #define PLAYER_SNACKAMP 2 #define PLAYER_GSTREAMER 3 gint player_get_elapsed_time(); gint player_get_total_time(); gint player_is_running(); void player_start(); void player_start_add_files(GList *list); void player_add_files(GList *list); void player_add_files_and_select(GList *list); void player_add_play_files(GList *list); void player_start_play_with_songs(GList *list); void player_play(); void player_stop(); void player_pause(); void player_next(); void player_prev(); void player_jump(gint position); void player_get_song_infos(gchar *total_infos); gint player_is_playing(); gint player_is_paused(); gchar *player_get_filename(); gchar *player_get_title(); gint player_get_volume(); void player_set_volume(gint volume); gint player_get_playlist_number(); gint player_quit(); ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/snackamp_control.c������������������������������������������������������������0000644�0001750�0001750�00000035334�11753301321�015122� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * Snackamp control * * this file contains functions to control the snackamp * player **********************************************************/ #include <stdio.h> #include <stdlib.h> #include <gtk/gtk.h> #include <glib/gi18n.h> #include <glib.h> #include <glib/gprintf.h> #include <string.h> #include <time.h> #include <ctype.h> #include <unistd.h> #ifdef __WIN32__ #include <winsock2.h> #define usleep(x) Sleep(x*1000) #else #include <netdb.h> #include <sys/socket.h> #include <sys/types.h> #include <netinet/in.h> #endif #include "player.h" #include "snackamp_control.h" //file descriptors for line buffering FILE *in, *out; //if we are connected or not gboolean connected = FALSE; #ifdef __WIN32__ SOCKET socket_id; #else gint socket_id; #endif /*!connecting to the player to the port port Might possibley return an error */ gint connect_snackamp(gint port) { //socket and internet structures struct sockaddr_in host; struct hostent *h; gint return_err = 0; #ifdef __WIN32__ long winsockinit; WSADATA winsock; winsockinit = WSAStartup(0x0101,&winsock); #endif //prepare host.. if((h = gethostbyname("localhost"))==NULL) { //fprintf(stderr, "could not get host by name\n"); return_err = 1; } //we prepare socket host.sin_family = AF_INET; host.sin_addr.s_addr = ((struct in_addr *) (h->h_addr)) ->s_addr; host.sin_port=htons(port); //if no error, continue if (return_err == 0) { //initialize socket if((socket_id=socket(AF_INET, SOCK_STREAM, 0))==-1) { //fprintf(stderr, "error initialising socket\n"); return_err = 2; } } //if no error, continue if (return_err == 0) { //make connection if ((connect(socket_id, (void *)&host, sizeof(host)))==-1) { //fprintf(stderr, "cannot connect to host\n"); return_err = 3; } } //if no error, continue if (return_err == 0) { /* !@Crap */ #ifdef __WIN32__ #else //we prepare file descriptors for // if (NULL==(in=fdopen(socket_id, "r")) || NULL==(out=fdopen(socket_id, "w"))) { //fprintf(stderr, "cannot prepare file descriptors..\n"); return_err = 4; } #endif } //if no err if (return_err == 0) { //we set the line buffering setvbuf(out, NULL, _IOLBF, 0); connected = TRUE; } //if socket errors, disconnect snackamp if (return_err >= 2) disconnect_snackamp(); return return_err; } gchar *cut_begin_end(gchar *result) { //we cut the beginning OK gchar *test; if (strchr(result,' ') != NULL) { test = strchr(result, ' '); g_snprintf(result, strlen(result), "%s",test+1); } //we cut the \n at the end gint result_str = strlen(result); if (result_str >= 2) result[result_str - 2] = '\0'; return result; } /*! disconnecting with the player possibly returns an error */ gint disconnect_snackamp() { connected = FALSE; //we close the socket #ifdef __WIN32__ return closesocket(socket_id); #else return close(socket_id); #endif } /*! send a message to snackamp through the socket interface \return the result; must be g_freed after use \todo rewrite this function */ gchar *snackamp_socket_send_message(gchar *message) { gchar *result = malloc(1024 * sizeof(gchar *)); strcpy(result,"disconnected"); #ifdef __WIN32__ gboolean r = TRUE; gint err1 = send(socket_id, message, strlen(message), 0); if (err1 <= 0) { disconnect_snackamp(); } else { gint err = recv(socket_id, result, 1024, 0); if (err <= 0) { disconnect_snackamp(); r = FALSE; } } #else //we send message fputs(message, out); //we get the result fgets(result, 1024, in); #endif //if on win32 we put the \0 when we find \n because no line buffering #ifdef __WIN32__ if (r) { if (strchr(result,'\n') != NULL) { gchar *line_end; line_end = strchr(result,'\n') + 1; *line_end = '\0'; } } #endif //must be freed after return result; } //!gets an integer from the string gint get_integer_from_string(gchar *result) { gint our_integer = 0; gint i = 0; gchar *number = NULL; while ((isdigit(result[i])==0) && (result[i]!='\0') && (result[i]!='-')) { i++; number = result + i; } if (! (number == (result + strlen(result)))) { our_integer = atoi (number); } return our_integer; } //!Test if we are connected to snackamp gboolean snackamp_is_connected() { return connected; } //!gets informations about the song void snackamp_get_song_infos(gchar *total_infos) { gchar rate_str[32] = { '\0' }; gchar freq_str[32] = { '\0' }; gchar nch_str[32] = { '\0' }; gchar *ptr = NULL; gchar *result; result = snackamp_socket_send_message("xmms_remote_get_info\n"); result = cut_begin_end(result); //we get the stereo/mono char *a = strstr(result, " "); if (a != NULL) { if (strstr(a+1, " ") != NULL) ptr = strstr(a+1, " ")+1; gint i = 0; //we get the rate while (result[i] != ' ' && isdigit(result[i]) && i<16) { g_sprintf(rate_str, "%s%c",rate_str,result[i]); i++; } //we cut the beginning if (strchr(result, ' ') != NULL) { gchar *test; test = strchr(result,' '); g_snprintf(result, strlen(result), "%s",test+1); } //we get the freq i = 0; while (result[i] != ' ' && isdigit(result[i]) && i<16) { g_sprintf(freq_str, "%s%c",freq_str,result[i]); i++; } //channels int gint nch; nch = atoi(ptr); if (nch == 2) { snprintf(nch_str, 32, "%s", _("stereo")); } else { snprintf(nch_str, 32, "%s", _("mono")); } gchar *_Kbps = _("Kbps"); gchar *_Khz = _("Khz"); g_snprintf(total_infos, 512, "%s %s %s %s %s", rate_str,_Kbps,freq_str, _Khz,nch_str); } else { g_snprintf(total_infos, 512, "disconnected"); } //free memory g_free(result); } /*!returns the filename The result of this query must be freed after use. */ gchar *snackamp_get_filename() { //we get the current song position gchar *result; gint playlist_pos = snackamp_get_playlist_pos(); //we get the current file gchar temp[100]; g_snprintf(temp, 100, "%s %d\n", "xmms_remote_get_playlist_file",playlist_pos); result = snackamp_socket_send_message(temp); result = cut_begin_end(result); return result; } //!returns current song position in the playlist gint snackamp_get_playlist_pos() { gchar *result; gint number = 0; result = snackamp_socket_send_message("xmms_remote_get_playlist_pos\n"); number = get_integer_from_string(result); g_free(result); return number; } //!stops playing a song void snackamp_stop() { gchar *result; result = snackamp_socket_send_message("xmms_remote_stop\n"); g_free(result); } //!returns the number of songs of the playlist gint snackamp_get_playlist_number() { gchar *result; gint number = 0; result = snackamp_socket_send_message("xmms_remote_get_playlist_length\n"); number = get_integer_from_string(result); g_free(result); //if we have no song in the playlist we stop it if (number == -1) { snackamp_stop(); } return number; } /*!returns the title of the song The return value must be g_free'd after use. */ gchar *snackamp_get_title_song() { gchar *result; gint playlist_pos = snackamp_get_playlist_pos(); //we get the current file gchar temp[100]; g_snprintf(temp, 100,"%s %d\n", "xmms_remote_get_playlist_title",playlist_pos); result = snackamp_socket_send_message(temp); result = cut_begin_end(result); return result; } //!returns elapsed time gint snackamp_get_time_elapsed() { gchar *result; gint pos; result = snackamp_socket_send_message("xmms_remote_get_output_time\n"); pos = get_integer_from_string(result); g_free(result); return pos; } //!starts snackamp void snackamp_start() { gint timer; time_t lt; static gchar *exec_command; exec_command = "snackAmp"; gchar *exec_this = g_strdup_printf("%s &", exec_command); system(exec_this); timer = time(<); while ((!snackamp_is_running()) && ((time(<) - timer) < 8)) { usleep(0); } g_free(exec_this); } //!jumps to the position pos in the playlist void snackamp_set_playlist_pos(gint pos) { gchar *result; gchar temp[100]; g_snprintf(temp, 100, "%s %d\n", "xmms_remote_set_playlist_pos",pos); result = snackamp_socket_send_message(temp); g_free(result); } //!selects the last file in the playlist void snackamp_select_last_file() { //we get last song position gint last_song = snackamp_get_playlist_number(); snackamp_set_playlist_pos(last_song-1); } //!plays a song void snackamp_play() { gchar *result; result = snackamp_socket_send_message("xmms_remote_play\n"); g_free(result); } //!plays the last file of the playlist void snackamp_play_last_file() { snackamp_select_last_file(); snackamp_play(); } //!add files to the snackamp playlist void snackamp_add_files(GList *list) { gchar *song; gchar *result; gint i = 0; gchar *local; gint malloc_int; //for all songs while ((song = g_list_nth_data(list, i)) != NULL) { malloc_int = strlen(song) + 30; local = malloc(malloc_int * sizeof(gchar *)); g_snprintf(local,malloc_int,"%s {%s}\n", "xmms_remote_playlist_add ", song); result = snackamp_socket_send_message(local); g_free(result); g_free(local); i++; } } //!sets volume void snackamp_set_volume(gint volume) { //we get the current file gchar *result; gchar temp[100]; g_snprintf(temp, 100, "%s %d\n", "xmms_remote_set_main_volume",volume); result = snackamp_socket_send_message(temp); g_free(result); } //!returns volume gint snackamp_get_volume() { gchar *result; gint vol; result = snackamp_socket_send_message("xmms_remote_get_main_volume\n"); vol = get_integer_from_string(result); g_free(result); return vol; } //!starts snackamp with songs void snackamp_start_with_songs(GList *list) { snackamp_start(); snackamp_add_files(list); } //!returns TRUE if snackamp is running; if not, FALSE gint snackamp_is_running() { gint result = FALSE; //if we are not connected if (!connected) { //if we can connect to snackamp, the player is running if (connect_snackamp(8775) == 0) { result = TRUE; } } else //if we are connected { result = TRUE; } return result; } //!pause a song void snackamp_pause() { gchar *result; result = snackamp_socket_send_message("xmms_remote_pause\n"); g_free(result); } //!changes to next song void snackamp_next() { gchar *result; result = snackamp_socket_send_message("xmms_remote_playlist_next\n"); g_free(result); } //!changes to previous song void snackamp_prev() { gint playlist_pos = snackamp_get_playlist_pos(); //if we are not at the beginning if (playlist_pos > 0) { gchar *result; result = snackamp_socket_send_message("xmms_remote_playlist_prev\n"); g_free(result); } else { //we play the last song snackamp_play_last_file(); } } //!jump to time void snackamp_jump(gint position) { //we have the position in miliseconds, we get it in hundreths of //seconds gint hundr_secs_pos = position / 10; //we get only the hundreth of seconds gint hundr_secs = hundr_secs_pos % 100; if (hundr_secs == 1) { hundr_secs = 0; } //we have the seconds left gint secs = hundr_secs_pos / 100; gfloat total_pos = hundr_secs + secs * 100; total_pos /= 100; gchar *result; gchar temp[100]; g_snprintf(temp, 100, "%s %f\n", "xmms_remote_jump_to_time", total_pos); result = snackamp_socket_send_message(temp); g_free(result); } //!returns total time of the current song gint snackamp_get_total_time() { gchar *result; gint hundr_secs; result = snackamp_socket_send_message("xmms_remote_get_playlist_time\n"); //we get and convert to hundreth of seconds hundr_secs = get_integer_from_string(result) * 1000; g_free(result); return hundr_secs; } //!returns TRUE if snackamp is playing, else FALSE gint snackamp_is_playing() { //if we are connected to snackamp if (snackamp_is_connected()) { gchar *result; gint i; result = snackamp_socket_send_message("xmms_remote_is_playing\n"); i = atoi(result); g_free(result); if (i == 0) return FALSE; else return TRUE; } else return FALSE; } /*! returns TRUE if snackamp is paused, else FALSE not yet implemented in snackamp */ gint snackamp_is_paused() { //if we are connected to snackamp if (snackamp_is_connected()) { gint i; gchar *result; result = snackamp_socket_send_message("xmms_remote_is_paused\n"); result = cut_begin_end(result); i = atoi(result); g_free(result); if (i == 1) return TRUE; else return FALSE; } else return FALSE; } /*//quits player gint snackamp_quit() { return 1; } */ ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/snackamp_control.h������������������������������������������������������������0000644�0001750�0001750�00000004522�11753301505�015126� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: snackamp_control.h * * header of snackamp_control.c * *********************************************************/ gint connect_snackamp(gint port); gchar *cut_begin_end(gchar *result); gint disconnect_snackamp(); gchar *snackamp_socket_send_message(gchar *message); gint get_integer_from_string(gchar *result); gboolean snackamp_is_connected(); void snackamp_get_song_infos(gchar *total_infos); gchar *snackamp_get_filename(); gint snackamp_get_playlist_pos(); void snackamp_stop(); gint snackamp_get_playlist_number(); gchar *snackamp_get_title_song(); gint snackamp_get_time_elapsed(); void snackamp_start(); void snackamp_set_playlist_pos(gint pos); void snackamp_select_last_file(); void snackamp_play(); void snackamp_play_last_file(); void snackamp_add_files(GList *list); void snackamp_set_volume(gint volume); gint snackamp_get_volume(); void snackamp_start_with_songs(GList *list); gint snackamp_is_running(); void snackamp_pause(); void snackamp_next(); void snackamp_prev(); void snackamp_jump(gint position); gint snackamp_get_total_time(); gint snackamp_is_playing(); gint snackamp_is_paused(); void snackamp_quit(); ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/stop_inactive.svg�������������������������������������������������������������0000644�0001750�0001750�00000016342�11512671475�015024� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="12.421875" height="12.4375" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="stop_inactive.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient5111"> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop5113" /> <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop5115" /> </linearGradient> <linearGradient id="linearGradient3161"> <stop style="stop-color:#2c9ce8;stop-opacity:1;" offset="0" id="stop3163" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3165" /> </linearGradient> <linearGradient id="linearGradient3158"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3160" /> <stop style="stop-color:#fffcfc;stop-opacity:1;" offset="1" id="stop3162" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3158" id="linearGradient3166" x1="343.90701" y1="527.39569" x2="635.65576" y2="360.81635" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient4137"> <stop style="stop-color:#00ff00;stop-opacity:0;" offset="0" id="stop4139" /> <stop id="stop4147" offset="0.5" style="stop-color:#00ff00;stop-opacity:1;" /> <stop style="stop-color:#00ff00;stop-opacity:1;" offset="1" id="stop4141" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient4137" id="radialGradient4145" cx="436.80746" cy="494.4108" fx="436.80746" fy="494.4108" r="185.17741" gradientTransform="matrix(1.2235362,-0.5446939,0.5814184,1.3060295,-412.82479,53.892637)" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3153"> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3155" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="1" id="stop3157" /> </linearGradient> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop id="stop3151" offset="0.5" style="stop-color:#ffffff;stop-opacity:1;" /> <stop style="stop-color:#9b0000;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#858585;stop-opacity:0.50400001;" offset="0" id="stop3156" /> <stop style="stop-color:#808080;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3162" id="linearGradient3167" gradientUnits="userSpaceOnUse" x1="161.31094" y1="575.80811" x2="180.54237" y2="575.80811" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3153" id="radialGradient3169" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,1.1923401,0,-28.118883)" cx="-175" cy="146.19353" fx="-175" fy="146.19353" r="20.126865" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3161" id="radialGradient3167" cx="351.25055" cy="594.79358" fx="351.25055" fy="594.79358" r="24" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.3076652,2.1716075e-6,-2.3541417e-6,1.4170433,-108.73894,-245.03349)" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient5111" id="radialGradient5117" cx="356.61749" cy="592.42078" fx="356.61749" fy="592.42078" r="24" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.767096,-0.00314281,0.00303291,0.7402712,81.260899,146.98955)" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient5111" id="radialGradient3014" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.2110643,0.03842593,-0.11805932,1.1738083,-5.3284231,-124.67094)" cx="356.61749" cy="592.42078" fx="356.61749" fy="592.42078" r="24" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154" id="radialGradient3817" cx="353.35184" cy="595.29504" fx="353.35184" fy="595.29504" r="12" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5723657,0.03212797,-0.03489336,1.7077056,-180.9011,-433.25825)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="15.375" inkscape:cx="6.195475" inkscape:cy="6.22024" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" width="48px" height="48px" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-maximized="1" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-344.36702,-591.59524)"> <rect style="fill:url(#radialGradient3817);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.73493969;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="rect3169" width="23.13253" height="23.13253" x="339.01154" y="586.24921" rx="0.63" ry="5.2418842" transform="matrix(0.5,0,0,0.5,175.2889,298.90774)" /> </g> </svg> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/import.c����������������������������������������������������������������������0000644�0001750�0001750�00000016505�11533022607�013101� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2010 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The magic behind the splitpoint input * * All functions that are needed in order to read in * cddb, cue or similar files. *********************************************************/ #include <string.h> #include <gtk/gtk.h> #include <glib/gi18n.h> #include "player_tab.h" #include "main_win.h" #include "freedb_tab.h" #include "import.h" #include "options_manager.h" #include "mp3splt-gtk.h" #include "utilities.h" #include "ui_manager.h" #include "widgets_helper.h" extern splt_state *the_state; extern ui_state *ui; static void set_import_filters(GtkFileChooser *chooser); static void build_import_filter(GtkFileChooser *chooser, const gchar *filter_name, const gchar *filter_pattern, const gchar *filter_pattern_upper, GList **filters, GtkFileFilter *all_filter); static gpointer add_audacity_labels_splitpoints(gpointer data); static gpointer add_cddb_splitpoints(gpointer data); static gpointer add_cue_splitpoints(gpointer data); //! What happens if the "Import" button is pressed void import_event(GtkWidget *widget, gpointer *data) { GtkWidget *file_chooser = gtk_file_chooser_dialog_new(_("Choose file to import"), NULL, GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL); wh_set_browser_directory_handler(ui, file_chooser); set_import_filters(GTK_FILE_CHOOSER(file_chooser)); if (gtk_dialog_run(GTK_DIALOG(file_chooser)) == GTK_RESPONSE_ACCEPT) { gchar *filename = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(file_chooser)); handle_import(filename); g_free(filename); filename = NULL; remove_status_message(); } gtk_widget_destroy(file_chooser); } /*! Handles the import of an input file (audio or splitpoint) The file type is determined by the extension of the file. */ void handle_import(gchar *filename) { if (filename == NULL) { return; } gchar *ext = strrchr(filename, '.'); GString *ext_str = g_string_new(ext); g_string_ascii_up(ext_str); if ((strstr(ext_str->str, ".MP3") != NULL) || (strstr(ext_str->str, ".OGG") != NULL)) { file_chooser_ok_event(filename); remove_status_message(); } else if ((strstr(ext_str->str, ".CUE") != NULL)) { update_output_options(); create_thread(add_cue_splitpoints, strdup(filename), TRUE, NULL); } else if ((strstr(ext_str->str, ".CDDB") != NULL)) { update_output_options(); create_thread(add_cddb_splitpoints, strdup(filename), TRUE, NULL); } else if ((strstr(ext_str->str, ".TXT") != NULL)) { create_thread(add_audacity_labels_splitpoints, strdup(filename), TRUE, NULL); } if (ext_str) { g_string_free(ext_str, FALSE); } } //! Set the file chooser filters to "splitpoint file" static void set_import_filters(GtkFileChooser *chooser) { GtkFileFilter *all_filter = gtk_file_filter_new(); gtk_file_filter_set_name(GTK_FILE_FILTER(all_filter), _("CDDB (*.cddb), CUE (*.cue), Audacity labels (*.txt)")); GList *filters = NULL; build_import_filter(chooser, _("CDDB files (*.cddb)"), "*.cddb", "*.CDDB", &filters, all_filter); build_import_filter(chooser, _("CUE files (*.cue)"), "*.cue", "*.CUE", &filters, all_filter); build_import_filter(chooser, _("Audacity labels files (*.txt)"), "*.txt", "*.TXT", &filters, all_filter); build_import_filter(chooser, _("All files"), "*", NULL, &filters, NULL); gtk_file_chooser_add_filter(chooser, all_filter); GList *iter = NULL; for (iter = filters; iter != NULL; iter = g_list_next(iter)) { gtk_file_chooser_add_filter(chooser, iter->data); } } static void build_import_filter(GtkFileChooser *chooser, const gchar *filter_name, const gchar *filter_pattern, const gchar *filter_pattern_upper, GList **filters, GtkFileFilter *all_filter) { GtkFileFilter *filter = gtk_file_filter_new(); gtk_file_filter_set_name(GTK_FILE_FILTER(filter), filter_name); gtk_file_filter_add_pattern(GTK_FILE_FILTER(filter), filter_pattern); if (filter_pattern_upper) { gtk_file_filter_add_pattern(GTK_FILE_FILTER(filter), filter_pattern_upper); } if (all_filter) { gtk_file_filter_add_pattern(GTK_FILE_FILTER(all_filter), filter_pattern); if (filter_pattern_upper) { gtk_file_filter_add_pattern(GTK_FILE_FILTER(all_filter), filter_pattern_upper); } } *filters = g_list_append(*filters, filter); } /*! Add splitpoints from audacity data pointer will be freed by g_free() after doung this. */ static gpointer add_audacity_labels_splitpoints(gpointer data) { gchar *filename = data; gint err = SPLT_OK; mp3splt_put_audacity_labels_splitpoints_from_file(the_state, filename, &err); enter_threads(); if (err >= 0) { update_splitpoints_from_the_state(); } print_status_bar_confirmation(err); exit_threads(); if (filename) { g_free(filename); filename = NULL; } return NULL; } //! Add splitpoints from cddb static gpointer add_cddb_splitpoints(gpointer data) { gchar *filename = data; gint err = SPLT_OK; mp3splt_put_cddb_splitpoints_from_file(the_state, filename, &err); enter_threads(); if (err >= 0) { update_splitpoints_from_the_state(); } print_status_bar_confirmation(err); exit_threads(); if (filename) { g_free(filename); filename = NULL; } return NULL; } //! Add splitpoints from cue file static gpointer add_cue_splitpoints(gpointer data) { gchar *filename = data; gint err = SPLT_OK; mp3splt_set_filename_to_split(the_state, NULL); mp3splt_put_cue_splitpoints_from_file(the_state, filename, &err); enter_threads(); if (err >= 0) { update_splitpoints_from_the_state(); } print_status_bar_confirmation(err); // The cue file has provided libmp3splt with a input filename. // But since we use the filename from the gui instead we need to set // the value the gui uses, too, which we do in the next line. char *filename_to_split = mp3splt_get_filename_to_split(the_state); if (is_filee(filename_to_split)) { inputfilename_set(filename_to_split); } exit_threads(); enable_player_buttons(); return NULL; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/import.h����������������������������������������������������������������������0000664�0001750�0001750�00000002452�11472322253�013106� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2010 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef _IMPORT_H #define _IMPORT_H void import_event(GtkWidget *widget, gpointer *data); void handle_import(gchar *filename); #endif ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/radio_helper.c����������������������������������������������������������������0000644�0001750�0001750�00000006117�11753301510�014217� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * * this file contains the code for the radio button helpers. ********************************************************/ #include "radio_helper.h" GtkWidget *rh_append_radio_to_vbox(GtkWidget *radio_button, const gchar *text, gint value, void (*callback)(GtkToggleButton *, gpointer), GtkWidget *vbox) { GtkWidget *new_radio_button = gtk_radio_button_new_with_label_from_widget(GTK_RADIO_BUTTON(radio_button), text); gtk_box_pack_start(GTK_BOX(vbox), new_radio_button, FALSE, FALSE, 0); if (callback) { g_signal_connect(GTK_TOGGLE_BUTTON(new_radio_button), "toggled", G_CALLBACK(callback), NULL); } g_object_set_data(G_OBJECT(new_radio_button), "value", GINT_TO_POINTER(value)); return new_radio_button; } gint rh_get_active_value(GtkWidget *radio_button) { gint active_value = -1; GSList *radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_button)); gint i = 0; for(i = 0; i < g_slist_length(radio_button_list);i++) { GtkRadioButton *current_radio = (GtkRadioButton *) g_slist_nth_data(radio_button_list, i); if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(current_radio))) { active_value = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(current_radio), "value")); break; } } return active_value; } GtkWidget *rh_get_radio_from_value(GtkWidget *radio_button, gint value) { GtkWidget *radio = NULL; GSList *radio_button_list = gtk_radio_button_get_group(GTK_RADIO_BUTTON(radio_button)); gint i = 0; for(i = 0; i < g_slist_length(radio_button_list);i++) { GtkRadioButton *current_radio = (GtkRadioButton *) g_slist_nth_data(radio_button_list, i); gint current_value = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(current_radio), "value")); if (current_value == value) { radio = GTK_WIDGET(current_radio); break; } } return radio; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/radio_helper.h����������������������������������������������������������������0000644�0001750�0001750�00000003026�11753301513�014223� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ #ifndef RADIO_HELPER_H #include <gtk/gtk.h> GtkWidget *rh_append_radio_to_vbox(GtkWidget *radio_button, const gchar *text, gint value, void (*callback)(GtkToggleButton *, gpointer), GtkWidget *vbox); gint rh_get_active_value(GtkWidget *radio_button); GtkWidget *rh_get_radio_from_value(GtkWidget *radio_button, gint value); #define RADIO_HELPER_H #endif ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/stop.svg����������������������������������������������������������������������0000644�0001750�0001750�00000016302�11512671475�013136� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="12.421875" height="12.4375" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="stop.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient5111"> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop5113" /> <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop5115" /> </linearGradient> <linearGradient id="linearGradient3161"> <stop style="stop-color:#2c9ce8;stop-opacity:1;" offset="0" id="stop3163" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3165" /> </linearGradient> <linearGradient id="linearGradient3158"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3160" /> <stop style="stop-color:#fffcfc;stop-opacity:1;" offset="1" id="stop3162" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3158" id="linearGradient3166" x1="343.90701" y1="527.39569" x2="635.65576" y2="360.81635" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient4137"> <stop style="stop-color:#00ff00;stop-opacity:0;" offset="0" id="stop4139" /> <stop id="stop4147" offset="0.5" style="stop-color:#00ff00;stop-opacity:1;" /> <stop style="stop-color:#00ff00;stop-opacity:1;" offset="1" id="stop4141" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient4137" id="radialGradient4145" cx="436.80746" cy="494.4108" fx="436.80746" fy="494.4108" r="185.17741" gradientTransform="matrix(1.2235362,-0.5446939,0.5814184,1.3060295,-412.82479,53.892637)" gradientUnits="userSpaceOnUse" /> <linearGradient id="linearGradient3153"> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop3155" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="1" id="stop3157" /> </linearGradient> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop id="stop3151" offset="0.5" style="stop-color:#ffffff;stop-opacity:1;" /> <stop style="stop-color:#9b0000;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#ff0c0c;stop-opacity:0.50400001;" offset="0" id="stop3156" /> <stop style="stop-color:#ff2300;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3162" id="linearGradient3167" gradientUnits="userSpaceOnUse" x1="161.31094" y1="575.80811" x2="180.54237" y2="575.80811" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3153" id="radialGradient3169" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,1.1923401,0,-28.118883)" cx="-175" cy="146.19353" fx="-175" fy="146.19353" r="20.126865" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3161" id="radialGradient3167" cx="351.25055" cy="594.79358" fx="351.25055" fy="594.79358" r="24" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.3076652,2.1716075e-6,-2.3541417e-6,1.4170433,-108.73894,-245.03349)" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient5111" id="radialGradient5117" cx="356.61749" cy="592.42078" fx="356.61749" fy="592.42078" r="24" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.767096,-0.00314281,0.00303291,0.7402712,81.260899,146.98955)" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient5111" id="radialGradient3014" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.2110643,0.03842593,-0.11805932,1.1738083,-5.3284231,-124.67094)" cx="356.61749" cy="592.42078" fx="356.61749" fy="592.42078" r="24" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154" id="radialGradient3817" cx="353.35184" cy="595.29504" fx="353.35184" fy="595.29504" r="12" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.5723657,0.03212797,-0.03489336,1.7077056,-180.9011,-433.25825)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="3.2890566" inkscape:cx="-46.083867" inkscape:cy="0.7936415" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" width="48px" height="48px" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-maximized="1" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-344.36702,-591.59524)"> <rect style="fill:url(#radialGradient3817);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.73493969;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="rect3169" width="23.13253" height="23.13253" x="339.01154" y="586.24921" rx="0.63" ry="5.2418842" transform="matrix(0.5,0,0,0.5,175.2889,298.90774)" /> </g> </svg> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/mp3splt-gtk_ico.svg�����������������������������������������������������������0000644�0001750�0001750�00000035021�11513144100�015144� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="48" height="48" id="svg2" version="1.1" inkscape:version="0.48.0 r9654" sodipodi:docname="icon.svg"> <defs id="defs4"> <linearGradient id="linearGradient4222"> <stop style="stop-color:#ffffff;stop-opacity:0.112;" offset="0" id="stop4224" /> <stop style="stop-color:#55ddff;stop-opacity:0.32800001;" offset="1" id="stop4226" /> </linearGradient> <linearGradient id="linearGradient3828"> <stop style="stop-color:#ff0000;stop-opacity:1;" offset="0" id="stop3830" /> <stop style="stop-color:#ffdc00;stop-opacity:1;" offset="1" id="stop3832" /> </linearGradient> <linearGradient id="linearGradient3808"> <stop id="stop3810" offset="0" style="stop-color:#16271f;stop-opacity:1;" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.39056605" id="stop3812" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0.5" id="stop3814" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.55000001" id="stop3816" /> <stop id="stop3818" offset="1" style="stop-color:#000000;stop-opacity:1;" /> </linearGradient> <linearGradient id="linearGradient3759"> <stop style="stop-color:#16271f;stop-opacity:1;" offset="0" id="stop3761" /> <stop id="stop3773" offset="0.40000001" style="stop-color:#000000;stop-opacity:1;" /> <stop id="stop3767" offset="0.5" style="stop-color:#ffffff;stop-opacity:1;" /> <stop id="stop3771" offset="0.55000001" style="stop-color:#000000;stop-opacity:1;" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="1" id="stop3763" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3808" id="linearGradient3954" gradientUnits="userSpaceOnUse" x1="273.62683" y1="443.06738" x2="330.37317" y2="419.65698" gradientTransform="matrix(0.78688525,0,0,0.84210526,20.762182,80.567982)" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3808-8" id="linearGradient3954-9" gradientUnits="userSpaceOnUse" x1="273.62683" y1="443.06738" x2="330.37317" y2="419.65698" gradientTransform="matrix(0.78688525,0,0,0.84210526,20.762182,80.567982)" /> <linearGradient id="linearGradient3808-8"> <stop id="stop3810-1" offset="0" style="stop-color:#16271f;stop-opacity:1;" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.39056605" id="stop3812-8" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0.5" id="stop3814-9" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.55000001" id="stop3816-8" /> <stop id="stop3818-9" offset="1" style="stop-color:#000000;stop-opacity:1;" /> </linearGradient> <linearGradient y2="419.65698" x2="330.37317" y1="442.15625" x1="272.99283" gradientTransform="matrix(0.73886599,-0.27395797,0.2513644,0.66163649,-11.108639,226.24127)" gradientUnits="userSpaceOnUse" id="linearGradient3988" xlink:href="#linearGradient3808-8" inkscape:collect="always" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3808-3" id="linearGradient3954-4" gradientUnits="userSpaceOnUse" x1="273.62683" y1="443.06738" x2="330.37317" y2="419.65698" gradientTransform="matrix(0.78688525,0,0,0.84210526,20.762182,80.567982)" /> <linearGradient id="linearGradient3808-3"> <stop id="stop3810-7" offset="0" style="stop-color:#16271f;stop-opacity:1;" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.39056605" id="stop3812-3" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0.5" id="stop3814-6" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.55000001" id="stop3816-1" /> <stop id="stop3818-8" offset="1" style="stop-color:#000000;stop-opacity:1;" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3808-6" id="linearGradient3954-5" gradientUnits="userSpaceOnUse" x1="273.62683" y1="443.06738" x2="330.37317" y2="419.65698" gradientTransform="matrix(0.78688525,0,0,0.84210526,20.762182,80.567982)" /> <linearGradient id="linearGradient3808-6"> <stop id="stop3810-5" offset="0" style="stop-color:#16271f;stop-opacity:1;" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.39056605" id="stop3812-6" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0.5" id="stop3814-4" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.55000001" id="stop3816-7" /> <stop id="stop3818-4" offset="1" style="stop-color:#000000;stop-opacity:1;" /> </linearGradient> <linearGradient y2="419.65698" x2="330.37317" y1="443.06738" x1="273.62683" gradientTransform="matrix(0.78688525,0,0,0.84210526,-261.53635,-377.20633)" gradientUnits="userSpaceOnUse" id="linearGradient4110" xlink:href="#linearGradient3808-6" inkscape:collect="always" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3808-5" id="linearGradient3954-42" gradientUnits="userSpaceOnUse" x1="273.62683" y1="443.06738" x2="330.37317" y2="419.65698" gradientTransform="matrix(0.78688525,0,0,0.84210526,20.762182,80.567982)" /> <linearGradient id="linearGradient3808-5"> <stop id="stop3810-2" offset="0" style="stop-color:#16271f;stop-opacity:1;" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.39056605" id="stop3812-38" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0.5" id="stop3814-93" /> <stop style="stop-color:#000000;stop-opacity:1;" offset="0.55000001" id="stop3816-16" /> <stop id="stop3818-1" offset="1" style="stop-color:#000000;stop-opacity:1;" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3808-5" id="linearGradient4203" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.78688525,0,0,0.84210526,-147.91733,-405.93715)" x1="273.62683" y1="443.06738" x2="330.37317" y2="419.65698" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3808-3" id="linearGradient4206" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.75151063,-0.13604451,0.12313549,0.67021687,40.395962,181.02297)" x1="273.62683" y1="443.06738" x2="331.63684" y2="426.91766" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3828" id="radialGradient4209" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.05797173,0.02064608,0.01715853,-0.04817911,295.45664,443.52437)" cx="304.28571" cy="428.07648" fx="304.28571" fy="428.07648" r="130" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient3808-5" id="linearGradient4214" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.7830771,0.07732175,-0.06877002,0.69646926,113.63063,105.38499)" x1="273.62683" y1="443.06738" x2="330.37317" y2="419.65698" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient4222" id="radialGradient4228" cx="320.45422" cy="429.17416" fx="320.45422" fy="429.17416" r="23.999998" gradientUnits="userSpaceOnUse" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="3.9058495" inkscape:cx="-8.8991021" inkscape:cy="47.052915" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title></dc:title> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-296.45423,-405.17417)"> <rect style="fill:url(#radialGradient4228);fill-opacity:1.0;stroke:#ffffff;stroke-width:1.07805908000000006;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" id="rect4216" width="46.92194" height="46.92194" x="296.99326" y="405.7132" /> <path style="fill:url(#linearGradient4206);fill-opacity:1;fill-rule:evenodd;stroke:#68c39b;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" d="m 317.90785,415.17672 c -9.19028,1.66369 -15.51091,9.23428 -14.10382,16.89296 1.40709,7.65868 10.00851,12.50227 19.1988,10.83856 9.19027,-1.66369 15.51547,-9.20942 14.10839,-16.8681 -1.40709,-7.65868 -10.01308,-12.52714 -19.20337,-10.86342 z m 0.66715,3.63121 c 6.77985,-1.22734 13.14078,2.37107 14.17882,8.02102 1.03805,5.64998 -3.63829,11.22074 -10.41813,12.44809 -6.77985,1.22733 -13.10638,-2.3516 -14.14443,-8.00159 -1.03804,-5.64995 3.6039,-11.24019 10.38374,-12.46752 z" id="path3838-4" inkscape:connector-curvature="0" /> <path style="fill:url(#linearGradient3988);fill-opacity:1;fill-rule:evenodd;stroke:#68c39b;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" d="m 313.42535,410.38901 c -12.24194,4.53907 -19.0371,16.50653 -15.15001,26.73805 3.8871,10.23154 16.98399,14.85137 29.22592,10.31229 12.24193,-4.53908 18.99843,-16.5202 15.11133,-26.75173 -3.88708,-10.23152 -16.94532,-14.8377 -29.18724,-10.29861 z m 1.62305,4.2722 c 9.40827,-3.48841 19.43834,0.058 22.42917,7.93038 2.99083,7.87241 -2.19112,17.08715 -11.59938,20.57557 -9.40825,3.4884 -19.47699,-0.0717 -22.46783,-7.94407 -2.99083,-7.87241 2.2298,-17.07347 11.63804,-20.56188 z" id="path3838-6" inkscape:connector-curvature="0" /> <path style="fill:url(#linearGradient4214);fill-opacity:1;fill-rule:evenodd;stroke:#68c39b;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" d="m 321.3453,420.11816 c -6.01807,-0.59424 -11.28393,2.96979 -11.77777,7.97118 -0.49384,5.0014 3.97074,9.5523 9.98881,10.14654 6.01809,0.59423 11.28648,-2.99564 11.78033,-7.99703 0.49384,-5.0014 -3.97328,-9.52646 -9.99137,-10.12069 z m -0.71201,7.21092 c 1.11315,0.1099 1.9406,1.01808 1.84023,2.03461 -0.10038,1.01655 -1.08946,1.74536 -2.20262,1.63545 -1.11317,-0.10993 -1.9406,-1.0181 -1.84022,-2.03464 0.10037,-1.01654 1.08944,-1.74535 2.20261,-1.63542 z" id="path3838-7" inkscape:connector-curvature="0" /> <path style="fill:url(#radialGradient4209);fill-opacity:1;fill-rule:evenodd;stroke:#00f500;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" d="m 322.68483,422.91088 c -4.16219,-1.48233 -8.53501,0.12018 -9.76693,3.57929 -1.23194,3.45912 1.14352,7.46495 5.30571,8.94728 4.1622,1.48232 8.535,-0.12019 9.76694,-3.5793 1.23192,-3.45911 -1.14352,-7.46494 -5.30572,-8.94727 z m -1.95178,5.48037 c 0.52029,0.18529 0.8172,0.68601 0.66321,1.11841 -0.15399,0.43238 -0.70058,0.63271 -1.22087,0.44741 -0.52027,-0.18529 -0.8172,-0.68602 -0.66321,-1.11841 0.15399,-0.4324 0.7006,-0.6327 1.22087,-0.44741 z" id="path2985" inkscape:connector-curvature="0" /> <text xml:space="preserve" style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#2a7fff;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans Bold" id="text3958" sodipodi:linespacing="125%" transform="translate(-0.06080218,-1.6730582)"><textPath xlink:href="#path2985" id="textPath3962" style="font-size:6px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#2a7fff;font-family:Sans;-inkscape-font-specification:Sans Bold"> S p l i t</textPath></text> <text xml:space="preserve" style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans" x="75.271713" y="-21.127087" id="text4230" sodipodi:linespacing="125%" transform="translate(296.45423,405.17417)"><tspan sodipodi:role="line" id="tspan4232" x="75.271713" y="-21.127087" /></text> </g> </svg> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/play_inactive.svg�������������������������������������������������������������0000644�0001750�0001750�00000007115�11512671475�015002� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="12.828081" height="12.852639" id="svg2" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" sodipodi:docname="play_inactive.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> <defs id="defs4"> <linearGradient id="linearGradient3162"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3164" /> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop3166" /> </linearGradient> <linearGradient id="linearGradient3154"> <stop style="stop-color:#e1e1e1;stop-opacity:1;" offset="0" id="stop3156" /> <stop style="stop-color:#757575;stop-opacity:1;" offset="1" id="stop3158" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3154" id="radialGradient3823" cx="585.97931" cy="494.83838" fx="585.97931" fy="494.83838" r="180.93385" gradientTransform="matrix(1.311648,-0.00911716,0.00728291,1.3908587,-186.22314,-191.93129)" gradientUnits="userSpaceOnUse" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="28.710057" inkscape:cx="6.4140406" inkscape:cy="6.4263196" inkscape:document-units="px" inkscape:current-layer="layer1" inkscape:window-width="1024" inkscape:window-height="552" inkscape:window-x="0" inkscape:window-y="0" showgrid="false" inkscape:window-maximized="1" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" /> <metadata id="metadata7"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title /> </cc:Work> </rdf:RDF> </metadata> <g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-493.38242,-541.86338)"> <path sodipodi:type="star" style="fill:url(#radialGradient3823);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:31.41368294;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.50196078;stroke-dasharray:none;stroke-dashoffset:0" id="path2162" sodipodi:sides="3" sodipodi:cx="525.71429" sodipodi:cy="520.93359" sodipodi:r1="230.74301" sodipodi:r2="278.92676" sodipodi:arg1="-2.0946271" sodipodi:arg2="-7.1849363" inkscape:flatsided="true" inkscape:rounded="0" inkscape:randomized="0" d="m 410.29643,321.13106 346.16087,199.749 -346.06815,199.9096 z" transform="matrix(0.03416932,0,0,0.02965691,479.86287,532.83963)" /> </g> </svg> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/tree_tab.c��������������������������������������������������������������������0000644�0001750�0001750�00000217737�11753301516�013371� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The splitpoints tab * * this file is used for the Splitpoints tab * (which in turn contains the splitpoints table) **********************************************************/ #include <string.h> #include <stdlib.h> #include <unistd.h> #include <gtk/gtk.h> #include <glib/gi18n.h> #include <libmp3splt/mp3splt.h> #ifdef __WIN32__ #define usleep(x) Sleep(x*1000) #endif #include "freedb_tab.h" #include "util.h" #include "player.h" #include "tree_tab.h" #include "main_win.h" #include "utilities.h" #include "player_tab.h" #include "mp3splt-gtk.h" #include "split_files.h" #include "preferences_tab.h" #include "preferences_manager.h" #include "tree_tab.h" /*! The array all splitpoints are kept in. The splitpoints themself will be in the */ GArray *splitpoints = NULL; //minutes and seconds reflected by the spinners gint spin_mins = 0; gint spin_secs = 0; gint spin_hundr_secs = 0; //if we have a skippoint or a splitpoint gint splitpoint_checked = TRUE; //current description //TODO: not translated gchar current_description[255] = "description here"; //! The total number of splitpoints gint splitnumber = 0; //buttons for adding and removing rows GtkWidget *add_button = NULL; GtkWidget *remove_all_button = NULL; GtkWidget *remove_row_button = NULL; //special buttons like 'set splitpoints from silence detection GtkWidget *scan_silence_button = NULL; GtkWidget *scan_trim_silence_button = NULL; //handle box for detaching window GtkWidget *handle_box; /*! The tree view (which is the table all split points are stored inside) Used globally for the update_*_from_spinner; the information about the order of items is kept in the enum tree_columns. */ GtkTreeView *tree_view; /*!\defgroup{} splitpointview Variables for the splitpoint view @{ */ //!The minutes spinner GtkWidget *spinner_minutes; //!The seconds spinner GtkWidget *spinner_seconds; //!The hundreths of seconds spinner GtkWidget *spinner_hundr_secs; //!if we have a preview, preview = TRUE gboolean quick_preview = FALSE; /*! the end of the preview preview_end_position = -1 means don't stop until the end of the song */ gint quick_preview_end_splitpoint = -1; //! The number of the split point for the preview gint this_row = 0; //! the position transmitted to the player gint preview_start_position; //! Which splitpoint we started the preview at gint preview_start_splitpoint = -1; /*! A bool that helps us catch the case that we add splitpoints during preview if we add a new splitpoint at the left and we are currently previewing, we should increment quick_preview start and end */ gboolean new_left_splitpoint_added = FALSE; /*! The selected splitpoint used when we move the splitpoint we have selected */ gint first_splitpoint_selected = -1; //@} /*! \defgroup silencedetectiongroup silence detection parameters widgets @{ */ //!number of tracks parameter GtkWidget *spinner_silence_number_tracks = NULL; GtkWidget *spinner_silence_minimum = NULL; GtkWidget *spinner_silence_minimum_track = NULL; //!offset parameter GtkWidget *spinner_silence_offset = NULL; //!threshold parameter GtkWidget *spinner_silence_threshold; //!remove silence check button (silence mode parameter GtkWidget *silence_remove_silence = NULL; // @} /*!\defgroup silencesplitparameters silence split parameters @{ */ gfloat silence_threshold_value = SPLT_DEFAULT_PARAM_THRESHOLD; gfloat silence_offset_value = SPLT_DEFAULT_PARAM_OFFSET; gint silence_number_of_tracks = SPLT_DEFAULT_PARAM_TRACKS; gfloat silence_minimum_length = SPLT_DEFAULT_PARAM_MINIMUM_LENGTH; gfloat silence_minimum_track_length = SPLT_DEFAULT_PARAM_MINIMUM_TRACK_LENGTH; gboolean silence_remove_silence_between_tracks = FALSE; //@} /*!\defgroup SplitOptionGroup options for splitting \{ */ extern gint timer_active; extern gint player_seconds, player_minutes, player_hundr_secs; extern splt_state *the_state; extern int selected_player; //the percent progress bar extern GtkWidget *percent_progress_bar; extern gfloat current_time; extern gchar *filename_to_split; extern gchar *filename_path_of_split; extern gchar *filename_path_of_split; extern GtkWidget *cancel_button; //if we are currently splitting extern gint we_are_splitting; //main window extern GtkWidget *window; extern GtkWidget *output_entry; extern gint debug_is_active; extern GtkWidget *names_from_filename; //@} extern void put_split_filename(const char *filename,int progress_data); void copy_filename_to_current_description(const gchar *fname); /*! updates add button Makes the add button show whether the spinners splitpoint is already in the table or not */ void update_add_button() { if (check_if_splitpoint_does_not_exists(tree_view, spin_mins, spin_secs, spin_hundr_secs,-1)) { gtk_widget_set_sensitive(GTK_WIDGET(add_button), TRUE); } else { gtk_widget_set_sensitive(GTK_WIDGET(add_button), FALSE); } } //!updates the minutes from the spinner void update_minutes_from_spinner(GtkWidget *widget, gpointer data) { spin_mins = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner_minutes)); update_add_button(); } //!updates the seconds from the spinner void update_seconds_from_spinner( GtkWidget *widget, gpointer data ) { spin_secs = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner_seconds)); update_add_button(); } //!updates the hundredth of seconds for the spinner void update_hundr_secs_from_spinner( GtkWidget *widget, gpointer data ) { spin_hundr_secs = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner_hundr_secs)); update_add_button(); } //!creates the model for the tree, gtkliststore GtkTreeModel *create_model() { GtkListStore *model; model = gtk_list_store_new (NUM_COLUMNS, G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_INT, G_TYPE_INT, G_TYPE_INT, G_TYPE_STRING, GDK_TYPE_PIXBUF, GDK_TYPE_PIXBUF); return GTK_TREE_MODEL (model); } //!order the number column void order_length_column(GtkTreeView *tree_view) { //number to be put in the number column //we start at 0 gint number = 0; GtkTreeIter iter; GtkTreeIter iter2; GtkTreePath *path = NULL,*path2 = NULL; GtkTreeModel *model; //data from the current line gint line_mins,line_secs,line_hundr; //data from the line+1 gint line1_mins,line1_secs,line1_hundr; //final result gint result_mins = 0, result_secs = 0,result_hundr = 0; //the new string that we write gchar new_length_string[30]; model = gtk_tree_view_get_model(tree_view); //for each column for(number = 0;number < splitnumber; number++) { path = gtk_tree_path_new_from_indices (number ,-1); //get the iter correspondig to the path gtk_tree_model_get_iter(model, &iter, path); //if not the last if (number != splitnumber-1) { path2 = gtk_tree_path_new_from_indices (number+1 ,-1); //get the iter correspondig to the path gtk_tree_model_get_iter(model, &iter2, path2); gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, COL_MINUTES, &line_mins, COL_SECONDS, &line_secs, COL_HUNDR_SECS, &line_hundr, -1); gtk_tree_model_get(GTK_TREE_MODEL(model), &iter2, COL_MINUTES, &line1_mins, COL_SECONDS, &line1_secs, COL_HUNDR_SECS, &line1_hundr, -1); //we put the result in result_* result_mins = line1_mins - line_mins; //if the seconds are less than 0 if ((result_secs = line1_secs - line_secs) < 0) { //we calculate the right seconds result_secs = 60 - line_secs + line1_secs; result_mins--; } //if the hundreths are less than 0 if ((result_hundr = line1_hundr - line_hundr) < 0) { result_hundr = 100 - line_hundr + line1_hundr; result_secs--; if (result_secs < 0) { result_mins--;result_secs = 0; } } //we write the new string g_snprintf(new_length_string,30, "%d:%02d:%02d",result_mins, result_secs,result_hundr); //free memory gtk_tree_path_free(path2); } else { g_snprintf(new_length_string,30,"%s","-"); } //free memory gtk_tree_path_free(path); //we put the string in the case gtk_list_store_set (GTK_LIST_STORE (model), &iter, COL_NUMBER, new_length_string, -1); } } //! checks if splitpoints exists in the table and is different from current_split gboolean check_if_splitpoint_does_not_exists(GtkTreeView *tree_view, gint minutes, gint seconds, gint hundr_secs, gint current_split) { GtkTreeModel *model; GtkTreeIter iter; //minutes and seconds from the column gint tree_minutes; gint tree_seconds; gint tree_hundr_secs; model = gtk_tree_view_get_model(tree_view); //for getting row number GtkTreePath *path = NULL; gint i; //if the table is not empty //get iter number if(gtk_tree_model_get_iter_first(model, &iter)) { gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, COL_MINUTES, &tree_minutes, COL_SECONDS, &tree_seconds, COL_HUNDR_SECS, &tree_hundr_secs, -1); //supposing we have a finite tree, so it will break somehow while(TRUE) { gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, COL_MINUTES, &tree_minutes, COL_SECONDS, &tree_seconds, COL_HUNDR_SECS, &tree_hundr_secs, -1); //we get the current line path = gtk_tree_model_get_path(model, &iter); i = gtk_tree_path_get_indices (path)[0]; //if we already have the splitpoints in the table, return //FALSE if ((minutes == tree_minutes) && (seconds == tree_seconds) && (hundr_secs == tree_hundr_secs) && (i != current_split)) { //free memory gtk_tree_path_free (path); return FALSE; } //free memory gtk_tree_path_free (path); //go to next iter number(row) if(!gtk_tree_model_iter_next(model, &iter)) break; } } //if everything is ok, //and we have no row containing the splitpoint, return TRUE; } /*! checks if the name of the current track is already in use \param descr The name of the current track \param number The number of the track we don't want to compare our track name with \result TRUE if the new track name for track (number) is unique */ gboolean check_if_description_exists(gchar *descr, gint number) { GtkTreeModel *model; GtkTreeIter iter; model = gtk_tree_view_get_model(tree_view); gchar *description; //we count the rows gint count = 0; //if the table is not empty //get iter number if(gtk_tree_model_get_iter_first(model, &iter)) { // Todo: Do the next 2 lines make any sense? // I mean: They will be repeated later. gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, COL_DESCRIPTION,&description, -1); //freeing memory g_free(description); //supposing we have a finite tree, so it will break somehow while(TRUE) { gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, COL_DESCRIPTION,&description, -1); //if we already have the description in the table //FALSE if (description != NULL) if (strcmp(descr, description) == 0) if (count != number) { //freeing memory g_free(description); return FALSE; } //freeing memory g_free(description); //go to next iter number(row) if(!gtk_tree_model_iter_next(model, &iter)) break; count ++; } } return TRUE; } //!Gets the number of the first splitpoint with selected "Keep" checkbox gint get_first_splitpoint_selected() { gint splitpoint_selected = -1; //we get the selection and change the selected splitpoint on //the player GtkTreeModel *model; model = gtk_tree_view_get_model(tree_view); GtkTreeSelection *selection; selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); //our selected list GList *selected_list = NULL; selected_list = gtk_tree_selection_get_selected_rows(GTK_TREE_SELECTION(selection), &model); //if we have something in the selected list if (g_list_length(selected_list) > 0) { //get the first element GList *current_element = NULL; current_element = g_list_first(selected_list); //the path GtkTreePath *path; path = current_element->data; splitpoint_selected = gtk_tree_path_get_indices (path)[0]; //we free the selected elements g_list_foreach (selected_list, (GFunc)gtk_tree_path_free, NULL); g_list_free (selected_list); } return splitpoint_selected; } //!row selection event void row_selection_event() { if(!gtk_widget_get_sensitive(remove_row_button)) gtk_widget_set_sensitive(GTK_WIDGET(remove_row_button), TRUE); } /*! Set the name of the splitpoint (number) to (descr) \param descr the new name of the split point \param number The number of the split point If any split point with a different number already uses the name we want we chose for this split point this function adds a number as a postfix (or updates the already-existing postfix) to force the new splitpoint's name. do be unique. */ void update_current_description(gchar *descr, gint number) { gint ll = 0; g_snprintf(current_description,255,"%s",descr); while (ll < splitnumber) { //if we already have the description if(!check_if_description_exists(current_description, number)) { //we cut the part _* from the string and put //it back gchar *tmp = NULL; gchar *t = current_description; while ((t = strstr(t, _("_part"))) != NULL) { tmp = t++; } if (tmp != NULL) { *tmp = '\0'; } gchar *temp = g_strdup(current_description); g_snprintf(current_description, 255, _("%s_part%d"), temp, ll + 2); g_free(temp); } ll++; } } /*!returns secs, mins, hundr of secs from a time not used for now */ void get_hundr_secs_mins_time(gint time_pos, gint *time_hundr, gint *time_secs,gint *time_mins) { *time_hundr = time_pos % 100; time_pos = time_pos / 100; *time_secs = time_pos % 60; time_pos = time_pos / 60; *time_mins = time_pos; } //!selects a splitpoint void select_splitpoint(gint index) { GtkTreeModel *model; GtkTreePath *path; GtkTreeIter iter; GtkTreeSelection *selection; selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); //we get the model model = gtk_tree_view_get_model(tree_view); //we get the path path = gtk_tree_path_new_from_indices (index ,-1); //we get iter gtk_tree_model_get_iter(model, &iter, path); gtk_tree_selection_unselect_all(selection); gtk_tree_selection_select_iter(selection, &iter); //we free the path gtk_tree_path_free(path); remove_status_message(); } /*! removes a splitpoint \param index Number of the split point \param stop_preview means we stop preview if necessary */ void remove_splitpoint(gint index,gint stop_preview) { //remove values from the splitpoint array g_array_remove_index (splitpoints, index); GtkTreeModel *model; GtkTreePath *path; GtkTreeIter iter; //we get the model model = gtk_tree_view_get_model(tree_view); //we get the path path = gtk_tree_path_new_from_indices (index ,-1); //we get iter gtk_tree_model_get_iter(model, &iter, path); //we cancel quick preview if necessary if (((index == preview_start_splitpoint) && (stop_preview))|| ((index == quick_preview_end_splitpoint) && (quick_preview_end_splitpoint == (splitnumber-1))&& (stop_preview))) { cancel_quick_preview_all(); } //remove from list gtk_list_store_remove (GTK_LIST_STORE (model), &iter); //we free the path gtk_tree_path_free(path); splitnumber--; //if we don't have the first selected, we hide remove button if (get_first_splitpoint_selected() == -1) { if(gtk_widget_get_sensitive(remove_row_button)) gtk_widget_set_sensitive(GTK_WIDGET(remove_row_button), FALSE); } //if we have no more splitpoints, disable buttons if (splitnumber == 0) { //disable remove all button if(gtk_widget_get_sensitive(remove_all_button)) gtk_widget_set_sensitive(GTK_WIDGET(remove_all_button), FALSE); } remove_status_message(); order_length_column(tree_view); remove_status_message(); update_add_button(); check_update_down_progress_bar(); refresh_drawing_area(); } /*!Set all values of a split point \param new_point All values for this split point \param index The number of this split point Will display an error in the message bar if a splitpoint with a different index number with exactly the same time value exists and otherwise update the split point. */ void update_splitpoint(gint index, Split_point new_point) { int splitpoint_does_not_exists = check_if_splitpoint_does_not_exists(tree_view, new_point.mins, new_point.secs, new_point.hundr_secs,-1); Split_point old_point = g_array_index(splitpoints, Split_point, index); if (splitpoint_does_not_exists || (!splitpoint_does_not_exists && old_point.checked != new_point.checked)) { first_splitpoint_selected = get_first_splitpoint_selected(); gchar *description = NULL; description = get_splitpoint_name(index); g_snprintf(current_description, 255, "%s", description); g_free(description); //we remove the splitpoint, then we add it remove_splitpoint(index,FALSE); add_splitpoint(new_point,index); } else { //don't put error if we move the same splitpoint //on the same place if ((new_point.mins == old_point.mins) && (new_point.secs == old_point.secs) && (new_point.hundr_secs == old_point.hundr_secs)) { } else { //if we already have a equal splitpoint put_status_message(_(" error: you already have the splitpoint in table")); } } } /*!Set a splitpoint's time value \param index The split point's number \param time the new time value */ void update_splitpoint_from_time(gint index, gdouble time) { //if we have another splitpoint on the same place //we don't add it Split_point new_point; get_hundr_secs_mins_time((gint)time, &new_point.hundr_secs, &new_point.secs, &new_point.mins); Split_point old_point = g_array_index(splitpoints, Split_point, index); new_point.checked = old_point.checked; update_splitpoint(index, new_point); } /*!Toggles a splitpoint's "Keep" flag \param index is the position in the GArray with splitpoints aka the split point's number */ void update_splitpoint_check(gint index) { Split_point old_point = g_array_index(splitpoints, Split_point, index); old_point.checked ^= 1; update_splitpoint(index, old_point); } //!event for editing a cell void cell_edited_event (GtkCellRendererText *cell, gchar *path_string, gchar *new_text, gpointer data) { GtkTreeView *tree_view = (GtkTreeView *)data; GtkTreeModel *model; GtkTreePath *path = gtk_tree_path_new_from_string (path_string); GtkTreeIter iter; //indice gint i; //old splitpoint, and new one that will replace the old one Split_point old_point; Split_point new_point; model = gtk_tree_view_get_model(tree_view); //get the column number gint col = GPOINTER_TO_INT(g_object_get_data (G_OBJECT(cell), "col")); //get iter number gtk_tree_model_get_iter (model, &iter, path); //get the indice i = gtk_tree_path_get_indices (path)[0]; old_point = g_array_index(splitpoints, Split_point, i); new_point.checked = old_point.checked; //check which column switch (col) { case COL_DESCRIPTION: update_current_description(new_text, i); //put the new content in the list gtk_list_store_set (GTK_LIST_STORE (model), &iter, col, current_description, -1); if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(names_from_filename))) { const gchar *fname = inputfilename_get(); copy_filename_to_current_description(fname); } else { g_snprintf(current_description, 255, "%s", _("description here")); } break; //seconds column case COL_SECONDS: new_point.mins = old_point.mins; new_point.secs = atoi(new_text); new_point.hundr_secs = old_point.hundr_secs; if (new_point.secs < 0) { new_point.secs = 0; } if (new_point.secs > 59) { new_point.secs = 59; } update_splitpoint(i,new_point); break; //minutes column case COL_MINUTES: new_point.mins = atoi(new_text); new_point.secs = old_point.secs; new_point.hundr_secs = old_point.hundr_secs; if (new_point.mins < 0) { new_point.mins = 0; } if (new_point.mins > INT_MAX/6000) { new_point.mins = INT_MAX/6000; } update_splitpoint(i,new_point); break; //hundreth column case COL_HUNDR_SECS: new_point.mins = old_point.mins; new_point.secs = old_point.secs; new_point.hundr_secs = atoi(new_text); if (new_point.hundr_secs < 0) { new_point.hundr_secs = 0; } if (new_point.hundr_secs > 99) { new_point.hundr_secs = 99; } update_splitpoint(i,new_point); break; default: break; } //free memory gtk_tree_path_free (path); } //adds a splitpoint from the player void add_splitpoint_from_player(GtkWidget *widget, gpointer data) { if (timer_active) { Split_point my_split_point; //get minutes and seconds my_split_point.mins = player_minutes; my_split_point.secs = player_seconds; my_split_point.hundr_secs = player_hundr_secs; my_split_point.checked = TRUE; add_splitpoint(my_split_point,-1); } } void clear_current_description(void) { update_current_description(_("description here"), -1); } void copy_filename_to_current_description(const gchar *fname) { if (strcmp(fname, "") == 0) { clear_current_description(); } gchar *tmp; gchar *basename = g_path_get_basename(fname); // create copy of this string gchar *temp = g_strdup(basename); // last occurence of '.' distinguishes the extensions tmp = strrchr(temp,'.'); if (tmp != NULL) { // there is a dot, kill the rest of the word (which is // extension) *tmp = '\0'; } g_snprintf(current_description, 255, "%s", temp); g_free(temp); } /*! adds a splitpoint \param my_split_point The data for our new split point \param old_index used when we update a splitpoint to see where we had the play_preview point */ void add_splitpoint(Split_point my_split_point, gint old_index) { GtkTreeIter iter; GtkTreeModel *model; if(check_if_splitpoint_does_not_exists(tree_view, my_split_point.mins, my_split_point.secs, my_split_point.hundr_secs,-1)) { gchar *temp = g_strdup(current_description); update_current_description(temp, -1); if (temp) { free(temp); temp = NULL; } model = gtk_tree_view_get_model(tree_view); int k = 0; gint tree_minutes; gint tree_seconds; gint tree_hundr_secs; //if the table is not empty if(gtk_tree_model_get_iter_first(model, &iter)) { //for all the splitnumbers while (k < splitnumber) { //we get the first //get iter number //get minutes and seconds for the first row gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, COL_MINUTES, &tree_minutes, COL_SECONDS, &tree_seconds, COL_HUNDR_SECS, &tree_hundr_secs, -1); //if first row minutes are superior to next row minutes if (my_split_point.mins < tree_minutes) { break; } else //if minutes equal, check the seconds if (my_split_point.mins == tree_minutes) { //if seconds equal, check hundreth if (my_split_point.secs < tree_seconds) { break; } else //if seconds equal, check hundreth if (my_split_point.secs == tree_seconds) { //we check the hundred of seconds if (my_split_point.hundr_secs < tree_hundr_secs) { break; } } } //put the next row in iter gtk_tree_model_iter_next(model, &iter); k++; } //insert line gtk_list_store_insert(GTK_LIST_STORE(model), &iter,k--); //put the values to the splitpoint array g_array_insert_val(splitpoints,k+1,my_split_point); } else { gtk_list_store_append (GTK_LIST_STORE (model), &iter); g_array_append_val(splitpoints,my_split_point); } splitnumber++; //we keep the selection on the previous splipoint if ((first_splitpoint_selected == old_index) && (old_index != -1)) { GtkTreePath *path; path = gtk_tree_model_get_path(model, &iter); gtk_tree_view_set_cursor (tree_view,path,NULL,FALSE); gtk_tree_path_free(path); } if (quick_preview) { //if we move the current start preview splitpoint //at the right of the current time, we cancel preview if (old_index == preview_start_splitpoint) { if (current_time < get_splitpoint_time(preview_start_splitpoint)/10) { cancel_quick_preview(); } } } //we manage the play preview here if (old_index != -1) { //if we have a split preview on going //if we move the point from the left to the right of the //the start preview splitpoint if ((old_index < preview_start_splitpoint)) { if ((k+1) >= preview_start_splitpoint) { preview_start_splitpoint--; quick_preview_end_splitpoint = preview_start_splitpoint+1; } } else { //if we move from the right of the split preview //to his left if ((old_index > preview_start_splitpoint)) { if ((k+1) <= preview_start_splitpoint) { preview_start_splitpoint++; quick_preview_end_splitpoint = preview_start_splitpoint+1; } } else { //if we move the start splitpoint on the right of //the end splitpoint if (old_index == preview_start_splitpoint) { if ((k+1) > preview_start_splitpoint) { //we add how many splitpoints //we passed on preview_start_splitpoint += (k+1)-preview_start_splitpoint; quick_preview_end_splitpoint = preview_start_splitpoint+1; } else { //if we move the start splitpoint at the left if ((k+1) < preview_start_splitpoint) { //we remove how many splitpoints //we passed on preview_start_splitpoint -= preview_start_splitpoint-(k+1); quick_preview_end_splitpoint = preview_start_splitpoint+1; } } } } } if (preview_start_splitpoint == (splitnumber-1)) { cancel_quick_preview_all(); } } else { //if we add a splitpoint at the left of the quick //preview start, add 1 if ((k+1) <= preview_start_splitpoint) { preview_start_splitpoint ++; quick_preview_end_splitpoint = preview_start_splitpoint+1; } } //put values in the line //sets text in the minute, second and milisecond column gtk_list_store_set (GTK_LIST_STORE (model), &iter, COL_CHECK,my_split_point.checked, COL_DESCRIPTION,current_description, COL_MINUTES,my_split_point.mins, COL_SECONDS,my_split_point.secs, COL_HUNDR_SECS,my_split_point.hundr_secs, -1); //enable remove all rows button if needed if(!gtk_widget_get_sensitive(remove_all_button)) { gtk_widget_set_sensitive(GTK_WIDGET(remove_all_button), TRUE); } order_length_column(tree_view); remove_status_message(); } else { //if we already have a equal splitpoint put_status_message(_(" error: you already have the splitpoint in table")); } if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(names_from_filename))) { const gchar *fname = inputfilename_get(); copy_filename_to_current_description(fname); } else { g_snprintf(current_description, 255, "%s", _("description here")); } update_add_button(); refresh_drawing_area(); check_update_down_progress_bar(); } //!adds a row to the table void add_row(gboolean checked) { Split_point my_split_point; my_split_point.mins = spin_mins; my_split_point.secs = spin_secs; my_split_point.hundr_secs = spin_hundr_secs; my_split_point.checked = checked; add_splitpoint(my_split_point,-1); } void add_row_clicked(GtkWidget *button, gpointer data) { add_row(TRUE); } //!set splitpints from silence detection gpointer detect_silence_and_set_splitpoints(gpointer data) { gint should_trim = GPOINTER_TO_INT(data); gint err = SPLT_OK; enter_threads(); gtk_widget_set_sensitive(GTK_WIDGET(scan_silence_button), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(scan_trim_silence_button), FALSE); gtk_widget_set_sensitive(cancel_button, TRUE); filename_to_split = inputfilename_get(); gchar *format = strdup(gtk_entry_get_text(GTK_ENTRY(output_entry))); exit_threads(); mp3splt_set_filename_to_split(the_state, filename_to_split); mp3splt_erase_all_splitpoints(the_state, &err); if (get_checked_output_radio_box() == 0) { mp3splt_set_oformat(the_state, format, &err); } if (format) { free(format); format = NULL; } mp3splt_set_int_option(the_state, SPLT_OPT_PRETEND_TO_SPLIT, SPLT_TRUE); mp3splt_set_split_filename_function(the_state, NULL); int old_split_mode = mp3splt_get_int_option(the_state, SPLT_OPT_SPLIT_MODE, &err); int old_tags_option = mp3splt_get_int_option(the_state, SPLT_OPT_TAGS, &err); mp3splt_set_int_option(the_state, SPLT_OPT_TAGS, SPLT_TAGS_ORIGINAL_FILE); if (err >= 0) { we_are_splitting = TRUE; if (should_trim) { mp3splt_set_trim_silence_points(the_state, &err); } else { mp3splt_set_silence_points(the_state, &err); } we_are_splitting = FALSE; } mp3splt_set_int_option(the_state, SPLT_OPT_TAGS, old_tags_option); mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, old_split_mode); mp3splt_set_int_option(the_state, SPLT_OPT_PRETEND_TO_SPLIT, SPLT_FALSE); mp3splt_set_split_filename_function(the_state,put_split_filename); enter_threads(); if (err >= 0) { update_splitpoints_from_the_state(); } print_status_bar_confirmation(err); gtk_widget_set_sensitive(cancel_button, FALSE); gtk_widget_set_sensitive(GTK_WIDGET(scan_silence_button), TRUE); gtk_widget_set_sensitive(GTK_WIDGET(scan_trim_silence_button), TRUE); exit_threads(); return NULL; } //!start thread with 'set splitpints from silence detection' void detect_silence_and_add_splitpoints_start_thread() { create_thread(detect_silence_and_set_splitpoints, GINT_TO_POINTER(SPLT_FALSE), TRUE, NULL); } void detect_silence_and_add_trim_splitpoints_start_thread() { create_thread(detect_silence_and_set_splitpoints, GINT_TO_POINTER(SPLT_TRUE), TRUE, NULL); } //!update silence parameters when 'widget' changes void update_silence_parameters(GtkWidget *widget, gpointer data) { silence_threshold_value = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spinner_silence_threshold)); if (spinner_silence_offset != NULL) { silence_offset_value = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spinner_silence_offset)); } if (spinner_silence_number_tracks != NULL) { silence_number_of_tracks = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spinner_silence_number_tracks)); } if (spinner_silence_minimum != NULL) { silence_minimum_length = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spinner_silence_minimum)); } if (spinner_silence_minimum_track != NULL) { silence_minimum_track_length = gtk_spin_button_get_value(GTK_SPIN_BUTTON(spinner_silence_minimum_track)); } if (silence_remove_silence != NULL) { silence_remove_silence_between_tracks = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(silence_remove_silence)); } } //!action when checking the 'remove silence' button void silence_remove_silence_checked(GtkToggleButton *button, gpointer data) { update_silence_parameters(GTK_WIDGET(button), data); } void create_trim_silence_window(GtkWidget *button, gpointer *data) { GtkWidget *silence_detection_window = gtk_dialog_new_with_buttons(_("Set trim splitpoints using silence detection"), GTK_WINDOW(window), GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL, GTK_STOCK_OK, GTK_RESPONSE_YES, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL); gtk_widget_set_size_request(silence_detection_window, 300, 90); GtkWidget *general_inside_vbox = gtk_vbox_new(FALSE, 0); //add silence parameters GtkWidget *horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(general_inside_vbox), horiz_fake, FALSE, FALSE, 10); //vertical parameter box GtkWidget *param_vbox = gtk_vbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(horiz_fake), param_vbox, FALSE, FALSE, 25); //horizontal box fake for threshold level horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); //threshold level GtkWidget *label = gtk_label_new(_("Threshold level (dB):")); gtk_box_pack_start(GTK_BOX(horiz_fake), label, FALSE, FALSE, 0); //adjustement for the threshold spinner GtkAdjustment *adj = (GtkAdjustment *) gtk_adjustment_new(0.0, -96.0, 0.0, 0.5, 10.0, 0.0); //the threshold spinner spinner_silence_threshold = gtk_spin_button_new(adj, 0.5, 2); //set not editable gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_silence_threshold, FALSE, FALSE, 6); //we set the default parameters for the silence split gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_silence_threshold), silence_threshold_value); //add actions when changing the values g_signal_connect(G_OBJECT(spinner_silence_threshold), "value_changed", G_CALLBACK(update_silence_parameters), NULL); gtk_widget_show_all(general_inside_vbox); gtk_container_add(GTK_CONTAINER( gtk_dialog_get_content_area(GTK_DIALOG(silence_detection_window))), general_inside_vbox); //result of the dialog window gint result = gtk_dialog_run(GTK_DIALOG(silence_detection_window)); //we set the silence parameters mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_THRESHOLD, silence_threshold_value); mp3splt_set_int_option(the_state, SPLT_OPT_DEBUG_MODE, debug_is_active); gtk_widget_destroy(silence_detection_window); if (result == GTK_RESPONSE_YES) { detect_silence_and_add_trim_splitpoints_start_thread(); } } //!event for clicking the 'detect silence and add splitpoints' button void create_detect_silence_and_add_splitpoints_window(GtkWidget *button, gpointer *data) { GtkWidget *silence_detection_window = gtk_dialog_new_with_buttons(_("Set splitpoints from silence detection"), GTK_WINDOW(window), GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_MODAL, GTK_STOCK_OK, GTK_RESPONSE_YES, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, NULL); GtkWidget *general_inside_vbox = gtk_vbox_new(FALSE, 0); //add silence parameters GtkWidget *horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(general_inside_vbox), horiz_fake, FALSE, FALSE, 10); //vertical parameter box GtkWidget *param_vbox; param_vbox = gtk_vbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(horiz_fake), param_vbox, FALSE, FALSE, 25); //horizontal box fake for threshold level horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); //threshold level GtkWidget *label = gtk_label_new(_("Threshold level (dB):")); gtk_box_pack_start(GTK_BOX(horiz_fake), label, FALSE, FALSE, 0); //adjustement for the threshold spinner GtkAdjustment *adj = (GtkAdjustment *) gtk_adjustment_new(0.0, -96.0, 0.0, 0.5, 10.0, 0.0); //the threshold spinner spinner_silence_threshold = gtk_spin_button_new(adj, 0.5, 2); //set not editable gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_silence_threshold, FALSE, FALSE, 6); //horizontal box fake for the offset level horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); //offset level label = gtk_label_new(_("Cutpoint offset (0 is the begin of silence," "and 1 the end):")); gtk_box_pack_start(GTK_BOX(horiz_fake), label, FALSE, FALSE, 0); //adjustement for the offset spinner adj = (GtkAdjustment *) gtk_adjustment_new(0.0, -2, 2, 0.05, 10.0, 0.0); //the offset spinner spinner_silence_offset = gtk_spin_button_new (adj, 0.05, 2); gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_silence_offset, FALSE, FALSE, 6); //horizontal box fake for the number of tracks horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); //number of tracks level label = gtk_label_new(_("Number of tracks (0 means all tracks):")); gtk_box_pack_start(GTK_BOX(horiz_fake), label, FALSE, FALSE, 0); //number of tracks adj = (GtkAdjustment *)gtk_adjustment_new(0.0, 0, 2000, 1, 10.0, 0.0); //the number of tracks spinner spinner_silence_number_tracks = gtk_spin_button_new (adj, 1, 0); gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_silence_number_tracks, FALSE, FALSE, 6); //horizontal box fake for minimum length parameter horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); //the minimum length parameter label = gtk_label_new(_("Minimum silence length (seconds):")); gtk_box_pack_start(GTK_BOX(horiz_fake), label, FALSE, FALSE, 0); //minimum silence length (seconds) adj = (GtkAdjustment *)gtk_adjustment_new(0.0, 0, 2000, 0.5, 10.0, 0.0); //the minimum silence length in seconds spinner_silence_minimum = gtk_spin_button_new(adj, 1, 2); gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_silence_minimum, FALSE, FALSE, 6); //the minimum track length parameter horiz_fake = gtk_hbox_new(FALSE,0); gtk_box_pack_start(GTK_BOX(param_vbox), horiz_fake, FALSE, FALSE, 0); label = gtk_label_new(_("Minimum track length (seconds):")); gtk_box_pack_start(GTK_BOX(horiz_fake), label, FALSE, FALSE, 0); adj = (GtkAdjustment *)gtk_adjustment_new(0.0, 0, 2000, 0.5, 10.0, 0.0); spinner_silence_minimum_track = gtk_spin_button_new(adj, 1, 2); gtk_box_pack_start(GTK_BOX(horiz_fake), spinner_silence_minimum_track, FALSE, FALSE, 6); //remove silence (rm): allows you to remove the silence between //tracks silence_remove_silence = gtk_check_button_new_with_mnemonic(_("_Remove silence between tracks")); gtk_box_pack_start(GTK_BOX(param_vbox), silence_remove_silence, FALSE, FALSE, 0); //we set the default parameters for the silence split gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_silence_threshold), silence_threshold_value); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_silence_offset), silence_offset_value); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_silence_number_tracks), silence_number_of_tracks); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_silence_minimum), silence_minimum_length); gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinner_silence_minimum_track), silence_minimum_track_length); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(silence_remove_silence), silence_remove_silence_between_tracks); //add actions when changing the values g_signal_connect(G_OBJECT(spinner_silence_threshold), "value_changed", G_CALLBACK(update_silence_parameters), NULL); g_signal_connect(G_OBJECT(spinner_silence_offset), "value_changed", G_CALLBACK(update_silence_parameters), NULL); g_signal_connect(G_OBJECT(spinner_silence_number_tracks), "value_changed", G_CALLBACK(update_silence_parameters), NULL); g_signal_connect(G_OBJECT(spinner_silence_minimum), "value_changed", G_CALLBACK(update_silence_parameters), NULL); g_signal_connect(G_OBJECT(spinner_silence_minimum_track), "value_changed", G_CALLBACK(update_silence_parameters), NULL); g_signal_connect(G_OBJECT(silence_remove_silence), "toggled", G_CALLBACK(silence_remove_silence_checked), NULL); gtk_widget_show_all(general_inside_vbox); gtk_container_add(GTK_CONTAINER( gtk_dialog_get_content_area(GTK_DIALOG(silence_detection_window))), general_inside_vbox); //result of the dialog window gint result = gtk_dialog_run(GTK_DIALOG(silence_detection_window)); //we set the silence parameters mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_THRESHOLD, silence_threshold_value); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_OFFSET, silence_offset_value); mp3splt_set_int_option(the_state, SPLT_OPT_PARAM_NUMBER_TRACKS, silence_number_of_tracks); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_MIN_LENGTH, silence_minimum_length); mp3splt_set_float_option(the_state, SPLT_OPT_PARAM_MIN_TRACK_LENGTH, silence_minimum_track_length); mp3splt_set_int_option(the_state, SPLT_OPT_PARAM_REMOVE_SILENCE, silence_remove_silence_between_tracks); mp3splt_set_int_option(the_state, SPLT_OPT_DEBUG_MODE, debug_is_active); gtk_widget_destroy(silence_detection_window); if (result == GTK_RESPONSE_YES) { detect_silence_and_add_splitpoints_start_thread(); } } //!remove a row from the table void remove_row(GtkWidget *widget, gpointer data) { GtkTreeSelection *selection; GList *selected_list = NULL; GList *current_element = NULL; GtkTreeView *tree_view = (GtkTreeView *)data; GtkTreeModel *model; //indice gint i; //the path GtkTreePath *path; model = gtk_tree_view_get_model(tree_view); //get the selection selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree_view)); //get selected rows selected_list = gtk_tree_selection_get_selected_rows(selection, &model); //while the list is not empty and we have numbers in the table //(splitnumber >0) while ((g_list_length(selected_list) > 0) && (splitnumber > 0)) { //get the last element current_element = g_list_last(selected_list); path = current_element->data; i = gtk_tree_path_get_indices (path)[0]; remove_splitpoint(i,TRUE); //remove the path from the selected list selected_list = g_list_remove(selected_list, path); //free memory gtk_tree_path_free(path); } //we free the selected elements g_list_foreach (selected_list, (GFunc)gtk_tree_path_free, NULL); g_list_free (selected_list); } //!removes all rows from the table void remove_all_rows(GtkWidget *widget, gpointer data) { GtkTreeIter iter; GtkTreeModel *model; model = gtk_tree_view_get_model(tree_view); //for all the splitnumbers while (splitnumber > 0) { gtk_tree_model_get_iter_first(model, &iter); gtk_list_store_remove (GTK_LIST_STORE (model), &iter); //remove values from the splitpoint array g_array_remove_index (splitpoints, (splitnumber-1)); splitnumber--; } //disable remove all button if(gtk_widget_get_sensitive(remove_all_button)) gtk_widget_set_sensitive(GTK_WIDGET(remove_all_button), FALSE); //disable remove button if(gtk_widget_get_sensitive(remove_row_button)) gtk_widget_set_sensitive(GTK_WIDGET(remove_row_button), FALSE); remove_status_message(); cancel_quick_preview_all(); // update_add_button(); refresh_drawing_area(); check_update_down_progress_bar(); } //!creates and and initialise a spinner GtkWidget *create_init_spinner(GtkWidget *bottomhbox1, gint min, gint max, gchar *label_text, gint type) { GtkWidget *spinner_box = gtk_vbox_new(FALSE, 0); GtkWidget *label = gtk_label_new(label_text); gtk_box_pack_start(GTK_BOX(spinner_box), label, TRUE, FALSE, 0); GtkAdjustment *adj = (GtkAdjustment *) gtk_adjustment_new(0.0, min, max, 1.0, 10.0, 0.0); GtkWidget *spinner = gtk_spin_button_new(adj, 0, 0); gtk_spin_button_set_wrap(GTK_SPIN_BUTTON(spinner), TRUE); if (type == 0) { g_signal_connect(G_OBJECT(spinner), "value_changed", G_CALLBACK(update_minutes_from_spinner), NULL); } else if (type == 1) { g_signal_connect(G_OBJECT(spinner), "value_changed", G_CALLBACK(update_seconds_from_spinner), NULL); } else { g_signal_connect(G_OBJECT(spinner), "value_changed", G_CALLBACK(update_hundr_secs_from_spinner), NULL); } gtk_box_pack_start(GTK_BOX(spinner_box), spinner, TRUE, FALSE, 0); gtk_box_pack_start(GTK_BOX(bottomhbox1), spinner_box, FALSE, FALSE, 5); return spinner; } //!minutes ,seconds spinners ; add, delete buttons GtkWidget *create_init_spinners_buttons(GtkTreeView *tree_view) { GtkWidget *hbox = gtk_hbox_new (FALSE, 0); gtk_container_set_border_width (GTK_CONTAINER (hbox), 0); /* minutes and seconds spinners */ spinner_minutes = create_init_spinner(hbox, 0, INT_MAX/6000, _("Minutes:"), //0 means spinner minutes 0); spinner_seconds = create_init_spinner(hbox, 0, 59, _("Seconds:"), //1 means spinner seconds 1); //hundredth spinner spinner_hundr_secs = create_init_spinner(hbox, 0, 99, _("Hundredths:"), //2 means spinner hundredth 2); /* add button */ add_button = (GtkWidget *)create_cool_button(GTK_STOCK_ADD, _("_Add"), FALSE); gtk_button_set_relief(GTK_BUTTON(add_button), GTK_RELIEF_NONE); gtk_widget_set_sensitive(GTK_WIDGET(add_button), TRUE); g_signal_connect(G_OBJECT(add_button), "clicked", G_CALLBACK(add_row_clicked), tree_view); gtk_box_pack_start (GTK_BOX (hbox), add_button, FALSE, FALSE, 5); gtk_widget_set_tooltip_text(add_button,_("Add splitpoint")); /* remove row button */ remove_row_button = (GtkWidget *) create_cool_button(GTK_STOCK_REMOVE, _("_Remove"), FALSE); gtk_button_set_relief(GTK_BUTTON(remove_row_button), GTK_RELIEF_NONE); gtk_widget_set_sensitive(GTK_WIDGET(remove_row_button), FALSE); g_signal_connect (G_OBJECT (remove_row_button), "clicked", G_CALLBACK (remove_row), tree_view); gtk_box_pack_start (GTK_BOX (hbox), remove_row_button, FALSE, FALSE, 5); gtk_widget_set_tooltip_text(remove_row_button, _("Remove rows")); /* remove all rows button */ remove_all_button = (GtkWidget *) create_cool_button(GTK_STOCK_DELETE, _("R_emove all"), FALSE); gtk_button_set_relief(GTK_BUTTON(remove_all_button), GTK_RELIEF_NONE); gtk_widget_set_sensitive(GTK_WIDGET(remove_all_button), FALSE); g_signal_connect (G_OBJECT (remove_all_button), "clicked", G_CALLBACK (remove_all_rows), tree_view); gtk_box_pack_start (GTK_BOX (hbox), remove_all_button, FALSE, FALSE, 5); gtk_widget_set_tooltip_text(remove_all_button, _("Remove all rows")); return hbox; } //!special buttons like 'set silence from silence detection' GtkWidget *create_init_special_buttons(GtkTreeView *tree_view) { GtkWidget *hbox = gtk_hbox_new(FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(hbox), 0); /* set splitpoints from trim silence detection */ scan_trim_silence_button = (GtkWidget *)create_cool_button(GTK_STOCK_CUT, _("_Trim splitpoints"), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(scan_trim_silence_button), TRUE); g_signal_connect(G_OBJECT(scan_trim_silence_button), "clicked", G_CALLBACK(create_trim_silence_window), NULL); gtk_box_pack_start(GTK_BOX(hbox), scan_trim_silence_button, FALSE, FALSE, 5); gtk_widget_set_tooltip_text(scan_trim_silence_button, _("Set trim splitpoints using silence detection")); /* set splitpoints from silence detection */ scan_silence_button = (GtkWidget *)create_cool_button(GTK_STOCK_ADD, _("_Silence detection"), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(scan_silence_button), TRUE); g_signal_connect(G_OBJECT(scan_silence_button), "clicked", G_CALLBACK(create_detect_silence_and_add_splitpoints_window), NULL); gtk_box_pack_start(GTK_BOX(hbox), scan_silence_button, FALSE, FALSE, 5); gtk_widget_set_tooltip_text(scan_silence_button, _("Set splitpoints from silence detection")); return hbox; } //!returns the hundreths of seconds from a Split_point gint splitpoint_to_hundreths(Split_point point) { return (point.secs + point.mins*60)*1000+ point.hundr_secs * 10; } /*! returns the name of the splitpoint result must be g_free'd after use */ gchar *get_splitpoint_name(gint index) { GtkTreeModel *model; GtkTreeIter iter; GtkTreePath *path = NULL; model = gtk_tree_view_get_model(tree_view); gchar *description = NULL; if(gtk_tree_model_get_iter_first(model, &iter)) { if (index == -1) index = 0; if (index >= 0) { path = gtk_tree_path_new_from_indices (index ,-1); //get the iter correspondig to the path gtk_tree_model_get_iter(model, &iter, path); //we get the description gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, COL_DESCRIPTION,&description, -1); //free memory gtk_tree_path_free(path); } } return description; } //!returns a splitpoint from the table gint get_splitpoint_time(gint this_splitpoint) { if (this_splitpoint != -1) { return splitpoint_to_hundreths( g_array_index(splitpoints, Split_point, this_splitpoint)); } else { return -1; } } gpointer split_preview(gpointer data) { if (this_row+1 != splitnumber) { gint confirmation; int err = 0; mp3splt_erase_all_splitpoints(the_state, &err); mp3splt_erase_all_tags(the_state, &err); mp3splt_append_splitpoint(the_state, preview_start_position / 10, "preview", SPLT_SPLITPOINT); mp3splt_append_splitpoint(the_state, get_splitpoint_time(quick_preview_end_splitpoint)/10, NULL, SPLT_SKIPPOINT); mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_CUSTOM); mp3splt_set_int_option(the_state, SPLT_OPT_SPLIT_MODE, SPLT_OPTION_NORMAL_MODE); enter_threads(); put_options_from_preferences(); //we cut the preferences filename path //to find the ~/.mp3splt directory gchar *fname_path = get_preferences_filename(); fname_path[strlen(fname_path)-18] = '\0'; remove_all_split_rows(); filename_to_split = inputfilename_get(); exit_threads(); mp3splt_set_path_of_split(the_state,fname_path); mp3splt_set_filename_to_split(the_state,filename_to_split); confirmation = mp3splt_split(the_state); enter_threads(); print_status_bar_confirmation(confirmation); gchar *split_file = get_filename_from_split_files(1); if (split_file != NULL) { if (confirmation > 0) { connect_button_event(NULL, NULL); change_current_filename(split_file); g_free(split_file); split_file = NULL; //starts playing, 0 means start playing connect_to_player_with_song(0); } } if (confirmation > 0) { gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(percent_progress_bar), 1.0); gtk_progress_bar_set_text(GTK_PROGRESS_BAR(percent_progress_bar), _(" finished")); } if (fname_path) { g_free(fname_path); fname_path = NULL; } exit_threads(); } else { enter_threads(); put_status_message(_(" cannot split preview last splitpoint")); exit_threads(); } return NULL; } //!the row clicked event, preview the song void preview_song(GtkTreeView *tree_view, GtkTreePath *path, GtkTreeViewColumn *col, gpointer user_data) { gint number = GPOINTER_TO_INT(g_object_get_data (G_OBJECT(col), "col")); //only when clicking on the PREVIEW or SPLIT_PREVIEW columns if (number == COL_PREVIEW || number == COL_SPLIT_PREVIEW) { //only if connected to player if (timer_active) { //we get the split begin position to find the //end position this_row = gtk_tree_path_get_indices (path)[0]; //if we click COL_PREVIEW if (number == COL_PREVIEW) { player_quick_preview(this_row); } else { //if we have the split preview if (number == COL_SPLIT_PREVIEW) { preview_start_position = get_splitpoint_time(this_row); quick_preview_end_splitpoint = this_row+1; create_thread(split_preview, NULL, TRUE, NULL); } } } else { put_status_message(_(" cannot preview, not connected to player")); } } } //!toggle 'check' button static void toggled_splitpoint_event(GtkCellRendererToggle *cell, gchar *path_str, gpointer data) { GtkTreeView *tree_view = (GtkTreeView *)data; GtkTreeModel *model = gtk_tree_view_get_model(tree_view); GtkTreeIter iter; GtkTreePath *path = gtk_tree_path_new_from_string(path_str); gboolean checked = FALSE; //get the current value of the checked gtk_tree_model_get_iter(model, &iter, path); gtk_tree_model_get(model, &iter, COL_CHECK, &checked, -1); //toggle the value checked ^= 1; //get the indice gint index = gtk_tree_path_get_indices (path)[0]; Split_point new_point; Split_point old_point; //put new 'checked' value to splitpoint old_point = g_array_index(splitpoints, Split_point, index); new_point.mins = old_point.mins; new_point.secs = old_point.secs; new_point.hundr_secs = old_point.hundr_secs; new_point.checked = checked; //we update the splitpoint update_splitpoint(index, new_point); //free memory gtk_tree_path_free(path); } //!creates columns for the tree void create_columns (GtkTreeView *tree_view) { //cells renderer GtkCellRendererText *renderer; GtkCellRendererPixbuf *renderer_pix; GtkCellRendererToggle *renderer_toggle; //columns GtkTreeViewColumn *column_number; GtkTreeViewColumn *column_check = NULL; GtkTreeViewColumn *column_description; GtkTreeViewColumn *column_hundr_secs; GtkTreeViewColumn *column_minutes; GtkTreeViewColumn *column_seconds; GtkTreeViewColumn *column_preview; GtkTreeViewColumn *column_split_preview; /* Check point / skip point */ //renderer creation renderer_toggle = GTK_CELL_RENDERER_TOGGLE(gtk_cell_renderer_toggle_new()); //cell edited events g_signal_connect(renderer_toggle, "toggled", G_CALLBACK(toggled_splitpoint_event), tree_view); //enable cell editing g_object_set_data(G_OBJECT(renderer_toggle), "col", GINT_TO_POINTER(COL_CHECK)); column_check = gtk_tree_view_column_new_with_attributes (_("Keep"), GTK_CELL_RENDERER(renderer_toggle), "active", COL_CHECK, NULL); /* description */ //renderer creation renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new ()); //cell edited events g_signal_connect(renderer, "edited", G_CALLBACK(cell_edited_event), tree_view); //enable cell editing g_object_set(renderer, "editable", TRUE, NULL); g_object_set_data(G_OBJECT(renderer), "col", GINT_TO_POINTER(COL_DESCRIPTION)); column_description = gtk_tree_view_column_new_with_attributes (_("Filename"), GTK_CELL_RENDERER(renderer), "text", COL_DESCRIPTION, NULL); /* seconds */ //renderer creation renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new ()); //cell edited events g_signal_connect(renderer, "edited", G_CALLBACK(cell_edited_event), tree_view); //enable cell editing g_object_set(renderer, "editable", TRUE, NULL); g_object_set_data(G_OBJECT(renderer), "col", GINT_TO_POINTER(COL_SECONDS)); column_seconds = gtk_tree_view_column_new_with_attributes (_("Secs"), GTK_CELL_RENDERER(renderer), "text", COL_SECONDS, NULL); /* minutes */ //renderer creation renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new ()); //cell edited events g_signal_connect(renderer, "edited", G_CALLBACK(cell_edited_event), tree_view); //enable cell editing g_object_set(renderer, "editable", TRUE, NULL); g_object_set_data(G_OBJECT(renderer), "col", GINT_TO_POINTER(COL_MINUTES)); column_minutes = gtk_tree_view_column_new_with_attributes (_("Mins"), GTK_CELL_RENDERER(renderer), "text", COL_MINUTES, NULL); /* hundr secs */ //renderer creation renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new ()); //cell edited events g_signal_connect(renderer, "edited", G_CALLBACK(cell_edited_event), tree_view); //enable cell editing g_object_set(renderer, "editable", TRUE, NULL); g_object_set_data(G_OBJECT(renderer), "col", GINT_TO_POINTER(COL_HUNDR_SECS)); column_hundr_secs = gtk_tree_view_column_new_with_attributes (_("Hundr"), GTK_CELL_RENDERER(renderer), "text", COL_HUNDR_SECS, NULL); /* Length column */ //renderer creation renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new ()); g_object_set_data(G_OBJECT(renderer), "col", GINT_TO_POINTER(COL_NUMBER)); //middle alignment g_object_set (G_OBJECT (renderer), "xalign", 1.0, NULL); column_number = gtk_tree_view_column_new_with_attributes (_("Length"), GTK_CELL_RENDERER(renderer), "text", COL_NUMBER, NULL); /* column preview */ //renderer creation renderer_pix = GTK_CELL_RENDERER_PIXBUF(gtk_cell_renderer_pixbuf_new()); //set the icon g_object_set(renderer_pix,"stock-id",GTK_STOCK_MEDIA_PLAY, "stock-size",GTK_ICON_SIZE_MENU,NULL); //create the column column_preview = gtk_tree_view_column_new_with_attributes (_("LiveP"), GTK_CELL_RENDERER(renderer_pix), "pixbuf",COL_PREVIEW, NULL); g_object_set_data(G_OBJECT(column_preview), "col", GINT_TO_POINTER(COL_PREVIEW)); /* split preview */ renderer_pix = GTK_CELL_RENDERER_PIXBUF(gtk_cell_renderer_pixbuf_new()); //set the icon g_object_set(renderer_pix,"stock-id",GTK_STOCK_MEDIA_PLAY, "stock-size",GTK_ICON_SIZE_MENU,NULL); //create the column column_split_preview = gtk_tree_view_column_new_with_attributes (_("SplitP"), GTK_CELL_RENDERER(renderer_pix), "pixbuf",COL_SPLIT_PREVIEW, NULL); g_object_set_data(G_OBJECT(column_split_preview), "col", GINT_TO_POINTER(COL_SPLIT_PREVIEW)); //appends columns to the list of columns of tree_view gtk_tree_view_insert_column (GTK_TREE_VIEW (tree_view), GTK_TREE_VIEW_COLUMN(column_check),COL_DESCRIPTION); gtk_tree_view_insert_column (GTK_TREE_VIEW (tree_view), GTK_TREE_VIEW_COLUMN (column_description),COL_DESCRIPTION); gtk_tree_view_insert_column (GTK_TREE_VIEW (tree_view), GTK_TREE_VIEW_COLUMN (column_minutes),COL_MINUTES); gtk_tree_view_insert_column (GTK_TREE_VIEW (tree_view), GTK_TREE_VIEW_COLUMN (column_seconds),COL_SECONDS); gtk_tree_view_insert_column (GTK_TREE_VIEW (tree_view), GTK_TREE_VIEW_COLUMN (column_hundr_secs),COL_HUNDR_SECS); gtk_tree_view_insert_column (GTK_TREE_VIEW (tree_view), GTK_TREE_VIEW_COLUMN (column_number),COL_NUMBER); gtk_tree_view_insert_column (GTK_TREE_VIEW (tree_view), GTK_TREE_VIEW_COLUMN (column_preview),COL_PREVIEW); gtk_tree_view_insert_column (GTK_TREE_VIEW (tree_view), GTK_TREE_VIEW_COLUMN (column_split_preview), COL_SPLIT_PREVIEW); //middle alignment of the column name gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(column_check), 0.5); gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(column_description), 0.5); gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(column_minutes), 0.5); gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(column_seconds), 0.5); gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(column_hundr_secs), 0.5); gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(column_number), 0.5); gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(column_preview), 0.5); gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(column_split_preview), 0.5); //set the auto resizing for columns gtk_tree_view_column_set_sizing (GTK_TREE_VIEW_COLUMN(column_check), GTK_TREE_VIEW_COLUMN_FIXED); gtk_tree_view_column_set_fixed_width(GTK_TREE_VIEW_COLUMN(column_check), 70); /*gtk_tree_view_column_set_sizing (GTK_TREE_VIEW_COLUMN(column_description), GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_sizing (GTK_TREE_VIEW_COLUMN(column_minutes), GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_sizing (GTK_TREE_VIEW_COLUMN(column_seconds), GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_sizing (GTK_TREE_VIEW_COLUMN(column_hundr_secs), GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_sizing (GTK_TREE_VIEW_COLUMN(column_number), GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_sizing (GTK_TREE_VIEW_COLUMN(column_preview), GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_sizing (GTK_TREE_VIEW_COLUMN(column_split_preview), GTK_TREE_VIEW_COLUMN_AUTOSIZE);*/ //sets resize gtk_tree_view_column_set_resizable(column_description, TRUE); //set column reorderable gtk_tree_view_column_set_reorderable(column_check, TRUE); gtk_tree_view_column_set_reorderable(column_description, TRUE); gtk_tree_view_column_set_reorderable(column_minutes, TRUE); gtk_tree_view_column_set_reorderable(column_seconds, TRUE); gtk_tree_view_column_set_reorderable(column_hundr_secs, TRUE); gtk_tree_view_column_set_reorderable(column_number, TRUE); gtk_tree_view_column_set_reorderable(column_preview, TRUE); gtk_tree_view_column_set_reorderable(column_split_preview, TRUE); //set column expand gtk_tree_view_column_set_expand (column_description, TRUE); } //!Issued when closing the new window after detaching void close_popup_window_event( GtkWidget *window, gpointer data ) { GtkWidget *window_child; window_child = gtk_bin_get_child(GTK_BIN(window)); gtk_widget_reparent(GTK_WIDGET(window_child), GTK_WIDGET(handle_box)); gtk_widget_destroy(window); } //!Issued when we detach the handle void handle_detached_event (GtkHandleBox *handlebox, GtkWidget *widget, gpointer data) { //new window GtkWidget *window; /* window */ window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_widget_reparent(GTK_WIDGET(widget), GTK_WIDGET(window)); g_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (close_popup_window_event), NULL); gtk_widget_show(GTK_WIDGET(window)); } /*!creates the choose splitpoints frame This frame contains the spinners, arrows, the tree, add, remove buttons */ GtkWidget *create_choose_splitpoints_frame(GtkTreeView *tree_view) { /* choose splitpoins vbox */ GtkWidget *choose_splitpoints_vbox = gtk_vbox_new(FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(choose_splitpoints_vbox), 0); /* handle box for detaching */ handle_box = gtk_handle_box_new(); gtk_container_add(GTK_CONTAINER (handle_box), GTK_WIDGET(choose_splitpoints_vbox)); //handle event g_signal_connect(handle_box, "child-detached", G_CALLBACK(handle_detached_event), NULL); /* spinner buttons hbox */ GtkWidget *spinners_buttons_hbox = create_init_spinners_buttons(tree_view); gtk_box_pack_start(GTK_BOX(choose_splitpoints_vbox), spinners_buttons_hbox, FALSE, FALSE, 3); /* horizontal box for the tree */ GtkWidget *tree_hbox = gtk_hbox_new (FALSE, 0); gtk_box_pack_start (GTK_BOX (choose_splitpoints_vbox), tree_hbox, TRUE, TRUE, 0); /* scrolled window for the tree */ GtkWidget *scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW(scrolled_window), GTK_SHADOW_NONE); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_box_pack_start(GTK_BOX(tree_hbox), scrolled_window, TRUE, TRUE, 0); //get the selection GtkTreeSelection *selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_view)); gtk_tree_selection_set_mode(selection, GTK_SELECTION_MULTIPLE); //create columns create_columns(tree_view); //add the tree to the scrolled window gtk_container_add(GTK_CONTAINER(scrolled_window), GTK_WIDGET(tree_view)); /* special buttons like 'set silence from silence detection' */ GtkWidget *special_buttons_hbox = create_init_special_buttons(tree_view); gtk_box_pack_start(GTK_BOX(choose_splitpoints_vbox), special_buttons_hbox, FALSE, FALSE, 2); return handle_box; } static void garray_to_array(GArray *spltpoints, glong *hundredth) { gint i; Split_point point; for(i = 0; i < splitnumber; i++ ) { point = g_array_index(splitpoints, Split_point, i); if (point.mins >= (INT_MAX-1)/6000) { hundredth[i] = LONG_MAX; } else { hundredth[i] = point.mins * 6000 + point.secs * 100 + point.hundr_secs; } } } //!puts the splitpoints into the state void put_splitpoints_in_the_state(splt_state *state) { glong hundr[splitnumber]; garray_to_array(splitpoints, hundr); gint i; //for getting the filename GtkTreeModel *model = gtk_tree_view_get_model(tree_view); GtkTreeIter iter; GtkTreePath *path = NULL; gchar *description = NULL; //we put all the splitpoints with the file names for (i = 0; i < splitnumber; i++) { path = gtk_tree_path_new_from_indices (i ,-1); //get the iter correspondig to the path gtk_tree_model_get_iter(model, &iter, path); //we get the description gtk_tree_model_get(GTK_TREE_MODEL(model), &iter, COL_DESCRIPTION,&description, -1); //get the 'checked' value from the current splitpoint Split_point point = g_array_index(splitpoints, Split_point, i); gint splitpoint_type = SPLT_SPLITPOINT; if (point.checked == FALSE) { splitpoint_type = SPLT_SKIPPOINT; } exit_threads(); mp3splt_append_splitpoint(state,hundr[i], description, splitpoint_type); enter_threads(); //free memory gtk_tree_path_free(path); } } //!creates the tree view GtkTreeView *create_tree_view() { GtkTreeModel *model; //create the model model = create_model(); //create the tree view tree_view = (GtkTreeView *)gtk_tree_view_new_with_model (model); //preview_song callback when clicking on the row g_signal_connect(tree_view,"row-activated", G_CALLBACK(preview_song),tree_view); //set the selection signal for enabling/disabling buttons //the tree selection GtkTreeSelection *selection; selection = gtk_tree_view_get_selection(tree_view); g_signal_connect(selection, "changed", G_CALLBACK(row_selection_event), NULL); return tree_view; } ���������������������������������mp3splt-gtk-0.7.2/src/tree_tab.h��������������������������������������������������������������������0000644�0001750�0001750�00000011656�11753301521�013362� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * * header of tree_tab.c * the tree_tab.c file is used for the Splitpoints tab * (for the splitpoints table) * *********************************************************/ #ifndef _TREE_TAB_H #define _TREE_TAB_H #include "util.h" void add_splitpoint(Split_point my_split_point, gint old_index); gchar *get_splitpoint_name(gint index); gint get_first_splitpoint_selected(); void select_splitpoint(gint index); gint get_splitpoint_time(gint this_splitpoint); void remove_splitpoint(gint index,gint stop_preview); void update_splitpoint(gint index, Split_point new_point); void update_splitpoint_from_time(gint index, gdouble time); void update_splitpoint_check(gint index); void update_add_button(); void update_minutes_from_spinner( GtkWidget *widget, gpointer data ); void update_seconds_from_spinner( GtkWidget *widget, gpointer data ); void update_hundr_secs_from_spinner( GtkWidget *widget, gpointer data ); GtkTreeModel *create_model(); void order_length_column(GtkTreeView *tree_view); gboolean check_if_splitpoint_does_not_exists(GtkTreeView *tree_view, gint minutes, gint seconds, gint hundr_secs, gint current_split); gboolean check_if_description_exists(gchar *descr, gint number); void exchange_elements_from_array(gint element_number1, gint element_number2); void row_selection_event(); void exchange_rows_in_the_tree(gint i, gint j, GtkTreeView *tree_view); void sort_tree(GtkTreeView *tree_view); void update_current_description(gchar *descr, gint number); void cell_edited_event (GtkCellRendererText *cell, gchar *path_string, gchar *new_text, gpointer data); void add_splitpoint_from_player(GtkWidget *widget, gpointer data); void add_row(gint checked); void remove_row (GtkWidget *widget, gpointer data); void remove_all_rows (GtkWidget *widget, gpointer data); GtkWidget *create_init_spinner(GtkWidget *bottomhbox1, gint min, gint max, gchar *label_text, gint type); GtkWidget *create_init_spinners_buttons(GtkTreeView *tree_view); void preview_song (GtkTreeView *tree_view, GtkTreePath *path, GtkTreeViewColumn *col, gpointer user_data); void create_columns (GtkTreeView *tree_view); void close_popup_window_event( GtkWidget *window, gpointer data ); void handle_detached_event (GtkHandleBox *handlebox, GtkWidget *widget, gpointer data); GtkWidget *create_choose_splitpoints_frame(GtkTreeView *tree_view); void put_splitpoints_in_the_state(splt_state *state); GtkTreeView *create_tree_view(); //!The enum telling which item is kept in which column of the splitpoint tree enum { /*! if we enable this splitpoint for split */ COL_CHECK, /*! the filename of the split */ COL_DESCRIPTION, /*! minutes*/ COL_MINUTES, /*! seconds*/ COL_SECONDS, /*! hundreths of a second */ COL_HUNDR_SECS, /*! length of the split song */ COL_NUMBER, /*! preview button */ COL_PREVIEW, /*! split preview button */ COL_SPLIT_PREVIEW, NUM_COLUMNS = 8 } tree_columns; extern GtkTreeView *tree_view; #endif ����������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/freedb_tab.c������������������������������������������������������������������0000644�0001750�0001750�00000042261�11753301524�013644� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************** * \file * The freedb tab * * this file is used for the cddb tab * (for searching on freedb) *********************************************************/ #include <stdlib.h> #include <string.h> #include <gtk/gtk.h> #include <glib/gi18n.h> #include <glib/gstdio.h> #include <libmp3splt/mp3splt.h> #include "util.h" #include "main_win.h" #include "tree_tab.h" #include "preferences_tab.h" #include "utilities.h" #include "mp3splt-gtk.h" //handle box for detaching window GtkWidget *freedb_handle_box; //filename entry GtkWidget *freedb_entry; //our freedb tree GtkWidget *freedb_tree; //we count the number of rows in the table gint freedb_table_number = 0; //freedb table enumeration enum { ALBUM_NAME, NUMBER, FREEDB_TABLE }; //results of the freedb search const splt_freedb_results *search_results; //the selected entry id gint selected_id = -1; //the add splitpoint button GtkWidget *freedb_add_button; GtkWidget *freedb_search_button; GtkWidget *spinner; gboolean executed_lock = FALSE; //the state main mp3splt state extern splt_state *the_state; //the spin values extern gint spin_mins,spin_secs, spin_hundr_secs; extern gchar current_description[255]; //output for the cddb,cue and freedb file output extern GtkWidget *output_entry; extern gint debug_is_active; //!add a row to the table void add_freedb_row(gchar *album_name, gint album_id, gint *revisions, gint revisions_number) { //father iter GtkTreeIter iter; //children iter GtkTreeIter child_iter; //our tree and the model GtkTreeView *tree_view = (GtkTreeView *)freedb_tree; GtkTreeModel *model; model = gtk_tree_view_get_model(tree_view); gtk_tree_store_append (GTK_TREE_STORE(model), &iter,NULL); //sets the father gtk_tree_store_set (GTK_TREE_STORE(model), &iter, ALBUM_NAME, album_name, NUMBER, album_id, -1); gchar *number; gint malloc_number = strlen(album_name) + 20; //allocate memory number = malloc(malloc_number * sizeof(gchar *)); gint i; for(i = 0; i < revisions_number; i++) { g_snprintf(number,malloc_number, _("%s Revision %d"),album_name, revisions[i]); //sets the children.. gtk_tree_store_append (GTK_TREE_STORE(model), &child_iter, &iter); gtk_tree_store_set (GTK_TREE_STORE(model), &child_iter, ALBUM_NAME, number, NUMBER, album_id+i+1, -1); } freedb_table_number++; //free memory g_free(number); } //!creates the model for the freedb tree GtkTreeModel *create_freedb_model() { GtkTreeStore *model = gtk_tree_store_new(FREEDB_TABLE, G_TYPE_STRING, G_TYPE_INT); return GTK_TREE_MODEL(model); } //!creates the freedb tree GtkTreeView *create_freedb_tree() { GtkTreeModel *model = (GtkTreeModel *)create_freedb_model(); GtkTreeView *tree_view = (GtkTreeView *)gtk_tree_view_new_with_model(model); return tree_view; } //!creates freedb columns void create_freedb_columns(GtkTreeView *tree_view) { GtkCellRendererText *renderer = GTK_CELL_RENDERER_TEXT(gtk_cell_renderer_text_new ()); g_object_set_data(G_OBJECT(renderer), "col", GINT_TO_POINTER(ALBUM_NAME)); GtkTreeViewColumn *name_column = gtk_tree_view_column_new_with_attributes (_("Album title"), GTK_CELL_RENDERER(renderer), "text", ALBUM_NAME, NULL); //appends columns to the list of columns of tree_view gtk_tree_view_insert_column(GTK_TREE_VIEW(tree_view), GTK_TREE_VIEW_COLUMN(name_column), ALBUM_NAME); //middle alignment of the column name gtk_tree_view_column_set_alignment(GTK_TREE_VIEW_COLUMN(name_column), 0.5); gtk_tree_view_column_set_sizing(GTK_TREE_VIEW_COLUMN(name_column), GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_expand(GTK_TREE_VIEW_COLUMN(name_column), TRUE); gtk_tree_view_column_set_resizable(GTK_TREE_VIEW_COLUMN(name_column), TRUE); } //!when closing the new window after detaching void close_freedb_popup_window_event(GtkWidget *window, gpointer data) { GtkWidget *window_child = gtk_bin_get_child(GTK_BIN(window)); gtk_widget_reparent(GTK_WIDGET(window_child), GTK_WIDGET(freedb_handle_box)); gtk_widget_destroy(window); } //!when we detach the handle void handle_freedb_detached_event(GtkHandleBox *handlebox, GtkWidget *widget, gpointer data) { GtkWidget *window = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_widget_reparent(GTK_WIDGET(widget), GTK_WIDGET(window)); g_signal_connect(G_OBJECT(window), "delete_event", G_CALLBACK(close_freedb_popup_window_event), NULL); gtk_widget_show(GTK_WIDGET(window)); } //!freedb selection has changed void freedb_selection_changed(GtkTreeSelection *selection, gpointer data) { GtkTreeIter iter; GtkTreeModel *model = gtk_tree_view_get_model(GTK_TREE_VIEW(freedb_tree)); if (gtk_tree_selection_get_selected(selection, &model, &iter)) { gchar *info; gtk_tree_model_get (model, &iter, ALBUM_NAME, &info, NUMBER, &selected_id, -1); g_free(info); gtk_widget_set_sensitive(GTK_WIDGET(freedb_add_button), TRUE); } else { gtk_widget_set_sensitive(GTK_WIDGET(freedb_add_button), FALSE); } } //!removes all rows from the freedb table void remove_all_freedb_rows() { GtkTreeView *tree_view = (GtkTreeView *)freedb_tree; GtkTreeModel *model = gtk_tree_view_get_model(tree_view); while (freedb_table_number > 0) { GtkTreeIter iter; gtk_tree_model_get_iter_first(model, &iter); gtk_tree_store_remove(GTK_TREE_STORE(model), &iter); freedb_table_number--; } } //!search the freedb.org gpointer freedb_search(gpointer data) { enter_threads(); executed_lock = TRUE; gtk_widget_hide(freedb_search_button); gtk_widget_show(spinner); gtk_spinner_start(GTK_SPINNER(spinner)); gtk_widget_set_sensitive(GTK_WIDGET(freedb_add_button), FALSE); gtk_editable_set_editable(GTK_EDITABLE(freedb_entry), FALSE); put_status_message(_("please wait... contacting tracktype.org")); const gchar *freedb_search = gtk_entry_get_text(GTK_ENTRY(freedb_entry)); exit_threads(); gint err = SPLT_OK; search_results = mp3splt_get_freedb_search(the_state, freedb_search, &err, SPLT_FREEDB_SEARCH_TYPE_CDDB_CGI, "\0",-1); enter_threads(); print_status_bar_confirmation(err); remove_all_freedb_rows(); if (err >= 0) { gint i = 0; for (i = 0; i< search_results->number;i++) { gint must_be_free = SPLT_FALSE; search_results->results[i].name = transform_to_utf8(search_results->results[i].name, TRUE, &must_be_free); add_freedb_row(search_results->results[i].name, search_results->results[i].id, search_results->results[i].revisions, search_results->results[i].revision_number); } if (search_results->number > 0) { //select the first result GtkTreeModel *model; GtkTreePath *path; GtkTreeIter iter; GtkTreeSelection *selection; selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(freedb_tree)); model = gtk_tree_view_get_model(GTK_TREE_VIEW(freedb_tree)); path = gtk_tree_path_new_from_indices (0 ,-1); gtk_tree_model_get_iter(model, &iter, path); gtk_tree_selection_select_iter(selection, &iter); gtk_tree_path_free(path); } } gtk_widget_show(freedb_search_button); gtk_spinner_stop(GTK_SPINNER(spinner)); gtk_widget_hide(spinner); gtk_editable_set_editable(GTK_EDITABLE(freedb_entry), TRUE); executed_lock = FALSE; exit_threads(); return NULL; } //! Start a thread for the freedb search void freedb_search_start_thread() { if (executed_lock) { return; } mp3splt_set_int_option(the_state, SPLT_OPT_DEBUG_MODE, debug_is_active); create_thread(freedb_search, NULL, TRUE, NULL); } //!we push the search button void freedb_search_button_event(GtkWidget *widget, gpointer data) { freedb_search_start_thread(); } /*!search entry backspace event when we push Enter for the search entry */ void freedb_entry_activate_event(GtkEntry *entry, gpointer data) { freedb_search_start_thread(); } /*!returns the number of splitpoints we put the new splitpoints in "the_state" */ void write_freedbfile(int *err) { gchar *filename = NULL; enter_threads(); put_status_message(_("please wait... contacting tracktype.org")); //we suppose directory exists //it should be created when mp3splt-gtk starts gchar mp3splt_dir[14] = ".mp3splt-gtk"; const gchar *home_dir = g_get_home_dir(); gint malloc_number = strlen(mp3splt_dir) + strlen(home_dir) + 20; filename = malloc(malloc_number * sizeof(gchar *)); g_snprintf(filename,malloc_number, "%s%s%s%s%s", home_dir, G_DIR_SEPARATOR_S, mp3splt_dir, G_DIR_SEPARATOR_S, "query.cddb"); exit_threads(); //we write the freedb file ... mp3splt_write_freedb_file_result(the_state, selected_id, filename, err, //for now cddb.cgi get file type SPLT_FREEDB_GET_FILE_TYPE_CDDB_CGI, "\0",-1); enter_threads(); print_status_bar_confirmation(*err); exit_threads(); if(get_checked_output_radio_box()) { mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_DEFAULT); } else { mp3splt_set_int_option(the_state, SPLT_OPT_OUTPUT_FILENAMES, SPLT_OUTPUT_FORMAT); const char *data = gtk_entry_get_text(GTK_ENTRY(output_entry)); gint error = SPLT_OUTPUT_FORMAT_OK; mp3splt_set_oformat(the_state, data, &error); enter_threads(); print_status_bar_confirmation(error); exit_threads(); } mp3splt_put_cddb_splitpoints_from_file(the_state,filename, err); if (filename) { g_free(filename); filename = NULL; } } //!returns the seconds, minutes, and hudreths void get_secs_mins_hundr(gfloat time, gint *mins,gint *secs, gint *hundr) { *mins = (gint)(time / 6000); *secs = (gint)(time - (*mins * 6000)) / 100; *hundr = (gint)(time - (*mins * 6000) - (*secs * 100)); } /*!updates the current splitpoints in the_state Takes the splitpoints from the table displayed in the gui max_splits is the maximum number of splitpoints to update */ void update_splitpoints_from_the_state() { gint max_splits = 0; gint err = SPLT_OK; exit_threads(); const splt_point *points = mp3splt_get_splitpoints(the_state, &max_splits,&err); enter_threads(); print_status_bar_confirmation(err); //only if we have splitpoints if (max_splits > 0) { //erase rows from the splitpoints table remove_all_rows(NULL,NULL); gint i; //for each splitpoint, we put it in the table for(i = 0; i < max_splits;i++) { //ugly hack because we use maximum ints in the GUI //-GUI must be changed to accept long values long old_point_value = points[i].value; int point_value = (int) old_point_value; if (old_point_value > INT_MAX) { point_value = INT_MAX; } //we get the minutes, seconds and hundreths get_secs_mins_hundr(point_value, &spin_mins, &spin_secs, &spin_hundr_secs); gint must_be_free = FALSE; gchar *result_utf8 = points[i].name; if (result_utf8 != NULL) { result_utf8 = transform_to_utf8(result_utf8, FALSE, &must_be_free); g_snprintf(current_description,255, "%s", result_utf8); } else { g_snprintf(current_description, 255, "%s", _("description here")); } if (must_be_free) { g_free(result_utf8); result_utf8 = NULL; } //we add the row if (points[i].type == SPLT_SPLITPOINT) { add_row(TRUE); } else if (points[i].type == SPLT_SKIPPOINT) { add_row(FALSE); } } //we reput the "description here" name g_snprintf(current_description, 255, "%s", _("description here")); update_minutes_from_spinner(NULL,NULL); update_seconds_from_spinner(NULL,NULL); update_hundr_secs_from_spinner(NULL,NULL); update_add_button(); } } gpointer put_freedb_splitpoints(gpointer data) { gint err = SPLT_OK; enter_threads(); gtk_widget_set_sensitive(GTK_WIDGET(freedb_add_button), FALSE); exit_threads(); write_freedbfile(&err); enter_threads(); update_splitpoints_from_the_state(); print_status_bar_confirmation(err); gtk_widget_set_sensitive(GTK_WIDGET(freedb_add_button), TRUE); exit_threads(); return NULL; } //!event for the freedb add button when clicked void freedb_add_button_clicked_event(GtkButton *button, gpointer data) { mp3splt_set_int_option(the_state, SPLT_OPT_DEBUG_MODE, debug_is_active); create_thread(put_freedb_splitpoints, NULL, TRUE, NULL); } //!creates the freedb box GtkWidget *create_freedb_frame() { GtkWidget *freedb_hbox = gtk_hbox_new(FALSE, 0); gtk_container_set_border_width(GTK_CONTAINER(freedb_hbox), 0); /* handle box for detaching */ freedb_handle_box = gtk_handle_box_new(); gtk_container_add(GTK_CONTAINER(freedb_handle_box), GTK_WIDGET(freedb_hbox)); g_signal_connect(freedb_handle_box, "child-detached", G_CALLBACK(handle_freedb_detached_event), NULL); GtkWidget *freedb_vbox = gtk_vbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(freedb_hbox), freedb_vbox, TRUE, TRUE, 4); /* search box */ GtkWidget *search_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(freedb_vbox), search_hbox , FALSE, FALSE, 2); GtkWidget *label = gtk_label_new(_("Search tracktype.org:")); gtk_box_pack_start(GTK_BOX(search_hbox), label, FALSE, FALSE, 0); freedb_entry = gtk_entry_new(); gtk_editable_set_editable(GTK_EDITABLE(freedb_entry), TRUE); gtk_box_pack_start(GTK_BOX(search_hbox), freedb_entry, TRUE, TRUE, 6); g_signal_connect(G_OBJECT(freedb_entry), "activate", G_CALLBACK(freedb_entry_activate_event), NULL); freedb_search_button = (GtkWidget *) create_cool_button(GTK_STOCK_FIND, _("_Search"),FALSE); g_signal_connect(G_OBJECT(freedb_search_button), "clicked", G_CALLBACK(freedb_search_button_event), NULL); gtk_box_pack_start(GTK_BOX(search_hbox), freedb_search_button, FALSE, FALSE, 0); spinner = gtk_spinner_new(); gtk_box_pack_start(GTK_BOX(search_hbox), spinner, FALSE, FALSE, 4); /* freedb scrolled window and the tree */ freedb_tree = (GtkWidget *) create_freedb_tree(); GtkWidget *scrolled_window; scrolled_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled_window), GTK_SHADOW_NONE); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_box_pack_start(GTK_BOX(freedb_vbox), scrolled_window, TRUE, TRUE, 1); create_freedb_columns(GTK_TREE_VIEW(freedb_tree)); gtk_container_add(GTK_CONTAINER(scrolled_window), GTK_WIDGET(freedb_tree)); GtkWidget *freedb_tree_selection; freedb_tree_selection = (GtkWidget *) gtk_tree_view_get_selection(GTK_TREE_VIEW(freedb_tree)); g_signal_connect(G_OBJECT(freedb_tree_selection), "changed", G_CALLBACK(freedb_selection_changed), NULL); /* add button */ GtkWidget *selected_hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_start(GTK_BOX(freedb_vbox), selected_hbox , FALSE, FALSE, 2); freedb_add_button = (GtkWidget *) create_cool_button(GTK_STOCK_ADD,_("_Add splitpoints"), FALSE); gtk_widget_set_sensitive(GTK_WIDGET(freedb_add_button), FALSE); g_signal_connect(G_OBJECT(freedb_add_button), "clicked", G_CALLBACK(freedb_add_button_clicked_event), NULL); gtk_box_pack_start(GTK_BOX(selected_hbox), freedb_add_button, FALSE, FALSE, 0); gtk_widget_set_tooltip_text(freedb_add_button, _("Set splitpoints to the splitpoints table")); return freedb_handle_box; } void hide_freedb_spinner() { gtk_widget_hide(spinner); } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/freedb_tab.h������������������������������������������������������������������0000644�0001750�0001750�00000005407�11753301527�013655� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: cddb_tab.h * * this file is the header of cddb_tab.c * *********************************************************/ void add_freedb_row(gchar *album_name, gint album_id, gint *revisions, gint revisions_number); GtkTreeModel *create_freedb_model(); GtkTreeView *create_freedb_tree(); void create_freedb_columns (GtkTreeView *tree_view); void close_freedb_popup_window_event( GtkWidget *window, gpointer data ); void handle_freedb_detached_event (GtkHandleBox *handlebox, GtkWidget *widget, gpointer data); void freedb_selection_changed(GtkTreeSelection *selection, gpointer data); void remove_all_freedb_rows (); gchar *transform_to_utf8(gchar *text, gint free_or_not, gint *must_be_freed); void freedb_search(); void freedb_search_button_event( GtkWidget *widget, gpointer data ); void freedb_entry_activate_event (GtkEntry *entry, gpointer data); gint write_freedbfile_and_get_splitpoints(int *err); void get_secs_mins_hundr(gfloat time, gint *mins,gint *secs, gint *hundr); void update_splitpoints_from_the_state(); void freedb_add_button_clicked_event(GtkButton *button, gpointer data); GtkWidget *create_freedb_frame(); void hide_freedb_spinner(); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/gstreamer_control.c�����������������������������������������������������������0000644�0001750�0001750�00000032030�11753301533�015311� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright: (C) 2005-2012 Alexandru Munteanu * Contact: io_fx@yahoo.fr * * from BMP to Audacious patch from Roberto Neri - 2007,2008 * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /*!******************************************************* * \file * Control the gstreamer framework * * this file has functions to control the 'internal' + gstreamer player *********************************************************/ #include <stdlib.h> #include <gtk/gtk.h> #include <glib/gi18n.h> #include <time.h> #include <unistd.h> #include <string.h> #ifndef NO_GSTREAMER #include <gst/gst.h> #include "gstreamer_control.h" #endif #include "player.h" #include "main_win.h" #include "utilities.h" #include "player_tab.h" #include "mp3splt-gtk.h" extern int selected_player; #ifndef NO_GSTREAMER const gchar *song_artist = NULL; const gchar *song_title = NULL; gint rate = 0; GstElement *play = NULL; GstBus *bus = NULL; gint _gstreamer_is_running = FALSE; extern GtkWidget *playlist_box; extern GtkWidget *player_vbox; extern void add_playlist_file(const gchar *name); //! Send a call over the dbus static gboolean bus_call (GstBus *bus, GstMessage *msg, gpointer data) { switch (GST_MESSAGE_TYPE(msg)) { case GST_MESSAGE_ERROR: { gchar *debug; GError *error; gst_message_parse_error (msg, &error, &debug); g_free(debug); gchar *message = NULL; if (error->message != NULL) { gint malloc_size = strlen(error->message) + 20; message = malloc(sizeof(char) * malloc_size); if (message) { memset(message,'\0',malloc_size); g_snprintf(message, malloc_size,_("gstreamer error: %s"),error->message); enter_threads(); put_status_message(message); exit_threads(); g_free(message); } } g_error_free(error); break; } case GST_MESSAGE_WARNING: { gchar *debug; GError *error; gst_message_parse_warning(msg, &error, &debug); g_free(debug); gchar *message = NULL; if (error->message != NULL) { gint malloc_size = strlen(error->message) + 20; message = malloc(sizeof(char) * malloc_size); if (message) { memset(message,'\0',malloc_size); g_snprintf(message, malloc_size,_("Warning: %s"),error->message); enter_threads(); put_status_message(message); exit_threads(); g_free(message); } } g_error_free (error); break; } case GST_MESSAGE_INFO: { gchar *debug; GError *error; gst_message_parse_info(msg, &error, &debug); g_free(debug); gchar *message = NULL; if (error->message != NULL) { gint malloc_size = strlen(error->message) + 20; message = malloc(sizeof(char) * malloc_size); if (message) { memset(message,'\0',malloc_size); g_snprintf(message, malloc_size,_("Info: %s"),error->message); enter_threads(); put_status_message(message); exit_threads(); g_free(message); } } g_error_free (error); break; } case GST_MESSAGE_TAG: { GstTagList *tag_list = NULL; gst_message_parse_tag(msg, &tag_list); gint number_of_stream = 0; g_object_get(play, "current-audio", &number_of_stream, NULL); //artist const GValue *val = gst_tag_list_get_value_index(tag_list, GST_TAG_ARTIST, number_of_stream); if (val != NULL) { song_artist = g_value_get_string(val); } //title val = gst_tag_list_get_value_index(tag_list, GST_TAG_TITLE, number_of_stream); if (val != NULL) { song_title = g_value_get_string(val); } //rate (bps) val = gst_tag_list_get_value_index(tag_list, GST_TAG_BITRATE, number_of_stream); if (val != NULL) { rate = g_value_get_uint(val); } break; } default: break; } return TRUE; } //!Gets information about the< song void gstreamer_get_song_infos(gchar *total_infos) { if (play) { gint freq = 0; gint nch = 0; gint number_of_stream = 0; g_object_get(play, "current-audio", &number_of_stream, NULL); //get the stream info GList *streaminfo = NULL; g_object_get(play, "stream-info", &streaminfo, NULL); gchar rate_str[32] = { '\0' }; gchar freq_str[32] = { '\0' }; gchar nch_str[32] = { '\0' }; gchar *_Kbps = _("Kbps"); gchar *_Khz = _("Khz"); //get the first element of the stream info list GObject *object = g_list_nth_data(streaminfo, number_of_stream); if (object) { GstObject *obj = NULL; g_object_get(G_OBJECT(object), "object", &obj, NULL); //get the caps from the first element GstCaps *caps = NULL; g_object_get(obj, "caps", &caps, NULL); if (caps) { //get the structure from the caps GstStructure *structure = NULL; structure = gst_caps_get_structure(caps, number_of_stream); //get the rate and the number of channels from the structure gst_structure_get_int(structure, "rate", &freq); gst_structure_get_int(structure, "channels", &nch); gst_caps_unref(caps); } g_snprintf(rate_str,32, "%d", rate/1000); g_snprintf(freq_str,32, "%d", freq/1000); if (nch >= 2) { snprintf(nch_str, 32, "%s", _("stereo")); } else { snprintf(nch_str, 32, "%s", _("mono")); } } if (rate != 0) { g_snprintf(total_infos,512, "%s %s %s %s %s", rate_str,_Kbps,freq_str, _Khz,nch_str); } else { total_infos[0] = '\0'; } } } /*! returns the filename The result must be g_free'd after use. */ gchar *gstreamer_get_filename() { return strdup(inputfilename_get()); } //!returns the number of songs of the playlist gint gstreamer_get_playlist_number() { return 1; } /*!returns the title of the song The result must be g_free'd after use */ gchar *gstreamer_get_title_song() { if (song_artist || song_title) { gint title_size = 20; if (song_artist) { title_size += strlen(song_artist); } if (song_title) { title_size += strlen(song_title); } gchar *title = malloc(sizeof(char) * title_size); memset(title, title_size, '\0'); if (song_artist && song_title) { g_snprintf(title, title_size, "%s - %s", song_artist, song_title); } else if (song_title && !song_artist) { g_snprintf(title, title_size, "%s", song_title); } else if (song_artist && !song_title) { g_snprintf(title, title_size, "%s", song_artist); } return title; } else { gchar *fname = gstreamer_get_filename(); if (fname != NULL) { gchar *file = strrchr(fname, G_DIR_SEPARATOR); if (file != NULL) { gchar *alloced_file = strdup(file+1); g_free(fname); fname = NULL; return alloced_file; } else { return fname; } } else { return strdup("-"); } } } //!returns elapsed time gint gstreamer_get_time_elapsed() { if (play) { GstQuery *query = gst_query_new_position(GST_FORMAT_TIME); gint64 time = 0; if (gst_element_query(play, query)) { gst_query_parse_position(query, NULL, &time); } gst_query_unref(query); return (gint) (time / GST_MSECOND); } else { return 0; } } //!starts gstreamer void gstreamer_start() { if (play) { gstreamer_quit(); gst_object_unref(play); } gst_init(NULL, NULL); #ifdef __WIN32__ gst_default_registry_add_path("./"); #endif play = gst_element_factory_make("playbin", "play"); //if we have started the player if (play) { gtk_widget_show_all(playlist_box); _gstreamer_is_running = TRUE; bus = gst_pipeline_get_bus (GST_PIPELINE (play)); gst_bus_add_watch(bus, bus_call, NULL); gst_object_unref(bus); //add the current filename const gchar *fname = inputfilename_get(); GList *song_list = NULL; song_list = g_list_append(song_list, strdup(fname)); gstreamer_add_files(song_list); //TODO: free memory from GList *song_list } else { enter_threads(); put_status_message(_(" error: cannot create gstreamer playbin\n")); exit_threads(); } } //!selects the last file in the playlist void gstreamer_select_last_file() { } //!plays the last file of the playlist void gstreamer_play_last_file() { gstreamer_stop(); gstreamer_play(); } //!add files to the gstreamer playlist void gstreamer_add_files(GList *list) { gchar *song = NULL; gint i = 0; gchar *uri = NULL; int len_uri = 20; if (song_title) { song_title = NULL; } if (song_artist) { song_artist = NULL; } if (play) { while ((song = g_list_nth_data(list, i)) != NULL) { if (song) { //add file to playlist add_playlist_file(song); len_uri += strlen(song); uri = malloc(sizeof(char) * len_uri); g_snprintf(uri,len_uri,"file://%s",song); g_object_set(G_OBJECT(play), "uri", uri, NULL); if (uri) { g_free(uri); uri = NULL; } } i++; } } } //!sets volume void gstreamer_set_volume(gint volume) { if (play) { //values between 0 and 2 //-documentation says values can be between 0 and 10 g_object_set(G_OBJECT(play), "volume", (double) volume / 100.0 * 2, NULL); } } //!returns volume gint gstreamer_get_volume() { if (play) { double volume = 0; //values between 0 and 2 //-documentation says values can be between 0 and 10 g_object_get(G_OBJECT(play), "volume", &volume, NULL); return (gint) (volume / 2 * 100); } else { return 0; } } //!starts gstreamer with songs void gstreamer_start_with_songs(GList *list) { gstreamer_start(); gstreamer_add_files(list); gstreamer_play(); } //!returns TRUE if gstreamer is running; if not, FALSE gint gstreamer_is_running() { return _gstreamer_is_running; } //!returns TRUE if gstreamer is paused, if not, FALSE gint gstreamer_is_paused() { if (play) { GstState state; gst_element_get_state(play, &state, NULL, GST_CLOCK_TIME_NONE); if (state == GST_STATE_PAUSED) { return TRUE; } else { return FALSE; } } else { return FALSE; } } //!plays a song void gstreamer_play() { if (play) { GstState state; gst_element_get_state(play, &state, NULL, GST_CLOCK_TIME_NONE); if (state == GST_STATE_PLAYING) { gstreamer_jump(0); } else { gst_element_set_state(play, GST_STATE_PLAYING); } } } //!stops a song void gstreamer_stop() { if (play) { gst_element_set_state(play, GST_STATE_NULL); } } //!pause a song void gstreamer_pause() { if (play) { GstState state; gst_element_get_state(play, &state, NULL, GST_CLOCK_TIME_NONE); if (state == GST_STATE_PLAYING) { gst_element_set_state(play, GST_STATE_PAUSED); } else { gstreamer_play(); } } } //!changes to next song void gstreamer_next() { } //!changes to previous song void gstreamer_prev() { } //!jump to time void gstreamer_jump(gint position) { if (play) { gst_element_seek(play, 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH, GST_SEEK_TYPE_SET, position * GST_MSECOND, 0, 0); } } //!returns total time of the current song gint gstreamer_get_total_time() { if (play) { GstQuery *query = gst_query_new_duration(GST_FORMAT_TIME); gint time = 0; if (gst_element_query(play,query)) { gint64 total_time; gst_query_parse_duration (query, NULL, &total_time); time = (gint) (total_time / GST_MSECOND); } gst_query_unref(query); return time; } else { return 0; } } //!returns TRUE if gstreamer is playing, else FALSE gint gstreamer_is_playing() { if (play) { GstState state; gst_element_get_state(play, &state, NULL, GST_CLOCK_TIME_NONE); if ((state == GST_STATE_PLAYING) || (state == GST_STATE_PAUSED)) { return TRUE; } else { return FALSE; } } else { return FALSE; } } //!quits player void gstreamer_quit() { if (play) { gst_element_set_state(play, GST_STATE_NULL); } _gstreamer_is_running = FALSE; } #endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/src/gstreamer_control.h�����������������������������������������������������������0000644�0001750�0001750�00000004133�11753301535�015323� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/********************************************************** * * mp3splt-gtk -- utility based on mp3splt, * for mp3/ogg splitting without decoding * * Copyright (c) 2005-2012 Alexandru Munteanu - io_fx@yahoo.fr * * http://mp3splt.sourceforge.net/ * *********************************************************/ /********************************************************** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, * USA. * *********************************************************/ /********************************************************** * Filename: xmms_control.h * * header to xmms_control.c * * xmms_control.c controls the xmms player * *********************************************************/ void gstreamer_get_song_infos(gchar *total_infos); gchar *gstreamer_get_filename(); gint gstreamer_get_playlist_number(); gchar *gstreamer_get_title_song(); gint gstreamer_get_time_elapsed(); void gstreamer_start(); void gstreamer_select_last_file(); void gstreamer_play_last_file(); void gstreamer_add_files(GList *list); void gstreamer_set_volume(gint volume); gint gstreamer_get_volume(); void gstreamer_start_with_songs(GList *list); gint gstreamer_is_running(); gint gstreamer_is_paused(); void gstreamer_play(); void gstreamer_stop(); void gstreamer_pause(); void gstreamer_next(); void gstreamer_prev(); void gstreamer_jump(gint position); gint gstreamer_get_total_time(); gint gstreamer_is_playing(); void gstreamer_quit(); �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/NEWS������������������������������������������������������������������������������0000644�0001750�0001750�00000003251�11753300235�011325� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������See the ChangeLog file for details. See also the ChangeLog of libmp3splt. * 12.05.2012 * -version 0.7.2 released * 14.11.2011 * -version 0.7.1 released * 14.07.2011 * -version 0.7 released * 05.03.2011 * -version 0.6.1a released * 02.03.2011 * -version 0.6.1 released * 26.09.2010 * -version 0.6 released * 17.02.2010 * -version 0.5.9 released * 05.11.2009 * -mp3splt-gtk version 0.5.8a released * 31.10.2009 * -mp3splt-gtk version 0.5.8 released * 30.07.2009 * -mp3splt-gtk version 0.5.7a released * 27.07.2009 * -mp3splt-gtk version 0.5.7 released * 16.05.2009 * -mp3splt-gtk version 0.5.6 released * 30.04.2009 * -mp3splt-gtk version 0.5.5 released * 17.01.2009 * -mp3splt-gtk version 0.5.4 released * 08.01.2009 * -mp3splt-gtk version 0.5.3 released * 13.10.2008 * -mp3splt-gtk version 0.5.2 released * 02.10.2008 * -mp3splt-gtk version 0.5.1 released * 05.09.2008 * -mp3splt-gtk version 0.5 released * 21.12.2006 * -mp3splt-gtk unstable version 0.4_rc1 released * 27.02.2006 * -mp3splt-gtk version 0.3.1 released -see the ChangeLog for details * 14.02.2006 * -mp3splt-gtk version 0.3 released -see the ChangeLog for details * 04.12.2005 * -mp3splt-gtk version 0.2.1 released -see the ChangeLog for details * 03.10.2005 * -mp3splt-gtk version 0.2 released -see the ChangeLog for details * 10.06.2005 * -4th release of mp3splt-gtk, version 0.1.4 -see the ChangeLog for details * 26.04.2005 * -third release of mp3splt-gtk, version 0.1.3 -see the ChangeLog for details * 16.04.2005 * -second release of mp3splt-gtk, version 0.1.2 -see the ChangeLog for details * 03.04.2005 * -first release of mp3splt-gtk, version 0.1.1 �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/TODO������������������������������������������������������������������������������0000664�0001750�0001750�00000000000�11454363641�011315� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/help/�����������������������������������������������������������������������������0000755�0001750�0001750�00000000000�11753562422�011645� 5����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/help/C/���������������������������������������������������������������������������0000755�0001750�0001750�00000000000�11753562422�012027� 5����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/help/C/legal.xml������������������������������������������������������������������0000644�0001750�0001750�00000005743�11753562422�013566� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<legalnotice id="legalnotice"> <para> Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this <ulink url="ghelp:fdl">link</ulink> or in the file COPYING-DOCS distributed with this manual. </para> <para> This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license. </para> <para> Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters. </para> <para> DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: <orderedlist> <listitem> <para> DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND </para> </listitem> <listitem> <para> UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. </para> </listitem> </orderedlist> </para> </legalnotice> �����������������������������mp3splt-gtk-0.7.2/help/C/figures/�������������������������������������������������������������������0000755�0001750�0001750�00000000000�11753562422�013473� 5����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/help/C/figures/Preferences.png����������������������������������������������������0000644�0001750�0001750�00000212745�11753562422�016375� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������‰PNG  ��� IHDR��B��I���ÉÏ”���sRGB�®Îé��� pHYs��Ä��Ä•+���tIMEÚ ;:’œn���tEXtComment�Created with GIMPW�� �IDATxÚì}wœdGuîwΩº·»'ìÌFI«ŒPDH&K# ˆhÀÏÏ`0DÉ€Æa¢m‚y&Ù“A"Ø€–d‚�=BÒ*ìjW›g¦»ï­:ç¼?nÏLÏjwˆúûõo¦ûv¥[]·¾:¡NѱÇ‹Fa„F¸c"�øäÇ?Àá£îø¥@��à4xÀ݉àpôèB·:N˜¿êÔäN°˜Úݽ©Ä|ÀpfÀÅ/šCœæ Zh©ÃAÀ|ŸÏrë*†Æ‚Ïçó7æXrkƒÛY:‚ÜlpÓNN¡iÑ|5ÉæKtPó¼¹¹Å[ú×4hô Õ’.Z蚯»Ü5Ö\¦ÅrMÅ’¢æ[¸Øš…â»rÐZò‹øÒfûü ±¡î„æ»bþ—j•ïR×n~÷…ÜK~È[B» ,¹Á…oÈÝ}ø›1DÍ,ô/Íß-\õ¥ChøÞwMN w,Ž¡Å>¹øøP0ÂnqÞ;_~ò“Ÿì³ÏêN¸e0dï ä±ôÝo‹Ó¥ ]"�sp6/È3Á!ê0p0sb‚)ÀÆ™,eS %raÉäÈ"øœe‹-ÔÆu ¢9uKîÌÔ=Õ qU3;û©H³È­`î¨÷£ Y.¸ÔŠ¢ÏuªéÎ8I×ÇÆŠØ' ^×.d¡¶zS¶9t{·ôÂt/Íõ©œ17qïi7ÔA[9ø¬«±¬péY4ZËJå1)-f3㤡SÄffR±M‰æÈke)¼×7DÏ]ÛòX?ô:€½~.,'1ÑP ¹;Ñ`6MVrñà^ yVª&'íXN$ŒwŠq3Î;”3ª¥tæ´˜B­"u\f=ŸhµÞC‘%µêØT͹žK›Êb¦®¶÷s7õçº¦Ë ê'óĤ`höä£åLD ‚ ÆÐ¯L�w«Ëvö‰™#›ÀÜ¡�Àf`j˜ ‡;LAÜ 8ƒàÌ!¸1))\\�õLJæFpo؈¼!?&÷†¥ÙÝÙÝä4Ìʃwæí]mž_äâ´H)¾ëÈ÷aÖÞu)s›Ì’eÆžžë[ç1Ù{ÀÆŸ_¾ t�‚ݱï‡~©¸=ÏÅ|=ÖÌXó‚�#�ä‚dp!u g(¹‚�rr#"#®2w €fHG¦�·,VA]eâÂsvµhHI5;ƒIÒX‹EÕ­{ª1´a}›MÄfY¹¨MžÀ!ÛNï¬(¬µM ßg SÒÍÚnÇ#ך0–ÐaC9Þ‡p•Z¹×­¢mósÓl¬YBd«µ=fsˆ­¼èz·d´¼œÕJ²z» —•µJ™gˆÔꚊ>÷ÜiÎg‰8%­yªkMu º6˜d˜ [Š•™(S€{σÈÕ\ûÞWVIô™§­î 昭¶³ÇÈI{T[ÚA=Þ-¤Å±HŤ´fJi³ôôæ‚U}¼Të{·UΊUI»ª ’áìNÎeŠ¥)¼kQV3UHun3T™sÖÔ ¦ÙIÔ w l•Äšœù€EA¤.ì 1c"h.Ü\]‚HrŽ€Á=‘«:“»«5…4D¢ êp9+|0 Á#°y³Ê"v74Ë­&5 dïEj‰o ¢"vÕì"ïöQº}tC£Yy„_;»½U@hµZ�Ôw,âúÕ*Ú-±ùmÞ’^¢áäî 26v1d‚¸‘ �7x àrs&8¹\À®Ùˆ˜<±DÖœYÔ¬Î4+sQj¹y‘+K ÏI•(‚shµ–‰¥ºçíööÎm/ëLׄ=YQ©E1%´«žIÙl[7.ç\‹‚T½mÄEni™eÛ>ÖÚLRå¹q ÎE»Ý›ëµŠñÔ걃SIa&r§†‘wZ@H‹K4'ŽÔáNɵ—¨w–e;í˜õ 6Z&Á;Î}JÁÇýfãRTÆÁ…èîJn™8@-HŠì OÁ µS‘Ý™¹ö<±õº$‘ÛlL…Y^“•”ÁËqVA*”­‚¨ñvdI½ãœAåöªZU …�.ÇH«äÛŠn¸©kRÕCÆb`*Y%‰U‘ƒòÎà,¥srEÜŒk ¸‘™âygw! 7i�ƒ‰‰H@dwT ‰Y$gu!r#°7tEÆ\µ’Тað%�"÷†”�wçÁã1`*(j7PóÐ/êxžŒj?b–y 7p+棥ï%2Øï,>þŒûî3ÙúERÎVùQï¹à7–eWÛØ‚Ùd/£Éݴ꣞ 1¢=õkTÍýºŠØcy½+žüÓß·G¾îS—¾ðÀøK6h)áùnz÷ÊÜýïTq�Ù¼½‚ˆÜš‰dÙ LæÎnälLäcÀ™Å`¦17{ #…‚AC°\ H©Ïbv8Ä\Ê2e�41©½^€ÍÔRºx)®n^CZYR‘Rm™#KÚ‘¶UZhªY5×0)Ä'¤l×Eò¹œ³¶'='‡z=íi«-­+«£ÅÌ  §�g«”CÄ5›a¬Õî0—…0H‰"›õ‹UÑ·H,L{š ËZ†eÉs‹9z­…T2ˆà&•ˆ�lZæ•×%¸oCºC(ÀJE€F"vuêQ®&Ü +¢SaDH¦¤Éë–Œõúa²h;sò™’±cÌYÚÁ»UÝ¢’Û’¨Ô8–¨ïöR±½*v† Î]ç¨E†µ¹ìPl‡jκNEðÉŒ,–k¡ˆ¾™°1qì{%BdlêD$ê2@˜DÉdNsfÀ`Ä\¬6#E5¥@™I F\ˆÀ®(Nêr9\@†y]€ƒ@îFDw@0P£q4Ê Ô¨>yɈZLœhwB-%³]Ø‹~é§ÛG¬ö»Š}&[¯üð—~º~ËÞ“í;=ñ¡ç?nÓuW­>ø¨ßL–=ÐØ@c¿{ØÜÎtý•ÜßAk£0Æ1îa8úíã.zß}Ë«Oÿ×^qÓœ(§Ž<éÁg¼îô§7Î{-Œöôô,šþׄÙ/œzò.?àïoþÂ-ûH•f¿ðÈSžxøo½ùó4¹D÷b€7s‰dÑŽ`NDpEžý·ßý²wwÉ}Œ­}ÀSžñ÷¯|Ä]§„Xç-äÈæl¦ý¿õw¯ýȇ¿þ³5Ð^yדŸô‘|ä1#C\³»¤¿ü//|×…ßúÞ [ ÀÚ—õ]gDÔOnlÔu+µÖXÆAµZ¯.ŠÒRÏ„-yôhŽRIœû”"cãH4Ì=·¤ã"Z‰…ÈC»Hjµ„m4Ör­-tX(°«IYšrá3ã43C$SHy»-ñze ºöc)¶[í„1ö�«Á`€…@ýZI0 Furî}3aÊÐÁeANÙA Ò9·RyY6/\c[ræ¬]‡tód§*T¬‘$sÍ“%Ò &B1´ ¯r{9s»ôéDsÂIªú˜ŽRE¦ÝN1ç,æ;¬5&H¡JýˆR¥#’­€›» g+\,€ˆÙDLHÔ¬q ††B.Lj.ÙA„Õˆ‰Èä¤ !Ï`‚sC24ðØYp¾ ‚Àm 2ljh4‚c¾ÆõŒ|A´³†ì] é Vr>H7,· ³Í­ÉŒn×RuAÙ9â³ßütý–ë{!¶:{I#> õ»¿É,»ÒØÞ×OÚ›ë­ûéìO/Kekblu§ÝeoI(G~pxµî›—üß ­Uû¬¢Ù[6Ínÿñ7?ûÜ'Ëq?xÉ ­_¯|ç·[$¤Ý]!çýÒîFä¦@p7ýé{_ò ×^ž85nÛoºà¯ÀÏÒ>ñ˜ƒ¨Qê‘8ô®ýôãôÎ û@˜>ìèåqö–Ÿ\rùÆêQwŽ”(8’2Ýüíó¾ðMS+Kl®�âØoå.€lB…R¨­¦Ò ve(g#¹Å²,«~Ÿ„•¨�kÇÔákb aL¸js Á•œiœÄ¢zƒæ~e^(“ .Ð*‰¥Í¡b h·!%¨Î0—PR–9Ô]AÁ°À¬”"%ÀJ‘Œjx )3A "u²LNepÏ!™ûa+3e¡Hpçìpw6Kµ“ ‡Væš,d×®p«²’çJk¡²Éçnm0ÒVLur³BÑj'+¤Ìä…Zí\Ä*“…$–;X&6 ª3—L1‘©y©ô\J—º­Ùæ 9ÔdA8[Öà…R怎»9±rŠ`õde‘“9)“©±¸k�™93¢½ØÙ=¢ˆ7A2�æÍSèóJÆ»§9ù !*Èæ{ž7×qóÀR´8®èÈ©ñ1Í{c²]®Ð¯®z¹•+É¿4[²3±—dE»½Ë¬[³N;ñ¨}—Ý:ñº-s¯>ç²½dùçoýì[WßÒ|{÷—¿è!G^sóÖç}à‹Å~Çîv@ñ­´ÚƒWoÇöÙ›®é_y½î;õuçÙ†ó­·®ªº³Û¶õg·æªšdšWïÿ>ç°{—S'{ÖWÞú´'LM8u·—½ã{Ûoú¯zøÑTNÝÿð'|èâí õ®|Á'•Ó'óªO¿öÉO\>}RyÀSžú¾ï´†–ú‰oÌmùÆW{Ãõÿõ™SÛ�PÍõ ðîeú»Þååô‰åôI+ŽzÊÃ_qᆠô®xÁ‘'Ó'ýªO½æÉO˜ž>±8àOŸòÞ«v¨7XtÁîÿì5ÇŸü„‹�À.8sõÔIåÔÓ?x“¡1ƒ½ò†K^óèÇLL4väs^òo_zò'•S'ðþ ¹õk;剃^ºzú¤Öò§hƒ-þæV_÷ñ—ï·üÄrùCó¡ëúóŽf °íҳξ<û=ãŸn¼ú«ë>vòÐýæûÞüݸÃÌ`î fØæ/¾ê=öѹßó¿÷³Ï}ÿü|ïâOmøîóîQöÍä€6óâÎõöëoøêÏ>rʪæGe‰íöX»Å­V‹Úe«ˆ¡$&K £X°Hò,A³˜RÁ <#õ[¦úãÚLGŸfæ²c\’´%LP^Ë©X¬*ŠƒZÅÚ"¬ŽÞ ²’iªÀtðåe˜l·ZEÙ.ÆL&b1]N¬Œ´¼ÕÚ¿3½o»\xuiEXÁ´<ÅqU'¶™—…Ø¢zÌÙ©“½la̸ˆ$¥D‚G#V̵‡ä¥:;ZŠ\‰[ªPíHy‡[/c¶Î;¬Ú¦:“m³áæéº~÷K7VÝ›ûº)ÕÛçêÍjµyϨ/B𘸩Y‹‰v\QðŠ‚§Ë¸ß˜Œ•qMÀŠV€WwŠ0©0F˜Šq’x…´' ™`.Ú Èá‚॓D)˜.D &ˆ‰&0awÏÌfàäJ’¤1¶.ì6`"gÙ` É Œ®ù‡˜‰�'n)4¦X¢Ææ8¡ñºl²0›9Í/ˆÀó MM`€‡2ÒR#-]×Ý:ÁoËø0Âo Gí»ìÞ¯¸õ먕­­ë¯ÛK–Ÿ|Ôƒ_àÞ‡¬|åÃŽ¾÷Á+ŽÙg¢êÍî©¢0?Îää¬Û6mÊ›®Ó-Öz‘›:ÓŽœÓÖzGÚR®:pꀣ‹±ÉÝH ï8ëÕÍ»k/|Å©?}kÿæFß¹îkïÿ³³O¼âGµçS^ýÞ·ýËñ'Þç¸_»ìÚO¿ò Ýÿ“?u9ƒÚ“ÅÍç¾å/ÞóóÛnúÁOz|À‰gþýé÷é ¾â_Ÿüâs¯A8ä^÷>¼5{íåWžÿõŸn?ëþû-)ðÞ'·óë—]ûéW¡ûâß9ÍCû‰Å~G²zݵ›�Ðò;Ýi\:­înKþÝú’³è�¦íçïyÞlQ?Y¬Ýµ„ƒW„…g4oüêÛzú[ÐyÈ›ÿùc~` x³•Œ‰@s?»à¿gL>ø´£¦ˆq߇ݻüúUÛ¾ñµ›z'Ú2¡àf "ßvÙG¾UXa<é˜wÿ¼Ë+޾ÿ ßôìçÝ-�ÔoÔS,îÈ®qÅÊi§Äƒ;•‰B‹-•(zÖHLub‚‰±ìÆ]· ónÏ<‹shk«rYZ‹n«_«fÏ‚° Z%€X2B‹“ÇP9ÕNîe`ѺU´K@µ¤@T´tŽÐG˜ vöº”È-–äÜ5ÇF%±IRH¹¹îKŒAQ“ÕΉÍÙ³…@Ý ö"Š*™4s1™ •ˆKbOj TQ»¦AK.ˆÙ,[® ±ªC.0G(Kçf/jj€¨G·ÀÚlF�q%B ‡’Ó¸Ä9© H¬¬Ë…Š·jcH‡)aF½US-T]F¡,sPÊäâÈ.‘çŠóò€ÌÜe"†µ„zW'2!Rv&'ru0¥ ;-læÒFF"!¨¢¡r§4fÌî r”ö)6„Çä6Ì,äóf°F[I»¨æ>’sÈÐŽÄÁzøÖ^‹¿>MãwD¼ç+ßþᵆ¯±ßÊSŽ?¬?·}·éßö…ÿ~Õ£îuü¡û>÷‡?ìè}Z1vÜþÓ?¹ió?wÑÔšo‹Æ|aë�åøO,ß¾aÃÌV]5žÇÇ¢¹“ÎXÿ†jnkv¸½üà£B,v]5ôäó.xî¡çœ~èóäý›Ë¿x׆·ÜékO|ìÿúfºñ›?ÜŽ<ta³å=ϼä+§„õï}Øã^ðýÙϽý›7=ü±�í^ÙyÿsÍ Ào¸~s?»W~¶ÀÚÓ>ð/¼ßió ;;ѽ?o¸ç™ù´ƒ°þ}{Ü ~0û¹w|ó¦‡?vÿá^ñ€¿ú×÷íó'{ÒÅàû½ââÏÞw�ËUßwO¡,¸Ågÿá‡Äû¿ýã_þó5›¿ðÚ»=ýümáù€¿úØû÷yÔCŸxø~¯¸øó÷[ wÅy�€ßý—SßpÞ:”÷ýû>ùÌC:<Ø@ƒÍº¨·Þ¸�&XÁ bríPaó5Û¡Åäf &Góµ×g�¸á¢Ë¦îtØa·\}õ•ß|Íã6µÏÃ3ïÄšs¤ nìên@p[ÜíJLÐ,±(-s(¢¨ R‚˜9ˆÉ3ÀB‰‚¨u™…RW:Á©5.¯ÇB»t)¤µ³‡Ì3NµHÉ^³HpæY›Z5,jÅE›ú‹ò,B‡½²vé¤ê1´Ô3­Py,OªÎi݉Q)˜öK)Sr-[ž¹ˆ±guß{í=³¼&0±;²›FTîNæ"Pa^G*Ì¡¦ ¤Þco«rF ˜{VäÂJuÔFN5åR"8)ŒàË®@‹M2&à=ÎZ¼¤FP5'ÇœS‡`Ò'јŒ‰âTæPƒk–DºM 5+9[‘Ås ª“ «%ƒ(¼lˆ�"VÓH08{aR‚g¦2C…@LpS¢ÂÙÙ 2rŠ„ÔHí�;ŒÀ,æÎ0¢Á1"n¶$;ѼÆÐAà†éL‹W‡Ñ€×v56æÍnó›Ìh‰ã­5Š»õ`¼šÆîp¸àòkÏû鯢5¶peKާ¿Çô—¬Ûqö9—¼øÔ{ßó°µw];àòë7ž}Î%­›í,[¾§\óJEó]¼3Š"®ØwíŠCŽh-_“uzvûÚÛÖö«Uh­éìsdkÅÚln¦óïÄ ûþã{N†©Ã] �+ýÔ».ãGÜe9�t·Ïfw¤=ôAÇ­aw^yŸF ºîG×ö- òœ«6_¸ñ{o{å="ü¦¿èì/ÜbÃÿè„ÜôÉ“½ÏÄŸx¿§½ûëÈ‚JúàãÖ÷°ò¤6^~]½‹ ë7]Ìì·^»ïÚM­}ÐÔ~šºï‡\cöê«ÖÀŸúð}#…}ò'÷)wÑž,°ÿüÝ�6|ù¼+û?óŸ~îÇi°#€ˆwñ5/ȇ¬N¡ßˆ ä†”´Ñßç—~óŸpáKNd _ùþsn®˜¢³8 žR³¹Í+OUA Ö²¹ˆ‘BYÑ¥Ón…$Šƒ9f0ˆ´¢(LØÄ+Y¬Yjñªâd”ñV{‚¬åE êP&N$ c‚pA(„ǃb(XLc±5Ñ“èí¢3U”Ó!®lñDÉËÛå>­±5eX]ÈŠVg:ЪNk™èŠ¢£0Ö ã;Î�Z®!xXd+`¥9»‰2;™�ÄⱤÈð¤I)A“Y KjY‘«Ü5Ÿitº9åøŒë\•»Yû ³JÛS½½N;ru³æI·ºuº9÷9W€‘W–¨‚+‰H)¶Œ0VÊ2 Ó&‰V™.xŸ(k"íe¼,:‚1ŽDQlvn$ÿAË áÆIÐÈ=Ü)»ªBÙ3`æF 85ŽdäænÄ&ó1Uˆ4„"(ÿs«4ƒ•Ä`£ãÀj¶{ ›ŽwÕÎKƒt»´…#ü>ÙÏö²&)Ç&Ç—¯i^cË×´'¦÷²ŒiOL_xÝΫoÙ¹p冭s_ÿé–ö²å{©%,ΰ·ŽE˃ϕ>ÓßTM˜¡SøäøªÉCîY®Ø×ÍC,`ó ·ùIº3] ÜC�è¬êÜ|w'sjæ]×ÁŒ½‹·D˜:䤾踳Ÿö=­¯¹äúú wÔ§¾Zþãÿùúy?¸æÇ?¾á;_¾á;_¾—¾ïô5óÖêî€iwcgÞeÅH <³;7yÞ»u££Ù£3|íÆO|ì³§ßå/óµ;ˆ›šÊû¯Ä÷6aæÆí™=ÍÜ´�Vº¼p&rBpÔ ËöY\ ìsÜAË"Åå· ÿ³;6ÔY‹VÅ© ¢¶„3„‚l1 SÍ<f¦1Í*"²fâ2d£@¨¼&TBNnÂÁÜT(g÷©²:åX,A“VöRÅí ×¹³8“ch"9K®µä¹Í­Z»QϦ5¨H…‹›„)ò*D/¨H?e Ò6ÎDË]ON±¥y£7ÞJš•ÙL©`«- Í9 NînBÜ <Ct''et@=qRô‚‹qdU"¸%«Ž‚>{è¦N»HE5€ÖÚ#gÀ°4d׺«-+ˆœÅÙÄ“i©A� e*ÝÙ;ΙՉǜ�Ðvµ.%[Ǫ̀KöŠªÂ€ì^’g#æ¶£Ž°š± f‡’D­ ,¦žŒX"™fÀœ�2†ÓÀ|¢`n ™™‰³öäÁÈàó΋˜›†ÍlÁAd1î†|ŸŒ…ÀQ»~Xº±Ò÷ìˆ?Ò1þù‰ü‚BøƒŽ?âÎk×,|<pÍŠGœpÌ‚ÇÇ^¥1še6ôên½eóµ?[ËÎ:>3¶zvlõ¶ÜéUjÕLcÙnC“»ÝÆšlÏß­;÷W̹Ï]ý™/o€ƒîrP ÝrÙG?{ù†Ú ÞøõÏ^­�0¾ï$ëÎõ›×>øÕï:ûü ?½þÇozhຠ¯­tݹ߸bÖ|öêÏ~y�t̥~·vwøøß´uëÅýæõ½gUbüð£ö€«?~Þ͵çõç{QµÀîiJ¨zyÞ‘¹!ÄÃ_ø×Ï?ØùßÏ~ôÛÿóíÚ¥í#îŸ1�;ÏûÜUÛÝ7_ü_ß®L=ø”ý ê]zöËö˜ç>öu?ÜnFÓwùãÃ�`ã•7Ítû Wl€ý]S úþÛÿúQyÉig]>KAHਓª.Ž3ƒ3Ì p e`æ¤BCÀ1„`$"°-«™„ÄêZ[fÓn±u ê4(°°»I2583؉Ë…Vh«2æÉ=ÂR@ÌuÅ©)0ŽÔ&)–I«E!ÀË ¥´Æ"O–²2+[ãË[|àTû@‘ŠrõX¸ód{²Œ+Ë8&¡ÄÀäÙ££ˆVÂ{„ 1&¦@(…£8*³¾yß­'Ôä°nÒ^²-®½”6÷ë[ª¼µö­•n³´ÍÓL²ó-Fs ªjKö Z¯ïÖ{¶¾_oHØÒ×ä;a=Ïš0k®É™‘àîNLE`Ò±#¼Œ¥$Y¤ˆa™RdD#8»1{#!È.B,ìzD#(YRµ>‘±¨»k£Žd'6"röÆ/ï &bFãüÁD,DÒTä &b/œàÃͦ‡‘Æõc`ZãE§At."'vÆbv4e΋k<4 ìÝd„?xÜýÀå/=ùÈ{¸üòë7žûÝÿðš Çì»ìå;æ„§û³;nÃ6FDî¾ •SšÝ¶e–X'VONM¬\UõªÍë®ÛÑëÏÌÕ]):Zõ©Õ&vjh÷аfÀÏ?|ŸÃ¿° Ûné{ô ¸6í¼òÏü‡g"._3é[¶lË�Ð~À“Ÿtp¬ÿï'N9å³zÄÑÇ0®7]~a `¿ö/ËþùGî{Ä9‹>ÿkåÖ²o\{Üj\p3¾ýºãïùáµGüÉG>ô¤#‹¥‚íQ§qü§^ùÃúü3NÛÿ¬±›ç|¸kï:_ ^{Ä£?úÞ(OÿúOŸuýýþæó×îqO^ý­sÿ÷=ÆhH(tš:áu/=úܳ®\ÿžsÀg&ò¶ÚxÖËïÙbîÝré%\”QŸZ;xæ«òOÿû¼­¼áÞýü¾7_~™+úêG¯.‹z㥗|ë⌴¹ò@¡ýÇ^ýÈ7ý¬[íØ�7½éÔ§¼/¶ïÿÎ÷ýûÃ'BˆîFÄ"NCŠ"Ș‰´æà@Zq(=I¼oýè%¼™Ø§�� �IDAT¢“e·ÊŽÄ‘[  LfgcUŽT–‘Hzž2[´–‘9“X¨B? E!²öc™É£ˆ¢å©†•ÂY­Â뺒’Ña"ä1‘ž…-ÎÌu¯¦’]ióœ+u8’;ZŽÄ F1¡0ˆkÅu2ˆÕ¤¨U¸ëÚQ¦¬3壓’)ïôzg"k7Ñd€jèG¯ûý"£õûÈPÇ^æneáÖ‚E)¢ZtK„NÒÜs-9ÔµÁsÙ–BÊsÚ…öLÜr̤� j'hÄ…b65fw Bnæ`ubω$ !ÙÀ§¾Ù/¦Âd6pæ`"Äa 4ž­Ãc£C¡…¸ ‹›Å`D4^µèмlmHü¼ëˆSCrg’EÉnhx—é`·²‘ÁìwGî39ÙÚÍván´~sô«µ]•c‹n÷Gí3¹—Z^ô#ŸŽ³Ï¹äÜK~Êñ‡½áO|øê‰—?ä°/œw>ößg¯.ͲËöRU…ÉÉ}'Žˆe»56ËvNõØøø¦u×ukê÷ú%G)[̛߂³ßKÙÞÆæá/zý3oøÈ>½ cöÊ×¾÷QË…@ÓG<ö‘GÍ}ë'ë6n0¶öÈ“ŸðÔ׿ä!EJkŽ{ìƒ.;÷Ò+Ïÿ‰4}ؽþì/yîa½ÁCpø ÏúË>úwŸÙ†±ƒN{Å«ßsêrÙ`XÜåÙ/:ý¢7½÷Ò훯½vsÜݪeÅgüûßo}öÙï¼pã,úìw=âÚWœýŸ=È�¨¸Ë³_xúÅo*aá°Šû?샟½qÝÉøÁ÷ßÿˆg¬úöGN=¸ìWˆG¿àçwÞõ²w}íÖÏ ³ßýŸüço{í£‰ŽaoI& aÕ#_qÁ¿¬xÑß}éë—_¾ Gžò˜³Þò¬G¬[ˆ^?XÌn¾aË¢çOÞ±ýl_?‡lŒCáÙB d”ˆƒI&ÄÄ‚±Y«ô.˜ F¬½_2©DK¹vÍT´LÀýÚK’‰;5NΪavsÁÖ«sYHreÆìDäKƒÜÅ”UZЍ¸Ç !'+ÂÄLšE!ÓŽ).ªlPn \Ìä²´™Ì(}VA4$áPëL0grA¬¡¬†q¶:pŽ$5*¦:8©WcrcÓÚRÐí¤$^'gAGe³9§¤¹vãsÎîTk&Ñþ•1ÖÀÜ MÆØö¤È3u1,7¤ª.Ä¥Wå â݉ì=± áÌ<. qåœL9SfWG6¸QÈШ+…\Œ“¹ˆf𤠡À0c µºXà R‚P&˜-S h v°ÑÙ™æ Ø`ÃXÃ6Ìdóï›ìó>MHcÄõ˜ºð愦쮦Fö–¿x²Â<™Í×r[šFŒXíwO»×!G­líêÔ \³yæE×Þ ´w£oÛ2wÚIwyì­²ütýæ=ÕrÍÍ[ÛHoüÜE­›]uàá?ÜŠ³Î½ìå9l/Y�бÇ{áù_“ î6,5aÛ†w7;¼Ný™Û½_w¦Æ$ÆVkö8i÷F)zW¼ànù¾8òo>ñ½]¢CÝf$ì[" wå îñÌ÷o‘¯ýï>ÿ€¸ç6 ÆnC—;sãÍyŸ}§�ßú7ÿø/nŠg}õSï¾çâl"2¬Y}agØ.Ò„Nîœå¬Mà YãG­b!Gn&€„›˜ÃìD¦î¤¬®D&¨Z6òäPP‘(—\Â)ˆ©Ç�O‚Ò¬ÊIXÌ4Ã*%˜¸ÎGN5‚1,‘K.û­`ý@±,Äv¯Ÿ„àÎ\’'B()Ds+ЖÈÉrJAÉjÕ P3„6çžqŒ‘%gc˜e°;Œ=({†Ô–ˆ»·¡ÝÊÜýÀ©N}Ø–ªÛ›• Ø9—d[¯g9Ζúj1x­Ûƒ—•Ï™§À5Ôk2çÆO5hHž¨Oîˆ}ï'0EdUé°ªŠXVÎ…›2Bå^8KŒYçȉ˜,“ääðÂcF(1ˆˆb¢E‡å‘‘uºJ涇©›à š=÷g¼ßá«S—6ªVVõ5Ô’¡N @L¦Ìš³˜83¢R&‡e'IuÖ”YJ·˜5–1ö“ ˆØ2ˆ]•…2�2XF ·H’�7ƒhàåan0m»Á¡4"<¢¾pVƒ^Ÿ"3`½EÝDsXKÃY†ywÈáXø·“Å3ivCT¿È•~S8ÿEyü?ºÁ'ËÎÄÖõ×íÖQž9Üý'|þY´öéoÞïÈ{Üž,³[7V½Ù©5v&—7¿|vǶ ×Þ:KSÎú_z§«>;ïâq«ÈÀ þuCĦB¼|z5 ƒho”@{·óýò1±ýW䇦ÐÞÂn5²èÏßÿÜû|4ÜóîûOôÖû;×Ï­ûýÅ‹Žkï&Âââ ó'Œ ¯3CŠcqÁKn ¸Qþ¸‚ºC„È\1ÆÙšU3jxA=7~Žu6#¨+3³°«±$WG” Dì‰)dM™ ‰ªHØ !ÌŒØÍB(Œ‰äìœÝ9³Ps%0yh›ÔF˜Ëš“(!Zì;µÅ•É¥Ý Õ•œÍØÙ;$,ÞwUF46’dý ë…n#´‚ƉM-¸WLÊ¢_õÌ©£¸¹–m"Žß”u\âLò©¨[‹ÊçB.(CÙÀ¤f„LÑÔu'5cr+ˆSȱ…Õ]Ïn-ŸMÈ‹:k,æÔ8²ds¤œ=¯—R›‰„53êš’“#M%!×-¶~r¼U§d+²Ms¡žQtRFqj‚z¦‘%³Ç­9å¾)¤ò,‚ìÆ^0 eC (9™‘¸—(êSi‰‰+†Xê— A]©»5žôðÂ-SH®ÌÊ(’#°ª‰8!À‰Äœ<(åÁ™eä ÏŸd6çjÁ‰‹·‹ iæe¼y_ùÃÜv'paØ­l‰+þžŒ#ãÙoûNOˆíöÚ©£ö4qï3Ùþ±~õ,û»ë;Õ^Ð%î’e¡Ä0äÑwa_˜ǰZmô qÓ°óÒmr6†{÷Ãy(lÁ@>bþuŒy^yü½N8ç¼ï\p£í}ÿ“'=íoÏ<ùÐ¥ša'‡6QO*Ób(¸¡£&[îsk‘r7IàfýÛCÆ"`%eYÊ cÈ!›“z&ç•™ÝMBh¶@&r˜+iVFeàÆ*ÑS !P¦³Òì'«)H‡¡JQsŠÂ‘2Ä9Ǥ–QJîj)¥XmÚAs¢@ ¬Œå~,I­(Ø+€[ÐÉ‘ƒ(q I°v;XeH’¬œH$+¬ðBâj eìs6i«ÕîKÕñv®R—»íâ²~è·«~ˆ- Û§žEÍI™“5 .Ç`ŠPPps•½ÅUOФÖ"cp éŠ:Õ¥º9™f6°8U0Ó­hŠY%C¥îk$ÒÈF`£Ê-¤n&ñsÛ)¡ìZ¨³Nµ¬žcõLQÆ(ö–×ÒnÍh¨WƘ6õrFäʼÍ9f€ ×ÈDLÍY.1H†G£I![†ªË攳0z !u±¤P'I¤ d†¾§L!äd.±Ñú™Cd `jÎŒ�׿Çй¡ s0‘/Á ¢ÅsM‡Ou':ø”ƃx‹Ö±%,åK&€ùcÔh·³;´gÞ³UþÐó÷‹¤ÜÙíÿ&³,Q®5Jů¿íqó[:¼Îÿ¿š_€F÷Üóæ¨ ËÀóZØæ´ ¨*1•à 5Áî˜iá”4H�'”šyÒÚ„L‰Ø‘]I™KÊ5¢Êpee·�J0a¤”É# ž…ä™2k@$Ü3Dæ)T‚3AˆT“›Á½®$tz JIˆÁÈÊ$;'e$­@Z3¼l‘&!n¯LÒî÷¬–V`¶œZ¡_PA\I,û˜HØ«LÌ¢îѬÊÎ%¸¶:D((¨(;åÙÙû5…וĜRRM†YódÖ5ìHÉØ»µRWW½Ù*ÝB9%©I«~RpP‡:ƒÜÌœ‚ºÃÅà‰¤ s®¦ âu"c Á£qÊj•»¶‹¢›xÜ»}k{à–”³V—êDœ½ B žsíRLpžË: JÂkâØt§Xi[Ê5XÂØX^6[bBê¹<SØ-³¶Ãõºœv¦*Tè[35æ…«,°¥”KG©O“¹J°8hŠ=µBQú"™�5)Aܬr/(¦LQ,[�3³3bvb‚Ü\È šÝÍ nNziVV A‰hñÈp ˆ,è}x\]:¯zpâ¥ïdH¿b·ñ Óèüç_}öúõà–k®ºu4Þ=a¿£ïñË`ý•CJÅùãÂý×À¾wÞóÛOe~{4{´;%)íµt¢Á^V‚ c"€˜á€ª§:‰È0]5Gö6¡Ë›Æ/ßpu�¡ÙÇ oüÈ Ð:‹EDd­Y¬N\#™[† ®2K ÆJf &xU;„ìZ€*ä’(y…LÙbišAžAE³öΑ'. 3õÚAÐÔ ®ÕBª\„{ A2LR¿w­"¡®6A¦Ô[Ô­µ7ŸÑŒÔ1™C.+«à³!¤ 6•¾ym$=#ÅÊstðLšaÉ4yP…¨fV/X4R»2×¹TRîu4fAØOì–Lž¹‡ÚIºcÒÏ4S)Eîôcêö‰[‰BˆVg²ØG™# %÷¹–·ºUKI“‡!™ÊRËdU7» Îr,s[«œJgˆSL9–¡ìive‡ôñ„Ú¢£×Ú­w¦ 6Ê6ÍR[ÚTÔÞSwkõ½lµ' e©«ç´ÌP{gìEtó²èVUTd*b±ÝÌ)FÏš{¤2)M ”H²¶2õÇI’<åZÝ­9 ÆÀÙ‰”AHl¯ÔLêu¶È”&€³Ysž äË삳¡52ÕÀôz¬—ÌÊÆÇ¢ÃsÌgÜõ̾áM¥·š3Üá`Æ1úçÅÿ_XqðñÄfyånœi°â _®âEÕ`Ö^}åF œ_zÈÍ{0cÞíË|!bx#±-ªjlñÉ\<&Þ6òŇváì—ÅãæË jþ4EùüŒ`ó±ð|þLÅ¡ZM“|ñ˜ú¡Yh¨–…Ìß—ÓBÎfR.gñMó… y·,LY6dõÅ®Z<iİxÜù‚° €l—/4`¾ŠÒ±£Ñ›a‰�à¾dz¤A¥‹oüÂ"+-t, ªñá6Ï+Š9j±ð¦o̱`¾?gà3N>´LtÃ'‰yÜJ,„°voLRƒ>Yèx,6~¡c}x[âÐíÌÿj‹·�ZÜP3Ä&ÃÌçÇÇ|É»ÞÈ|¥•ŸÍ ‰æ‡âBSòù­}±è3–ŽùÆãd0ʇ†Ê#,Ò˜ûs]i¬EþôÙÿ8ê F£}É#üãçG6ìÌ1OcÌ7]{€ó¿ö¥Q-_½ÿ¨Fa„~7qÜqÇ=êIü©Ë6.¡±†1RbŒ0Â#ÜQF3øîxÌF}0Â#Œp‡¤±ÑŽù—0Â#Ü‘il4hl„FáŽKc>â±0Â#Œ¤±;8lc#Œ0Â#iìŽÌc£>a„F¸cJc#)Ga„îÀ4öËNàzÓÿøä>úËçŸ~H~ÿÛ½­Û×’ð{~Ýo­Q?Œð{Hc{S*úöswÏg}gèÊŠ'{ñK;åÑ8rŒ†Â³ý:µr¾ýœÇpÆÔ/ÿàý&—º=÷>_÷êžóø5¼Çl·§%#ÛØ¿ßxû¿¿ýïÿí­/~Ê‹_ú´3G½1Â’4æ€S8á5Ÿ>ëî��+îÔšî¼äM÷–ž÷úëkàPèÓÝ‘Ôm²Ø¯TçHá÷_ºèKgÿÛ[&N(?ðßïÉS_:êþ¤1¸2uðÑÇ3±pMoüàÃú¡?ùâ7N?$`1¶¸è¯;çì×¾ñc¯ëbÙ?ãûì{MɯÀ)Ãe.^Á^kÊ•®y×)§~æ!/>éÿvî•›æÚwyêß¾ã¬S×ÆÛ¬s„~ïðãë~|Æ[Ÿ7yßÖØ‘ÅÝ~üG£¡>Âï¥4æ·5¹û’4CGç-yo;.xõS_ô£“ßøÑ×ÜgŸúÊÏüÝÿë…«¾ñ/OÜ—[RéÐÝC-«‡[å@úÙ¿ðˆÿìNßøŸ¯=õ¹9}èçÎ<ªIc#ü^â¦[nû¬X³ËõnîYo~É“÷ÛrÎÜSžö”ÑPá÷‘Æn‹Uª¯=ãð}ÉW¾ù¼önÓ馯¿íœÖ_óÊ'Q�8àŒ¿}Þ¹þÈ…›Ÿø¤Õ¿|#—T:Àñ{«åñßµˆ±‡žùܧØï”¾ì®~Ó¿^uæß3lc#Ü!1Ûù«·<çüKÏ?`ͼ÷›­bq­¦¦§ŸýÜëú׬>m¼MZ5»ïîvÿÑPá÷Æ|¯Ò˜ƒÂ ýÉ¿ilcÔÙwñÍ §æùÐ zÕõß»º·î»§ÜåC|ãv÷U¿¬4¶´R�½¾å¯œÜû{¨%ùØp«ÜÃþÇÐnî'ï|̲­?ºÎý¸‘46ÂïÞöñw|{î¢ýžµlçnùüŸÒÉO\ÒgþÙ_»ìk«ÿt†mçw_úÔ×Ñh¨ð(A¦9f‰mlOT`.ǽóþ㉫ùö·ri¥Ý™é€™½Ö¢ëwi&]x^-ÙmSç#ÜñƒŸ|ÿ1ö¨V«ýÕÎ?yÑ<ñ!OhÆóY|ý'¾ñÉ•ËeÛ×»ò„?~4ÎGøC”ÆšK-?Çï‹ýï~¾rη·>îÔ·‹ÇvSé¢Ì·ÇZ–¶ Ðu—\µí9‡¬b ßüÝïoŸ¾ç{¹ÓÑã=­²}ç±£ŽX}ô×ÖéªòGW]wÕÚUûù/ÿÒ%_Zñð±Ö¡ûÓº{y:ûoßCóþ@¥±_T~ZóЗ>îÝO}Ùóßì/{òÝWú–«/þÊÛigþù‹ßD-‡îš2}û­ý¯«_uÊôµŸzÝÛ~rÐ3ßqÔ^¹sd0á‰c½Ë»ÿ{çÅñð7{Þ{/ (ˆ…b/ (ŠŠÆÞM¬‰½ÅX¢Æú³G£FM,±Ä^bk•¦( Ò¤w¸²óûã@¸£Xô}?ûÑ»efÞ›7³óöÍÌî_¥ÑP��n‚~óúäK² ²ôýÕÕœø’Diê™Ü‰ß÷ti‚ùzÝXùÑ-¹õJî‡WüL´Úü¶÷/Ã…Kgõù#@dìÖªÇ4-¦Ê|•UةȔ+¥X+žÓ¨ÑÖg&·úõLÏmðÚ?':ó£1ä«Ã¿iÇ-+6ËÝ#"’z¹âWbÖ ®,‹M:–ÓÚµõøÞã°‡#_ÄÕÕõÚå¼ÄØÈЀA+Nß÷µUQù{Çî'Ÿ:=ļ’O­©©kcÏ@j)C fù@d_âÁHY&›¸/ËÍÄíß{ðTHm§µOÇ€y[<IŒ {hz¸ oñ°°s){òíëϪ®R¡U“^õ7zà½*R{×ó§>kúòLŸ!\e±„Ç$É6šoœºAÀ`÷F¾2ªð˜×ÁÊ|Äç½$” ­¢ôB?F«0¡‰×9R[iT×½‹s—Ë!gy& ÂQcÒŽfY lvýºÓDßû6òõÁ(À¿²ƒk;îü㳃Í9•Ï‚ µ™…#æÙ$Ö‘e�Í¢)‡²»Öïvpñ¾²/õ@¯3ÃQAj;ê"} öî;¿ŸeeM4­kUm‚|Cn ýA¾\þàNÑÈ7¡CA0CAŒÆA¤Jn ý‚ R{Ý>‰ ‚Ôb7ö.>‚F@©­n¬IËÎhA¤óKyn pRA©½Ñn¸GAj±Ãh A©ÍÑz1A¤»1œTDAj¯Ãp A©ÍѺ1Aj'!.&ôù£¬Ì JÙo°ú„0êšZuêYÙØB>.ÃIEAj÷aÞqqkbaeÃãñ¿A °¬,1>öÑý›2™ÔΡî‹Æ²3R°;"‚(EC[_ÕŸBŸ?vqkbcçßê”!Œ‰™ec¯–Oƒîš˜YŠD¢ˆÆ>Ò‚„de¤G„=ÉLKfY;.‚ ß, Ãhé885ÐÔÖJË]³2ÓÍ-¬pk‚¾qvvf~^¾H(üˆhìã&³2Òž?ºcçÜØ¾žaìÇ‚|³°2YFzÒãû×Ý=Zjji—3ºRJ¹<ng8 eY+­’)>ñˆ°§vÎMÌ,mµ´´ªºL‡ òÕagblüèVCÏVŒ®¸½NÁ UÉ}âŸÍÌLK¶¯§> ADŽ¡‰EfZr…£+î/ᆪbŒO±,K}‚ ˆ‡+ß(PþèŠnìÓEcENP&“f¤$€¶¾1‡ÃEË"‚|t”ñeY–eeï¿2 ‡ùš7T-S‰ òss²�@¤¡-©¬Vâ°En üþ`œ ºÄ "ÚÔkó{÷_|1V*ê~6á_Ûƒ?ô˜´ëy&Ô_4Ùž÷Åõ“FÿáQ÷¾OŸÌ¨Ãû|Yäk 2Êý«Ê?]¿uñÒåÓÅ#;Ÿçï÷{ƒ&_©¡ª›2J �Jy<¾H]S¤®Éãñߟ¬àP>„EþÞH¿Ã¤/0ZÑÒ×kÜ„®«^I>X“ýaûZ2¢ng3ËòwMXpôURjüîvp}ö”Ëŧ¤ÝúѶÚ}€,v{+.!Ž¿>/(î2êN»»já>Tù€áYåà©ú¯W®žiѼu‹æmš5mÕÔ»…—WÓúõÜN=÷¦²ƒ3›rÐG](*:4m¼­¾•"­löê<Ê7”2_£rÃ=Ãá蘔:ù!aÂ¥#G4׫ö>ó^ô—[©cÅbàó™bMÖU˜Eò.<‘[§cs;�6îMdž™g=A•$~¢û€˜£ÜÓq³ˆÙ±íùÏ+ËŸGd |lõùÜ¢äëóbðkcb±D&“¾Ž {FKKׯÚnËßk¤RiÑ9”òø<Ÿ¶þͽÛ*‹õ·åšËkš©³ia'Ž™8©~ø6mRã®b¹³úðhŒ~JGÕ”{Âìû¶5b�€Í¸¿¦·‹!D¯ñȽ‘byŠô{k44`!jv¦}#�‡-r¸-ؽ¨«ƒ!›.Ë?ü½o}mBˆq«_.&MçEìŸìk¯A!z®½þw=EVF´,éÒ|;!ÄÀcäÆ ´ô]ܻ͆?š }Žg&Ï:¨m4üFŽ\týÙ›ñ¯£Ë'œBU3Ouušô¬àù>!Dèõ¢Åa‹œõ¦¯ßÚJpÝ–„ŠK¡˜²ÙiÊþ–jÞâó/u×%„Â1ÿþ~AÄüúBBœ—„‹+%qñƒG}ïeÊ#„ž¾KõáعLe‹<êëý›‚gn^Õ!ãß-A9Å3„ ….Ë^HÊŠžäW'Ë”åcZÚh „&Í~Ú%.Ý%òƒ× jf¯M!\ã&ƒ7<Ê¢h¢²‰ú™ÒÚ(ozÕçä³N*–3x–}ȤÒÜÜ ð]bÆí[á§OÝ:}úÆ«ˆäè¨tùó&CSSßÒÂâ̹ÿT…0\-«:Nu\Üšö˜8»§~Ƴg樂ŠÃ—ºë7šµ~²Ÿ³¾ºŽÇа¼Œë‡77×Щ9Ì>S@Mý/ÐÈqêý<JA¿§½šºé€K™(M?ÙÝØ~ì\JsBvŒmi§+R×i[5ì÷gx¥@iÞ«ƒ?¸iŠÔ5M=­¼YA X7TÙIÅ K—–~g÷³ží͹� ~¶bNPóÕWƒï.ÛþýèÉ,Èâö òx£Þ¢«¡/í雵>Ðï·Çy…· ÏV- íðçíg×Ö4¹ûs@×ncny®¼òüֶޝ— žÿ �ØÔs?µ~©îœÓ!‘¯mȿ߮·²¢ÉÛ]¾é¼íáëÈ 34·ýr&«B?/þ}‡`Æõw¹a+ÍŒ}8QÃÿxØjWAý•bJiÊö–"Õ¢A²v§ð—[©2ñÃ)ux%Œð~ÜU–=V§÷õœÛ£M„>ÇÓ)¥”Jßni"pœ\@ièLÇìÊH¼Ûãúð1§^{ù66òÑáùÖåÛ¹Leå¯_)ßµ5²á½wø©“øðÆ;*æBKVÄ¡¿ïÖ]ø 1+ëåF§cƒ:/zš_:hcêý°áÒ‹¨¨K‹ÝïN ˜q+TkRNÇÝ*j'SÑô²èòÅ&¥RYrJRvvNvvΫW »vîÙÿïÁRÇ®{BB"³²3óòrËqr·˜yñß+©ÆM›˜påÒÅ¡ö§žÍL¾ù£ú±ï¦Ýršöþ³[[{eoîÓuÙÓ\Ðtëh—zýFœhvðÉP"•Oinع'Ô­c4rÇð çìçž~ö",ôÖ®Ù,@A–zq²ÿè+?¹úìÆ–îÉÿ ¶÷­´"?RE_ãêêš–-ɸõx‡««kfz’üHOIˆŽxñ,=%áýÉò”ĘƒÛWGEE;ÍŒs}Œ*€&E�� �IDATg>Χ¡ ë‚vŸ3i,¥”Ò´šz.gI"×7bôžO—Ÿ¿\áJ †_Ï.Lß÷¬|4Ïò‹¨Mf SÕç», SéÛ¿›©9Ìy–_(N¶ØYäõW¬LA´$r]C®Ù¸;9ò$¹÷'[‚ÎÀ+Y4çÎXA»cé…y3Ïv×2V$ÚhÄìÂóç{é踜E%¯ŠÝU-Z®y¿óeÀ&ïkA„]Ïd”“ªrc••˜÷`’•¨ù_1RÅ›—òí¬¤²”ÒÜ“¬µ:ü› £4ûúH3ÝÀÿRXJ)•D­w8/ SJKU¶ ta]Ðèy:Ù¨)ßdôíÅ,%I?ÕMÇr½\ªJ“òš¸¢Ú©jz•]A>·¯NIŒ)gð<°ëÏœ¬tUǘûÏùuÜŒ™#fÌÑ«OOJ鹋§J”Ò^}zΘ9bÔØ¾J É|½³i‰‘_ÐhÊù·©9Yé9)÷~u­^G²Òs²Ò3‚—»3º}¿ÉÎJÏÉJO²°Ñ|..'éÚDkQ«m/³“®Œ·µî?³­û²à´¤' ê ,MKO¹6ÖRä½1,EQnføÞjv?ßM,<“z~]¡Ç†°r*{`ן‘¯ÃË÷5®®®¿ºë8÷¸Zï_]]]ËFc…‡D\Ÿ›Ÿ›-¼?YÁQ†œ§ûnýº×‘¯ëð¬¼5äó°|} ‚”¶ æ~©ÛÑMK~šgÖ¼¹QÚÓ°t™<½—ƒ|‹$WÛ\›oáQG“}#9É92ȼžñ›«Èá;ýš—*Q]ðæA4S·m5¹J"‡6ΠËø&õÌ £8š†¢ü”œÒï‡,G4�ϲ‰­H¹*“]9•”(t2ÒíÁ÷¶¶ÍzŽ¿õ|D6€rí¬¼²9A›÷eùŒkoÄ�¨7ÙWëâú IÊÞ’Y¢²�<k/û­=—†zÉ_f•È&{wiñwîÆ|B!:þÇÒSÞ¤KUš½2†RU»\MÿA]A>ÁšOyƒ§êàC&•¥$'gefgeÎ\4ièYê(\ÉÌ–Ie*"Âm±êê½;ïÞ¸zdõ€¼õ½Gì+‘Gi<‹†VBJÒ‚˜ hâСž‘ïõ3ñjj˜þ<<]&°õm,x~:43áεìú=ºw·‹9û$-5èl´qO#Öí7¼Þ£1õÝÚ ˜¼xû¥WÙ,PšuëEîë¥^Æêš:êš:êz¿†ç§¾I­(0­š¯Q¹ážËåË÷Ùs¹ü}.//ôàE¶ív€�Ãyï5 )^ÄS2‚(™ž —QøkamYÊñÚskˆi)œ÷ì½hU(ñ”6¥¬B- CJÍ”é‘*D‹Ã�‡Ç!e@+‘rU_•“¨Ö`Öøî?}ö¿¹æ-qöñ¦æåÙYie3oo<—š _,‹³þT|Ï¡æeÊP¨,�P™DF>—^ÄJ::¼ÛoI==߯Ñ@-ïÚ ë€lZŽÙUJiU*:… _tmìÃ6€H¥RÅ3ÝS|Œ �|Úø2)+•*}!!…µ±:š�àìâ´üÖ¡.«öEN¶¢‡Ç(ìù' 3wE³| rîä”·èÒ£{Obìz4°iÔNÙé ‡ù!Â&Óm@©¨Þ´s¡]®ž<yîâéE=-|ìæª¦”¥œÆ†ž`ÂTi·Ë§ÙpÏ0ŒŽž±Žž1Ã0¸6VqìtNó¾îªÅ ¬<mhø¹gY…{ ânÞ|§ëæ¤SÉ2B›æŽðlßµ2Q‚‚hec+Yøå…î!ïÕ•Ð| �À¨ë«CvQœ%M}ñ&»üWò3hÑkûUŠ®œ*›ýòpuëù Ÿ¹fßÇ{Û¾Û÷ףܪڙ¦^ýãÛyëí'E<86Þòþ†c1ÒŠdK__~œ&WQ{ëvо»ƒ¦‚ñ››OÄ'Mèäd¨Æ!Ò¤'ÏR¥[kUµ©hz•]A¾ÜÚX9s’Ri±Çâp˜ÃGÿ¹|ù¿+WNÈË—ÿ»|ù¿Ù¿þdm£«¥«©§§£z_Dñ7� /5GVê/<‹FÖ4âbpá»8îÎí$zŽZ„w_Ë„“;w†¶k¤'´jݘ^Û¾óF¾SGgQaf޶S»þS–þuîÆ–VIGv<Éå[yÚCÈ¡›É²*m¬¢¯aÊÞ|ðQª(Iôé£Éûyh•7ÞZtŸê/Þùø­7_¼~rlÞà9ÏêŽ׸²O[sÌ{΢}úûï~ù÷΋è¨ðû§6Íœ°!¤@Q4ײû„¶éøyߣ¨è'‡çŽý+�Ok§w=Ë¡4'|ÏÌ¥i¹·ï\m W‚cß%§fS¢+iNå²@–¼Çkf,Û{õyT\\Ä£Gƒ%fõMùU´3›taý9ê3¶§·[ý†÷5}´ñÀë ›_›ñÓ†ëoBÏ,ùaÞsÇ£ª)NAš¸Ù2aG.ÇJ€æ„î˜òÛ“òƒ&յμȿyÿÑR•½HUÓ«ìòyçË<U®"u!OÈ—&¦êY™i|ü»ø÷èÜ)пcw¿î:tëØ¾kÇ]}ÛvÊÏ/P%DšñæEXXXhpÐų¦Ê0nÛÑ–_jƒ ×´Óøâ=?ÍØq'"êÙ©Å£;í.JùÍši¾ÜwUÚ¤µ%Ÿ :8ÄŸ8oéÓX‡�¥yO7ÎY}èFHt|üëû'N…JL\Œy“.³úiûq較÷#ÞD¿|xþ¯y3·„T¸Å£J¾æ¿SQñ®<î·õ'4Ó-”2ëóÏùwcGÍhQ7„6>?Þ;ǽp²2Á¤žß†[GLÆý2¦é²t�5óÆ~ÃèÒ¸# ¢¹–ƒöôÃFë týðÛ‚vÁ‹\ Þ|ñ?“ú õÔš+4qýnúôö'•+L§íü¹-zŽkh1ô†\{³]™hN¹F ,B€¨Ôœ «be9¥S ùqGgu›™AAhÙbè߇§8óTÅβøSë/“V½µCžºßš.Û¼;|ìðr­Ä¯?}–Ýá¾Nãâdžcöœší.©¢[ê»uã•Þ£ìµGjë[·=³ÇµùlÕ›˜Pùâέ æy,�_Eí@EÓ«ìòå&Ëyn¬@Ü·Ï�—Dz,eÙÜüÜäÔD©DLX–ùä;KR=}ã¼Ü|%EQ @¥7§´ñ*\{°j>dÃß¿6U§TüÞuP �ŒqM“¦L™ãç•«Ö?ìÞ:ÅU@)8ø5ào¿êÚÑQH)h5hï�×ß5mnÁ£”ðâO,ì3ÿM&¡¹×€õÛÇ9r)ÑñYqzÑÏó'w\ 2u÷é?[›ThŠ*y"âêêzíò ^bldhÀ ×.-¼!—É23R�@K[Ÿáp*SËÊ.Ÿ>ؤM µµ5°q;Z»ü1àéíÑVœjî,åŠϯßðða'Øq«[ÉËå ë¬hv3rs3µ¯ò2­Ù¯SÕôÕÚ%o’C;Ö´íôè /œý¯Cç@U9fèOãÆçäd eY @(È(K)¥,˲”•ÉX.‡³wïÞÍ·×^[;y¤‘G ==ÝrÒ´jç0oë'‰±aíC«|‹‡DRP— �5 >GTe]¤b®óv3ãT¿J‹¦÷·LjèÛØ b¯®½4ºñò�Knõj"KñðιիƒÕ½Õáe]]·¿*šþËu äÛžT,?XS9H¤a!uuõ ÷ëFþ¯ü}Á2™L&cYV*“ÉÞ½{'‹Ë¥­g¬ªðŒÔÄš9ûZùô\U¦äòxùNEïC~ÏoÓsÚ„/cƒ2¢Ù¬'[~ûC|>€†c§É‡·Œ²ãU¯&4åÜ÷Þ}n7¿ó}œ½ª¾È\EÓ±.|Ó~ì—lúôê¿ÿ࿹¹¹¦TSSëÓk@­ðUŠ~Š7ÜÂhé”:Y;!ºíÖ܉[óEUÐï}íýÕ_¥|§Ya³jAÓ×€.|‹^¬¼”•´;úuîè×ù›2ÔGþÞØGÁ0ŒL&ÃþŠ "G&“Væ·Áƒ¯Õþ@>±ÓÒ5ÈJO°CË"‚�@rb¬–®AÅnŒàjCÍpcN ß¿nllddbYÉý‚ _%¬L–”ø6èÖwoŒÆjÓÔÖq÷hüèÖí´d–eѾ‚|³0 £¥kàâî­©­,ŒÊR¼õge²rÖ«É¥šZÚ =[aFy?0–ÿw‘šzJr¢±©ù7n§”¤$ MM…·ï~7† ‚T+kÛ'ï6ôlf`h\ÎSÒ_sÆÊ’“?¼kie+ª”Ý‚ ÈÆÔÌB*•= ºŸ››]Ëpú@a444-­lµuõ„B!º1AÚ5ˆ+kCc“‚‚Vöî*`8ŒP ¨ªC7† RS …¢ªânñDAÐ!‚ º1AA7† ‚|+”Þâñ*ì1A©­nÌÞÉ‚ H çé›'ŒM–±ßÜOjp޹žug÷ïܬš`O�Üp H­ãÙ›‡‡îîìÑb ¥©MU_\ôÀÊØ˜ø¨C7v2„©oÙûƒ7––ò.6:"7'³†<LNQS×2·v�€¥VMª~Sœ9Ù«Å+ ÛoÓ ‡±µpèÕbÈù‡ÇÑ)qci)‰Q!æVö|ž€R¶ft\F,)xýâ�XÚ8ÖŰ²hjTõ‹˜"%$ÉÂØŠÀ7ý]¦6Iñx!+qc±o^™[Ús8+­):R–ÃáhiëädeÕ,Ű²hjTõK˜‚.Ÿÿ­Ý\†¡¸Õ\™ËÍÎä˜qhÍû©0MMÝ´”$úmü†Ù7UY45öŠªÂcxà1<4‚7F)­™;.—RÊ~KßTeÑÔØ+ª<l.ƒn €Kpž27�5ùvÅûn45ö ÕÑA;`4†n ,ÝXí¾ ï~ê¾|Ø´{+‡Núýú;™°ýÞZkÔ;`g�¥/£b)[©C¿§¿oÀöhq%ÓôQÝ*Tø*ÿyì𱕭ä!ŽÚÔÓ·Ç¿q’êjÄOv|:³W“©kQ¯¨ô!Íx´nt×&­ë5Ÿu#§ú.LÃc€)qÐÌþŽfz…‡m½ÞS¶‡åP¦t2•Û¿hýk¿„‡­n©QùŒ_òÀh¬ÒÑÍ<;*pÚ“ÂoCgÿï'Nïî Î²�(¥ò_âVTœpsÓò¿ÜŠÎ`£iêÒ¤ý„Ÿy꨸M+¡0ߦ¥o;{aY*‹ß5xØáÎïïoöA3Í E©JòA"JT¶d+�GÇ©]ï™Óz5ÔV}OZ¡, @²ÕÙˆŸˆJ˜ý“˜�t;ï<:Ùýc~ªd™Œ†QÝM» èß«±¯Šû^Uš~qˆßbeïŽ3´cÇ4'ÁçoYÜÉõ[cZ¬;2¤–P]È~àS�U¿0¹„[fR‘�nóßN¬ðå'ý³`êä!ÄáÊêŠQ+¯ô’‘¦D$3-=­õ´*­·êÒªkøÆµ1Un¬ô2¥§á„Ó]…âÔçÇ6,X:Zý3¯¥…Càgz†…•H€ÇcTê&~µiÜÜm<ÿŸWMs7âåÆ¿¼w;*9Ÿe©ŠIsª¨°–Lj)�@)KåÏ’~pEŠR9Š}ˆˆ•Uh5*Ɉ¼µiÑæÁîô‚&šä#„*Ø„|êÆúÌTÂìcê?n™ä"*ô˜º6|ªà-«^YÅ‹H’—qëä¾ecÏ_±qm 9¿*[¬ª†ç‚rX�(x¾áçE‰=ÖÏk©O�5¯Zv‚H’£S9V˜ji|LCTýÂT6©H�GËÊÑ©Ž&Ôq®»øñ‰žçNFx©olÑñp§Ÿ[>غûV‚ùÏg¯NàŸúmÖÂí7£sAÇÙüÊEc¼á„Ãw�`¤£:í ÙÓJ3?êX©dMu9âW«+,í}²®ó;>Ù²ýjd–zý+6.íiÉ ùQÇÍ]²ýÚëlà7è·ìÏ%ÝL¸JeÑÜð]ó&,:”(®NŽ“¶oâ ÀIÅÊM** â¸F6Ö–öŽ ºý4¡‡^Æ­ËÑù,K)Þȳùû– îÑÕÝÛ×½Ùwýæ Í–QVòößÑMºm É+,‡M¿=Ù·ë¤k,ËÒ¼·g×LëÒÖ×ÝÛ·UÿùÛ¥ËX–Š£·ôîØcÝÁe£ûy{ûõÚ­¨F)ݤ‰®¾Ñè4yÔwžullÝšvøaòH?C"/$pí¾…£´nÛÑÓü’óñby®÷ KâÿÔ)pç ›}}ê°å¯$k7ñöuï°,(Cev63t÷ÜQ­›úº{wî<þÏKñâ’EêßsÓ‰ß' iÙ·QûÑ ÎÆ‰ËŠÈÉ8¶|`g?wo_÷æ3ŽD”¶¹’†(j[;÷¶½FûhgG¼J•¨2~¡¹,›÷öìÚ]Ûùº{ûztþqáÅwRJ)š¶ë—áͽ}Ý .)W•=Ë4VRû°Êäªê�2e–Qz²b³³”ee©A›& ôòöu÷»àб±íg=Ì©”©µÌêÔqp’6úBIéÊŠ•ꯪ^Š‘CÆ-ýÇ-Ù°µ—ÆíÕë.%KËm\Õª5K¹†vÖZ"2vp´Õ|¼jдSI,-}Å•sQ¨RXáPÒóeégGut(µàþÜÞ¾^Óîe+fQÚdyaæ—/ßp_æ;3†�C‘:¤b€! ßtX8ùhDÊë‹c nNë;ášýÔƒ—‚Y×5uu¯ñãuºŸ?=ÌPÐúïWioÞîi£Åf^-›,Ž’Ê”ö>ÙŸ‡…&¾¸½ÐøøøY'ßa3.OþnÄnèµéä½§×Îü1ÄUƒ€ Y²èc§\¶uð^Èý k›gt´’ÒUÆIEÕ“Š¥n}( (¥T~?J¸".È$ÒÂÛ½Âó2 ± œÚ}µ¶,áÑ?K×MøÃæðÔz&mêoØqäÅ §úB�švÿØÆk…»:°·WN™Öôç•cJ^žÞ4{òb½½ tY�éëýç[.[}e½®,Ÿ–RFñ+Q×7àeß}‘æêªÃ)©0H#÷_l»vÝņjI×~:w–¶õúÑ6 +/l¾lËÔa#úoÞÓ×” �Ò˜‡J³Ûf™?}yDÓYüì©slùÒɹ{· ©ËU,–¾ÚÎ÷+..W‹;µxÐÒµú•!‹;6hù=Ûi+yq²â‚Csx äî¹DÝK´Í‹pêA¦¾G]}K©rã—®M¿¹hÒŒ›v£ç¬ëTG=7:øyár‹ôåží¡ßÙú½æÛkf.^ëÑh¡Ÿ©ØžÖ%+7åÂüñJìÃϼù¿2rÙŒ{Ê:€¿äôì2–‘Æ)9Ii%Ì®“râ×9[’ýnëáJ^þ»lÍ­\â¯,:UmêFP¨læý•?)éÀ9w”vlƒ²eŠÜz:øûDHv‡få4nE—'�� …A QyÅÑTåhW \aC…\6EiÏo¿á˜Éò¡#ÞN¸°Ö[C®@ñl£Ò&û¸ Sáá.SfRQîÆ Œ$íɮջc…^mlDF�´fOõ1Ȳ/¯8${ñ×þÎ|�°ž²t⑎Û/¥ô¨Å¼Ï K<¿\i²ÞP©Òz0è9{\sC€C·ÚÌ{þE~wÉ™å ºíþcZ�–¶ �dñû•Ê ¬ÿ6cÓÚÇÝÞ”¦&ÖÎ8©X¥IÅÒkcòï,˲¬43ô¿޾ã7hbÂc oY–žc`/Gyz£öÇß¾¸üÚë]ô<z»o\~4lœ‹›M½yø©°õBW+Mºµé‚`Àæmy�`2hÜЋ?¸“âïÇR�ÖÇ{èq)p¤”2%¾jzL™ÐbÜŠiíöèØÕsqoäÙ) »!_¾X¢ÖrØ À‚a³A£êûãpÄà‰zÅ ³¬ÂgÊR ´è¤ŠìDì¼Íõ_9¦»«:ó‘s_ë·oh¯¹õ‹b)€žÏð ´ ­»zý¾ìZdn{·"$ éSGs}ôuMl”X½ô)ʲ@Å7fµl^´4äÔgÃga9Æç–ʾ»ñç9±ï’éß7Õ$�`dâ�Ò  á5jFφšnvlåµÈÜö:¢RKJì9A]±±HÆ”Ùg¶‰¹lÒy¥ÀÇA‰eÄJÍ%«ØìíLoî Òønðö�£1“CÎ8'ÏR%S[ýðç¾ XY&çÞŸÊô÷ó RÞ±ýyÅÑûqWÛÚF$‰ŠÉ°êª·¢ËSqq‰eAÅÇJ•7âÀ!1Êî¬ÿÞKÈn*ïùn„-[Z'å=\úq¦âdš’ÇŸ´àô@]ùWõ?¬[ÕÉC3�¸æ ­EÀ�qô½ˆ¼¨{ÍìW(ä´‹É”‚RÌ•“ŒS¹Ò8�<c'<Fäh ¢r‰øÍÃHZg„»®¢VU§gï!õwŒoÐìŸN¾í|;õêÙÒN½ô3FcåDc¥×Æ�¨øÆœÖ- ï"§Íl¦ôÝû lZÐ¥ë_‹H/|Oްi¦”R¾–W†Òŧžd»zfß=ð\«ÃG!¥y±Ï£óãžî¶UAŽeB–„r(pëóU¼ú´äižu×™G}ƒ=yò<äöÙßGì<1bÓ²ö@kâl"”§&¶Žšé/bsXÝb… ËQøüþUž=-><Ì؉äJpôèf‡DgË\‹ \}[=ž</#ÒˆcóØR"xÖ>ö'ôv¤¹gSï¦}Ü-E¤‚ÊR @8î?þ5¹ž•å&…ûcÓä…{¶3æ¨0>§„ÐüøjÙ»®z‰rå•u1+¬WÓH$)VX1MY{Êê(6VA¢rûäR%róUt�ÆG‰e”›‹Vlö‚„ñŒù…½‰oîjË?¯ÐúåšÚmÔÆqÎ"��"42æÐDÅʪÒ?GeÇÖ-´¤¢$¶¸ª·¢Ë³HãB[åWUш©oU)¬÷~€TÕ²2W  ïG€’ëò&û¸ ³‚µ1€p›->¹ÜS#2°´2Vç��ˆ„Ãã2„!�(å4Úò_?ãRÙ󄔟LQ©ÒÄ€0yi@ �„‹ DakŠ*•`ê™§]®ž:}áÊé%ý–ýoà¡ËÚé2¸6V97V:£”NƒÑNpQc:ÆÆ"€¥²âm6ýÖü™ÿ¦7sÏ W+mAÁÓU3óäSVšn]Z2‹¥š'œ 3l7Ó–[8ÁÍÔýõÀr…{>ùv¡·@áP±ý¬ìC3DhX¿©oý¦¾ûÿ1tÒÎíOûÍ7JY‰”-,D&“°…û ŠóJ~(ޭDzʳS� ”²”%…c ,”, Šî‹iÑ>@Je¥E𬇭ÛÙ:èöµ»A×ÿš½y»ßº¿~ô*³š_rû¥8ê†ÖVê�`mm;þÙ…IûÏͤqO…ñK¥…ߊô/º „@‘Âô½Â%Ó(·§bcQV•}”ÈUÙ�”YF™¹Ô*cö÷k½…nŠvÄUlj-SGG;õâžYª²ÊõÏ{ª¢^l•ÛW¡cËR#£óøÆfê ˪jÜÁÜ /ùÆû†Vzŕӈ*.ÖSuËÊý°²½ÊJ{¸ˆý¨ ³t4¦dR‘«mãR¯žf錅ž„�­<íá¿#7Sûö0dª+Ùû O¡•‡9}úQfo?÷Ú«.€«ãìÓßÙ§ÿÄÉþÝêOÛõt¾OkuŒÆ*µÅ£ìS€£nlkkegm¬'Åó”R–²‰Á/¥ö}{6´ÒæHR"¢2eEÉDŽ=Z ï<½ÿèsÿÖ–\–¥,ÏØÉ¢Î=I“•^J.óªüÐ W×J ²rÅ,KAûèU†|©Z’ô$8SÛÁXÅ +*ÏR`PV¦ ƒ’ìZƦðöΫy2qRð“t KU,ª”þï/óR"(Ë2j6M|ÿ8mó–©Ó®{‘Wae‹Š*ü*£  #WªÚø%„òŒ,È›ka™²r ^¬p©4*íù>/×H¹}øÊäªì�ª,£ìd…fçÚ™ÈÞ>ˆ)´m^ìÓH1¥•èW*ŒP,B•þåÔ«t™löãƒÇ"®ê ËiÜÊ^�Åc¿²+NU#j›¨nˆŠZ¶ðv ”¡ÊiǼ0íLxe¢"� äá*¹/)zÐÊ´ë¬~Zçúá·C^Çľ º´mþœ¿Â¥ 0Ekcå'«di%’½×gðs/þÑÑcVž~ýöÍóK¶ŸO�…ˆŸm™·æè­ÐØÄ„è‡'Ï„IL\L„¥ŸÃh¬ ;©*ïVxípt¬ÍÈÛ+AÉV–uqíÎÈÂ{4–¥,ÏÑ¿µÎ£=ÿÆXvom,¿¦ˆž÷?µÛÿ[ºábXt|BtèýÛ·Œ,(|aUy©*~•%\üeÊê-'î<~õúÅÓ³ÛÖ¬ c\[Û«³”HžìXqôyL›ۻ×o4ëÖÙF  °¢ò”M 9 Ÿ½~—–ž‘+U‘]Mßs€§ôÔòÍÇž¾}ygËâݯ,ýz9ðiÉbKèO‹t.)"çűõ{®½JHJŠ}výÎk©®.Sñö9 ²œ„¨Èèׯ#Cîùý÷kYzîÍL¹*_R(«ç5܇wqŸ^D�� �IDATñÊm7"Þ&Ä…ß»xäN’D•Â%Z•=ó2*ìC”É•©è�ùÊ,“¯Ü\›1ðìížshùŽó/â_ÞÚ¼ú|"`Ùʘº¬kS¡ª«îØ Íñ"èú™s'=œí5æûVÚ´œÆ­XÕb…Ë»âT5¢¨…Ù Z–²ò¸L‰>ªšìã.L…[V†[f›")±SQåF=ß•§÷ŽÑ>5¹S#ׯ;OÙùRÛF‡[”Œ©\2Rµd@�€�Cý«OþÝWòÏ0ßõ=}Æn{–ÇaT '—ômÖ¸®“WÀò„®ì˜PGPªj\·xTzmŒ*>†Tê±$J)¥D¿ÅÌ Ïg¯í»JMÛØ5°Ÿ÷ãÅë�<ë6–‡7ktlcÌž"êžã—,ÕݺiÍŒ²zN>#4…™ñ ׯ4l½lîÛ½v[B. 4¬Ójä¼ ]Œ84€k×§§Ùõ•}Ö¥²ÚŽ=~™=ÔžGeÅ Så)¨5Ü«Áü-ƒûl�ͶwöPžt}~þ5õ÷MLø1x¦ ý—ÌêåÀ§%Š-¥ñ%D¬]æ˜|c÷ô­‰Ùø†Î§ÍèkÉ©pÁ†•=Ùôýð©S7¿Y³»‰(©2~Ézíç=aÑ|M›NÙ\�<=Ç.ãÜ@¥Â´Äœ•RƒHKæ%*ìJäªè�$›[Ö2$FÉÉÂMmå›ÑïøËÌø¥Œ:)Ñ´ë:´_㨃<*aê²¾TeUt`UçK6£fààÚdâòïêq‹ª ´q•íTT²6%‘”\qªxªV˜!SѲEkWeu"<eM&£uaî× è tá(./�ýžg“{–2u¦?ˆŸ®xFh0woÀÜÒÓ ž«C“+NVÉÒJ&Sk²:üm¡š"‡ÞKõ^Z2¹ÒBL¾ßzáûò‡oá �âêêzíò ^bldhÀ ËæŽÓÑ5øÄBòC—^;rÃᄎóŒmzZr¥t“Æî1éR·õw7úFþÈ쟈ÊV¶¨ùõˆÚ7`ôžÛVô6åÔPSª^QöŠ« øétHˆéÐu ßçŽïjÝ¡Ç7Xñ6¾þó¶x’öÐ>ôðgŽI©,73-òüîóâFó=uð•ÔHõBsÂ/_J·õ¨£ÉÁ×NpÒÂð«¾Å+ÁIÅOLÞ³ý\“™v˜2Þ[ ¯)¤ºas£Ž¯üsIª@héÙuÉd?³¯{5¯8ÝØ'FÍ}éÉÃÕ^'ó!ÛöùRÙ¿Â>R{ B4ß²ø7ÔXª®¸šÐˆxe!ŸüUAÝ‚ ‚ CA*QzmL¤®•ScխɺaeÑÔ¨*RÍ\=wPÚ¥¥$â‚ 5Ÿos¬>w|Wnì=ÏâïŸ Ý—%ceŸ[-Ã1Ó²éèÜÛÕÔ»&‚ òáјœçñŽ<þÛż‘­qÝ¢WÝ|VÈè‘Ç3ÀÔ3mŒ­‚ ‚|”»v¬¾¹‡±ƒ¹® C>û6–²oS#9À9ûì@AtFNV†²Ÿ¸ýÔž“0êšÚÖöÎ�ý*´z„~¾WLßÐ/!Aj¢KΈ³2v°Ðµ­�±Գ‹I‰LË~g\×’kiG?ÿL&a8R™äEðC�jeëT=B¿ åŠE„>�ôd‚ÔD7FXÂe8œjü�a¸. ! “IªC¤Œ%�šZ:9Ù™Õ'ôëÐPÆ� k‡7¯BÑ!RÝ—pÂ!ÕûTC8\ÂUöã¶ŸMM´”wÕ,ôëÐa8ÙYx !R#Ýð¸„ÇT¯ãx,¥Õ)”ár)¥Õ,ôëЕIkÚj"‚ èÆÞŸå2 Wþ£¥ÕxwÏå÷‹„59«-"‚Ô¬hŒGxäcöwHc·ûtØÖãÄÅ ¶\ÅϪsð <tcèÆAª)wc„Ëåò`iÌ¥¥ý:¹8šé9ZÙµë<dÝ­(•Fñ ò †ÑpìØ½“‹F»µE½vÞ²eÒs¹<.á²”­æ�ª_ègÑP¿§¿oÀöhq5*† Rc£1~‰IÅ‚ÐU=Fmà÷]¼o¹§9?ûMð á)y zâ‘ýK£×jæÒV%þ@�)ñ£1š~qˆßâÇJJ6´cÇ4'ÁçŒuhnäåMë÷»™&5³úí{ ŸØ§~9¿,‹ß5xØáÎïïÿA¿ËXQöÒ̳£§=)ü&0töÿ~âôîê,K€R*ÿ€ ò »1.ŸÃWœT”Æß9ûJ;ðÄÜ¡ÍÕ��œëyú�€øÕêu˜ÚôáÎãÏÞ娻\úûo<Â� ! ‘ÆþÝ®íß=Î^žhxµ¿ïœ)Ìnc1@÷»ãÏWx«Šàsø\àïeÐð\°sC �Ï7ü¼(±Çúy-õ �#0°þÄ;AJ•–ñïÈa[£ô™²zª³¶$æÁ‰uë&÷‰X°wV3}Uó¬”R �”ý°me/¡!¥§á„Ó]…âÔçÇ6,X:Zý3¯¥�ôƒu¨„$àñðW©A0å¹1`Þ\-sAÆ“‹ÁiRFñ<†€äÅŸÇtgŸ }vo¥Ã™ÑÃVKŠ6ëyš¢ÏZí÷^YèÂw^x=.íMÒëUMÕŠË‘»±â)+¢féààTÇÁ©Žµ‡ˆŒœêXñí™Ò¯›»·¯{³ïúÍ;š-“§—¥mš4ÐËÛ×Ýoì‚CÇÆ¶ œõ0‡Êr#Ž-ØÙÏÝÛ×½y`àŒ#‘¥çÆä±Nñ!‰;²ø¯g¶ßÿµâû€ÆŽ.mûNýki»‚“+×eÓÜÅ;¼–U˜8ûþ$Ÿž¿>N¾>uØòW’ˆµƒ›xûºwX”½¥wÇÀµûŽкmGOÿñKÎÇ‹Y¶²ÙsËÕe)�WÃÈÆÚÒÞ±A·Ÿ&ôÐ˸u9:Ÿe) ò4ùû– îѵ¤¡$oÿÝ¤ÛÆ¼ÂrØôÛ“}»Nº–Á²,Í{{vÍ´.m}ݽ}[õŸ¿íQºŒe©8zKïŽ=Ö\6ºŸ··_¯íÑ¥C©™nŒÇå  ïŽ¾Ï’%óV÷ªkÖ¨Eç‘S—î¿'&@� î?s|s}ð-;M›Ù jç_!…E˳+~–Ï%¦ÌÁå ¸À£”-{@Q B©LB¬§.;zhç¡uÃêoœðÇóÊRÙ»¿ÎÙ’à9oÛök{©øûV.¥”•Æž½üžåÈÇŽî>±}îèæ†<PR¸âWYÒ½ã!ŒÇ ¶¼÷'AÇ£g7ãŒË§"rˤ�J…Í—m™jÏs·íÞÍ3A§§¸ Y�iäþ‹Z#Ö]¼pôØ4‹+ fmȧ•Ì.(OCJY @)-üJ¸".È$Òˆ­ð¼RC“6õÓ.y‘+O“vÿØÆ«—»:°·WN™÷À|ÄÊÍ'ü1¿MúÖÉ‹O¼“o©—¾Þž?xõ•'v÷3-Ý.‚ 5Ñ.Ÿ” ¹Ôê Ûsû쎙<µ£öÍhÐcùã|�€kÙØV]žŒ£ç䦛ú,:‡•—Ì(DcJ>+|FÀ%\V)ò5–eYžc`¯�{ #k·öÇ7É»yíu+I¸¹'H㻟‡µw02±o>frc @YIFB:ÇÔÃÃÑ\_×ĦžO'O¦tÙ� ø5ÿÝëDÐw2Pų\CW3’—-£”*f ´0?ei¡ŠïUVk9lP `ÃfƒFÕ;t8"—V6{9ž’Ÿ§ÿ÷ÏÑw|ç&&<¶(pSm(Ðóèíž{áhX6˲²”›‡Ÿ [wr±Ò¤[›.ÌÑÙÕÂÄĶå qCž¸“"cY  Ñzøp=.%SZ A/Šòµ1ð<QÙ ÷\MOOÿþãf Ÿïí·öwÇî°&�¬”‘oM$¬T„~% ‘ÅŸ �B O* à‰xÀ£J½ OÉã´ K׿‘.•ÿQØ4SJ ^Ä3æ?XðåÙùæ®¶üó”RžµO ý‰½†iîÙÔ»iGwK‘’=)ŠB‹>Ò’š(èPòÿ"ÅÞŸ–Ÿ \g¡ü+ѰuÔL›#3¯Tör5J¨øÆœÖ-åßENÓf6Óú®ØN ÜP”¯åÕ£¡tñ©'Ù®žÙw<×ê0ÆQHi^ìóèü¸§ƒ»mUj™%¡ \ãºÆ|JqÛ‚ µÆq+àÊ{üY`RÇ�òÓs¤”�H£®gLr4b�$ ÷î¥é5µÕ’{.�D^NÑg‡ÊRRf§¢€#Pñø3…¢%6ýÖü™ÿ¦7sÏ W+mAÁÓU3óÞïý.ÞÎyžõ°u;[ݾv7èú_³7o÷[÷×^š¥ë¥(”§gmgC¢sX;nq:qüÓ8ªÕÐH,!P¼2$»házUñ–JY‰´0’™LÂʧû*•½¬ JìT¤”NƒÑNpQc:ÆÆ"€¥²âµ±r ¥éÖ¥%³ø`PªyÂÉ0Ãv3m‹Ö#™º¿XÞY¿¤q¤oÃ!€»©M“ŠÀpDŠuÑØƒC»[¶óܧ/ßÞ>´d¬‡ÏÀF:„�ñ­…Ó·Þ‹zqiÕ”%¡vC‡5PW|nLñ3WÛÆœûöêíðøÔ´´<ŧÇT<7…c|AbðK©}ßž ­´y�’”ˆ¨L°”åÚ™ÈÞ>ˆ)ܺû4R,ßxβŒšMŸÁ?NÛ¼ejã´ëÇ^ä•ÿTè¹û×eî9÷ºàýIYêýÃÿ%j·ö³¾–r3òäK$oòXùw†�eeE{'X ²ØG¯2d,KYV’ô$8SÛÁXÈT.{EÏQ�Žº±­­•µ±žÏSZž¡Xʲ"Ç­…÷žÞô¹kK.ËR–gìd Q瞤ÉJI/ò¯øÜ‚ µËñ<¡âÂGÇ­½sö¹?ù·jéÕ*pÜž¬ö ÿ;Ü– ¾Ë„É6ÿl\¿EÍý·î›î** ¶äÙ?ë¶ž9­YøÌÎ.¶fÞÏ-!à åÏ)9ŠÖÆ8:Öfäí• d +Ë‹º¸vg¤ü<càÙÛ=çÐòç_$Ä¿¼µyõùD À²ù/Ž­ßs5èUBRRì³ëw^Kuít™ v*2F“û9Eî=sÇÉ/_E„\Ý·fôœk¼cG×RŽa7õˆc—_æÊØÜ˜³›½ X–¡‰!'áá³×ïÒÒ3råÛ-$Ov¬8ú<&áÍíÝë·Fšuël#¨löŠv*RPöH4-r÷* EY–²<GÿÖ:öücÙ½µ1—e)Ë=ï~j·ÿ·tÃÅ°èø„èÐû‡7o9YPø2GªúîA¤N*2„á2<Å3D£Þ¥»†,-“TL�€cØvÞ‰! Ïó¬F݈Uö3†ã?¯DÂc£tm¬x*M¿ÅÌ Ïg¯í»JMÛØ5°Ÿ÷ã(¥Œ~Ç_fÆ/ݰ`ÔI‰¦]סýGä1@xÜä»§oM̦À7tî<mF_KNY¥Îì{®Ûdø×–Ãë~>œ.‘±SÛ ÆÖ×%”Rë÷úþ¶îû.{ùzVmût÷¼{¥T­Ñà^ æoÜgh¶Ý¸³�×®OO³ë+û¬Keµ{ü2{¨=R¨Tö½ãUkHK-Ô)N6.©4�àY· °<¼Y£cã"ƒuÏñK–ênÝ´fÆ?Ù�='Ÿ„*'©WW×k—Ohðc#C­˜?ý‡]ž;¾«Cו*@üòÍZq÷ú(«ÿu²sÇw™˜Z~|­¤QûŒ¾ÓsÛŠÞ¦œ §§%ëè|b»JcwŒ˜t©Ûú¿»q>º°O¯a~èÒÁ bGnøÝW—|œb­:ôÄ«AjãÜñ]¿þokÀ¼­ž$Ɔ=´=ÌýZªFsÂ/_J·õ¨£ÉÁ×NpÒƒM^ÆN²ÜÌ´Èó»Ï‹Í÷Ô!hAj9íÆøŽÓÄO¯5as£Ž¯üsIª@héÙuÉd?3.¶oòž-è¿àšÌ´Ã”ñÞZèÅA7VS š ‡oÙ?¼ÆØÕ|ȶýCj ÔÜ—ž<ŒýA¯|Í+‚ ‚n AAÐ!‚ H•P¾6¦«oü¥JˆùF„~ž;¾ ¯"A>„a4µtì븚XTÁ¥¥$~u+û°‚ òmÀ²lZrBð“»� Ô“qñFA©á4nêó2ôq•݆G‚ ÈçÜñ]ºúFY™iJÿŠ[<AšÃpT½ŽÝ‚ R›=š�AA7† ‚ èÆAÝ‚ ‚n AAÐ!‚ º1AA7† ‚ CAtc‚ ‚n AA7† ‚ èÆAÝ‚ ‚ CAÐ},y'ÕÑ×ÐÖo¼æ•¤Öš‰f>ú}·©¶¾†¶¾†å¨ë9_B‰R–¬ºaiöÓ CZXÖbàÂ>6ÚúÍ6EJ¿’fBÝXÕ‘¼^í¥¯¡]tèZÚ6ìÐöÎ;ï>÷`˜ñ_g} m}­®g2?»•$¯·ûåøË,Ðq÷õïèeÄ­MY¡A¤Q;ÇO?šêõÚvêèY#k R5>õHÆæ&½~x|ÝÃã;ÿ[~öŸ1ÎB5Zþ,n †Çç)É ËϧBa5¨U*Ž{�à6kÏþáVœÏ*«ÒT`X%µˆ �à8ñŸý“ëð•Œ,£Àp\� ÁùF£±÷¸ýïiltôÓó;§µÑ€ŒKÓ†oäMs5306kºîµâT˜ûÜ]Kú51Ò6r›û,€æG7ÀËÁDC[_âI—ûCs¨¼`šuü·ÁÍê˜ihëkèØº,~<ßꨧ ��öê�3m} mŸíñ2šûbÿì>Ml4´õ5LÜÚ\=I J…ι²¿¯…†¶¾n×C‰,��›°ßOO_CÛvÈÅ’ÁŒ4fs «Nû3��žNsÑÓ×h½#VU5÷Y^)[Ñì§ÛÆûºXhhëkh;5ï2ãt¼ÂÌ^ƒ™[ç÷ñ0ÖÖ×0o6xãã,V™Á [ Ü ·‰ÿ´³ì°;�àå¢F†úÚúZ¦Æfm¶DI•¯²ET) R»ÝÈ4ô­õ˜½óàHS�€]û^ŠU%X;aÑ©x‘ž– ýwhÛ«Ï'4jéi/¼²iL›Á{c¤�ÒØ½CÚô_qòib£omg*¼që­XdV¯®‘¼ bhçèàèVGÞþ3Ðgøº a©¬¾¥©z^ì½}¿vò[p7›*ÊÕoócW=�Éõ¿Î&È�Ø”›{ïÉ�t;}ï¥UBQÂ7pªgZïèÚ884¨kÀ“ÅTAV™è­ díÀ‰»ïÄJm½Ú¶oÕȬ üÊù§é NçÕ†'Øx7ЃìðÃ?Ž>™Ä–o|¢Ì \¢€«_·¾)_þEËÊÁÁÑÑÖ´œ Nu‹T¨<‚ HítcŨ×ðÖ�ˆ}ø&_e*½ÀB£¢#_?œçF‚ÿ\p: ÀzÒ¥{×Nœ¾mN]€œ Ë6…ä=ß8ÿL�8O9ô44*öþRo]»{O¯m�À´ZsãÁÝG×7¶Oܲèb.€ ÍúGÏŸ½<=Ê�^mþíl «L¨‘ÇÈþæ�ìÝ­'c¥4íöÞ»�h”Ô“cÜcë鿺j�¸Ï9{ïîÍ͵Bþ¬’,QéÙ½8�0¶iÿþ#ÿ{}l¨5_Áéx,¿vñÀ±KV5€Ìc+OÄ–ï'øJ `¨Ð¸Dßãéí=u��œ&ýwçî£W +¥Œ|Õ-R¡ò‚ µÝ�Њ˜|7¶£€ð$ýù�€èÕm-5´õõ<~ �x{÷EfÚ³;±�� ÇðÐf�€£íPßDɠɦß‹�pàgÁ¢Õ0ÐÏ�$a·£ ”å€Ðeø÷u� èïãQIöÜ(�0é1¸ZÅ•«º¬’ˆêú5æÄnö³6Ô³óh×ÎhÂSˆlÛ55ápM›¶±�ˆºÿ¦ :{«ºE²…) R|޽ÙÏŽßÎ�0od)T•HÛL«Œl£ŽÃíï¿ ìùð¼0š¨´tRNÒ’Bùv½Gyþ6å^ÈŽ­ûë^ɰønP}QUjZyY%n9pÿ%Ñ›\ }}ïäë{'“ӣ ÈÄ2ù2”Lòe”´ˆJåmxx9!R›£1VZŸtxáà^[��œú÷qäWÂ0:õ¼,��X}ÿ©K—.þßÒÅÿûmJÿæ š:jéÖ÷2�úãï ,�جÈD1�—�lAŽ˜�£]ÏÓ�àéîs±R YœK�žSSk ¿Ã5ïò“�àõúY§³lûövVÊh KYæ›d³n¿¬ßsáÖ£˜W;Û � üZdqÀýß±Js‚œŒ�°ib)¨Ø§–4ÈGõ Õ-¢ÁV¤<‚ HítcO§»™Y[»µ¼üj�h·]¾ýGgA¥² ëšÝA y÷w=ü{uïÒÖŲN‹žæP‘ë˜_;j@ðÿü,»¹Ø™6žq;�æîf��wF5iÔ¬YßMoꌚå£Ppùdžn :þ�ö#çøé«¬$£ïócíÂ/{;VN_Õ¯º,Ä/7v´·°óêØå»>þÇ/�� —±ª•½“}û•¯@³ë¤�óŠwù—6HøGx–rZ¤båAj¥+�õmvùqÕ…‡ÿŽq®ô×bÀÎËÿLêäj”~óÒ…ëáy–M{Lá©Í�עߎ˻§tr5âÉ’£^Ç‚M3o �êY2º‰šü:üé“79Œå ]ÿþÉ·®IŽŽÍ™yôžwúì\/rfþˆvÓ‘}M�Àeàwv•‹¹ K!·±w·v΂¸ +ç/\ÉÔqlûÓ¶c"WÇÉ[–v1*ÈPwì¾èðÆ�ÃJ<«VÆ “©n‘ •G©Nˆ««ëµË'4x‰±‘¡ƒVÌŸþC‡®Ïßõþ߯Ü�²ø:Ösþ/èò(ë/ü^‹¼‡“tØ’uçß»3ÑךA�@Ñ%;¾ë×ÿm ˜·õÀ“ÄØ°‡ö¡‡¿å÷å­˜¸øÂÝs÷�Ô:Mía‰ïfB©u|ËC·8öòÁ3·ô=~Ú¸ª‹!¾ìAÝXmB;àdJvÒHÔxõ‹”ÕØ+A* † ‚ º1AA7† ‚ èÆAtc‚ ‚n AA>øÈ/‚|=¼Kˆ{œ•I)EkTBˆºº¦} KkBšú3™Ý‚ ÊILˆ ~öÈÅ­‰…• ‡o¹¬2,+KŒ}tï†L&³±µGSÓ¡CD%/ÃC\ÜšØØ9�†R0&f–½[=yxÇØÄL$¡©?¹é¾7–šòîEpPfZ2˲ؤ†ÑÒ5¨ãÒHÏÀ¨ü”ÙYæV€£êÇ¡o`œ“UPPPÎXŒ¦þ`Ó}%n,5ùÝÓ‡7ìœÛ×Ó! î1Aò`e²Œô¤ »WyµÕ30,'%¥”ËãQÀ±õãî8 ¥¬¬Ü;l4õ›î+qc/C‚윛˜YÚjiiUÿb ‚ÔBìLŒCÝòjÕ±‚„|**4$šúƒM÷¸±Œ´d»zÚèäòšXd¤%W<€àØZmc5šºÆðÜ˲„aЇ!Håáp¸•YHƱµV¸±7Ï.Ü;<7ùMp£.S<ç¢1kŸCäó®ªþð*ìyANn\L”¾‘I½Æž|õ™L]>á7wß;8ÛÚ¾ž‡{ßóg6xÎAS~$5i‡…8l‘“À}]”›A>0DPyl[>ÿè¶_nœÚø&ôMó{oúíçÛÏäf甓¥™{Z ½–C%o6zé5X!®Jö4u9GAnÖ}³š¶h{é~Ô»wq.­¾AÓ}¥nLù{#ý’hm-}½ÆMèºê•äƒ5Ù{wõ—€ ª ûÉãMÆMwÍÏ•éê‘.=róRwÿ1§çâ‰ÃÏÚ“ö.¡â!ŠM9è£.š6^ƒVßJ‘ÖPW&·Q«ëß·k= †Ö?öäÌSs}}£¡=Z…<êê󓪔ÑÿÍíÑØL]](R×0­ß²ï¢+ɲ¯Ät_夢,áÒ¿‘Î#šëÇ}9Ñ_n¥Ž‹ÏgÞk’c1òá^Lå8bjmŸ›ôÔP3¡g€eP¹~äIßÞ­<̲¨æÃ;§6.ØÆåÛ6lѶi»ŽêZÚ*n Ü–k.¯i¦Î¤…\8fvà¤úáÛ|´‰’.ý…gü(�¥”èµ™½¾Ó°y_Õµ±Ä—ƒÔt»…Ýø«U«”Ò‡÷¯;µnZ·¹òròŸ- 車7tÕáMM-øÙÑO®œ y—#£zä+0ÝW±)7ö„Ù÷mkÄ��›qMo-Bˆ^ã‘{#Åòé÷ÖhhÀBÔì:L?úFü~ÒmÁîE]ÔØtYv7íÿìuXÛÇÏ̱°ÀÒÝ]Kˆ€"‚ *âµ½v×µó*êûÚ€Ý&¢"%HŠHƒH#±=¿?”Ø]KD£p�� �IDATEQ<Ÿgg8ñ¾ï9s¾sÎÌÿÏל‚ ˆ’ËÚˆrNS ï¯. GF‘³ëÿ¬‚Ó®jNYä–!ºâ‚ÈÛÏ:zd°4uÒ“:Ððj¾Š˜ûífeùæMQœ]Ï«Ú|}ÀÚ!†²D×djí½áÆKß2R–ë¡N}V/ jf†Ÿ1Élå¾Eý4%¼åŽtf“%Cg˜ŠR+7p€”Ô€À\��0ÒüíŨc®•pà8þ§Ë˜àûdu½‚OD • Ö–ZZRJ«ð€Á$Ö~¤~Nw·®[µBmì_àSîÕ³Çd¥¼r³—Ö44626µtµdýhjÍÛ·ŸØÆÌÜiMµYwh™‡ URÆ~wFcMÜ¡éÎjd)qIE¯õ· àVÞñV4XÛˆa€Srq „¤Ê„ÈZ `XuèH%½y/0¬>í̼¾º²â’RâMÚøã™ Ö˜}}µ—©¢”¸¤”Šý¤=ÏùÌ9•Ñ;G[ÈJJ‰k¸Ì¿ü¡‘§5ìücŽò´½YLÐÖH!±úÎP·ÿp1.½6¦¡|¿ó8A9#%íIFÛvÄAéYÅOB³d|öî˜1ÐÆÌÄÜÁsª½~c4pÀ8|ÛìÚ–“½­•e¤$ÕúÌ»–Ë�0vyÔ6os^Xæ WÒœþ¬®{C×e «~y!Iuô@5<�€ùv÷†ç}ORc¯Oçœþ{NH)pНL°$ÚÌïIzVâEßχ¼=¶¾iäef¾Ý»-}ÐñoŸî·{µÚkøˆ¹1½öD¥Äœòü°cò–¸��·2lëôH£ ÷Ór²O.ó2þ|!§UÕHáù ^Ûò‡žŠÿóh•Ô©µ>wØÌÔÿÎV=ûÄhÈØ£zmæœRòÛû,Hæ{Þ31 «8ÝW\pÕ€™và¬ØÚ˜J3~¹!¡É’Ñ3ï‰TA{ÚÉN¯—L;ñIOÙ;qCΈÀãTpp‡Ó1‹Š:úY9l /‰È8ݪ·êž€ºg‰(+r�±®\Ÿ”?anòLí;O ¦š†¾úœˆËQ•JŽvÊxžÀ1Ó\[^T[þ|¾äí¿½þ‰1Þò0ömLÐØº€qÃÿ—Ü�¤,=u+ŸE3V—šŽˆ3³éÖ–„Yz’Ø9g¦/ÓÛxÿí»Œô˜óë«“�8•ˆ̉Ò_}ãuúÛèÀ‘åþÞÓ.¶2vñÕ¿Çüû®ß¡§Ii·àÖ‡×aM¦¶ K #æ¢bMq‚Þ– ¯Ò6š&©$¥f›ë8Ö\NZM…Tð(±‚…µqó:ŸÀ~u¸ìA~eé›*!óß*å�vÑ¥i>ÿ+ð8œ~w©Ô¹-_ÃÒ¡ë2ö9þâk¹áC´ ���(žŽ,ò ™Ú^ï牻›ÞÀ.¸±ûaâ‰Ã³úë[Ürn«E汃ñõ¼Ü”Á/p·2ï;}ã,ݲʺÃK=hfŽ6,5/|RÈœ’[[.‹/;¿wj_m]ëá뎯ֈ>VÊmQ5RpóÀc™¹'þçk££m=fÛ‘¿5D¸­Pôõ_ÑO‰€ˆŒY<7½¡íŠ¥ª ŒÞµÞC„â%ɤuD(¯99èkÂ2ßÅs}6Œ>qp¤1&ª’JV.ÃKp ’x:½“Ìœ5¶$E…Ë÷]¨{ù`xi”Í55“üXXPVVο€ÑCG)‘)dYó¿ÎR—ßê Éû �Ò#¶®rW!"8bÕýý ¾‡wOs4еº.pYÖÉ#‰õ8…^ý•rÄWq߇'Éø.q®{ú¢„Å,zþ¼JßÃ’ XUy•xWw]eMgšŒ]êw]laßDGCMmó!+ö-Wñ‰ÓÂ.Váÿ"$¦ñOÓÒ²½m¿¯Ò—`ð†ävF ‰Õw†º%\½"wA]Å(1ÉGŸ« ?Lçp—*ªùÔ|ÚYóñ°@äíòѰ{ˆ†‚Ç„~çžÒ¹Æ*¼Ã7°<›Æü»ØYHz#ç¸ãßÜËh`Þ9ü”2óÈ–1VššÃ7î¤ÞÎðŸº(cõÉW¢Å<F’���4{yË¿Dª:™QQÏeÄæ"Fž–Ò¼ÓUggŪäŒj/½ƒ¾$���<EBT·7”Bšúòz ç<Ëlx¿ÕB áA4^›ÞX‘WÉjQ5#?.5êo(Á3I\ßÕD¬Ã5h¢²™*Ïh€“R§WÔ·ýZª hØéˆó‚h%à5&ÿ¯oʱӟ|NðR„¿êéhŠ £`Z^‡ÇPq GÂ3’Õ6Æ„¿&iOZ`õ±N<6•‹¤ Á0Ö»wïÜk#ø>{Ÿ¼~ÿ*úÉ}ù̼ZÈâÍÒê4M1Þë  yˆþ 32‚a�ÃÊŽ Õ)™Õ’Î�[RÊýôÚ/ŸÖ™9R·àaRUeÂÃ<%×^Š8LÌhüt³Ä¹æ–n–m?™]ÇFÏy×ða§ƒ’¤”Œ¤”Œ¤œý¦Lze~%«å  ù¨á�IÞ¡¤‘› iõÂÖÖÈŸ0ã²*K³F X–Ž¡§ºv¥¦ÞEEÕ§ÌFùŠO‹È²«¤f ÎK2œv:¥øMä¹ “(9—{˜{lO¬X �@T2Q"ñ²£’òâôÊz#?15pÑã+®ÛÇH iû.ÉÏ]“±ÆôëÜþcL›FtÅ}1 A¾.¶ò¤MzŠG[üµ©¸ÎátqË[7,k‹9©mÕü@@«oic·E3!(Ò¦S·ë肪� 8áKàÖ¤={Û@MöûJøb#¤ã6ÆÖ¶))užˆáH*†áÄ�F@Y1fÇÔ÷L^ (ŠrY,¦ %E¼´¦¡±¡‘‰©­û”»†sïï½’ËKŒàh‹ i÷È@Üd°qãëÈÄ× t=­´íܨ÷â雷ٹé�†‰›ý–{mõ`µÊG~£,í—<ªâ�Œ‹ál¿+¯«­üòIZkLlY>�Š'|y©ÅÐVWesʯFþègc\îçOÙ¾d²¸¬¼1ï×è•R”, ½`™BQóNx (Y³× ‹6¼ó*|¹Ú›};£kÃ�@Ð/VñþÃm/¹íøç‡®ÇÉãý­ûõξÖdÁIHš½´±Ì°·Ÿy‡¬âçÏ?ÉZˈhº˜¶³x{åiWpÕ$ [MNæãwM«‚ÙQét ��PIª$¨kžg±+ßå× ÿ%‡¬ù×V-,¢–À­[1åŒÌªÛ'½2×L>˜Î€c8¤ƒ•.ç~#?²†#pqD %ax†'”„²™ÆÖòïé�àp(AÁkF-VÌ�� ±²žÓæ/u-ì}DêgÞ!³øå‹23iCd¬h| ={6MÁÍFNL³Ÿ-öôôÙhº±§‰xSfÅØí¯å;O„Eº”Ý8“Ô@Ôì¥Ò‚Ÿ—s»FP·ÖÀòb ¼CzaBvcËõ0¾æÿÀEE.‡^þa²„A’¬Bo,G—Ãa4|y ¹�ëDeyÐXýQض®ñ jVœ¬'Y ¼“ ¢3éèîÐõ4cåÝ¿Yn;Þ^ZH¼úÈC˜gg, zþîCÒ­Í“7¼5š³ÐVRÄ*pj£·L¡Üÿ{ÌÚË/ßååfÆÞ;¶fñ‘4F˪ñ#÷¯>:cõ•Äܼ¤óN��´ÝûÉ$=ÿ¶Ãê3/®ÙùºØˆ§h«ãó#¢R‹>•WÖaªKà–?X>õ<uí…^“x½_7é@Žâ¡÷Êâ’Ö}F_¾ðŽÁÅa(Ãá0C \墖4ùìÜÞ"‘€t·Í®É—‘‘‘žšqfÝŠà¥þž:Ä6¯àU/ļ¸`Õ™—ïsßÞÛ>{{ªÁÔ9Öâ�ÈêNNRYWž°íúi11ãAú%w”h¸ÛÊ �ÓnØ–WRò!öî½t–²©§<lÝxé°ùS7_}ŸŸ—~bóšÀ FKÃðªCæ÷-Üt1³‹5f]ÙðáËD´ûFÔ_T¬ÌIÀÕKQ´ÊJ^IËèc·¶*EpŒÆ QærœÂË“FÌÝ~æ~LRzzRôÕíó×Äãz¤Éª l[“��†W<¯oMЂ-ÁIyùoïø-;_È[ÆêÞÐõ,c?ºVh>ÁIV¨6àTÇ ßª‘žµïE‰ù!6X‹¾ *çq$æÆb™Ûs´uŒ]geR´e±VUã5&]¼½NíÎíþ~Õ“ÿu“$ð�dçíç–Jè%-.c8ñIï•¥„?3“é¿ecŸô…4u%ƒ/ùVQJ@Êî-vQqÝùU4 €Sö>ä»aâ¾(dPÅ:`èø©Ò*CÖ/qëÆ‡ÂO\‡áð‚ÇPŠêd A¸\.çÿ‚ÀØÏ—»:8Û÷vé7jý#ê”#7þu”üzÞ”UuìúÿìS6x8Xô™qUüï ×—[0 Ã0’¾‡,< Ä0 H[ Ô@ÞÑY€a†%w·s²14¶¶«xø¡Ó ð"ã¾ûþÅ9Ò÷–yÒ,ll†.=%¥Ii=_D•Ç?7;ÐOGG›6-Üjž‹ÚnFÑÚÈ9c4ÄŠ‰Ëå=¢*Ù��J 3>ãˆbŸkr¸\—‹DLHv„b1ÀøsØîyƒ]úôr±ðbí€-Á—¦iâ…¶µU�À0œê¸Àóÿ¨>œíbc6loµïê~x"toèºÄÂÂâéã»dBiQNº×¤Ý[VÎ4|bØíó_þíò*Ü8kçê­¥¥¸Ågú™žübŽæÏ~ËNhÕÌÔ-æ´ùñ‹uñÝk ò…à3û=½' IpÿÎõAC½E)ª¾¶6öYä›W/ꪲMLÅ-hòºú"WOg£8à·&ÑwÙ.S£?6Ôa¡7z9¹Q©rßjfC|Ň©(§ªéZYþŽQÿIBÂ@VI·¤à‚JïŠò 9Ë?ß/fÆ®Þ.¡3_?š«ï®Ð}c±-$)ìöùMþA^›ƒ®%•eÄ륇të¯x°™äá[¶PÅuÕXMìéëe´¶ª èÉ¡9;ólwyià{x =rQQ$¥¤\‡Œp2ðŒ”·ñ¯ž‡„dˆÊ45ñ*RL‘D |ÏEN‰ïùšÊÒ?$ÔDqEà U7?^c±*ñx .ÆbsꘌچºR¢¤»ðì]@¬6ñòÍr‹þÖÊ 8&`ÙV›«âzØfiÝ*cDíÑÿ,þEªæ~N œ1oF �²Áàe!³u ==?AL,,M,,1 «©©ÉÉÎÎy÷Îmœœ¢¢ü÷Û£äê[ÁT¥çI)Îc1Þ7Tœi¬ ¯ÏK�T•'Éë­ûiä~N=³hÕÂR�’zæž?0Y›ÐÓB 7jiºœeÝö¿,ÞùÍe ýÖŒ@VVNÖNÎÆÎ†±kCM3$ªù5¿n±S¶ßöÈŒí=»-ºAÆPåpà¯ÿA €Ãa£hÇã&‚¯Áÿ,ƒ¡þ“eŒ"+ÿ¹º�]}DDÊK‹(²/ôÁMÕâl †ú–1S›„WQJJŠŠÊ(¾Ù�ƒËᔕ&Ä<2·é§p6ù%dLN^ÑÆÁ551æEU9—Ë…m�EQiYys›>rò Î0.o ¿ÿ¾AQ€ÀPÿÐõã)YoOØêH"))UQ^ª¤¢Cñ=T”•IIQpB'[0Ôߺž#c¤ËÑÖ3LJxM³w”WPBQ8Qèüd‚Ë)/+MŠ¥£oL"‰ÁPÿˆÐAƒ@ Q×Ðâp8)oâêëêš~¶Ò•’’ÖÖ7–•“ƒ¡þ¡ƒ2@%¢­£§¤¬Ê`08\.À`H:A€CQI¬Ã†ú›Ce t€¸¸¸¸¸8Œ õŸ|g@ PÆ 2@ ”1@ƒ@ Ê@ PÆ 2@ (c@ƒ@ Ê@ ŒA e @ (c@ƒ@ ”1@ ŒA e @ _FÆã—RɪíþlVûÃn´@ ŽŒq«âŽ/j¦J%S¨dŠª†Eÿá OfÒ¿¿àš;C©d UzøƒÚ.öúÇ• @ Ÿ þ{ `]˜2|ùFó1£*?9òBè¿éFb,JÜf×Ûâ@ DÂOC7V @ nœaµñŸ1�@m·F•TUÔU—äÅß9õ¿qºD�À×Å:«5A[ÆÙ+Q¨d5§ÉGß|æò+«1á Uy%UǃXŒÔ-–ºã£�€ûd‚*…J¦¸Ÿ.á´­½áÝÕõãìtÉ*YÙÒmÖ¡geìêå[rvìתE+ÙzùÿMî£J¡’•íÆLüŒ€Õ%ŸZ4ÀTL¡’)òJÆÎÃVÝ/aÃ>@ ¿°Œ!8¢�À­xŸš–_ÍDª¾ÓØ™>m¦bÙGVü¨ÝÛJÔe†¬öžZÆí \qU3#Ŧÿ+èèXRñHë‰`Á¹‰îÓ>ʨäR5T$‹^_Ù4ØãßWu˜°zù–LètÉïÿ[²3¯© @cÎõ³þKg2ÒL\ráe[Ç¡ÿ@UFfTxr5ö1ù…e H;.›ª�È=3ßÝJOVÁØaÔòCQÅÌ6ªd¿ëiĵ[‘öÚ��joí¹[$||'êμtÿ@��@]öGǽJ|vÔK¡•µô”ã~ �\%¾Oy›u¶:� ;`ëà ®zq]S20^óìx�àÃø zIZ1�@mÚ±«WoÜ KÌ)λ5U‹ûüÊ2†Púþ/*îÂæYÃ{È!€U–qzõ·E‘ÕX‹T:nŽÊx�ð*Ž®Z��›ÏøÎйթ¯‹��Àb‚‡: Ò4o��+ãEã»ê©dí¡žúb�%«ëP�� ¡²häaK� (ÀCKAN×Þí¯ ×ò6Ó<üb2�@ÉÆÃî=š˜SZíï&�(»}1µ¡E“ƒ��ÆauùÃ"DˆR|_½ÂJ&I‹¡��Å£��€€×˜x5òØÚI½Í4%ª>¼ Z1ô¯¹ð~ù•e¬!nëì5‡ïÄçÖ²@$"oXÇÑ–wçVZ=†Õ§Þ-��m; RÇ*‚Ãã��\F=ãc9Ŭ—��$_+bìó›ae��‚±£©ƒz» d>’Y›_®:bí¡‹b ²Ï$�2Ÿæ0`'ƒ@ _XƸŸÓn¬š8È\C‰LQP´_V�êc*Þ2Ùû½.zƺz÷|��H _ꥆë°h’šµ*��¼œmgãää{,³µ"ˆ›Ï^ç.�ãñ|𾥕¾çñ�€Þ¬ T´ƒz»¢äv°²Žzê©ë:x3nÈÐ…á �€¶½:|8@ ¿²Œ‰™Ïß6o”³‘²ï˜@5v_xgo?JËÙ˜Á²ÀÃ�HŒô 9ê¥Ð±Š’ÙÜsì䀕ÈLNʯo3sÂkL:qrÁ�#9¤<¯¨^\ÕÞgóý‡ÈHGõ¶+™Ûé’ÛƒSê=ÂÍ„TœþèYZ­ŒAÿ§ÎÎ5€2@ ?ïþú3^¡ÏŒ­}flí@-)V³7=[Ôú¬¸í¾wû€W¼;bðnÁÅ"†>~W|ü:Y/¿’mZW-°ä¶6÷:˜]q°é@o÷ ïݰOA Èï4ƒ@ Ê@ ß�þÇßnð'Ñ]õB ÎÆ 2@ (c@ƒ@ Ê@ PÆ e @ (côDc°1Ø<ù-e,㳆ÎýÍbY÷x¼šþŒèzÀ.è£j»?»{vÌì¢Ú¹UÏ· 3£P¨dåIu?Ð^nõËíÛ* Ë<ç¢h¿#ƒÙÍ1„@ ¿øîªøÁ³‚þô‰+WÌU\=¶—€¿c Ù¡{¶ì;ö¦¨�ig¯É+ÖÌ AB¾kôÏ=ìâtæ¯˜ç ´ ß{o a8x¬—©Ô÷Þ#|›I]S;;ÿʺ=†^M^å +A&ÿ@ÕÍ¿ºfWvSEœ„×c›SàZ7ùåe �`çêÝþdY=Çè‡<€¿Œ5¤þ7¼ÿ¿)–Ó6ní­Cf%?ºpüŸÿÙÅr’hq‹Ïd"±›FC”êºî€+¿‰Ç·ŠËdË ¨½sêR–õ §ïæ¨E•þ±^°Ë2Kqz_*r^Ä��ØðÚ„@ ¢¸Ý[½VkTÔ4Ï%sGÚ(’‹I¬Ü3ó·½2Üqw÷\/'š¹eo‰ëÏFFm´cfùÛ©Øm<ºbˆ¥"EÑaï;&='d­·… •L¡ª;NÛSÉ��Fúñ¹îVÚd •,gÔwöɤ: €Ï}{¯Je¤­³•¥PÉÚóc�àŸ½õˆ^ãïc+O¡’uÜ]Í¡7Ì-ÄDµ `ôœõc¬Ô¨d UÎhàâ[ïBۙĭI82ÃUS†J¦¨™Ü|§ ÚWáq¨årßê°†ô³‹\ •È*™ªo;1(«åþ×Xeˆ§Zÿ Rú“ ªªüøÈÏí¼  ¶Äá×ü}í(T9óñ{ãªkÞLé­M¦PuoªhÂÖ‘›>ö;2˜mÍ× f–¿ŠýÖ3›ÇØ«ÉS¥µú/¼žÇØÄ1ï‚@þLkCpB9E™Ê¼u/yt.×ÿŸI¦b-Od%Q��`f½"¶üAAÕÇçó©OWxÍ}b°*øEjRÔñáþcf^.æ�Àe¢FSöÞJJygƒeܺ±_×)Ë/ÿgF2õ‹¯ª©¨Ë=ì$VÁ?{ 8¯ÍòÝšår0*>åæ<\Цð:¾¯¥ˆ`·2|éàÉçïñÈ䔸ÇGþ¶”$jcécð,ï•/Œ7Ý{™8¦.p¼÷îdz»*ê]äò÷‚w~ƲpÝõw“3RSŸYï©Nl¹ ‹ÈzP9]Q¬ß…⚊òKnRmª˜'y[°%©‡ödºí|qן¿qÜŸ¥¯íündž˜»æÎ7 @`Eu55ûmHío„´3ýØeâ’{¹eE‰~*! —ßþÄÐÄ"›÷mAƒ@ à¢b“2q1<Š��JkYw’*—Rá‡fqJ1P¨'%(…ôð-«ÜUI�pêÂw^[¹m¢)� µbïòý‚"ÊÆOR¶š¹ÄŠ—ZcâŽn.¾•±ÝÁ¶u$8¥÷wÈþEùÙE¡#ŧÜÙ:žF@Ûoï‹Û!ßf•[ØŽ« ï‹«=d�€†Ž�€Û*PE¡Â¾7ü§;I#À`]ÀÚû6Ž%.9bÛª ‰G:òÂÛ"¿¯ã:ÀFWT”µLEj©/U°«ÃþbÉÀûf¹H`¸zò§c”ÿÎ-p—C€Éêy‡¯Ÿ^̲Õïä³Gm1��Fo^ÒG�€ÞÈÙnkgÜ×8FQ’£"™§SÞ•Aƒ@ =\Æârë.¾.Ûä¥AÇ_‹/ב³Õúž× ê4-Þ<‘ûâ]cÎKG•-þ¬[PÅ µOÿ[²æØ½”ò¦e7ñ¡5ì¶‘œ]ùËlY˜­0m2XÂØÍ„tãÛ¬ªË{ͦɹ¿g&ä!ú Íš$œ âà¨PUñmU…(^àÆøN3;9Ï‚vfˆ‡ûÀ¡¾£ûéJ"¢ÇV¸%v:¼‡”xiUi¢ª>i>Bê+ë9�tRÆ·�¢’‰2‘w G–§çÖsà”ñmb¢HæuiÐ H^TdrÀ©˜ÒÂ*ÆÖ»Y¥ÑY5£l¨Â³UÍUÁÇ7> øN‚#4Oå0.†³=žYVWSñ哼քP~o®ï®¢Á‡^eÖTW”†úÈâ0>¥ ÈÞjÅ �ž„ÅÐo´Š$j̧ZT!Šâæ+¦Å^]5X­2Âo´¥ý²ˆª¿ÞЦ – 8ôë1‚â[웾 (4hH+¿1 `\aM,‚y]4Ò£eŒˆÛFh)‰çW26ßÉGÄBM²ƒÉ£Ê€‰Ö¬Ç»ÏgÐ[žfUªo3¢´ôAZpL·íœæÕ[–õ‚¹ åÅq»,%­ªéŠC�Æå ÏÞÊ~ š–WØô>£(1»±ƒaZP±$­^zHfhbuëü­L"jØjaï#Òš¾ÃÅ*yõ¢LÆÜ@ØËé¼À˘¸OX±óDxt Kù3Éh¸Î[ò=ˆÒ¢5ñwW÷Aƒ@ =PÆ��²’ø^šLdXL[žDÄw´JCКzp­mú¿nÃW}™”šü2ì¶)n®ÿ&Ñ['Ä©x­ûK:lþÔÍÁqï ò³ÂOl^˜Á$(™i¡Y·Ÿ•°�Öyy­Jó%­©†+x^R^QU ÈÞjLSº oyÀ¦‹™Fù߀ù+È*œÊ°Õc‰7fÏò¿—œS˜›yùDx1«µI@uÈâAÌ‹ V~™“rûìí©SçÐ$¾¡ºÆ·Ç6ìŽN³¯³�� �IDATË/)ɉ ½—ÎR6UêÄJ¾ó–|8Ú¢UÔÄßWÝw ôL�pÈ,åY.Êfª’¢¬ªIX. }~b¶bì®iCú˜¾ïyÜÞ5vmQTvÀž—æRB—zX›ÓhC–ž~/­)ƒâTFÙ;(k±­ª¦1múcëeÃäšžŠQú­ýÇ)sµ“±‘måk:ÿìm<ŸÀ À.ÚÚZ´iáVó]$:Ч�«�*7hÿ½S¾Ì³Óû[˜ÙºÍ=ñ¶AÚ˜ÄPâß+uƒG/ 翯ŠÏ¸²ÂRì[ªCIÄ’»~>N4c»¡þ%#Ÿ]dDìÌHßyK¾«“ŠÐ­šEPWuß4òc@,,,ž>¾K&”å¤{MÚ½eåŒAÃ'†Ý>ÿåßTqû_ñÀ�‚€¯‹jžÞ“aó@ ¤¥$…Ý>¿É?Èksе¤Ò¢Œx½ôn{SñÛTŠLøH]MllùÓÀÿ^æB­‚@ HKào°B Ê@ PÆ 2@ (c@ƒ@ äO”1ƒÍ@ ßRÆ2>1kèÌχ×=¯¦?#º^ô ñiÖ«^Õw™ ܪçÛ†™Q(T²ò¤ˆ:‰Zîjý Ù{œ’K£Ì=Oå³Vu%‚›Rt!?]ÆÜ8+ès6øîÍ'oÉ8>Ù°ÊÏ/»ÝSÉ*Yoé«?íwÆ9Å!›.IÍžk+ÙU%²ó¯¬ÛóaèÕäw…ïú‘röï§!Áÿ/GM2…J¦¨ \_Ãm="ŸóT–÷¾YÖêlãë¦dÚÎ4zëNE5ršvðE%§}£è8ý÷AÓ–8•áÿxäî:[ÿ£Û¨#ï~„@~ºóW<ì\½ÛŸ,«ÇÂâýG�ôÁ;îÝÙ‹÷[ÀQÞ°Õn]\&‰=ù™3ûêx½]×x첬O8}7G-ªôOÊÞÅÍ„“³´eŠ…¶<áó»Ð=«–ø¬ž|jˆ\ó† 8%ÏÙ}–Î:^êõ—JóíQ]©O¦‹Ç@@ð}v?ÚãHæ2ªÞÝ÷›¿yô óôý)¼þÖg÷£=Ž’¬ê÷ál™ò·Nâ½Iª8�$iSFá¼÷E­ë=Tù‘mÔw? !B p6Ö„VkTÔ4Ï%sGÚ(’a«xY=Kk+šµÍÚÊÚTM‚åo§b·ñèŠ!–ŠE‡½)ÉÇçº[i“)T²œQßÙ'“ê0��`fùÛ©8üïš¿¯…*g>~o\uÍ›€)½µÉªÎà­QÍÛRÑsBÖz[¨Pɪºã´}1•m÷«¹(nM‘®š2T2EÍ|äæ;Í›“q+cü}lå)T²Žû¢«9_w™é°jÀÊ¿5[g„‹"��ã—ª½WÛ<4?¯n4÷EÀÒÏ.r5T"S¨dª¾íÄ ,†€ò±ÊOµþA¥ô'T)Tùñ‘Ÿ•É—öÙyÍlÓLï˜'3ËßNÅvÝÁ%žÖšª*TÏe7ò™�� a5cù<¾½l{»_ï?S».éUqË\Py× /îY"«}uêvµÕLo-Þn+xiM#c#cSKÇ‘‹Ö¢Ö¦¦”7'åýÉÄÂÁkþºéZìŒ×¼X1}¯~øgçck„·Ñ÷NpOcfùÛ©Øo=³yŒ½š<UZ«ÿÂëy­s²sŽö—5ÝØÜ±ª‡ih¿_… s2&€à„rŠ 2•ù†)JÆÑ+bËT}|¾P›‹MÙ{+)åMü –qëÆn|ݼ.ÂL=´'Ómoä‹»þ´øã&ø,}mçw;6üÐÀÜý3w¾i��p«"VxÍ}b°*øEjRÔñáþcf^.n¿ñ¢Eq>Ïò^ùÂxÓ½—ÉÑcêÇ{ïN¦Àùxm–ïÖ,—ƒQñ)7çá‚6…ó„V”ª±Úäð\)šµ’Ðû|vÞùËÂu×ßMÎHM}vf½§:P~ eÔƒÂÈéŠbý.×T”_r“êT๶Ùyݶ™ô'��03]—Y‘Sœ—´× t–ï®TF«Å¼Ï9.Ü+Vé?P«Õ.*ˆ¬ó¬¡Rñ'î°šÔ÷iPX£ÃŒ¡jmâÈmÈ‹ºU©ä`§Üf71N}îãK7óˆ&Íóq½¾ºŒÄÈ÷m6»ãÓF?Ö; 4æéÇ.—ÜË-+JôS Y¸üö§–K’xÍÛVŸIæ™À­xr"ç1ÓYâ e¬Õ€Ëmz#±´–u'©r‚ƒ¾€ÑïUi~\aíßtS/=|Ë*wUŠ—”¶ž¹d²»•ž††‘óÄ;ÝëÜú²[´ôÀûf¹X˜:NZ=Y§<‰²Â»¥I¯1«ç™T<}^ÌœÒû;®‹- Ü6ÑÉPKÛb芽ËÕ_E”µÑaQì¢ÐaßÃþÓ t-†¬ Xk–uúXb»(ô`¤ø”C[ÇÓ´µ­Fûí§0�D«šù)½ˆMÕS¾ZŮίÄ븰ÑUQÖ2uöžè©Eì„kßÕ ¼m›‰€t2žM+]C6.íCÅ¢úµë­sN½åý9l•B¥¨Û»¤¾-d{©6ÅK9L¡ræÚ&�€[þ$ð1ÇeÖ@e\›N¥ h9ñuÉù­’mú›œ¦ù¸SÔ.õUm^—D$U5Å*2KÚŒòüÚè‡z'<æ £7/é£@@ÄôFÎv#$Ý×êa2NÙc®Óç›§ë��ܲð ç’ç:H u2ö…¸Üº•×skÙ�€kñå:òb¶Z¾!€àw>|ùìIä³'¯NÕ&���A¦Õ¼q#§ìé¾ ÎF²*™BUs¿¦²°¦iˆ a§#Ñ´R¤*MTµÑ'#ÍGH}e=0r_¼kÌÙé¨Òô`_Þas&½¢ ªÝ*gÇE1 òýfMCAÅÁQ¡:%«¦±0!5`Úä©„±› @´ª1V=ÅðÂ[NÌÈwšÙ›y4÷Iÿl?õ¡µüïFל¶ÍÔéxò’i6'8YcK™Š·ê¸�� é´;:æñã[ÇÖØ½]=ꟇmÕY‚6ÅG-ëì•,à| ;ñ ç>Û•Š~éT}öD½Š‰{ù4*dïúŸÙ× ÙÍrÞóäéÝ£ hX£7å-^ÝCb.½ÕúË!|ÚèÇz'4æD%妹Ž,/N¯¬oTÞmvÖ½S/k§øAàk¹1Si’„@~%ºó&œzYZö™µõnÁlå謚<ÔE2ZVÏÒÚêëÚ�€àM“8nù½¹¾»Êçyu«Uœþ|®ñ¸ºæ«Aq_.�ßâ`��`\ g{<íÁeáJ!BQÍGmsb� 8—âQ|ÓÿE©')OFª9¼ÆC�Ò² kšÜŠ›¯|˜æõ$44<ò¾ßèí;'ßz¾ÇQ`ù­ßõTfg–œúÚLßOŒÃæ4`\Ö×%k˜˜i�`ig%õÆdÊþ§›yS[Õ%f2i‚ΡóS—ÍIŠ•r­ì׿ó€I�LÌLˆ/‚‡í»šë½L��ðmS3s)`ny¶>Îfݪ›¾7}›fqÜÆ*:AF†„k£ŸãÀ˜mÝœ Ms"²Î3‡à&E—éæz£2î?³¯wü„@àlŒ¶Ð2Rϯdl¾“"ˆ…Z¼žÌ,|õ–e½`î�CyqÂ.KI«ât";IËA¤ÇT|ÿRQÃV {‘ÖôE*VÉ«e2æ1 š–×üº£(1»µj‚‚…©4­¤)3"A•�õ• ¼,ìªì‚/÷Úx÷ +vžt)¿q&¹QTׄ”ù^wQWcç>}[Ím*úel¥œ…¹MÑ&“‹qù˜L47Ùäcpà­ËAI²ÞÛ z ˆ�@cUCÛ"ð£ÖŒ¼û|VSôÙYù,UM1¡môã½ûÞ˜KÙÍ)uäÌñ™:“ǵxõW€ƒ”±/ÈJâ7zi0‘aq0myß7}%3-4ëö³À2/¯õOéTvœŠ×º¿¤ÃæOÝ÷¾ ?+!üÄæ5Ìo°¯:dñ æÅ«N¿ÌÎI¹¿}ööTƒ©shxµ¡ ú–lº˜Ùˆaô÷—ÿ øÐ‰ªÉÃ,±ä§x+Hš®}¤SN\MmÀ°†÷W7ïOÆ�@ãÛcöG§å—”äĆÞKg)›*DuM@™ßéu—Mâc¶, zñ¡ð]øÞÅÛÓt§M·”hHصz×é»Ï^ÅÇEß;½fòâÔuš“L{£ Ú#fXVœ[²3Eyì4ëV&±kó3323ÒÓâ#Ϭû'¸FÉÍS—ÔNà)΋&keŽ­��¬.5"W®¯k›÷-Ú¶Ñ÷î»c.n9ÕGþÙŽÃYFÓGé|õF ƒ”±–# ™å¢<ËEÙLµk¾Í‹SudŶªšÆ´é­— “ëÔÒ)*;`σKs)¡K=¬Íi´!KO¿—Ö”ù¦@á”G„ø÷JÝàÑËÂùï«â3.…¬°�§âxaøÏE[[‹6-Üj¾‹*rÕ¨¢ÛT‡ê{w>ðäG²÷Æc $÷SSSµ™m¿ÈŒ��P±ä®ŸÍÀØn¨ɈÃgEv™ßëuÍáM/Ó¹=ƒfæè}œ>þÄ••$€JËíž3ÒÝÍÃó¯ïãÆ|ä£Âïëóxu¯™½P&Ðø—i+“0vôrW'»Þ}ûy¯DzôæV'~OiÅL§,¤U^ÙQÆXmÜÅXŠ÷d‹vrѦ~¼wßs1#ßÉ�±Ÿ>BóëÕ"ØAä±°°xúø.™PZ”“î5i÷–•3 Ÿvûü—PÅnœm·’ƒ -Ví=½'Ãæ@ÝóÅÎ3 Aq»íÿ¬ñ…™åïärcæ«g³5ñÝo ÷ãUÇ£îasu ]ÑFÝë]ÃË…Öc²·Æß§„Šä òóh)Ia·ÏoòòÚt-©´(#^/=¤ÛFƒ.T)2…Újü¨©èémJî½Úoè–˜w öÖð>¹»à”Ç'*ÌÙ5I‡ð›·ƪ«ü”~Éï*}À©Š¨¨B ¿ øàà[mÁ© Ûu öÞîmÅ¡;ŽímT=Ól̶ŽÏ¡Ã[þæTGB PÆ NB4XW²z×Åsûþ—>VÀÎù}ÛfB Ê@ PÆ 2@ (c@ûflø£Úù=e,㳆Îý âW÷x¼šþŒèzÀ.è£j»?›õë›*2 ñiÖ«^Õw«Ù-û+¹óaìßÿd~«ìõÆ®*ŠSri”¹ç©|6”±ŸÃƒg}Îß½ùä"'¤¹Š/ £P¨–ÛÓw‘ÜÃNª½åþØ®Jëe*Õé€þó¾å’(ÙtIjö\[Éîí¡ßØné¾£AÛäí*ßBû¯²–Æ|gù¢ø%J8•áÿxäî:[þ(ºóëÏv®ÞíO–ÕcaqŒ~È#�z nÑ¢» sÕ¢‹Ó–m¥ý »H T×u\{PÏ`f_=¯· @ }‡ù¡Æt]Q’´)£pÞû¢Öõ*÷çì×Í÷¸Z­QQÓ<—Ìi£HB„Ýs°roe®8°Í½6äô›¦ÚAcüRCÕ¡÷j¿.D¨Í}Qúз÷ªTFÚ:[Y •¬=?¦pkŽÌpÕ”¡’)jæ#7ß)äû3äŒôãsÝ­´É*YΨïì“IÍ[or+cü}lå)T²Žû¢«9ôöËü-i�XCúÙE®†Jd •LÕ·”ÅøÜÞ¼J’åo§âð¿kþ¾v ªœùø½qÕ5o¦ôÖ&S¨:ƒ·FU4m¤&È#þ¦�è9!k½-T¨d UÝqÚ¾˜Êv;²±òï_ÍÖᢈóHpù‚o!ë-|kafùÛ©Øo=³yŒ½š<UZ«ÿÂëy¼p`ôœõc¬Ô¨d UÎhàâ[%l‘BÑ©0òkPU´³ç]h›¼µ­|çßÊ‚ýmæó7]úÏ»Êøö:f–¿ŠíºƒK<­5UU¨žËnä3®¶+¿Z`vþaiéÿmWE½€«ILß«þÙùظ¨Ø]'”ãPd©ŒðyBÖ•sy–²î?{ ëÖ‰¸ÏÂKy\~ù?3’©_|UME]îa'ÒÇàYÞ+_oº÷29:pL]àxïÝÉ|ö…â2Q£){o%¥¼‰¿³Á2nÝØ¯ë�œ×fùnÍr9Ÿrs.hSx¨¯¢°óÎÏX®»þnrFjê³3ë=Õ‰H;óÚþŒ,3õОL·½‘/îúÓâ7Ž›à³ôµßíØðCs÷ÏÜù¦�Àà‘ S¹U+¼æ>1Xü"5)êøð ÿ13/·½±Úäð\)šµ¾³ ,ŸâK„0/˜éÇ.—ÜË-+JôS Y¸üö'.àV†/<ù<ð=™œ÷øÈß–’&J(:F‰¶ *&  >ö é !ý–Ÿ¿ß{ èÿ=î*Ü똙ǮˬÈ)ÎKÚk:ËwW*CT÷%d爖ö *Ù¦Š^e‚Ì×ë«ËHŒ|Oÿƒd¬ûS‘ÍÅð(�(­eÝIª\>H ‡ ÓÓÏ^*ëý¯§*^ZnÆ0‚oPtUßÁ²¢N ÙE¡Â¾7ü§;I#À`]ÀÚû6Ž%.9âØF@Ä­f.±âýWcâŽn.¾•±ÝÁêSèÁHñ)w¶Ž§‘ÐöÛûâ¶Gˆ¨UWçWâu\Øèªà€Š²–)ïl¹¤îØ7ËE�ÃÕ“8£üwn»LVÏ;|ýüób–­v þSão*§ôþŽëb #·M4%�´Vì]~£_PDÙøIÊ_oj˜ŸÒ‹ØT7|ç=â”ð/ßÛ‚Ÿûß^Œ��…Ñ›—ôQ � 7r¶ÛÚ÷ß5z³îî¸Êð¾¸ÚC�hèXÀ)¹Øa(ØE ãx‘ìôq ko`çvºßÚò÷wŒ¢ä÷]üû¿m»Êø§g�€äKûPq�¨Y»ÞÚfsÐÛ¥»”:±¾×.û¢¥IüÃbß6/Ÿí-‚Ù��€HªjŠUd–ÐøcöìîæÙX\nÝÊë¹5l�Àµøry1[-²ð, oÎ×¹Ìé/ A›2Fêéñ¨ Ñ_jd&ä!úͤxºGPqpT¨Nɪ©¸3‚B¡’)T2Å~[�NÙÓ}œd)T2…ª:æ~Mea 0 òQ£¦MFJ»™DUP1#ßifoæYÐÜ'ý³ýlÔ‡zQn0 v:¼K/­*MTµÑçma‰—V•Fê+ë9=j`*#÷ŻƜŽ*dž¿ò›3éU­Ví0V=Åðhç=T>®#÷;¡^•L”›ö+Æ‘åÅé•õ\FÞëlÌh(­Õ¦É¢„‚ù=aœ¬ŽŸ=ßÐo9üýÖ¢¾ê/ßþßó®2Áé šÍ—ÀÉ[ÊT¼ýP׉·§ùd/Ï%ò"5¨7‚Ko`ýA_XêNcrÀ©˜ÒÂ*ÆÖ»Y¥ÑY5£l¨eúüêÄ­’ªÐ±Úòd •¬äv°àóã€ð�€´ìêÆØŽ|. ŠÛáØW1q¯bâ^_›«Gà–ߛ뻫hð¡WÙ…5Õ¥¡>²8 �`� 8—°¡xʧxþ–ˆ›¯|˜{uÕ`µÊ¿Ñ–öË"ª:¼,‡~µAñ-Ž�† ñd*ÆÅp¶Ç3Ëêj*¾|’ךZfÆIÊ“‘†ªFÎ7x$¨üÝïT|„z ­ÍØ7Òœæ;Â(z2‘@Õ_ŠjZìÔÿ{ÞU&0=Æas°/­Èêì÷eGD‰TÇ *ØMnc #CB Œý ˆ8°m„–‘’x~%có|A,Ô:x¹«zð€ëyðᢧ¼Ï³K³ÔN„±"A•�õ• ¼ÆdWe4Ý 8`ܦ6&jØjaï#Òêx‡¬’W/ÊdÌ (xIuCc#cc#c#m* a¾z˲^0w€¡¼8a—¥¤Uñî{5hX~\óójFQbvc»&Ð�ð2&îVì<èR~ãLrcó¾%Œ<`*IËA¤ÇÂ, H¥i%ÌÎ{$¬|>îw2A3"yÑ*}/=$34±ëd!ÄN‡±Uƒ JÆ×!AP+‹v‹t  ­¦SüûÏ¼Êø÷:vîÓ·ÕÜ&^ÆVÊYèQ‘",(»¼V—5¢³+²òYª6šb�ÊØOBV¿ÑKs€‰ ‹ƒiË“ˆøî Ê£‚"0—™#ìÌÍÌxšû„1Jooä±Hš®}¤SN\MmÀ°†÷W7ïOÆš–ß4ÕpO¢ÓKÊ+ªêêŃ˜¬:ý2;'åþöÙÛS ¦Î¡µ}³‚ d¦…fÝ~VÂXCæåµþ)M=Gm肾å›.f6býýå>ð2ù[Òøö؆ýÁÑiù%%9±¡÷ÒYʦJ„6æ}Ã÷ñ<d*NÅkÝ_Òaó§nŽ{_Ÿ•~bóšÀŒ6ïa‘-†YbÉO?Ð;í‘ òù»ß‚´š.ŠäEËôÃV%Þ˜=Ëÿ^rNanRäåáÅ\ ét[7(& _{X‚;^´~+ ‹túÔÿA»Ê„ô:fÌ–eA/>¾ ß»x{šî´é–¢E˜- »T×5b ³±ºÔˆ\¹¾®ZD(c?™å¢<ËEÙLµãïÙ> ˆFœÇ÷’nÙ› Fz)¥Ÿ¾–Åì½ñØÉãýÔÔTmfGÛ/rã=E”~kÿqÊ\ídl¤E[ùš¡<: Ä¿Wê^Î_Ÿq)d…¥XûQoÔ‘½ƒ²ÛªjÓ¦?¶^6LßôŸÀ À.ÚÚZ´iáVó]$ÚÇ¿%(‰Xr×Ïljf`l7Ô¿dÄ᳋ŒˆmÍkè|q<d**;`σKs)¡K=¬Íi´!KO¿—Ö”iãªè6Õ¡úÞÌN{$ |î·¨²£­ Å‹–éåí¿wÊ—yvz 3[·¹'Þ6"ˆ(…t:Œ­”. _{„tœHýV�¾öÐÓ®2Á½Žhºx™Îí43Gïãôñ'®¬´ ‰áÙ»®c9üÍÆjã.ÆR¼'[HüA* ‹§ï’ ¥E9é^“voY9cÐð‰a·Ïù÷UüàÆÙ¶ †�AZ,{zOþÉÎ=äâtnbÌóyÚ=eGíºç‹g‚âvÛÿQ—^e€™åïärcæ«g³5ñ??û·ÃýxÕÇñ¨{DØ\]Bjù–’vûü&ÿ ¯ÍA×’J‹2âõÒCºmÈý6•"S¾RWÓm±c¬Úâäðû¹bÆT|Ïé9äÞ«ý†n‰y×`o u ÒÝôЫ¬Ká”Ç'*ÌÙ5I‡ðgùý›õ‡nÔ*!4Æ­sö ¦xï8à$Õ“:NeØ®cpl€À«ìw¹b‡î8:ôÏóÞÖtŽskÂ8@ =ä*#¬Œ+YÙ]Ù!n› @ (c@ƒ@ ¤SÀgcŸAeŧw© µUå\î/½©·¬’VeE™ŠJKSô L•Ua³B PÆ ††•JŽÖ5±Õ3“AÐ_z 6úá(ßéBp¹œ²Ò ±Ñ�A•T`ãB PÆ =Ÿ¬´];U iiiù¥±46`˜°ßÕETQYÕÆÞ9%)Êò+�ŸA~85Uåâ’”__Ãx`" '¯T[[[³1È—ËEPô·Ð0žŒµ<ÌÈÈ��·ºûCQì×~È@ƒ@þTZÈXQQÑä)S��7‚ƒÕÔÔ`l _ž¸¨ÈÌò·Sq<žÏîÆ2Ù}Tm÷g³Úÿ©îñx5ýÑõ¢¦ÿf„–Ù¿‘f½êU½hæµSri”¹ç©.ð¯£b€Ëû”•ããsðàƒŒññ)+ÿôåO€S1ÊØw3 i7ô6‹Õoa»v�§8dÓ%©Ùsm…ìƒU†x¶,ÕÈiÚÁ•��À© ÿÇ#wרú.4©èÒH ‚ ý‚«šN|ŠÜ>ÖJ "¥ç¾äRVû­§,r«—!A‚ªó¼ Yœi2ÖĤÉSý¶mµ·³³·³óÛ¶uÒä©-ÁN@û^ŽGG>{ùìÉÝýÅ€Á’àǑϞD>{v}±±(øp™Ì?÷†š™}õ@¼Þß#4:ZSFð}öD½Š‰{ñ8üÄt¹°Í£W<­Á��@’6eîæ¾¨Ê.ÎÙçg¯Î¶×û²Ÿ;÷ãµÉÃÖŘn ›•ñ*È»úÈ_^þ©Œ6¹òNú Ý’=0àUÚ›;‹$/LôÜðº^ÈùÎÉØ¹³§ûõsáý¿_?—sgOCƒ@ Œu%zV4k+𵥑Ô4·²¢Y[Ñ,TÄ��·6ñðGe •¬Õáõ<&hZ´ÛxtÅKEŠ¢ÃÞwLzNÈZo *™BUwœ¶/¦’�ÀÒÏ.r5T"S¨dª¾íÄ ¬æÁ“O™�pkŽÌpÕ”¡’)jæ#7ß)ä³1·2ÆßÇVžB%ë¸/ºšCïÐ7>†±²ÿë#c¾%¹93Vóh¢¦ÖØ»•ÿôB`åß¿š­3ÂEסyxiM#c#cSKÇ‘‹Ö¢Ö¦¦”óVÅô½úáŸã1ž�� �IDATí’×õX9§þ^W½øÄü¯Ûd2Š^§Ò çnœÙß\ߨ׸õ›û²£ÛDŽùîÌ®(™™Aþõ2±ò\ø?û¼À=1µÏwRÆdee[êV›C8v@ PÆ~ì|#õ¿íozû=|qa÷ü‚å·?ñæ^ÌŒ£WÄ–?(¨úø|>õé ¯¹O V¿HMŠ:>¼ÂÌÌËÅvÞùËÂu×ßMÎHM}vf½§:\&çcð,ï•/Œ7Ý{™8¦.p¼÷îä62Åùxm–ïÖ,—ƒQñ)7çá‚6…× ¹U| C5½&˜|¼qõ£IÅ^ž‹äôê,‹ðO/XȰÚäð\)šµ^tó¸ yQ—£*•ì”›¶2×ë«ËHŒ|O�°rõ!«Nªû¶¶z0}s㊓ ZN£Åô‡y¨ä_¿ðü#ãÔ¦\ ŠsgÙj «IŽÈ&Ù 5ãÅ+; Ôú÷4.à<Cdé@~ z웊ÒvìŸãFA€Õ?ëžšwÿ]ã˜^�� =|Ë*wU�œºð×ÅFn›hJ�h­Ø»üF¿ ˆ2o‹üJ¼Žë�]PQÖ2å µüË©z Œà{ú“4 Ö¬½osàXâ’#ö-V¾ŠBFŠO¹³u< €¶ßÞ·=B„XÎ)½¿ƒŸaãÇžl²å¿k™ë--ŰêgŸ`®ÇeÎGAéÉÆ§ô"6ÕMß±yýÞXJÓ‰¶ôîV‡f%A$U5Å*2Kè�ˆ¡$U‹Þ½4¥¿¥712OÙÆYõtž!‘žÝb9“âv0ì£\ÜTü���g±ô~ät­V°k +0б\óxY-YP•_Epž �I$ƒ¯o@ p6Öý4ìu%y³(¢œ*™QYÏ›ê4-Þ=?#÷ŻƜŽ*M¯0È;lΤWTáŒ|§™½™gAsŸôÏö³Qê1!e2 òýfR¼ÓG…ꔬš–S!faB>j4À”Ì;”0v3! û• ÃXxõ!“LKC®gÐVýêôÄmJo "8½ÀqšUÏ�D1<Ú±yÍÏÆ^> Ù;~ÄgöõÂæ×‚Ko`a�àTG}ts%«n¸á†ß2˜&ïį;9Ç€ØfúWñpñЕéƒöß‹MNŒ:»H,`Œo@—¾ÈÙᢢpàØÀÙØAq_A�†Þ¸ƒàhÓ q1œíñ´”Ûjùʇi^OBCÃ#ïûÞ¾sò­ç{Ü%…•ɧúVã"�(Žð%+Š'¿yl˜Úà‰æëö_ÎX£Ytî Úÿœ’ž]À¿|œ¤<i¨jäðš_¨y¼gcR��3â‹àaû®æz/Ó'��¸Ut‚Œ ©s_j¦ <’ZÇ� bŠºÄú»¡¯?=}m@Zø%Å9¤W@þMÉí§Ê<nY<X�`a˜~“¶ëdú4?Ë/3*<EŠÔV6k»*¯ ÈjÊŠ 8/b_‡ÀÙØïIËA¤ÇTðYB¢¸OX±óDxt Kù3É_×&jØjaï#Òš ±J^½(“17  ­ÒÐ4°ü¸æW?E‰ÙØ·†W4Å¢ìÆ¥˜GgžáÝ'9P:r„ÿLUÁ€TšVÂì¤y��4V5ðêaWdå³Tm4Å:ÙáȚƦ¦¦¦¦¦&ºò$Dzàé·IÍ<?äŒÚî§o/ŽQÂèl€ HËûfC«·KŠ¥»#á^*ï%Döǘð<)»¾ZbΓD4>ƒ@ ŒýàT¼Öý%6êæà¸÷ùY á'6¯ Ì`6¾=¶aptZ~IINlè½t–²©AàdVuÈâAÌ‹ V~™“rûìí©SçÐ$Z¥Qº oyÀ¦‹™Fù߀ßdïoS,ËέZA4ÅNºÃôü![ ³Ä’Ÿ~ wl»6?3#3#=->ò̺‚k”Ü<uI��€Õ¥FäÊõuÕ"�8Å!sŒÜ‘@ï|+Hë˜[6c®KÁ#RÚææz²D…>>6·.9•šùúÚæ9ûr”4ô7~Cœÿ:›Ç€h8y…kuÀÌU—b3’:VsærgiçEžÁEEÊØoáºì€=.Í¥„.õ°6§Ñ†,=ý^ZSEIÄ’»~>N4c»¡þ%#Ÿ]dD< +ñÁ£—…óßWÅg\ Ya)ÖV—|/,�ÿ¹hkkѦ…[Íw‘@¿Á°¦²N¶iÈùH8ÅNJ„ôü+Pt›êP}ïÎfGæaìèå®Nv½ûöó^ÿˆ:õèÍ­Nd��Àjã.ÆR¼'[H���—Qüöåë¬Ú.üU‚ᢛ·Ö¿ZÝß\ߨaòdb`Ø)�8µï^Æ$4r�xí¿¯ÜݨópF/«!ûjÇŸ{¸µ—¤ó“±ŠŠÊ–ºÕæŽÈ/baañôñ]2¡´('ÝkÒî-+g >1ìöù/ÿÂõDêž/vžIŠÛm/ñ-Ù¹¯ú8u›«Kè8õƒgí\½µ´´~ý¸\¿0hÈHÞÿGx]¾t±‹K�ÀÓ§Ñ{ö¸uãÚ—”a÷nö{òh)Ia·ÏoòòÚt-©´(#^/=nÔògBî½Úoh]Ì»†oÊÍ)OT˜³k’¡†iædÐñ[¶ÆÇ'ÆÇ'nܲõdÐq¤°A ¿ðîÿPp*ÃvûæÌŠCwÚS(š÷§VPT¸tñì¸q��W®\PPT€Ý2üú³±¯Kêjê'Oòþ#@ƒü¡ (Êáp~#k[š˜·OÃår.ÈC PÆ YùÏÕå�èþ³1ô©²ü“´4¶,òKÜzÂ@~4¦6¹™ ‹r¹¿Ãœ AP! åŸJ“ã_éšÂ–…@àl òG '¯hãàšš󢪜Ëýµx/q'ø‚𹚴4ÅÔ‚¦¨¤[2ùƒ”¬·‹'Œérà¢"@àl @~*+>½KM¨ýeV¿e•´*+Ê„$à­rë˜(*«Bƒ@ ?[ÃÊ?%ÇGëšØê™Éü"_¨ˆ~8Êwº\.§¬ôcBl4@?öy-”1�€¬´];U iié_ä÷Æb£;Ø�APEeU{甤Ø?VÆà³1�€šªrqIʯ£a<DÙ6HN^©¶¶æm88ƒ@ ��àr¹Šþj¿ûÜf6–‘‘�06nõã2(Šb¿øWY ŒA ÈJ +**š<e �àFp°ššŒM“ŠÃtvA@UÛýÙ¬.¿ ¬Šñn.C¡’•'E|ffŸ›ÛKJ¦üŸ½³Žâhãøìžç,ÉÅ]‰@Üipk¢-…âî-R ´AZ 犻kq—� ĉ»Û%§»óþq!¸»\B  <ßÏ} ··ûÌ3ÏÌìoŸ™½=IÓ 5XVið"ÿ†s–|üÊ*c‚[·Ø’¤þÄÇ~œÆ¢óïþÚ³¾XÓ:Òª”ûÑ:ÌGDz}°­Û˜;%j§¦ÚñCª@¥èÛ ëÿþ jPÅ­yeçdõ0`ýúuëׯë7`@vNVùG}¹©Øg c¸4öì²a<¬$±D`߸˄¿®$+t.‰ª6¶´©¾6Fõºõïå-Ôµê¡N:´`UL׃!Ñ)Ñ[Û¡ûKž‘,¾›wí‡*ü¤—þ¢©´ã‹Ço¤ùd*÷fÐw~ÖØÒ­óìC±òêT¶¦ûQºvUü¯¤u®‰ëq84:%zk;Á'+·V¡J9½hP§¦Ž¦¸Õº8UÝè ë¯gwIXµîqõD™Ê¾¶¬W=A,›VöÅÈ´ì’umE? &A„еô12lè±'ce 6bù¯Ëš4nܤqãå¿.:lüùç c¥a}ÝbøÆ4ÿiÛÎܾ{ýßíÓÚHÌþ=Xö±¢%i¿pÝ’ÎŒšÎò²c²˜nZ8IŒE<Rš’(·jÓÚÃÒD,àÔX)c¯ vý=SsjÞ;êÛßâÿº|wÿx£#£û®xRúi*ûɺvMù¯ÎŽÉb¸¶p”‹xÌÿ¬“üÇ׋ª¶͈E?uÕ)¿ùþÃû2Nþq#¯ê§yuâÎ=–ÆvÚú0üù™)ü}Cºþüè9¤3Ž ë¹ðž÷â+/b"nïSð÷w½‚Â[uûgÏ®víÚjþn×®í?{vŒÕ}S%ìžøëÃz?_=»z|¯–þ |›wòÓžk7ùqeÁÓëÙô8_ôf’ÁÎcüýÌKƒšÏ S„/ld"–œ&Þ+ˆ jlÝháúi]:ØXKÜ»Î8‘¤Ôôϧiï`,ˆmô^r&Eùî|‘2&¨±u“e»—ôkbk&9~5ùh¢¿[ÄÛÚ Å,Î;ÞÕö«í™ò[ClÅX"òœ¬ˆ_ÑÜZ n¾:º bÏ”öõ,b‰@âÖhÈöB!yüñ}|¬%±Ä®ÅÈ?îåQ•­Jºp8Öù›¶š³«2vߺ;âáë–÷ðhÐaêúÅ’÷üõ°Xçä.ÕîFÚ‹¦‹žmÞÂJ,”G—çÚ®ƒsn-ïík"–ˆÜÞ4Š®c©œÛ+ú˜‰%ç“wì죙Pª¼±Þ›<ÔÓ:7¿·KÌ_+~{.@KXôL$jõ_·oXü§~~¶XbêÑiê©tµATDlßÁÏI –L=ÚŒÛ"ÅHoAtÞ½ 4œr8^®¥AØÎƒ—®Y4á»vŽFÚo€¨é>PÅXé¬×­W;æí½«|Ÿ2z÷ªÆ?lú®©—_×YÛ~o’¸mͽ¢·#ú(L^oü¢¾jàæÑtàOK¾bÅÞ‰—tlÕeÌÄĤ¢n½ód¬N¢Nÿ÷ŸgŒ¯fõæVÜÌ2¶à먕°ËÁ¿×çx/Î/Ì•&lli„RFm>jüÓÕø´ÄµîçÆZ¦@TƱ±}æÜ÷\|þAèmý¤Û÷Yªep+#6dO;Ÿúl¹õñÉ3OgñµQ~nÖfVaÚ÷bʵQÜvûÒ s¥…¹…‘p\>L—>˜Æ><fÆ—ŸÎ†F†…ÝÞýSW;6uV¯ñ7Ýç»rcË×¹Aý~8˜f¤¯h\z%AèßÐ’©yv#žÓ°‹§f¦EÓ@{é³»É ×¥{µ¸QY`ÃþZñ¼ùòK¯îJï4ót­Ãó÷ObÊðu«_ußüäå½ccÙûF\¦Ðy,•vpÌà ”N›o= ;=U°wÙ©Ö!ý~c½½œ`@ëäV!,žºkóλ2½Û°½hЖk¡/Ÿ\ÿ{´/cƒH+IákO…¼||ægß' û/*Ï´De;hYLÛõ7‚_žœÀؾXG�õS£} ª±ÒWžkųk¯ä!Uü†Ö›Q7¤ˆGaèÕXN@úš9x¦UËNŽÅOn%¾5F¸n=»X'Ýw7C‰©¢—G¶sÛôåtlUtÌ ÈX]D™ö2 Yû» ?ðöX~÷EÓ[Kˆm×}ÁO ãwnQœznÝeÖ A£Zº»øt_¸uAý˜]›Ÿ•¾¬ù·K¦µ6g\×ÞãY!¢õMgª 6û悤<¦sûŽ.ÖVŽÞ­ú éêÈFTæ…•G¹“·ý:¤e=G'Ÿ³Öδ{°ýj¶¾E^eVDªZâj®™S¥åa¡­Éëu7¦±½1ÊO) ªâF¥ˆ:®üóÇ@?φßÌ^؉ñüB´ÌpÏ9­—®ÓÒÕÞ£ÓŒ¿Õݹý…TDZÊÔóßÙ°¤ŸŸ££Ï׋Ö±CÚ‡´þƪ©Öѹ΢·îïûF¥Ÿ]yXÑg˶y=ý\ìý: Ýц4(€<¿¦ ëàçjoïÑjÈÊß:”\<)×uê¹õ×xÃ7,ìïää÷íòµ-Q«×ª+½U ø6Üܨt9BˆäØø4oê.2àmuaJ.Û™–G”Ÿ”ÿÖÝ"„8pýåß­7ZsH¦Øg|ü°c‡F92 :¶ *Fòú’e n¸g94v.Ë[&ž¾Æ¹!q9IO ·ÉõË’eݬ…yÁÓ˜BªÉ»3-–^Ve'.†ÀŒ'O(Ñ+%):̶0Öu×cÐÈú;'øøïîÞ¥C§ƒ¾mçÂ' ÷£eñZXÿVaO—ä|âé[ÚP 6—Y½Ë­nTXû&¯÷b›Ú‰%´nÏ­8owK§6õ5¾2-71Í}—§ýØ’ägI¤Û<·²ºó\Zyp÷kó§’Æª©Öѵ³îº3µú¦H|‹=Æù©@*ûÖ_Óæo>ÿ2§lb“×£P[{”)O“HYÞe÷®yzqNÔÔàª^¨j¬ôW`qY´¼T…bØôÝôoßš;yй—¦ö˜ÑùÏó3­Kžï™=¾ß zO/Œ®ÙeÉ/;ÓúÌeŒmÓÀzWŒHÞ=yè­¯0bLëì ˜RS¯?Ä´Š~câ=ÞßDÄ;Ée^d¶Â…uƒ9—Â{Ý<wîʵ Ë¿]ñÛ°Sw×´À4f4Ú~ñ{«·UI Óƒo& JóeBL„˜"S¢85_…4ʧ.H.@&vÆŒª¸ÑÁD¿&$£|‚ÐG—çfíÇ–Þ5Ô€U­ÓAX5ÿ‘2¦ É€�Ò9çÇZ•3a÷ÃS­]%<ùÝñžßL±i)#D2XåöH&«ÆæhªÛª+½U eùr–±1§j³6L±„(LÉ{½Ä©ÎOÌG&&Ϙ8çÒŠÿew9ñ÷Ôn&!¯m'ýWíŒ1­òcAÆ`R!„˜Ö‡4T]_½7ò­U+UAV MIŒPI^)]Ö‹b“Ë.½IÞþº»:áÖ‹ÍUúƒÇy¦>ÎfŽñ««áe3èªô‡÷³¸‹ ÖûE¼Ö]ûj™e{uø~Öo;®ÜÙÖ6çÄîPDZ™ ?v/—6¸hÄ2÷qçd†§kÖà QýöΊç—#5Sfê¬G×’þ-í9UqÃТ+NêôüÝ„Ûae¢Î|ò8ÏÔÇÙÜYû±l»†öÔ«›¯Êü‘Åß’WgØ×Të|pÝË÷oêJD{V€«hD™òð…ªá¤ñë™ñ„:ûex>¥¿âþö8éIJÙíŠÔg±²ê7k¬T5Vz« ÎIRÙ8p«¨Àb߮ЧçÃ4ËŠêŒ{W…Û8V#X-—©+Ê*A ¬,UbŽ­’ŽÁÚØg+cˆå8bý‚F¿~=g˹!a¡.ïûux`û_Bä‡ö­E/w+ŸôÕá%†b!„˜"[FòÍ;é9¹ù%š©jå½¥3¶ßK‰¾²vêŠp—‘£|…6ݧvVîŸ4w×ƒØø—VŒ[æ>âG#ÃÔUKeŸTݬìÅæŸÿ<v'<)==þñ¹ó*+oKú×ÂïD—'ŽXrìɫ䤘§Wv,™¿-R©§h„>=}qè­8ä³]¿›Òºp×´ŸŽ>‹»ö×”_‚í†Mi.¬’Öú­œP—çïOÁÝY<s烸”èÿ˜úËKç‘£|:ŽeÚvŸÐ¦pûä¥ÇB“’^žýuÆÞDèO¢´·[ µú຿޿ç¼þìãÆOI¹vpÇ•4Ú�#,ËúŽdÌéÛé*„K£.zYIÅm{Lj“³uñþ(ÆòWÙ§m7ª(>ôyHhT¶—¦„‡> O~g ½æú@Uc¥¯ Xv5Á´M{G6BˆJ;>¾cï•Oå†hc½a³ÚlýaîÇ‘¡—ÖŒ÷Øá‡™­DÉŸ/ïÞê»=‰jDš· ;5yÚ–a±QŽ,ùñxËn½=x:­f6f cuÂÈwú¹»;ÆY<^5²G«–_uõÇmÁÀµó!~óE›'ñ·´³µµ w§É”@æ¼&n·`v˨y-==ýç<*E±½§Îp>=Æ¿~‹>[äƒwšãÃA «o·jös—¦>­Fæ9p|–¯¡WsïQ>:«l–ä°ÓÏ.ÐÒßݳq ôo6î™âÁF¤IÇ5ŒŸ›Þ¥aÿîÓw½9“úŠF¤EàˆfçÏÄiÎLÇ¡;ŽÎuüwRÇ€–7»ýÄ‚ÆFUtÃÀZ¿eH—çïžB¼§Lw<9Ú¿~‹Þ›JËE×±LÛÁ;öϱ¾4¶¿w5…ƒç·3br˜U¿ï§¦Z}`ÝË÷7íüçùÿ Rîõ•OýFãw¼„FÖ}ÿ^Û9fj#OÿQ×Îèiª2‹a=`Û¾I诶NNŽþ#¯øMlk¤Å«âSZ¶ ì0þT>JÚô}ç6m{.}&ûX} ª±Ò]\ôdÿcqŸa>F!D+Ò^<xSdнL§Ñ‡Î.r¾4¦©—_÷?ŠÿsiYS>Bˆ*Š~pïi²ŒFˆUoÊÉSó=Îûª›g³aûˆ!Û.¯i+Ô}ìÉXnn^EÝzçí—,c„Ï­ëg¬ÌÔøˆ^CW/3¦ó×C.ŸÞ[þïç\{eLP˶'~xx{œÃp¯‹ôîÔV?°¶?YÝÄè3nÒˆ &mÎŽ{rm‚ܾЇ´ØÔáêåñ.<çâ‰=Û÷qtt¬=8ºokçî½5Ó§ÿÌéSÛ¶mºuëΚ?Ö:q¤|ÏËçOvëÕïsmÈŠ’tùôÞÅAÛ{-Ù~$$352Ø5â8<SñËAÐ|ÞòÒ{Ñ¥ŸY½pÑÓý»/¿HÊÊI 9µtÂŸÉ ‡u³ ¢r‚Ÿ™ÿ¸j¨3«W‚xÍÎí[-]ü,8øÙ¢¥ËvnßBTàKngí_ ëž«6Ž—ÜÒ—»&Ïš˜¡@ˆïÚiÂþõÃëôi ¨¹oÑcå¦u¼å¿Cmna~`ÿž¿G:´ÏÜÂZd !¶ûœ'és ÔñanÜvÅõ¨àóìßÄ›93;[»;¶iþ€È€Œ��¼I’EÕB¯*¾õòò|š¦òË]!��@!±‰YqAB.µ+3@Ÿòr²D"ñ—{ý}���!äîõ4#5®M9Az^£œ¬ÌÐà‡nõ¼!��ø¢15³hÖ>ìÙ½ûù94];¶Ë4:slŸþ\M${ûø[XZƒŒ��€’Y4oÛâP·€IE����²1��€/ž¼Ü¬è°§EŸ|NÒÄÒ1/7[Ïš¹G7w/ +1���@›†åd…ßqñjäZßøßþþøÎ¥¾ƒFéÙ¦©ìÌŒ§ï ‚øüVÑ@Æ���j€˜ð§.^mìE"Ñ'~:Ôã;•ü,AV6MZ½ yüùɬ��Ô�…ù9<¾øÓk˜C~ÌÅÔ̲¨¨ðó‹<dc���5�MÓIþWOé}'‹ŒŒDyz¾õÈ’$q-ù"È���ðŽŽ•ÿ™šš:løp„ЉcÇlmm?ûªÃ¤¢6ÔÉ[[Û4ú3Võ©l–/òo8÷aI-¨»ôú`[·1wJj{}¸Ÿ[¤[üctžZ‚2&¨±u‹-Iúu’οûkÏúb±D`5ôªô# ŸOa*ý@ß]ÿ—¤® ƒ­yeçdõ0`ýúuëׯë7`@vNVùG}†©Øg cX–xñ÷1Ý}ìÍb‰À¬^£^“×\ˆ/­[?…J¥_|@8n|#>þ£q`T¯[ÿ^ÞB!¤NØØÒ¦é†Õ‡›ÒyRÖ]Ä–^ ®“-\×ãphtJôÖv‚Ð@Ÿ †õ׳»$¬Z÷¸:K%O–õjh/$‚ Œì[ŽÚø¨ LC¨ìkËzÕÁ²i5a_Œ¬†’±2†±ü×eM7nÒ¸ñò_— 6â³ÿ‘èº=©( ÿ»wà¢ç^Cþ5¯…« £8-üáåCË—ù´ÚÙYTw®qc¯ v´Õþsœá¥•JÄf×ú«%RÒ~áºöµÍTl5uvLÃ-°…£DTƒÅýGQåûïËèóÇ…Í{˜VuÉ‹!i6ò·q~.欢ˆÓ+&OêTäw¤—„JÜ9 ÇÒÌQ{žªŸwjöÀ!]ÜCW7ýàKØr‰úgÏ.SSSÍÛvíÚúø4ø\Õë³ÈÆÔ‰{&-¹ïþóõ NéÓ¶‰¯O@«.Cf¬9sk[GBH±e|?'X"0õh3ngˆ—OŒ4Z¸~Z׆6Ö÷®3N$)õ$?¾ µD –صùǽ< ©bÿjmÜ`i¨üu*üwˆƒcÿ³yXûþzP%]8ëüM[ BáÒˆ=SÚ׳ˆ%‰[£!Ûcº|@!,?þS??[‰@,1õè4õTº!ºðéßcÚ;KbÛ½—œIQ–W¼É²ÝKú5±5“ˆ¿š|4QSq:ï^ЀFfb‰À¹Ã”ÃñeuÒåÉôE¸ñ¢M³ºûZˆ-š­–kõG<½žMóEeƤ×ÛyŒ¿_Ze?ßÊÚ|6¤ÅßÌS_Ô|n˜"|a#±Dà4ñ^Îõǹ┗öº¼WÄ›ßãÖò‘öR*­µÎ>ch«)´u-„]ôlãðVb‰ BÓ¼ö$ïxWÛ¯¶gÊo~o#–˜ ¾V¬·7V,N©¿:z&µVSw/Ò:dtŽY®[¯vÌÛ{VC'ü4õûží[4kÕeÄ/Mv.¾—¢@Êè~µ#F�� �IDATÝ«nÿ°=軦^~]gmû½Iâ¶5÷Šj0311©˜~½ód¬–MÅ¥_ý'˜ÑnÖP/î;ubšK<ÒcøÚS!/ŸŸùÙ÷ÉÂþ‹½žPFm>jüÓÕø´ÄµîçÆZ¦Ð}¥˜uV¯ñ7Ýç»rcË×¹Aý~8˜F:ôúÞ+ãÄáhE™Š=øçÕfD+Bûþº… …^Iú7´dj¤yï˜W\~:v{÷O]íØ„.(Dç]™ÞmØ^4h˵ЗO®ÿ=Ú—1•qllŸ9÷=Ÿzg[?é¶Á}V¿–[eÄæƒìiç²SŸ-·>>yæé,QGÆZÓvýà—''0¶/¾"Å:=yç"Zw„#7âμ˜œŸqwÿ´Nt&¨†ûùö….Ÿ oqa—ƒ~¯Ïñ^œ_˜+MØØÒHÇáú⬿.|mEè(Sy)Uë3¶ÚDÓïw-„R†ýµâyóå—^Ý7”Þ;iæé¬ Ë-„iß‹)×FYpÛíK+ÌÍ9(ÔÛß7Ù•Uy#><)½HëÑg„çÚÆEñìÚ+9BH¿¡µÀfÔ*.øQE¯.í:™jÛ¹«3†^åô¨¯É¾˜V-;9?¹•¨¨ 3è2V«P¤‡§!«†.M'/}4ÛM,ˆ%±ÇÄû¥ñü~˜6¬ƒŸ«½½G«!+ëPrñTäëñÏï¾hzk ±íº/ø©aüÎí/JuuÁÌ +r'oûuHËzŽN>=f­i÷`ûÕl†}·a^ÇŽDÉB¸àþž›¸ýÐVÆ„®ýu.­*³"RÕWsÍŒ¢º )éܾc€‹µ•£w«>Cº:²uú J?»ò°¢Ï–mózú¹Ø;ûu4º£ ‘znÝeÖ A£Zº»øt_¸uAý˜]›Ÿ•ÕÏüÛ%ÓZ›³®kïq¬ Ñ2uê¹õ×xÃ7,ìïää÷íòµ-ÖåÉÛè‹°èë¥s;ØpH&»àò_ºýÑ…á~¾uB×í³á-®ýÒú½Ã‹õÆY]ª0ã`@)Uê3´a­Æ)ºøÛ{]K£4¢Ž+ÿü1Ðϳá7³vb<×_ýþ—gÄg4¢áÓÖyJÛ!õ!ø6Üܨt9BˆäØø4oê.2xö¿è|w.A0Åîßìqºøg;¡.LÉÅb;ÓתÍ4q4AùIùêP1ÚÈX­†ç;óüý[wOÎö@šoFPÙ·þø¾•‡‰X"Klú](ÌK),ë,,‡ÆÎeWÀ O_ãÜqRí«H¸-‹ÿ­…µ@£‘fÍ–DÉs“óUL»îC½3”#\ðp×M"pxs1¡{½OU¢@l.SÓ\A#ë?Ÿàãßaèì{nÄ•`=>HÅbþƯV•)O ·Nõ…š,ëf-Ì ^ÆR!Ķô²*;'0f<y^ ­LyšDztô.[‹7ò ôâº<yç¢'ÂvþŽÜÊýÑEü¬ˆnŸ«ÐâÚÐrxN’õÒR—*¬›½*õ•a­¦ÐÖµ4ûØ7qák¶²Mm ýÕÑëÿ›â kĪ O‘×Z/ýc–`qY´¼T…bØôÝôïÉù\C›OÐfSpÈÓWö.jö|F—‰çs>¢Š`Ã�«]p¬½mPÆóز©%‚kUÏ»~O[¾fJ1çüøA«R»mx›RX›yn€ £¼ 1¥¦Êÿ¦Uzû¦1£Ñ–¨lianù+t1m» iuò`¤,ÿÞ?7ɯF4úö×µÌ7¥ù²²¯ÁœKáÏíf›wuù·¾Mf\ͧ«lº6$ñÎ4‘ VyG ™ekõ¤ât޾ VÅ’´ùC ‚xçb²Â§†ûùÖµŒ.Ÿ«ÒâÚ:ŽÃ CB¯¥.U£²RªÒgXUh5íΔÍÙ—µ¡!ÕÑ忎â*ëx† ϪD^¯Z–/gsªó¥fRèXß׿YÇï—ìÝÚ=ïŸU×òb; Q˜’÷ú²VŸ˜LL>üö.±: Ã:pH�ucÍ?r­—_¨Nß±žA¨³_†ç¿¹‚U'ÜzQv÷«*ýÁã<SgŽHp›¹¡ðc÷rßIL›ÎÃ}²O¸÷ïîÛÌC›‰+Ù_Ç…¾¹;'3<ýÍ7ÓØ«Ã÷³~Ûqåζ¶9'v‡ÊtÙä86u%¢Î=+¨Ø7Ùöñ««áeó÷ªô‡÷³¸‹uµ4ÛÞß'=y}ã€"õY¬ ëòÄààa$1B%y¥tÙpŽMÖ{]¯ÏÏ·ZE«ÏUhq„HÞ~Ø–ÃÍ«çÊŠÐþ‘¡­ipŸ1°Õ´v­jPÕÞhHÇ3pxêØ_K½ôQçÆ$©l¸J©¤1McBìÛÁUñô|˜f=RqïJ¢°qG¬}¡“ŠL§a~nµì«îÓן¼ýäeØó{wþ±/’fr˜˲¾#súvº áÒ¨ƒ ‚^¾5˜ï-±ý~\Jô•µSW„»Œåk¤S,{-üNtyâˆ%Çž¼JNŠyzeÇ’ùÛ"•šÏº ÷Íþgî‚«ìÎË*Ý_ÇăOO_z+NŽB²›þóØð¤ôôøÇçÎG¨¬¼-Yºl2¬{ÎëÏ>1nlÐùÐø”„kw\IÃ6ݧvVîŸ4w×ƒØø—VŒ[æ>âG#Q´í1©MÎÖÅû£dË_üekÒéÉ[ú«7ÂÄ^‡?‡ö­E/w+ŸôÕá%†b}¼ºü¬ˆŸ oqÄ9Ø2’oÞ‰HÏÉÍ/Që8\XÅ8WZ„Ö¥T©ÏØjZ»V5¾ÊƬz”*íx†OƒëEë1‚¥aWLÛ´wd#„¨´ãã;ö^ùTn@ÍK­˜öËö“×î=zpóô–™ýÆ\ftú¡)Á®7lVû‚­?Ì=ð82ôÒš±ó;ü0³•¨&T ²±º‰QýÉgü3Õ)|óÄ>í[µmýõ”Mõæ¾°²1aÝ÷ïµc¦6²qðôu½áŒž¦oòv¶÷ÔÎ§Çø×oÑg‹|ðŽCs|t_ ‘&×\<0^|nz—† üý»OßõJä`L– ŠNÃJã3†7°¿ö,G4+8&N‰"9ìô³Ë´ôw÷lÜ#(ý›{¦x°uÚ$M;ÿyþƒ”{F}åS¿Qàø/dÁ°úvëñ ¦a?wiêÓjôaÞ˜Çgùrõeµ¶í›„þjëääè?òŠßĶF¤NOÞ:NO„+î§Ë~óE›'ñ·´³µµ w§É”@¡?ûÖêç[¡ÔésUZ‰Û-˜Ý2j^KOGÿ9Ju^Õ8WR„Ž•—R¥>ch«iíZÕ™3©r”*íxOƒë¥Û.z²ÿ±¸Ï0#„¢i/<Š)2ä~ _}aÅð­šµhß{ÞYæw[oüΖÓiô¡³‹œ/iêå×ý¢Áÿ\ZÖ´&ž{P.T¹¹yuë·Ÿ¥Œ>>>·®Ÿ°2Sã#z ]½tΘÎ_¹|zoù¿Ÿ[•1A-ÛžøááíqµæëÆÒ»S[ýÀÚþdu#Ô²¯ø4Ї´ØÔáêåñ.¬Ê÷¾xbOãö}?½£G÷míܽ·æïoúôŸ9}jÛ¶­B·nÝYóǺS'Ž”ïyùüÉn½úÕ¹–¨(I—Oï]´½×’íGB2S#ƒ]#ŽÃ3k‚æó–÷Þ‹.…P�@­Ê ~fþ㪡ά:à,ñšÛ·,Zº,8øYpð³EK—íܾ…¨ÀgÙPp}Y+`X÷\µÂ��µjXZôX¹©Gq¶ü÷¦Í-Ììß3pà÷¡C‡ö™[˜ö õåÉÛ}Γô90D¡Å¡Ã�ŸñfjÍÎÖnçŽmš?¾„ºC6��P$IQÔXzÅ·^^žïïCÓA~† I c���5€ØÄ¬¸ !—ÿ&3@Ÿòr²D"ñgx��àÃq÷Hˆzš‘š@ÿ9Az^£œ¬ÌÐà‡nõ¼!���´`jfЬ}س{÷óshúÓ>„—itæØ>ý¹šH$ööñ·°´���t*Yó¶]!Ÿ˜T��� û0²2Ò¢£Â¤ÅEŸým‚ ø|¡“k=;{ÇÏõ ž��Ô^ËÌH {ñÌÛ·±ƒ‹Å†&ª MS™é©ÏÝ¡(ÊÉÙ� cŸ”˜¨po߯N.î!ÈÆ€jec¤•}£æmC‚XZÙðx<ˆ �€Œ}:¤Å…¶v ø0$f–%Òb…B2� cŸŒ1“ŪúOâÀ[ cšúÄ7:��2¦‘2h  †ú„��@Æþ‹„ Z���øle,++kÅÊßfÍœag÷““BöööЖ���_ µäëÏXÏ+11!°C'//ï>}û-ûõW¥R¡Ùûý¡ã'L9j´J¥Ôo^_Æ ��±ÿ&ÓùR(”“§L êØ±ãêÕ«33²ÆŒ‡1ZºtÙ´é³¾ù¦÷ĉ¥Ò’{÷è1ò±^EWû›Û¸U¢g*ïöÒ.nF\>ÇdЕ¢*ÚW%mjfê·ú•²}®hócØÿ4µÐñ��d¬Öé¦éîݺ>|8333==½k×®)))ã›·n;ÖÔÔôСCôOKK{ùò¥.#ŠÄ3‹ú6²áó¹<¾ÀºA›AËoäP: UÅ­olÚh]œÊÀ§þSøþ9«b{ OLßÑ^Ps3ªŽWÚ$Œ<ºúº¾€¬YûX è��5Mm_c³ÙO:g,›[X””–ªÕjƒ1ŽŽŽNLLðññ=xèСûÙì÷ž"±¼× µ¬konaÇ–&†Ü¸žUBaSBç§Æ§Êï<)“Ý;*³¢³nš;šŠQÕoeÁ¯u²¼ƒ¼2Ø&aÚþ§ íËÞÕý÷X±p��|ž“Šz¯±œÇ޳|ùò 7îÞ½{íڵ͚·ôôôd±X,kÁ‚sæÌíÑ£GrrJDd„–„(íæ¹ãkWŽéPß«A³®ßÏ]»¼Ÿ=#Œe±Gçõò¶òøBë&C×ÜÍU£¢‹ýf‡)ÂæûŠøBžÝ¸;oORyw~ûÖÇ„/äÙ·x0NVžŽ½o çídÑvk†üÆ@+¾ÐdÀ¿EH¾iLû6<¾'ri9fës)Æ¥§º˜u;WXVŠôê�+çq÷Jð›\U¯W¸$|÷„6.&<¾'vð¼%J±2ê·†ÿùNîämk)1vî0íX¢âM‚1ÂX´¹…™ÿÚe¥µ.|²aT+[Ç·ðêõÓédFºŠxÏTQy)•˜ XºsQŸ†VÆB¾më Gºª¦/Í��d¬–M*"ŒI‚hղņõë~;&.öÕ–-[8–––Æb±d2Ù ôïÇf³ß?œ!²µæ<ý÷Y®êÝe««3ºÿxÃmÞ‰G/îlëÔgä^—ÃO‚ês¼W>/”–&ojeTáuÚáÑý~‰n·áVHøéIÌ­?]‘b„t˜J}{9ãÆKnûƒÒ¼CBL+I¯œ ùôü"¿Çó¿]ø@ªur²\Ü˶ ôx¥Žß=jêe×E^DGFÜÛûS7;NÙ±ÊÈ¿™,º™˜‘úb]½³cú½½[–ö‘:íèè^³ïy.½ôøÅ½íý¥[~ý{h©®"˜ïšâU(Q¯©ˆ¿÷³g\LÊË|¾ÒúøÄ©§2)UƒIE��êʤ¢SSÓÍ›­\ùÛ¨¾·ï<?|øpÐÌ™Öüö{D4²µ' bÚÔ);ZZZj1eÚyUÐ7ßLín¿Î³iÓ–m»Þ¿•-‡N?·ü(wòõåC¼9!‡YÌ<ÖfÛÕ¬Áƒ1Ö1½¦N9ó×U£áç–ö äøëŸwOu:†1Vë25Tüf !„¸¾?LóÕØ²ºò÷ '¦žŒ,mÖá2Õ*ו×åã×ÛË>Óæ•*?1éܾC€‹5Y[9x!„0Vb„ Ç’é­LIŒl»-ü¹¡ßâm¡ÓW[½c³Rûê”3^b :¹zd Ün[x¾á?›¾©‘®"Ìß2U¡•^Sæý~™ÚÊœ‰kï;Ìu>²´§@[Õ@­��¨[ÙÂ8<,|ÙÂýè3Ä£pš'uúÀ¶ÂY“{ÙJnþÖŒW8cúÔ¯{õ°´°Ðq8§ÞÈ]/Óž_ûççaÍÄñ¦viÐeųy½èҸߚYò…Æ|¡1ß´Éâ(y^Ržªb2ôέ"ÉO“Èz½øš·|@/06Ø”:ûÆšï[º ùBcëoÏæ%ªudcïgi:¼âz UÿÙø¾ßÏX±ëZ¬”~=ÁƲoìd¤Ù4öô3É •RZ³1}öÉO ·ÎõÆc–U³æ/£ (ýE -ÕÑkŠméeÉ)3Å7ãÉóJ(Uƒl �€Z&czÎLMmÚ´åœ[=Ñ—çtbæRвÊ#Ъ¾(åÜÞY»¶þžš–¦_ ICÓîßOY²þÌÃ+3mŸÿñÛBLcF£-Ñ9Ò¢¼òWÈOvù- ï/½`„H&«ü–;’É"5îë4Uá¾@LåœûqPPJ· ãR ó2Ï0!10&"*”ˆ1ËÞVŒNÁçÕŸ}9âñ‘yÝlóþ]Þ×·É´ó©²UÔë?M©(6+±BˆxoKY½tñî’Ue¦A–÷Í´žªÁÚ��µIÆt³oß®¾©cÍaiù4¯ÏáËÆß¯X¾l­ÀòI~1JP‰â.žÝ=õÇÑý#""±!°­Üͬ ˜´oêŠÂÝÍ¡Þ݃ „)úýCYv íqâãd…æ­<åi¬ #ŒÙºL½¹•c¬H~ðBÕpâÜ%\©²_„çk@<S#$Í-ѼSå½J.¡ß›éÓéÆ3ÄžßÍümÇå;ÛÚfŸØRŠ1FHp+´¬eÚýGy¦>΢¢Mƒì³ìñ««aŸÌÒƒûÙÆõÝE„Î"Þ7UVŠ^Soõƒ7oµUM0ž�d¬ÖM*ææåådeq9ÿòÕÌ[–Sçü2p@ÿoûô^¾lé÷ÿE”ÈP‚\œøïÅýóƌ쟟ð¾*åàÐoƯØ}á^HDDÈÃ+&Îf4ííobÝsá`Ñå‰#–}ü*)1&øÊŽ%ó·E*CèhËH¾y'"-;7Oª®`ŠiÓ}b›œm‹÷G•ÒXshéÖ8„ +¦Þ¾1eáíHÆœ¹•¦ÂtiäùA/Ë>bÛ·o% Ûq8¬„Æ%1‡—üЉ׷x¼.]·W²ÐM?ÿqìNxbzzÜã³ç#TVÞ–,MÑÊ{Kgn»—ueÍ”á.#Fúð*Ú4Ì>ÓºÛ”ÎÊý“æî~ð*áÅùãV„¹ø±!Ogï›B™zZUgÕ`R�€º’9|õáÒ¯~ βî3{ÖŒ&Ms8lƒÑ¦uë%‹}½93ƒR¢ØBÙýË:Šœ0é} „ا£gñåÕºµmÝ´í7“÷u\zìÀH&aÜaõ…ý?ŠÎÏèêïÐcú®¡ƒ˜ÀXÔfÞ¬Qs[yy:Ì}XRÁiÕË?ñºvÎÎNþ#¯øMhkDbŒ±NSo¥>¤UŸ k:ÇLklëè0úzÃé=M™ššýü÷D£-íílm~¼ÓxòW‚·o‘ÀXW‡•~ö×-êy6é¹*íë »&»31Ʊ½§Lw:3& A˾[ßm?8»ëJÆôÕÚ²ïæ£¿7yùs—f>­ÇæÞwt¦ë.â=Så¥è3õVO@a¤»j�ðÂÇÇçÖõ³Vfj|D¯¡«—ÎÓùë!—Oï-ÿ÷c{páÌÑÎ=úèÙ¦éìœc±1‡óÖW›å Å…ó—-ýùætG[û^|ÑÌ»œKÏB£"„2fuë¯NŒ¹s¬=³îQE.Ÿ;Ñ´e Db í�Ÿ%éò齋ƒ¶÷Z²ýHHfjd°kÄñ:ð{c$AXš›¿¿—ÍîÚ¥“J¥j¶dQ#3|3VºiëÖ:³$6µÔº½0/³Ö5;F}ªí��PÌ:í=ÇëÙ£›ullܼÆê{{}Ôâj£\��€ŒýçDõ—èø|A›Ö­Û´n mùœz³§Í®ëE���Ô #Ih ��� îfc´����Ù����2öÉS1Lc’Á€Æ�>š¢’DØ�ÈØ'†ÏæædZZÛBc�Bnv¶P(f@f� cŸ'×z!Où7iafnI’“UÏÃh*';3$ø¡³›'‡Ã…€��ÈØ'ÅÎÞ‘¢¨—ÏŸ”H¥ÓÐ$@U!HR(9¹yš˜šñx c��2ö‰ÏAáäìjie£P((š†_Û�ªÞ‡ƒ$9.h�€Œýgðx<í���T X���@Æ�����d ����@Æ����1���������1��������@Æ�����d ����@Æ����1���������1��������@Æ�����d ����@Æ�����d ��������1��������@Æ�����d ����@Æ�����d ��������1���������1����d ����@Æ�����d ��������1���������1����d ����@Æ�����d ��������1���������1����d ����@Æ�����d ����@Æ����1���������1����d ����@Æ�����d ����@Æ����1����¨[2F$MS��� 6@ÓAj,¦Ö­B‘I~nBèòé½>���à¿%?7K(2©‚Œ¹Öó {þ Qó@3+’„‰G���à¿ÊÃèüœŒ°ç¼|šTAÆÌ­ìB1‘Ï‹‹ 0MC��€ÿ‚$…"c/Ÿ&a2TÆ4J¦ë����¨%h‘1X���ꪌµëÜ‚���Ô^‚¶W|·o����u1��� £ó¤¸¨´ä8Œ1Ä�� ¶A„ƒ‹ƒ³„B§Œ¥%Ç™Y;1àKc���µðÜÍb¦&Dë’1iqA^VºB.«Ó©A.ÏÔÂZ 4®ŽŒaŒIÉÚT³n1&ƒ`Ôxm)LQX­Ÿ1îs ë�ðÙ@ÓÚ%JZTžlëäΊ ¢§"Ó%Å…©‰1"øBq•e a¤QñFM›Ô”OFF¾‘ Æ«ZR*--•êß'øÑcLÃ)��Ÿ?yÙ6Žnšó>Æuûù|¡ØÆÁ-35±Z2†&UãšyF0ŸÇçp9jZU³•,••””–&ì c��|Nh?§)ä¥FágsÆ3â òR=;0õ„G#ãtMÈkÄæ°ÕTkX©LoõÞÉO¡×�ðù‹ÆŸÏ…;QI]˜zCBtekNhÃeQ¸†5L&“®a�ð…)Ù—³’ô#5ýA2ÆãòXlVça2¹L&—U)ù†l �€/GÇ@ÆÞè9ý2ÆåòXlf¯‡Éåry•4 ²1�� ûeŒÖL*V3‰ár9,6“¢Õ5ë±B¡ËåÕiW¸S�€ÏJ¬ôÈXåçm…\®T©…ÂwïW*c—ûydc4F˜ªÖÚ‡Ãa°5ž‡) …BQ­æÆ0©øÅ¡JÚúݘËý÷`Å€h�_’ŽaTÉU{fFfb\<‘›‡»™™¤|{IIIØ‹0Dck;{û:/cšÙÕj¤S›Á"k\Ô …B¡„,û §E—ÆõýI¼òƪ&üª7yYÃØötÁ£]«~Ùó IÆ0÷í1cÑ=ì9Ð@Ý8X–omeeacú<„@H"1EI¥%aáÞ^^Å…É)©&&&öa‡•Eɉ际 5FƒÍ™88Yˆªô°¨,3_+6Q+d쵚W5csØäÇÐ0¥Rù2V·G#F¸í‡+èXå{Sé§™¸-¿÷’ 9__¿lþTŽÃ¾q ¸Ð@]ËÅ*;ÝQEÓ¸¤¸¨T*ôõó yþœ ÜLftDTŠRæ¨)µR©ÀØH›uyRdB:iááïb!dS²ÂœÌB_ÌTd#„¾µ±QAA‰ú“Å¡²;¢ª2Çf³H&©®éõ0•R¥T~¨.¤bÝ©š%McË#Wö›?÷ðÖ6|„* žþõo¢5ÿ,õÎÞ>dÜ…ÀIí£Ž~œZÂsë={ÑüNV,ŒËôÓ˜.¼¿~ö´Ëvó7ÏëmÏÖÖÉ’Ní ~óç´Nõx ›?æßo·ïù>¨©4P/ÿôÉ—Ç«çåAãTk;û>¾/BC$ÙÀÇW­R%'Äç:»¸kµƒÅù †eÓ�7S™´HJ s[+g¿ŒJ!yýb$B co_;–e&¥¦æÉÕˆäM,MØŠÔðW¹bKaInžLM‘< ;{GSVµ¸Ê¾7†«p§"‹Í"™ˆªé<L¥T«>XÃ4§3èÜuv8büfnðÍÿ¯ó5Œ‘:öðåN«Ö\[m”q²ù“��òIDATv~ù•ëš,ï"ÂX³»:ïæ³æÜqÿyÛ¬ÖLí#S÷0•å9Å‹1Fˆ4õnn%»ô,CÑÄ™ ­�|^2†‹Džõ½¢Â#‰”d;''ooo“©V+Sò‹‹ÝëÕ33“è4B²ØUœ—_L”ÊT4B©J92röp‰‰ÉvhßÖň@Q¹1÷ÃKë5jdÍW¤¾xgà)bbŒ–e•Zû5l`a‚s#î?KÉ»š“Õ|Ô†¾§xhž;ià¤"“Í$˜¸ÆçU*µZY3¹ w*ÖÑáˆƈ¦1McŒ¦1]ž¡¡²·!ÓŽ£‡ø“ÙµëÝlÝÊ›ñ²N>#„TYW~[³äiƒ¥›§v²`èêê¢ìBÌw¾Þà[ QQF±ŠÆLh î›Ê'ŸDB[=·WÑÑ(!ÎÚÞA¥R¤§¤ä×óô055Ñgaä`oóêáÍXÏ…f‘€E D©Õ˜¦°º0)_ª¢•ù)…„…ãzÊ¢|©ÄÞ&=4#›ik§”a„–^îvbeNš”âÙòe)ù\3ÓâÏÆÊ'+W&‹I0PÏ%ªUjµJý)Û¨}ñ¤¢f-�ÓeM‰+¾eJœLXšI® G™*£0¦RÇì^0Ÿl¶âS:š“zú@Ù£°ß§_g~pùÔI3p7Ab%ÇÇ#Œ ’@ˆÉ +;œàšZ5´ñ (Ya~nfjjDF¡ƒ§½%WOX)“#ž«CžŸ%“Ó‘|–ªPÆuç"„WlÄå”ÊÕ!‡T*I5‡Z¥_Æ4]I¢Ç`1®ñ¹DµŠ¢TTM¶*L*ÖÝш_ßoH Š“ŠtÙv„BÄë4ù¦1F‘æ qî?;w/½Ý×¶z¦I#31Q’Y¨Â˜Bêâôb$´à3 ß�µwtè?{WBvNNR|¢ÐÈHE©(5…ˆ) Â^„{7ð‰DúËVËòÉ›Y›[Y$?MÊã9Ú«+œn5Ñ$‘J¡¤0~=³B3˜$1­V(i\ö ¢«ŠfVzâןc1Y Ä Õt ':”ŠVפ†! w*ÖÙúZš0&8b.*-”ÓØˆ@ˆ*LÉÑâ7(¸\ÆÐ›ÛìIqÀ¨µÝŽŽýyîb,Xº â;6±Q{XÚ‹‡•ñ0ƒçåk΄~ÔA«´Ûæää&'$ x<•JEQ”T¡`’$cf‹‘áQõxñ+»¿‰R*K•JLÑ¢”WÄ!ˆ7WˆÅå üì"µ@3•2©ša,`c„å¹E*sÍèU•ÐLS>ÆòêE¡ò‡Qé™Td°HÌ@jšªÙ–¡Ô4¥ªñ @&ëæ8­0©È4oÜ¿ç䵘ö}ÜPÚÅ-G¢1áiMâ…ðë À7ª¦ÙNHZŽÛ¼ tôŠy¿óVÍke¢ý«Ð ëî}výñ×zŸiœ‹onú_¸eçÙ ¸Ðm€º9‹¡OÆòòó“âã<¾Z¥¦(Jª”{yy)ФÄD„ 1EF¼/Ãü™L†¶D¬(>YÆ „<Q²¢¼”RBè`Ìf䲘„<7W*¢Tjšdð-E¹ñ!1BG“’ç¤æÊ¸Öþ&H•E#ŒèüÈÈ ¡çe¥ËÙvN&¸8§æe aŒ°Nc0 Lâ×0ZMSêš¿ü%®ªë¨ŒÑåS‰ˆã;zúà_Öì¾mâ8¸oÓGÊÅëÍלé×騛í ËÀ)›JƒÆ,Yh´råÔF"m·ö’VÝg¯Íûë·U3Ê Sï.K‚¾÷â@¯ê`.†*Y£”*6“©¦TEIårïúÞ"‘!!¦é”¤d„0›Å"hLSjÄÐòãÑÉóù¹™r #D²$N ý\TùéB ‰(5ìîc1Äž^–Æ6öÎùy±‘©*D°…æ ùšÒÙ !‚ïìn”–+ÇLž¥g@}SufQO*â²ë`­Oñ ™MtÍk¦?††1 ‘°T_'QgJ±‘#— 1Fˆûý¸fçåŸöé‰ÂÈvø®£ÃËŒí>ëð¡÷¶³ìº/¼Ø¡òÝ´ j4ä§#CÞK îecúfÌÌ%%ÅR…Réåí)ò5û›[˜Q4•šœªT«MÍLY,¦;LS+{/s##>›I"„°Z&ÏOÌ-R ®ÐÙÛ¹‘…9—I º '9ÍØÜÞÎËZÈç’S²¼¼Œ,eÙ85sõbÙsÍ\&¢d%ÙIÕžùÐû½1D#„4ÿ¾%Å „DpšÂø#|ï[ã-‚;ë´4%öå“3¸ FY³AR�  2VÉpqusÉÍÍãò¸|#£Š;[ZZðx<’$¾>#”Lš“$}{Ûóðx„Bqš· ½B•gÆkÍ)iaZ^ÁW¶ò¯Ä¼S’HfÍ?.‹V£šNí>¢·À'ˆ%WÏû9\ìÛgÊ̦šjEuò‰á#ÿ‰g«ã÷¶|ëÈü  n¡yŽ¢–I ‘°zz;Û¹Ô¯¸%%.ìT¤ò±HT2‚A| ØÂ5n÷#y |"a‡?u¨ñoßgß¿}>ÆÎ�P‹FAþ'妯GTîÁ±r÷r·åEDøÉ¬LÃ*üÍ$HÆGÐ0 cªæ§‹>’·���uAÆjùÙO)M’Ö£†ÎŒ|D Sƒ†��Ôè9$¿œÊV"cš§Ë‘Lô‘4ŒV¿“òÕ�É[���ÈÆêžŒe™MÍLSS¨ÆCM0>Š·���uJÈÏFÉ0ÆúëR©Œ‘GÃ0ýÖÃHÐ0��¾x8\žBVÊã >êÈKK8\^õeŒ$H-®a Ã4FtÍß—ˆH’ ¡�ð…cja•–lneÇ3Ôéœ c,+•fg¦ZÚ8TKÆ‚Íböâ†>��PÛ išÔ!Q¡1²AyYérY~œA.ÏÒÆ/WGÆìœÜRc¥EÐ]���jÝ)ž$mÜt}* „Æ_H(tʘ£‹§£‹'ô��� 6‹I����È����ü¼;©ù‚���TŠ«gÃÚ(cµÄ-����0˜T���@Æ�����d ����@Æ����1��������€B����|hŒsrss ”j5E©™ ‹Í’ˆŒÍ$²ºã7(£ ¬ìÛØÂÒ^â8溴Fë$½5ÔÕgü½¤zµ¶•K»í)êÚéZåÌÇ <ì���ŸLÃh:<&Z¦T¹¹Öó÷ñoÐÌÛ³¾­¥maIIø«š¦?žŒQÉG—¬KèºïqHì‹õmÐ���@•IÉÈ0“˜{{5P«T%Ò‚Ri¢TF<Ž“ËKÉH¯žYC&U9¯²I—vÍLER…جº»Àö±ý¯ëñ��¨1 Š‹üì­”ùØN|Qs‹E©Uê’`~F™ù¼JªæüWegXœòk÷ÎÿËRÜålio3ìf±êÕÚV.-Ù6¯w3;K§6ë^)å ' näl/±´wm÷ã_ò)ͱ:¶Óù×ieci/ñì1ãX¢¢bÞ—{ç·ͬ,íÍë÷žs*Eù®3¥‘ûguòq–XÚKl}ZŒÜõJ©§ Eäö©]›zI,í%6þ“ö„J1Be†ïú¿äû&®öK{kß^3ÏdhbI?ßüC £¥½Ä£ûôÉï:£zµ¶•K‹Å›g}ÝÂÝÅŦÁk‡ß³¯(|¾e|Ww+{‰¥{À€åçSUeµÑZ®Öºh­xÕ¢¡/ì���Ÿ�µZÍãd ­†™HܘDVÆ1ñ+#‘%G2AlôJ©R}#LzŸŽ¾4ÜœÓæñ™Éi{Ú BHµõwêɸôøëãLïÌï?ùŽË¬ן=º¸±gîÚï&I£]p]ëv*óØÄá+^µþóòݧ‡Ç2ÿ÷ëUiù“ª"6¬‹ëò×½àkG³Ž¶6ü­“­:éàø9×\æ}òüɳ«Ûæu¶cHgAˆV’õ†þ~øqðýûÇæú<]òݲà×kAý7¹9§ÏèhÀ†óO‚o_Z7̇¯ùµTUøß«C›.>sûÜ®ÁÔióÎf¿?o«ŠÞ~B<ï\d\Ôã × Ë®`¬Ñ™‰ƒ<¬·ðäõ'W7ô‘î:ðÏr„èü«ï—«£.Z+^µhè ;��À§€Ãfgç({0V“œ†L¶)ÉqG ;UÁ¦üR7.‡[=³Õ¼SQÔó§™_Y³bH¯­:Ápqñ`O6BÈaÚoÓNuÝy#çÛ¯niÛÞ·ÍÅ¿oð†[4ÀÃ’ ‡gzzSÉV ƒF63#‘Ë”Õ Î¶[·+ljP�¯<W+HÉc8µmßÐÙš¬-<BˆJ¿¬µ ßYúŽšè«9ÒnвeWÎÌ>½´±?ãmÿ‹¯¬:¦øf÷ÆY „“/BHõ !$ \ºjL;1|§ÏéðÏ´Ë1²¾æüwâÀï:JKSB¶]fÏ÷k¹lWØÔ墊öÉ«¯2Z>¼¹@nó6ξÜb㶉Ø_z¯\*ý°Öº|S_KÅU‰†þ°��|LÅÆ¹ ³UbðÆ&¦ ¶¦óR’¢Ä#ò •ÆbƧ”1¦mC{n*’¾’%<j纺ÂÇÎ)RÛKRCRH·é^ez`äÑΓ}ºÜ¬cK/±&?dZ4jd’÷2^Jð^gŒœzý†{ïžÒ¤å?]:vèÚ¿wkg>¡Ë52+ºó÷¬E;/†å”eª¼®…j„ïøÿ$×ûÁOüÞžL»FÎ|ÍV¶‰ _™Xú~ú´p4ÒüÉ0öð1Î —Ò~í+SC’ × Þ%–Uãff…Ï^•b-åêª £–ŠW)zÃ��ð)075‰IL”ÉÕ¥8ðÁ VO«—Qi˜võ0Ëå)ŽvvŸRÆ“QvþÅ3ü7>;9Èò­ùÉÒ:¶ßGˆ`²ËOÞ³ 7@ð¼gœyÚýöÅ‹Wo^üý»ß×|wôÚÊf: sÏO¶.gìÖÛGZ¸˜òä÷§ú -Áïû¯»Ž$Yn ÆHË,¥¦^oÅ”ŠFÚík)J{é:ê‚z¿â_W!v��€š€Éd™›šæ8:8<}"S« òòÛ¶l™WX`,±˜ÕœüГÇ¡± Š<ñ 6l;ÛÎ×'=I-»aB™'/—u⽈BÍêìàà|“N‚wdŠ=¿8í׿Ï_ÛØ:ûôÞ2]©Rž¼TúŽû•»„Ç ¨œðÈ|µvÿ‰è !…ÕZ)R'Þ /sX•ñ艇Ùv íqìõˆ²U9UÆ“‡9âún"ž¶ruÕEkÅ« ½a��øD‹D!™BnbfÚ¡}'cSiI‰J¥6ŠªmóCeŒaÕ}Þ@á¿ÓÆþzòilJÊ«ç×þ·|ñÎh¥®íL›®ã[çíüõp´ cyìáå;ã+XSÜ]>w÷ãøÔW×ÖÏZæ4lX^…Oå/·/]êndJFF“ #ÕV^–lYx9’¯ÎÝÉP!\säç5áZ3 †U·Ù}9§&NZ{éeBjbè#»®¦~»ŒòþŠ9ÿ{Ÿúêê_³t~Ça„ӺˤªCÓþçQ\BØåß'­ wòƒŸ‘ÖriuÑZñªECoØ��>QBÆ`bŒ“RSDBñ¹‹gKKKÃc¢J%“YýGJ}ðèHãÀßOýcñó²9߬+Dˆgå÷ÕÀùb†Îí «oÿÞ‘8iVGåS»ÖCƵ¾½õµ-–×ÄIgÆ7›—I™6µyϬœ·Šâ²3.ü>dyrFÛ&ßý¹m¢; Ú bX~½.èþ¨Ù­œf‰LíZŽœÚíþjm_'M:®:¶U<ÿ×±ÝVÈDzáw+ÚüD–פÉNç&4[PÁáw4aÙgãþœ¹ó–öj—8mFìÙ2͇‹ÒV®Ž ‘ÅZ*NÆV!zÃ��ð鈊‰±µµõóñ‰ÊÈL—JK"¢£\ªmðññ¹uý¬€•™Ñkèêÿž‡(„êÕÚöO¼uuŒ<˜��À@nܹ7fÔØÔ´ääÔ¤—/ÂÜ]\Ú·im¸…ö»÷Z²ýHHfjd°kÄqXè���>)ii¾~>|>Ÿ 6›íè蜖ú!!‘����>Mî=|òBó–Á`´jÞ dì¿€å6ãnÜ ˆ��@Uðpss°µ›<{Al|¢«³ãúU+x<î‡���>)<wû†µ5e ÖÆ���€: È����2���� c�����2���€Œ����È����|<ʾ7†1¶qò ¾³£Qëî��� ŽÉXÙï8b|ëúYJ¥Ü+TCjœ»Ïs ��T[ư&'ã¡”Úë+“1¢F"A!D QjÑ4I"R­V2I6 É•ƒE“ s(JÍd¨UÉP—È(ƒæ°ø,¥TNJÄ6*)-fQ²bµŠYLæ)¥<±J^ ⛨D©&¹|!c–R©,Qó‹0¥Ô*¾œÅ(¡™F<‚.¥9BŽZ¡â™ Kò²±²T®ÌBÜÜâÂB—0FiKÁNgqU‚Mh’Ä U’€â‹¤|R¥ (KŒYJ•šO1$F ƒ%Ã*­2WqòØJ¥ÒH--R "ŸR±8üRº”9J¤¦™jRX*fªB«¤.e“¤šÁ$U4ÍAj‚$)5CI¨X &ƒFJ’‰•ÅR³H—2Øb6¦¹ šÍ6#*› ˜˜æ«‚-6!‹åI¨´B*ZŽhºT­ä³Q‰ZÍ@, !$ÅòÒ$3¤‚Ä,‚T4“‰äjÄE„‚ ÿßÞâ Q~;S W_½Whï‹à ¸Mª×´»3˜ +IÞçÇüÉÓÓ ´jˆDÌL¾‚X†¨ëQ}õ ^JÀAd_ ç狃$¢ZÛ£–wº±Å§n¬=.vÛ#ÝgF ¢*ýt 1F† "¢?õøˆ®îã­Ý����IEND®B`‚���������������������������mp3splt-gtk-0.7.2/help/C/figures/FreeDBSearch.png���������������������������������������������������0000644�0001750�0001750�00000251331�11753562422�016343� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������‰PNG  ��� IHDR��B��I���ÉÏ”���sRGB�®Îé��� pHYs��Ä��Ä•+���tIMEÚ §ÞT���tEXtComment�Created with GIMPW�� �IDATxÚì}wœdGuîwΩº·»'ìÌFI«ŒPDH&K# ˆhÀÏÏ`0DÉ€Æa¢m‚y&Ù“A"Ø€–d‚�=BÒ*ìjW›g¦»ï­:ç¼?nÏLÏjwˆúûõo¦ûv¥[]·¾:¡NѱÇ‹Fa„F¸c"�øäÇ?Àá£îø¥@��à4xÀ݉àpôèB·:N˜¿êÔäN°˜Úݽ©Ä|ÀpfÀÅ/šCœæ Zh©ÃAÀ|ŸÏrë*†Æ‚Ïçó7æXrkƒÛY:‚ÜlpÓNN¡iÑ|5ÉæKtPó¼¹¹Å[ú×4hô Õ’.Z蚯»Ü5Ö\¦ÅrMÅ’¢æ[¸Øš…â»rÐZò‹øÒfûü ±¡î„æ»bþ—j•ïR×n~÷…ÜK~È[B» ,¹Á…oÈÝ}ø›1DÍ,ô/Íß-\õ¥ChøÞwMN w,Ž¡Å>¹øøP0ÂnqÞ;_~ò“Ÿì³ÏêN¸e0dï ä±ôÝo‹Ó¥ ]"�sp6/È3Á!ê0p0sb‚)ÀÆ™,eS %raÉäÈ"øœe‹-ÔÆu ¢9uKîÌÔ=Õ qU3;û©H³È­`î¨÷£ Y.¸ÔŠ¢ÏuªéÎ8I×ÇÆŠØ' ^×.d¡¶zS¶9t{·ôÂt/Íõ©œ17qïi7ÔA[9ø¬«±¬péY4ZËJå1)-f3㤡SÄffR±M‰æÈke)¼×7DÏ]ÛòX?ô:€½~.,'1ÑP ¹;Ñ`6MVrñà^ yVª&'íXN$ŒwŠq3Î;”3ª¥tæ´˜B­"u\f=ŸhµÞC‘%µêØT͹žK›Êb¦®¶÷s7õçº¦Ë ê'óĤ`höä£åLD ‚ ÆÐ¯L�w«Ëvö‰™#›ÀÜ¡�Àf`j˜ ‡;LAÜ 8ƒàÌ!¸1))\\�õLJæFpo؈¼!?&÷†¥ÙÝÙÝä4Ìʃwæí]mž_äâ´H)¾ëÈ÷aÖÞu)s›Ì’eÆžžë[ç1Ù{ÀÆŸ_¾ t�‚ݱï‡~©¸=ÏÅ|=ÖÌXó‚�#�ä‚dp!u g(¹‚�rr#"#®2w €fHG¦�·,VA]eâÂsvµhHI5;ƒIÒX‹EÕ­{ª1´a}›MÄfY¹¨MžÀ!ÛNï¬(¬µM ßg SÒÍÚnÇ#ך0–ÐaC9Þ‡p•Z¹×­¢mósÓl¬YBd«µ=fsˆ­¼èz·d´¼œÕJ²z» —•µJ™gˆÔꚊ>÷ÜiÎg‰8%­yªkMu º6˜d˜ [Š•™(S€{σÈÕ\ûÞWVIô™§­î 昭¶³ÇÈI{T[ÚA=Þ-¤Å±HŤ´fJi³ôôæ‚U}¼Të{·UΊUI»ª ’áìNÎeŠ¥)¼kQV3UHun3T™sÖÔ ¦ÙIÔ w l•Äšœù€EA¤.ì 1c"h.Ü\]‚HrŽ€Á=‘«:“»«5…4D¢ êp9+|0 Á#°y³Ê"v74Ë­&5 dïEj‰o ¢"vÕì"ïöQº}tC£Yy„_;»½U@hµZ�Ôw,âúÕ*Ú-±ùmÞ’^¢áäî 26v1d‚¸‘ �7x àrs&8¹\À®Ùˆ˜<±DÖœYÔ¬Î4+sQj¹y‘+K ÏI•(‚shµ–‰¥ºçíööÎm/ëLׄ=YQ©E1%´«žIÙl[7.ç\‹‚T½mÄEni™eÛ>ÖÚLRå¹q ÎE»Ý›ëµŠñÔ걃SIa&r§†‘wZ@H‹K4'ŽÔáNɵ—¨w–e;í˜õ 6Z&Á;Î}JÁÇýfãRTÆÁ…èîJn™8@-HŠì OÁ µS‘Ý™¹ö<±õº$‘ÛlL…Y^“•”ÁËqVA*”­‚¨ñvdI½ãœAåöªZU …�.ÇH«äÛŠn¸©kRÕCÆb`*Y%‰U‘ƒòÎà,¥srEÜŒk ¸‘™âygw! 7i�ƒ‰‰H@dwT ‰Y$gu!r#°7tEÆ\µ’Тað%�"÷†”�wçÁã1`*(j7PóÐ/êxžŒj?b–y 7p+棥ï%2Øï,>þŒûî3ÙúERÎVùQï¹à7–eWÛØ‚Ùd/£Éݴ꣞ 1¢=õkTÍýºŠØcy½+žüÓß·G¾îS—¾ðÀøK6h)áùnz÷ÊÜýïTq�Ù¼½‚ˆÜš‰dÙ LæÎnälLäcÀ™Å`¦17{ #…‚AC°\ H©Ïbv8Ä\Ê2e�41©½^€ÍÔRºx)®n^CZYR‘Rm™#KÚ‘¶UZhªY5×0)Ä'¤l×Eò¹œ³¶'='‡z=íi«-­+«£ÅÌ  §�g«”CÄ5›a¬Õî0—…0H‰"›õ‹UÑ·H,L{š ËZ†eÉs‹9z­…T2ˆà&•ˆ�lZæ•×%¸oCºC(ÀJE€F"vuêQ®&Ü +¢SaDH¦¤Éë–Œõúa²h;sò™’±cÌYÚÁ»UÝ¢’Û’¨Ô8–¨ïöR±½*v† Î]ç¨E†µ¹ìPl‡jκNEðÉŒ,–k¡ˆ¾™°1qì{%BdlêD$ê2@˜DÉdNsfÀ`Ä\¬6#E5¥@™I F\ˆÀ®(Nêr9\@†y]€ƒ@îFDw@0P£q4Ê Ô¨>yɈZLœhwB-%³]Ø‹~é§ÛG¬ö»Š}&[¯üð—~º~ËÞ“í;=ñ¡ç?nÓuW­>ø¨ßL–=ÐØ@c¿{ØÜÎtý•ÜßAk£0Æ1îa8úíã.zß}Ë«Oÿ×^qÓœ(§Ž<éÁg¼îô§7Î{-Œöôô,šþׄÙ/œzò.?àïoþÂ-ûH•f¿ðÈSžxøo½ùó4¹D÷b€7s‰dÑŽ`NDpEžý·ßý²wwÉ}Œ­}ÀSžñ÷¯|Ä]§„Xç-äÈæl¦ý¿õw¯ýȇ¿þ³5Ð^yדŸô‘|ä1#C\³»¤¿ü//|×…ßúÞ [ ÀÚ—õ]gDÔOnlÔu+µÖXÆAµZ¯.ŠÒRÏ„-yôhŽRIœû”"cãH4Ì=·¤ã"Z‰…ÈC»Hjµ„m4Ör­-tX(°«IYšrá3ã43C$SHy»-ñze ºöc)¶[í„1ö�«Á`€…@ýZI0 Furî}3aÊÐÁeANÙA Ò9·RyY6/\c[ræ¬]‡tód§*T¬‘$sÍ“%Ò &B1´ ¯r{9s»ôéDsÂIªú˜ŽRE¦ÝN1ç,æ;¬5&H¡JýˆR¥#’­€›» g+\,€ˆÙDLHÔ¬q ††B.Lj.ÙA„Õˆ‰Èä¤ !Ï`‚sC24ðØYp¾ ‚Àm 2ljh4‚c¾ÆõŒ|A´³†ì] é Vr>H7,· ³Í­ÉŒn×RuAÙ9â³ßütý–ë{!¶:{I#> õ»¿É,»ÒØÞ×OÚ›ë­ûéìO/Kekblu§ÝeoI(G~pxµî›—üß ­Uû¬¢Ù[6Ínÿñ7?ûÜ'Ëq?xÉ ­_¯|ç·[$¤Ý]!çýÒîFä¦@p7ýé{_ò ×^ž85nÛoºà¯ÀÏÒ>ñ˜ƒ¨Qê‘8ô®ýôãôÎ û@˜>ìèåqö–Ÿ\rùÆêQwŽ”(8’2Ýüíó¾ðMS+Kl®�âØoå.€lB…R¨­¦Ò ve(g#¹Å²,«~Ÿ„•¨�kÇÔákb aL¸js Á•œiœÄ¢zƒæ~e^(“ .Ð*‰¥Í¡b h·!%¨Î0—PR–9Ô]AÁ°À¬”"%ÀJ‘Œjx )3A "u²LNepÏ!™ûa+3e¡Hpçìpw6Kµ“ ‡Væš,d×®p«²’çJk¡²Éçnm0ÒVLur³BÑj'+¤Ìä…Zí\Ä*“…$–;X&6 ª3—L1‘©y©ô\J—º­Ùæ 9ÔdA8[Öà…R怎»9±rŠ`õde‘“9)“©±¸k�™93¢½ØÙ=¢ˆ7A2�æÍSèóJÆ»§9ù !*Èæ{ž7×qóÀR´8®èÈ©ñ1Í{c²]®Ð¯®z¹•+É¿4[²3±—dE»½Ë¬[³N;ñ¨}—Ý:ñº-s¯>ç²½dùçoýì[WßÒ|{÷—¿è!G^sóÖç}à‹Å~Çîv@ñ­´ÚƒWoÇöÙ›®é_y½î;õuçÙ†ó­·®ªº³Û¶õg·æªšdšWïÿ>ç°{—S'{ÖWÞú´'LM8u·—½ã{Ûoú¯zøÑTNÝÿð'|èâí õ®|Á'•Ó'óªO¿öÉO\>}RyÀSžú¾ï´†–ú‰oÌmùÆW{Ãõÿõ™SÛ�PÍõ ðîeú»Þååô‰åôI+ŽzÊÃ_qᆠô®xÁ‘'Ó'ýªO½æÉO˜ž>±8àOŸòÞ«v¨7XtÁîÿì5ÇŸü„‹�À.8sõÔIåÔÓ?x“¡1ƒ½ò†K^óèÇLL4väs^òo_zò'•S'ðþ ¹õk;剃^ºzú¤Öò§hƒ-þæV_÷ñ—ï·üÄrùCó¡ëúóŽf °íҳξ<û=ãŸn¼ú«ë>vòÐýæûÞüݸÃÌ`î fØæ/¾ê=öѹßó¿÷³Ï}ÿü|ïâOmøîóîQöÍä€6óâÎõöëoøêÏ>rʪæGe‰íöX»Å­V‹Úe«ˆ¡$&K £X°Hò,A³˜RÁ <#õ[¦úãÚLGŸfæ²c\’´%LP^Ë©X¬*ŠƒZÅÚ"¬ŽÞ ²’iªÀtðåe˜l·ZEÙ.ÆL&b1]N¬Œ´¼ÕÚ¿3½o»\xuiEXÁ´<ÅqU'¶™—…Ø¢zÌÙ©“½la̸ˆ$¥D‚G#V̵‡ä¥:;ZŠ\‰[ªPíHy‡[/c¶Î;¬Ú¦:“m³áæéº~÷K7VÝ›ûº)ÕÛçêÍjµyϨ/B𘸩Y‹‰v\QðŠ‚§Ë¸ß˜Œ•qMÀŠV€WwŠ0©0F˜Šq’x…´' ™`.Ú Èá‚॓D)˜.D &ˆ‰&0awÏÌfàäJ’¤1¶.ì6`"gÙ` É Œ®ù‡˜‰�'n)4¦X¢Ææ8¡ñºl²0›9Í/ˆÀó MM`€‡2ÒR#-]×Ý:ÁoËø0Âo Gí»ìÞ¯¸õ먕­­ë¯ÛK–Ÿ|Ôƒ_àÞ‡¬|åÃŽ¾÷Á+ŽÙg¢êÍî©¢0?Îää¬Û6mÊ›®Ó-Öz‘›:ÓŽœÓÖzGÚR®:pꀣ‹±ÉÝH ï8ëÕÍ»k/|Å©?}kÿæFß¹îkïÿ³³O¼âGµçS^ýÞ·ýËñ'Þç¸_»ìÚO¿ò Ýÿ“?u9ƒÚ“ÅÍç¾å/ÞóóÛnúÁOz|À‰gþýé÷é ¾â_Ÿüâs¯A8ä^÷>¼5{íåWžÿõŸn?ëþû-)ðÞ'·óë—]ûéW¡ûâß9ÍCû‰Å~G²zݵ›�Ðò;Ýi\:­înKþÝú’³è�¦íçïyÞlQ?Y¬Ýµ„ƒW„…g4oüêÛzú[ÐyÈ›ÿùc~` x³•Œ‰@s?»à¿gL>ø´£¦ˆq߇ݻüúUÛ¾ñµ›z'Ú2¡àf "ßvÙG¾UXa<é˜wÿ¼Ë+޾ÿ ßôìçÝ-�ÔoÔS,îÈ®qÅÊi§Äƒ;•‰B‹-•(zÖHLub‚‰±ìÆ]· ónÏ<‹shk«rYZ‹n«_«fÏ‚° Z%€X2B‹“ÇP9ÕNîe`ѺU´K@µ¤@T´tŽÐG˜ vöº”È-–äÜ5ÇF%±IRH¹¹îKŒAQ“ÕΉÍÙ³…@Ý ö"Š*™4s1™ •ˆKbOj TQ»¦AK.ˆÙ,[® ±ªC.0G(Kçf/jj€¨G·ÀÚlF�q%B ‡’Ó¸Ä9© H¬¬Ë…Š·jcH‡)aF½US-T]F¡,sPÊäâÈ.‘çŠóò€ÌÜe"†µ„zW'2!Rv&'ru0¥ ;-læÒFF"!¨¢¡r§4fÌî r”ö)6„Çä6Ì,äóf°F[I»¨æ>’sÈÐŽÄÁzøÖ^‹¿>MãwD¼ç+ßþᵆ¯±ßÊSŽ?¬?·}·éßö…ÿ~Õ£îuü¡û>÷‡?ìè}Z1vÜþÓ?¹ió?wÑÔšo‹Æ|aë�åøO,ß¾aÃÌV]5žÇÇ¢¹“ÎXÿ†jnkv¸½üà£B,v]5ôäó.xî¡çœ~èóäý›Ë¿x׆·ÜékO|ìÿúfºñ›?ÜŽ<ta³å=ϼä+§„õï}Øã^ðýÙϽý›7=ü±�í^ÙyÿsÍ Ào¸~s?»W~¶ÀÚÓ>ð/¼ßió ;;ѽ?o¸ç™ù´ƒ°þ}{Ü ~0û¹w|ó¦‡?vÿá^ñ€¿ú×÷íó'{ÒÅàû½ââÏÞw�ËUßwO¡,¸Ågÿá‡Äû¿ýã_þó5›¿ðÚ»=ýümáù€¿úØû÷yÔCŸxø~¯¸øó÷[ wÅy�€ßý—SßpÞ:”÷ýû>ùÌC:<Ø@ƒÍº¨·Þ¸�&XÁ bríPaó5Û¡Åäf &Góµ×g�¸á¢Ë¦îtØa·\}õ•ß|Íã6µÏÃ3ïÄšs¤ nìên@p[ÜíJLÐ,±(-s(¢¨ R‚˜9ˆÉ3ÀB‰‚¨u™…RW:Á©5.¯ÇB»t)¤µ³‡Ì3NµHÉ^³HpæY›Z5,jÅE›ú‹ò,B‡½²vé¤ê1´Ô3­Py,OªÎi݉Q)˜öK)Sr-[ž¹ˆ±guß{í=³¼&0±;²›FTîNæ"Pa^G*Ì¡¦ ¤Þco«rF ˜{VäÂJuÔFN5åR"8)ŒàË®@‹M2&à=ÎZ¼¤FP5'ÇœS‡`Ò'јŒ‰âTæPƒk–DºM 5+9[‘Ås ª“ «%ƒ(¼lˆ�"VÓH08{aR‚g¦2C…@LpS¢ÂÙÙ 2rŠ„ÔHí�;ŒÀ,æÎ0¢Á1"n¶$;ѼÆÐAà†éL‹W‡Ñ€×v56æÍnó›Ìh‰ã­5Š»õ`¼šÆîp¸àòkÏû鯢5¶peKާ¿Çô—¬Ûqö9—¼øÔ{ßó°µw];àòë7ž}Î%­›í,[¾§\óJEó]¼3Š"®ØwíŠCŽh-_“uzvûÚÛÖö«Uh­éìsdkÅÚln¦óïÄ ûþã{N†©Ã] �+ýÔ».ãGÜe9�t·Ïfw¤=ôAÇ­aw^yŸF ºîG×ö- òœ«6_¸ñ{o{å="ü¦¿èì/ÜbÃÿè„ÜôÉ“½ÏÄŸx¿§½ûëÈ‚JúàãÖ÷°ò¤6^~]½‹ ë7]Ìì·^»ïÚM­}ÐÔ~šºï‡\cöê«ÖÀŸúð}#…}ò'÷)wÑž,°ÿüÝ�6|ù¼+û?óŸ~îÇi°#€ˆwñ5/ȇ¬N¡ßˆ ä†”´Ñßç—~óŸpáKNd _ùþsn®˜¢³8 žR³¹Í+OUA Ö²¹ˆ‘BYÑ¥Ón…$Šƒ9f0ˆ´¢(LØÄ+Y¬Yjñªâd”ñV{‚¬åE êP&N$ c‚pA(„ǃb(XLc±5Ñ“èí¢3U”Ó!®lñDÉËÛå>­±5eX]ÈŠVg:ЪNk™èŠ¢£0Ö ã;Î�Z®!xXd+`¥9»‰2;™�ÄⱤÈð¤I)A“Y KjY‘«Ü5Ÿitº9åøŒë\•»Yû ³JÛS½½N;ru³æI·ºuº9÷9W€‘W–¨‚+‰H)¶Œ0VÊ2 Ó&‰V™.xŸ(k"íe¼,:‚1ŽDQlvn$ÿAË áÆIÐÈ=Ü)»ªBÙ3`æF 85ŽdäænÄ&ó1Uˆ4„"(ÿs«4ƒ•Ä`£ãÀj¶{ ›ŽwÕÎKƒt»´…#ü>ÙÏö²&)Ç&Ç—¯i^cË×´'¦÷²ŒiOL_xÝΫoÙ¹p冭s_ÿé–ö²å{©%,ΰ·ŽE˃ϕ>ÓßTM˜¡SøäøªÉCîY®Ø×ÍC,`ó ·ùIº3] ÜC�è¬êÜ|w'sjæ]×ÁŒ½‹·D˜:䤾踳Ÿö=­¯¹äúú wÔ§¾Zþãÿùúy?¸æÇ?¾á;_¾á;_¾—¾ïô5óÖêî€iwcgÞeÅH <³;7yÞ»u££Ù£3|íÆO|ì³§ßå/óµ;ˆ›šÊû¯Ä÷6aæÆí™=ÍÜ´�Vº¼p&rBpÔ ËöY\ ìsÜAË"Åå· ÿ³;6ÔY‹VÅ© ¢¶„3„‚l1 SÍ<f¦1Í*"²fâ2d£@¨¼&TBNnÂÁÜT(g÷©²:åX,A“VöRÅí ×¹³8“ch"9K®µä¹Í­Z»QϦ5¨H…‹›„)ò*D/¨H?e Ò6ÎDË]ON±¥y£7ÞJš•ÙL©`«- Í9 NînBÜ <Ct''et@=qRô‚‹qdU"¸%«Ž‚>{è¦N»HE5€ÖÚ#gÀ°4d׺«-+ˆœÅÙÄ“i©A� e*ÝÙ;ΙՉǜ�Ðvµ.%[Ǫ̀KöŠªÂ€ì^’g#æ¶£Ž°š± f‡’D­ ,¦žŒX"™fÀœ�2†ÓÀ|¢`n ™™‰³öäÁÈàó΋˜›†ÍlÁAd1î†|ŸŒ…ÀQ»~Xº±Ò÷ìˆ?Ò1þù‰ü‚BøƒŽ?âÎk×,|<pÍŠGœpÌ‚ÇÇ^¥1še6ôên½eóµ?[ËÎ:>3¶zvlõ¶ÜéUjÕLcÙnC“»ÝÆšlÏß­;÷W̹Ï]ý™/o€ƒîrP ÝrÙG?{ù†Ú ÞøõÏ^­�0¾ï$ëÎõ›×>øÕï:ûü ?½þÇozhຠ¯­tݹ߸bÖ|öêÏ~y�t̥~·vwøøß´uëÅýæõ½gUbüð£ö€«?~Þ͵çõç{QµÀîiJ¨zyÞ‘¹!ÄÃ_ø×Ï?ØùßÏ~ôÛÿóíÚ¥í#îŸ1�;ÏûÜUÛÝ7_ü_ß®L=ø”ý ê]zöËö˜ç>öu?ÜnFÓwùãÃ�`ã•7Ítû Wl€ý]S úþÛÿúQyÉig]>KAHਓª.Ž3ƒ3Ì p e`æ¤BCÀ1„`$"°-«™„ÄêZ[fÓn±u ê4(°°»I2583؉Ë…Vh«2æÉ=ÂR@ÌuÅ©)0ŽÔ&)–I«E!ÀË ¥´Æ"O–²2+[ãË[|àTû@‘ŠrõX¸ód{²Œ+Ë8&¡ÄÀäÙ££ˆVÂ{„ 1&¦@(…£8*³¾yß­'Ôä°nÒ^²-®½”6÷ë[ª¼µö­•n³´ÍÓL²ó-Fs ªjKö Z¯ïÖ{¶¾_oHØÒ×ä;a=Ïš0k®É™‘àîNLE`Ò±#¼Œ¥$Y¤ˆa™RdD#8»1{#!È.B,ìzD#(YRµ>‘±¨»k£Žd'6"röÆ/ï &bFãüÁD,DÒTä &b/œàÃͦ‡‘Æõc`ZãE§At."'vÆbv4e΋k<4 ìÝd„?xÜýÀå/=ùÈ{¸üòë7žûÝÿðš Çì»ìå;æ„§û³;nÃ6FDî¾ •SšÝ¶e–X'VONM¬\UõªÍë®ÛÑëÏÌÕ]):Zõ©Õ&vjh÷аfÀÏ?|ŸÃ¿° Ûné{ô ¸6í¼òÏü‡g"._3é[¶lË�Ð~À“Ÿtp¬ÿï'N9å³zÄÑÇ0®7]~a `¿ö/ËþùGî{Ä9‹>ÿkåÖ²o\{Üj\p3¾ýºãïùáµGüÉG>ô¤#‹¥‚íQ§qü§^ùÃúü3NÛÿ¬±›ç|¸kï:_ ^{Ä£?úÞ(OÿúOŸuýýþæó×îqO^ý­sÿ÷=ÆhH(tš:áu/=úܳ®\ÿžsÀg&ò¶ÚxÖËïÙbîÝré%\”QŸZ;xæ«òOÿû¼­¼áÞýü¾7_~™+úêG¯.‹z㥗|ë⌴¹ò@¡ýÇ^ýÈ7ý¬[íØ�7½éÔ§¼/¶ïÿÎ÷ýûÃ'BˆîFÄ"NCŠ"Ș‰´æà@Zq(=I¼oýè%¼™Ø§�� �IDAT¢“e·ÊŽÄ‘[  LfgcUŽT–‘Hzž2[´–‘9“X¨B? E!²öc™É£ˆ¢å©†•ÂY­Â뺒’Ña"ä1‘ž…-ÎÌu¯¦’]ióœ+u8’;ZŽÄ F1¡0ˆkÅu2ˆÕ¤¨U¸ëÚQ¦¬3壓’)ïôzg"k7Ñd€jèG¯ûý"£õûÈPÇ^æneáÖ‚E)¢ZtK„NÒÜs-9ÔµÁsÙ–BÊsÚ…öLÜr̤� j'hÄ…b65fw Bnæ`ubω$ !ÙÀ§¾Ù/¦Âd6pæ`"Äa 4ž­Ãc£C¡…¸ ‹›Å`D4^µèмlmHü¼ëˆSCrg’EÉnhx—é`·²‘ÁìwGî39ÙÚÍván´~sô«µ]•c‹n÷Gí3¹—Z^ô#ŸŽ³Ï¹äÜK~Êñ‡½áO|øê‰—?ä°/œw>ößg¯.ͲËöRU…ÉÉ}'Žˆe»56ËvNõØøø¦u×ukê÷ú%G)[̛߂³ßKÙÞÆæá/zý3oøÈ>½ cöÊ×¾÷QË…@ÓG<ö‘GÍ}ë'ë6n0¶öÈ“ŸðÔ׿ä!EJkŽ{ìƒ.;÷Ò+Ïÿ‰4}ؽþì/yîa½ÁCpø ÏúË>úwŸÙ†±ƒN{Å«ßsêrÙ`XÜåÙ/:ý¢7½÷Ò훯½vsÜݪeÅgüûßo}öÙï¼pã,úìw=âÚWœýŸ=È�¨¸Ë³_xúÅo*aá°Šû?샟½qÝÉøÁ÷ßÿˆg¬úöGN=¸ìWˆG¿àçwÞõ²w}íÖÏ ³ßýŸüço{í£‰ŽaoI& aÕ#_qÁ¿¬xÑß}éë—_¾ Gžò˜³Þò¬G¬[ˆ^?XÌn¾aË¢çOÞ±ýl_?‡lŒCáÙB d”ˆƒI&ÄÄ‚±Y«ô.˜ F¬½_2©DK¹vÍT´LÀýÚK’‰;5NΪavsÁÖ«sYHreÆìDäKƒÜÅ”UZЍ¸Ç !'+ÂÄLšE!ÓŽ).ªlPn \Ìä²´™Ì(}VA4$áPëL0grA¬¡¬†q¶:pŽ$5*¦:8©WcrcÓÚRÐí¤$^'gAGe³9§¤¹vãsÎîTk&Ñþ•1ÖÀÜ MÆØö¤È3u1,7¤ª.Ä¥Wå â݉ì=± áÌ<. qåœL9SfWG6¸QÈШ+…\Œ“¹ˆf𤠡À0c µºXà R‚P&˜-S h v°ÑÙ™æ Ø`ÃXÃ6Ìdóï›ìó>MHcÄõ˜ºð愦쮦Fö–¿x²Â<™Í×r[šFŒXíwO»×!G­líêÔ \³yæE×Þ ´w£oÛ2wÚIwyì­²ütýæ=ÕrÍÍ[ÛHoüÜE­›]uàá?ÜŠ³Î½ìå9l/Y�бÇ{áù_“ î6,5aÛ†w7;¼Ný™Û½_w¦Æ$ÆVkö8i÷F)zW¼ànù¾8òo>ñ½]¢CÝf$ì[" wå îñÌ÷o‘¯ýï>ÿ€¸ç6 ÆnC—;sãÍyŸ}§�ßú7ÿø/nŠg}õSï¾çâl"2¬Y}agØ.Ò„Nîœå¬Mà YãG­b!Gn&€„›˜ÃìD¦î¤¬®D&¨Z6òäPP‘(—\Â)ˆ©Ç�O‚Ò¬ÊIXÌ4Ã*%˜¸ÎGN5‚1,‘K.û­`ý@±,Äv¯Ÿ„àÎ\’'B()Ds+ЖÈÉrJAÉjÕ P3„6çžqŒ‘%gc˜e°;Œ=({†Ô–ˆ»·¡ÝÊÜýÀ©N}Ø–ªÛ›• Ø9—d[¯g9Ζúj1x­Ûƒ—•Ï™§À5Ôk2çÆO5hHž¨Oîˆ}ï'0EdUé°ªŠXVÎ…›2Bå^8KŒYçȉ˜,“ääðÂcF(1ˆˆb¢E‡å‘‘uºJ涇©›à š=÷g¼ßá«S—6ªVVõ5Ô’¡N @L¦Ìš³˜83¢R&‡e'IuÖ”YJ·˜5–1ö“ ˆØ2ˆ]•…2�2XF ·H’�7ƒhàåan0m»Á¡4"<¢¾pVƒ^Ÿ"3`½EÝDsXKÃY†ywÈáXø·“Å3ivCT¿È•~S8ÿEyü?ºÁ'ËÎÄÖõ×íÖQž9Üý'|þY´öéoÞïÈ{Üž,³[7V½Ù©5v&—7¿|vǶ ×Þ:KSÎú_z§«>;ïâq«ÈÀ þuCĦB¼|z5 ƒho”@{·óýò1±ýW䇦ÐÞÂn5²èÏßÿÜû|4ÜóîûOôÖû;×Ï­ûýÅ‹Žkï&Âââ ó'Œ ¯3CŠcqÁKn ¸Qþ¸‚ºC„È\1ÆÙšU3jxA=7~Žu6#¨+3³°«±$WG” Dì‰)dM™ ‰ªHØ !ÌŒØÍB(Œ‰äìœÝ9³Ps%0yh›ÔF˜Ëš“(!Zì;µÅ•É¥Ý Õ•œÍØÙ;$,ÞwUF46’dý ë…n#´‚ƉM-¸WLÊ¢_õÌ©£¸¹–m"Žß”u\âLò©¨[‹ÊçB.(CÙÀ¤f„LÑÔu'5cr+ˆSȱ…Õ]Ïn-ŸMÈ‹:k,æÔ8²ds¤œ=¯—R›‰„53êš’“#M%!×-¶~r¼U§d+²Ms¡žQtRFqj‚z¦‘%³Ç­9å¾)¤ò,‚ìÆ^0 eC (9™‘¸—(êSi‰‰+†Xê— A]©»5žôðÂ-SH®ÌÊ(’#°ª‰8!À‰Äœ<(åÁ™eä ÏŸd6çjÁ‰‹·‹ iæe¼y_ùÃÜv'paØ­l‰+þžŒ#ãÙoûNOˆíöÚ©£ö4qï3Ùþ±~õ,û»ë;Õ^Ð%î’e¡Ä0äÑwa_˜ǰZmô qÓ°óÒmr6†{÷Ãy(lÁ@>bþuŒy^yü½N8ç¼ï\p£í}ÿ“'=íoÏ<ùÐ¥ša'‡6QO*Ób(¸¡£&[îsk‘r7IàfýÛCÆ"`%eYÊ cÈ!›“z&ç•™ÝMBh¶@&r˜+iVFeàÆ*ÑS !P¦³Òì'«)H‡¡JQsŠÂ‘2Ä9Ǥ–QJîj)¥XmÚAs¢@ ¬Œå~,I­(Ø+€[ÐÉ‘ƒ(q I°v;XeH’¬œH$+¬ðBâj eìs6i«ÕîKÕñv®R—»íâ²~è·«~ˆ- Û§žEÍI™“5 .Ç`ŠPPps•½ÅUOФÖ"cp éŠ:Õ¥º9™f6°8U0Ó­hŠY%C¥îk$ÒÈF`£Ê-¤n&ñsÛ)¡ìZ¨³Nµ¬žcõLQÆ(ö–×ÒnÍh¨WƘ6õrFäʼÍ9f€ ×ÈDLÍY.1H†G£I![†ªË攳0z !u±¤P'I¤ d†¾§L!äd.±Ñú™Cd `jÎŒ�׿Çй¡ s0‘/Á ¢ÅsM‡Ou':ø”ƃx‹Ö±%,åK&€ùcÔh·³;´gÞ³UþÐó÷‹¤ÜÙíÿ&³,Q®5Jů¿íqó[:¼Îÿ¿š_€F÷Üóæ¨ ËÀóZØæ´ ¨*1•à 5Áî˜iá”4H�'”šyÒÚ„L‰Ø‘]I™KÊ5¢Êpee·�J0a¤”É# ž…ä™2k@$Ü3Dæ)T‚3AˆT“›Á½®$tz JIˆÁÈÊ$;'e$­@Z3¼l‘&!n¯LÒî÷¬–V`¶œZ¡_PA\I,û˜HØ«LÌ¢îѬÊÎ%¸¶:D((¨(;åÙÙû5…וĜRRM†YódÖ5ìHÉØ»µRWW½Ù*ÝB9%©I«~RpP‡:ƒÜÌœ‚ºÃÅà‰¤ s®¦ âu"c Á£qÊj•»¶‹¢›xÜ»}k{à–”³V—êDœ½ B žsíRLpžË: JÂkâØt§Xi[Ê5XÂØX^6[bBê¹<SØ-³¶Ãõºœv¦*Tè[35æ…«,°¥”KG©O“¹J°8hŠ=µBQú"™�5)Aܬr/(¦LQ,[�3³3bvb‚Ü\È šÝÍ nNziVV A‰hñÈp ˆ,è}x\]:¯zpâ¥ïdH¿b·ñ Óèüç_}öúõà–k®ºu4Þ=a¿£ïñË`ý•CJÅùãÂý×À¾wÞóÛOe~{4{´;%)íµt¢Á^V‚ c"€˜á€ª§:‰È0]5Gö6¡Ë›Æ/ßpu�¡ÙÇ oüÈ Ð:‹EDd­Y¬N\#™[† ®2K ÆJf &xU;„ìZ€*ä’(y…LÙbišAžAE³öΑ'. 3õÚAÐÔ ®ÕBª\„{ A2LR¿w­"¡®6A¦Ô[Ô­µ7ŸÑŒÔ1™C.+«à³!¤ 6•¾ym$=#ÅÊstðLšaÉ4yP…¨fV/X4R»2×¹TRîu4fAØOì–Lž¹‡ÚIºcÒÏ4S)Eîôcêö‰[‰BˆVg²ØG™# %÷¹–·ºUKI“‡!™ÊRËdU7» Îr,s[«œJgˆSL9–¡ìive‡ôñ„Ú¢£×Ú­w¦ 6Ê6ÍR[ÚTÔÞSwkõ½lµ' e©«ç´ÌP{gìEtó²èVUTd*b±ÝÌ)FÏš{¤2)M ”H²¶2õÇI’<åZÝ­9 ÆÀÙ‰”AHl¯ÔLêu¶È”&€³Ysž äË삳¡52ÕÀôz¬—ÌÊÆÇ¢ÃsÌgÜõ̾áM¥·š3Üá`Æ1úçÅÿ_XqðñÄfyånœi°â _®âEÕ`Ö^}åF œ_zÈÍ{0cÞíË|!bx#±-ªjlñÉ\<&Þ6òŇváì—ÅãæË jþ4EùüŒ`ó±ð|þLÅ¡ZM“|ñ˜ú¡Yh¨–…Ìß—ÓBÎfR.gñMó… y·,LY6dõÅ®Z<iİxÜù‚° €l—/4`¾ŠÒ±£Ñ›a‰�à¾dz¤A¥‹oüÂ"+-t, ªñá6Ï+Š9j±ð¦o̱`¾?gà3N>´LtÃ'‰yÜJ,„°voLRƒ>Yèx,6~¡c}x[âÐíÌÿj‹·�ZÜP3Ä&ÃÌçÇÇ|É»ÞÈ|¥•ŸÍ ‰æ‡âBSòù­}±è3–ŽùÆãd0ʇ†Ê#,Ò˜ûs]i¬EþôÙÿ8ê F£}É#üãçG6ìÌ1OcÌ7]{€ó¿ö¥Q-_½ÿ¨Fa„~7qÜqÇ=êIü©Ë6.¡±†1RbŒ0Â#ÜQF3øîxÌF}0Â#Œp‡¤±ÑŽù—0Â#Ü‘il4hl„FáŽKc>â±0Â#Œ¤±;8lc#Œ0Â#iìŽÌc£>a„F¸cJc#)Ga„îÀ4öËNàzÓÿøä>úËçŸ~H~ÿÛ½­Û×’ð{~Ýo­Q?Œð{Hc{S*úöswÏg}gèÊŠ'{ñK;åÑ8rŒ†Â³ý:µr¾ýœÇpÆÔ/ÿàý&—º=÷>_÷êžóø5¼Çl·§%#ÛØ¿ßxû¿¿ýïÿí­/~Ê‹_ú´3G½1Â’4æ€S8á5Ÿ>ëî��+îÔšî¼äM÷–ž÷úëkàPèÓÝ‘Ôm²Ø¯TçHá÷_ºèKgÿÛ[&N(?ðßïÉS_:êþ¤1¸2uðÑÇ3±pMoüàÃú¡?ùâ7N?$`1¶¸è¯;çì×¾ñc¯ëbÙ?ãûì{MɯÀ)Ãe.^Á^kÊ•®y×)§~æ!/>éÿvî•›æÚwyêß¾ã¬S×ÆÛ¬s„~ïðãë~|Æ[Ÿ7yßÖØ‘ÅÝ~üG£¡>Âï¥4æ·5¹û’4CGç-yo;.xõS_ô£“ßøÑ×ÜgŸúÊÏüÝÿë…«¾ñ/OÜ—[RéÐÝC-«‡[å@úÙ¿ðˆÿìNßøŸ¯=õ¹9}èçÎ<ªIc#ü^â¦[nû¬X³ËõnîYo~É“÷ÛrÎÜSžö”ÑPá÷‘Æn‹Uª¯=ãð}ÉW¾ù¼önÓ馯¿íœÖ_óÊ'Q�8àŒ¿}Þ¹þÈ…›Ÿø¤Õ¿|#—T:Àñ{«åñßµˆ±‡žùܧØï”¾ì®~Ó¿^uæß3lc#Ü!1Ûù«·<çüKÏ?`ͼ÷›­bq­¦¦§ŸýÜëú׬>m¼MZ5»ïîvÿÑPá÷Æ|¯Ò˜ƒÂ ýÉ¿ilcÔÙwñÍ §æùÐ zÕõß»º·î»§ÜåC|ãv÷U¿¬4¶´R�½¾å¯œÜû{¨%ùØp«ÜÃþÇÐnî'ï|̲­?ºÎý¸‘46ÂïÞöñw|{î¢ýžµlçnùüŸÒÉO\ÒgþÙ_»ìk«ÿt†mçw_úÔ×Ñh¨ð(A¦9f‰mlOT`.ǽóþ㉫ùö·ri¥Ý™é€™½Ö¢ëwi&]x^-ÙmSç#ÜñƒŸ|ÿ1ö¨V«ýÕÎ?yÑ<ñ!OhÆóY|ý'¾ñÉ•ËeÛ×»ò„?~4ÎGøC”ÆšK-?Çï‹ýï~¾rη·>îÔ·‹ÇvSé¢Ì·ÇZ–¶ Ðu—\µí9‡¬b ßüÝïoŸ¾ç{¹ÓÑã=­²}ç±£ŽX}ô×ÖéªòGW]wÕÚUûù/ÿÒ%_Zñð±Ö¡ûÓº{y:ûoßCóþ@¥±_T~ZóЗ>îÝO}Ùóßì/{òÝWú–«/þÊÛigþù‹ßD-‡îš2}û­ý¯«_uÊôµŸzÝÛ~rÐ3ßqÔ^¹sd0á‰c½Ë»ÿ{gEóðÙÝKà8º»A _Å|­×îîn1P_»»}m± жˆH£4ˆts±;¿?îîhQd¾Ÿý(·;3ÏÌ3ñì33»{s»’#� d϶f¿X˜ÏÏS÷PT°aSE™÷ çü=«•]KÔÈ®«Üƒe·¾ƒ²ûá¥ÿÆ”;­;Lsý¦åCöåÀÖ¶ï0`¡2^ã ¾2„JíTÄ+•Rš+ºÍä)Æ÷çuXýT³µëÐ[@ÞâãM#[‹ÍÎÆ„Í _ší•˜42J»QБ×qÖà™¨…#þ$0÷Ìï¶=5)&ÌsäÖ{7/þiEÆìîÑïö¨»÷FëWó©5E.jˆFʘ ã‚ ß±ÍË<IæR©óìuì/¬=‡ÞA…hìttïá¹æèå Ô¤ð÷æa>5x‹‡™]Å“‰_Cjve ­™ôš¿ÑÝ«"/3βs(]'8Fd…Ññ´kùz,ý ö3éLÔ¼5x‹GÂ×Y6âçv ™Bk(]bÇ` &4Q?G4Vœ¬zÛöö }@×Á!À<ëzž1ÓäìêÓ:êZ¨m#þ<pøvÐLg>üø`”>Qý(DcfýÄ5&©Vd€y0ãj~Ÿæ}¯x_¬øRâÏôÆÐ(Ž@4vÙJמ¿øðE‘mÖ¶±6²B:A4!3†¾þŒ@ü0iŒQ=G = š¤7†¬@ 7†@ òƨ‘Cv @ ׌¡G#ÑˆÍØ÷”¤¤h¬f¬eû^H)øYV™hR@ ×CîшÍòÆј½1dÅшÍšTD Dã5cÈC DcöÆC ˆç[rBØçÀ¼Ü©&X| Ã9ÊVÍŒLÌ1 «›7†&¢ÁmØÇ÷¯ìì[™ÐéŒ&¨Š"SS’ßú“¤ÈÌÂú—ycù9Âoy‰…ߢbdDSƒÆTSÐÔáà®ÄU—2ìóG;û–&f– ©N‰a®£gèìÚþÓ‡×:z†l6»ÞX4!ŒLI)Hø”CR"ÔŽD“…Àiúª¦-Úçñs¬4›W2ºæåfë¡­ êÚùù¹ÅEÅl«ÞX&SóS âŸEÝÈ›¢Ï1'pjÇ¢ÉB’¢˜Ìð!Ç:ÛzpYªJÊj•ø�4:mÇ RI‰j¤ŠúœTL/H Lxù7o*ϸ•²²rM—éâÃÌÌ\K[óÒ›ê,M3ؼ² h{”ª‘%ªÏÏf HAbVŒÇ Ù0c£ç˜#ñ+]Ñ.ñ2f¨&ʨOo HR"§!†hŒ`††D½C'âY²Ê[j{õç•A’åd¤�¸êÚV¹¢î^F-¯REQäŸ8Nà8ŽÜ±*¼1¿¸° �ÀVâ²ØŠuÍ• |ƒ}‹ËÓ#ÞÍ4A&±r¨Ìg^ƒÿñ~”$b÷{ðí‚é• æžýœ šo‹þ0ÏœþËó'ŠÛçb½oè§ ÅVôŸøŒJ¯Ê½ô<àÑc¿{¥#;tÝ£ûß-Zþ¡Šª™oŠËL�@H§3ØŠ¶"‡Ngü8YÅ!{‹Ùí¤ÞírÚ/p˜ëW´èëN{oûa­sr)üb{œÝ÷AnåCþÙÙޞ׿¤e¦ü×<_1ßGÃ;0%#+`ºiƒÛ�2éd†Y®þÌ/m2Š6ž#úñ”q4,!5žåžò¯>yz¿[ÇvnÚ¶éЦu;W×6Í›Ùß}p%)9¾ºƒ3•qÅ]‘Å.98&®#wdˆª½!Ê%ËÖÈÝp„ª†N¹“µ¿=¾c;ÑM=¹ÁÛÌÑ¿n¥Ž�ƒ—ædO•Q„ß#RiV=ÜÌ4T� ’ãcŠô<:Ùê¨1k$±žî®ï{£bopêÄç%ÛœÅÏ#âîkºÿlÑÄŸgÅ@-ׯ!IŠ¾Æ„ÿ8£¬¬jblväøN‘èÇ㹀Π»wöpkÝY–¯‡ÑÚïôÛÙV‘âg…ßY?uEÿ¹Í#N¸s±ß®‹Uí½1XdŽª/Î…›í¬…�¨œ·;Û)c¦æ<é|Œ@"ûÍ®áŽ8†a fÝ]��€ |ƒ Ó~íúX(`Ó¤÷æ×YÙïwmÎÅ0L»Ã²Gé%ÓÄEÑ—æu5WÂ0 Sã ú÷yYA4™öØËÃŒa˜†Ë¤û{*«|š _O×e¹ßÌ‘ÏóíÏÕ÷¢@,ºùŠÃË<¬T!ÉjîÝ>6sƒùŸç[00 Só¼@ŽhAøf³E;fu4RÄhöÃe•PJÅè0ãR{…ÖûSŠ÷SÅ0 ÃýñoùÑ^ÍYf»1BP-‰ÞïwÕ¥c†ÑÕíìàW¡ç …-±¨_/ ±]zx{·œ G>”Î:²ì6G +Šöº¶Ú†i7ËÔö&&K§íŒK±‚òM¢8dÏȶæ\ Ã0švËQûó`9‘[ÅRíLfé�]õòÏ#?uR±’Á³ïƒ‰ %ð{jÎË€ˆ{wîÝ{ñ%:=.6[|$Äçp8ê†÷}oÉsahÊFV6Ö6vömÌY1P='8ø»BAÄ&u§å{çu·UWTqÙ^”ónï87}%[QËÖsÅÍ>Tæ­þZ– ÞAÈ”s)(êœ „Ùwúi›O{UaAè©iíÍTÙŠ6×ÈqØ¡>„�¢/W–xÚiqØŠ]—‘Ûü«ð«c†ª;©XKg°|jÙ¯þ Òø—> � ÞºòƒÛާ!o¯Œ#OŽŸâ“J2ùâÈ®s^4Ûð4,*ðÜм½ý»¯ûX$¹ Þ¾>¬Û¡—ÁÏv¶|½Ä³Oß©­¶=ùp¢Ç×£¼Þ�¨L߯=¶^y/4æKàÉi<†M$ˈÆÏ÷\ßëÄû¯1ÿ[Ì9±ì~^•v^²ûsñóïüÂðmz—'NñIUò¸¾ƒÇl¾-Z�!Ì8Ùž-_4„î:ÍZI ÞÏ·¢—QÂqWVô$•ÁÏ ^NÑa¹ß̆B(J<Ò’ié‡0l©e~u$¾ð|ÜÔ»ëŸE%&Åúxy31P¹ž+VüfR~ÄÙ£1ŽÓ;w›ÑSàsà•œ¹Ð²…‚°Ýÿ©®—š—uÀæÆÈ^>—wÚðfö?ŽŒ }ìíðz®çâ€| ?'•Tq©ß-§t¤œª'kÑ$ˆ_6©(‘éiùùùù_¾|;{úÜ¥ WÊgOŸ ÉËÏ-**¬Ä@ˆÍbAÌ£ O2µÛ´Ô¡‰¥ ÂöŸc-x˜”›î?]ñÆxÏ…6^Þ”xHŸÍŸ Ǿ‡YæóÉ�óCî„alÁ‡‡_Š!, ÷ ‚ö=¬˜¢˜Sãfûš¯ºpvEO&€€Ì|4ÏcÊ‹%×Þ„¿8Ò/ýßþcÏ'Šª²#5´5</+=N˜ó&G�� �IDATöã)—›&>²3¾ÅEÇEgg|ûq²òÃ÷ý…‘‡ÜbccKfŽï-Ë¥‹!?l½5๟EA!̺íÉQî—'ŒÙë„«x˜->-ˆÚÊÃ4Æ=Ï—„ú@<š-3 ž×Ó)I¨æ »Í(J<ÞVÁbep±Dœ ÜÛ–íz,‰”-ŒÙãHÓ›ùª@¤ðí<C 2âI,x5M‡ÙåF¶$nîƒ~ÊšcKDkM|‘/9ÿpŠúp¿<(üRjÆ |Ñâœ{˜SQ TúÅv«ÏýœJ¢Cyf¬º‹ÞÍ5b»KIß¼T®g……¾›k¬ÜíÂ7Âüç“ôTûßÊ  „P»×i»)B�!,WX~Øzk 4ð^,ÑQ†Î”—ÒQÊ’}·¯Šáì7…P^N*«âªJ'¯êå¯ãl!‘‡Ü|ß_¨dð¼|öPA^¶¼cêôV®ž¹xéÄÅK'2Bèûèn¹B8hÈÀÅK'Nž6TF"¹_O·)3ò3æ?LÌ,ÈË.Èx³Ú(ºþ-/» /;'d‹®:ôf|~^vA^vvÐúf˜ú(ßä‚´gsŒÙNDå§=™ejüÏÒΛC²Ò‚ÖZ3[l ËÊÎx6ÍÝú@x†´Ü܈}­Ì–¼N•œÉ|ëeÍrÙ^Ia/Ÿ=ó5¢r[Ããñ–]}m¹ê¦ÂàÕ<¯¢7&9„~qa~qa¾PÀÿq²Š£Ÿ.¾`uïg%^סµ¶TÏÃ2Ô ”ø?ám,fÝÃ^Y|š®ç榕õ)<›‡wµo‘¤qõ¹ +Vò +H/ AqÌóˆÂèu<&†a³,¬(#.S(%šÿ.·îl¥ ÎÛ¢“-«ÊÅ2†N3=ÉbÁÑdg”ÿtB%¢ ¶4eËVBu¢Ë¦šY¶£'Ù¿ojÚvà4¯££ó!� R=Ë.lÁ‡ÃóÜgþ¥… è<i¨ò£½ÿK“õ‰2…€nìj.ÙØJ¨Ù9ª¥ŒÊ+üþØûom†a¦âq#;#>[$WíÕQ”¼ÒÊ©úZ5 ¢Ö|*<å;¤ˆÌHOÏËÍÏË•Ì\´tlUî¬äæ“"RŽƒÑÚmúæÕû×/ž^Û1¼hïà‰—…b/nàhÄ‚@ÈOø‡Ytk¦„‰÷ú鸶ÑÌþ‘M2M»:3?ß ËýöêY~óýú™%<ÊÊüð N»S+-²¬‡k8µ¹}—áó¼O>þ’O‹c" ¿nrÕVä¨(rTÕ\VGgÆgVå˜ÖÌÖÈÝpO£1Äûìi4FmŸË+ »òˆê|ÒŽ €��€áÄ«‰a¥‹x2F ” a�Ãi¸ÔUIi)H¸žL­[Îÿ- ”yJBJª”Ž•› ¨Ð"刄€t«¨Xè P~¨žD…Ë_¤ô{tíæ½·Vu[³vâƒÝ*Ó³ÌÂæ¾<p993ËS½T±÷nÊÀ1úÒ*,��’BJý]~+íú¸¾ëÒæ\ýô°“¥†Bѳ‘Æžù°µËU”Ì¢Tu ø¥kcµÛ�"‰0@HŸyøFú12�€{§îH%É|!!’µ1+�ÀÖÎfKÀÕÞÛ/ÆöŸg!À:.µç“š¹+™ålÛž6E¾ J0ÐÂÄ©‹úæ{Þ‡²Z.2eÙÍú†õ~zçŽï£{lØ<ê†ÿö6‚„ó¡°Ãuðív©Ÿ ÷8Ž«¨i«¨iã8^˵1~ô{nC”ä‹gµ2¾Áy’=ÉþþßUímTª¹Q†eâf ‚/>«à%H‰f:‘~‘óPôåI˜ø2¸¢º"È/ñ³D™‘ñù•­'p�)ª ÑÕSBu£×. MµY÷qKw^|ññ|çïÖTÏ0óé¾ÛT¯£/ƒJxwc–áÛý7ªüjè«ßÇ,q…I/3Ô,8RbñþAç¹³{Úh*˜(-(8ST×RË+[NÕËmį[«dNR$*µXû\?ãçwëÉ“ÛâÃÏï–Ÿß­«g›¨*«rÔÔTäï‹(ýE�@QfYî ÝÀÉF? É“Ìâ'¿z™¦ÒÌRƒ˜ŠCWÃowNŸÕìâ¤Æ2êè Ÿ<ý¢Ø¦‡-[™àÚtùgþ¦c¾/ŽtH»v*¨aÔÊ„^õO'k´U°†¶¯xGPë£\R¸{×Ó‡¹(W6Þô[à!8=aæQÿȯA7ÖŒZl=e¦suŸ¶&ôzæÞÿ÷² ¯"ãb#ÞÞ=¸töþP¾´hša¿Ù³LXr106.ÈgÕ´c ��L÷Ž*Ÿœ .€° âÜÒMa¥·ï4®‰-þÑ“¤ïé™ùPŽèj*¨^ôZD)ú¸sñæóO?Ç&'G¿º~=D¨×\—QC=SiÿÛë ݧ lm_‚s÷qCu\þZåcs‚g‹gìvã„5Ÿ-'NvTž‚Ô±7Åïù% ,;5]PåN“üRÜàáöÏé8‘ÜV$¯êå6 âçÎ)V:xÊ\ÙŠ,:‹!>ttór³º¹{ôöЫgý<º÷ëÙ­o¿úôèÖ§kçžÅÅ|yBD9ñ‘áááa!Z¾àjŽv禌rLhº=guœ›±øÔ«èØà»Þ“½C,ÇLq`mÛr¢.>µìhÈ€,›n)·ï§º;«`�¢OVî¸ú"4.%åëÛÛwÄ:vÚtB§÷òaʾÓǬ¹ò6:>.êýÃck– çW¹Å£F¶¦>ß©Xî®<ù—›Ïn«Zù(¥7äÌÃïÓ&/ng X&î3|ίtLBVÇ™Të¾?àšÎÌeSÛlÎ@Aß¹û¸µª0ùš”hšáÈs7cGNí´‡¯ê4aÝÚ.!˜4 �E7ï3s‡Œi¥¼Š¥Ãû{Ñ¢¿îl¨T˜Jg¯UíÎt4˜ÔF?‹?)K4Q© †LnÎ �È–(ŠÅH¾¾¼ïÒ˜X†íÆ÷™oË�XMôL¦ÜÝë‡u¸Òš+íòXÿÝ_wóáÿ"¦«TKŒæ‹–›ù µ™™Lj´šzîî I›¥¡G<<Ùœ;‰«nÜyÊÒϼ¨šW1�?7òUÀ·" �†œÒ9U/·I ¿nR±’çÆø‚¡C†ÓitŠ¢ E¦g¦Š„�EQ@<ùNA�¡šºvQa±Œ¤ €�Šüçwr•¬=¹Þ|uE?L„��\{ÀÁ+ióç¯ìF'üwt> !€iѽãäS^K„@¹Å_àù÷6nt!À˜ô”Ûë‡xÅçBÀÒw¾÷äLKÄTÜ·Þ;§µÄk^9�°uÜÿYÁŪTE,ÆãñžùÝV¢§&Å„yŽÜúìñÉ 9Iææd��”¹ê8AT'­·ñÏμ۳®ûÆÆÆ€J>ÕÑnßðO/§ ÜX*-ñjîè3=üýl3ZCçDµÅÑjk[ÿ˜ÃmþÈnú{¿rL^Õÿ8?ÇœŽ^ÏŠøŒ:ÜndË™.Fäøßƒ[Ýzõ—wuÒÔ13fÎ*(ÈÃ�„�ƒÀ !!„EQH’ Ο?øÀÉÆ«+ß;ל\Ú©©©V¦C—îžkŽ^JM oæ#÷-B!Ÿ_”�*(1vó"(õñZßWhx5” sÞž¼’æØÕY$=Ý;eSœóOCZÃæ„ÌŽ|ÿÊwÇŽÅÖ¬Ù¨[7Ôí¯œª—}~Râ'O*Vî¬ÉH„¢ðЪªj’ýº.þWü¾`’$I’¢(I’ß¿ “âªiËK<'3õ÷œ}­~xš<UÒèt¦x§"^›ï¹1L.œýktPA4•td´ )Å�(Yöœçsd²½as3|Ç·òRÛmÖé}êhöªá<s9UÿËš¢IÛ±ZúúCýséÊ…ÂÂÂ*C*(( 4¼Qت*ëã ÷†+«h”;Ù8ÁT»ì|•¼ó—fA}ðsjðßK6ËÃùËAÕÿMÑ­Xe)†Éݠݣ{¯Ý{5)EÕñ{cu3�Fà4)Díñç2Dí’§aUm…ÅpôZíZRŸfŒA0 TMã2#ÍÍ,f�‘òÑ@Õ„A«â#†V~3¦¦¨ålÔîzÈQ mu;='VDÓED ÃR>öo‹žŠÚÈkfL‡cÇÏídÛóÒ›ƒIY1$%BúE M§é«št°è¡«h Íѯ܃¬æ£M0IV²FØf Çp+Íf\–ŠKK â×åc›ÑØÁ�Æ 15µµ9ú•¯±3ÒSµuõ›¸Æ2ÒÒ”8©·ï6¸W›Ç@‡c€Z0@T#cÓ ÷¯[µÕÐÔÆñ¦è“Q™ž–úñýkC#S“Y£¸4Ô€â×¢«g ‘ÁÞæ7ͳ†+)q L¹ªj, ™1h\ƒ8fdl¢©­Ãçó)’jšJÀ œÅdÖÔ†!3†@ ¿ l‹]óA¶x"™1@ C ™1@4Êoñøþ)@ ÕŒ™Û8 ¥ šŸâßÝùx%)3ޤÈß3‡Nè«÷røÛÞ¨%ª/¢ 3†@4)‚ãß_}}z@»†º&5}NƒA‘TBJìÕ§q onè„j ¨ÂŒee|OŠ‹.,ÈýM&Ç0LAQYߨ�ð[e öPõƒ„;ƒÚ620ý³Š¸©Å v£ï¿¹ ÒŠ›r«@DZ ªêZ¨#Ë0cY©±Ñ¡úFæ :Bê÷¨3\ ä �šXþ>C…ýTšf mTå' ôµ 3òÒ´t šr«@ä‡b£C�È’É0cIñ_ô Í ‚ø>³)‚ ”¹*yy¿WÆPa¿ª @ÐŒF‘_:ƒI�¢©· ÔAJ” oh–̘ 3V˜ŸKèúínp8Õ¬Œ´ß0c¨°:NÇÏc'tœŽZê b‚(ÌÏEA†ƒþžûµp BH5yð&UØ_Ü0ÞxÌ £¡V:HÉ`M¢…sÙf �ð;ßã4©û/tßÝPÞÖˆr‹Zê dÆP/EHŒ^‹¦ÿÂÜ¢V:¢¼w^ñ©j¢”sÿtõ<'¨fø:5È[•®ÇÌÿ=Ôµ°Õ<±vp!YØP•XoG=©ŽÓq€—9`îmK=5©Ãjåû"¼|°eÓ44éØcèÚÏÓH™µZwìm&¬˜§ÿVµ Ê Ü3e�¯eÇfnË_4hǬ÷R?eiذj{c0÷Áäþ ƒ$¿˜š¶ãç,êg¡HQ��!ÿñ+î¿ßün9v9 .‡G×®å_³—Œl¥"çæºL†&í»v1gcÉ”³£Æúô:~é½Z= .•”¼ µQ¦°ek*6]/]8È‘+ß“¨ŽPŠ�H5d%ÖÕP{u:�F«0©ˆ€ÑZ¯ºâí¬ þÍT·`bR(¡�Ð5òá0�0šÛºÛ[[±™q!~¯èëópÛ­3cMRW)~Väÿ¶ÌÜ4r‘í»#í¹XùÜþh0ûÑèîÞ²Þ§9òÔ©…6ÌŸ_dò½GÚí¹6º…2K‘UÛqµ¶³’R:La [ÄobÆÊ/œBF8Î>µˆÇd~¾±í¦EÐèÌšJ†ÀŸTã”Pèt\nÞ_Î\u‚î±dûB-zaJÔ›—±éÅå´\(ae—‰ó]��RP¼PZë‚H%%×"ÕFD™ÂJÕ‚æÄÜpx:0»·¶%«ƒP)`õ]Y?™j¨½–“Š�¡jÎs´çH5¶mzøô\ÒþÝÑÿ¾é/yðt6ãîºåëOúÇ[YÛ6Lm£J��ŠcoÈ8a�ÊF–6V�€½£[ï¾îK»÷]¾ænï“ý5Ë^µ³XüøLï7á™dGzùÜ–¶ ¥VkOï/ ��üÏû—lH°wM{u �œ©aLoíÂô¸LÂȹ…®²R]*¢¶S^)3L9)T¯•Ö¢, ßæÕžT”á¼@SÒ2164·lÑwÆìj9~qÅ!ÜÈSÅÑ7ŽÐÇ¡uW‡¶[s#,Ÿ„”0ñ”–}„IÒ¡²_ÎëÚg¢`Q⃠{wîêкk‡¼Nf“qG÷°çÊæ)ÃZ·î>èdœt6ÊåM”ø4^©ç¼É·²²01µoÓm¼IÝ51q"ýw]\?yxÇÎ=ZyÌÚø0E Žõ#Ô #{ö?/¤òŸ/»å‹0zר–­»:tÛü!Gnt*7ì¿U“;¶éêкW¯Y‡§Ê&%ÉÿÀƒ·wÏݾ]W§¿¦¬},¨(¢ 0úÆ–½º;´îêàÖ¿ÿâk1üò:—Q%µ`jbæÐyÐwn~ô—L¡<åWZHQE‰v-îÓ¥«Cë®.½¦¯ô]!„�æ…Ÿ]6έuWI†ËÊ•§Ï •Å—©J–\y €”¥™'«V;)ŠÌüppî×Ö]ºO[{õÆ´.ý—¿/.xÃ}…ClÌÊFôaÍ»ñõÑ4 ÿ…Cg?3_påñ‡Àû{údî4ëJ2Ĩܧ2ÏWLã¶š2ѶøÕåe¯‚¢8ÿ«O³´Z;ëÐËgL¼ÅCr` †6V6VfÆÊÆÖ¶°4å|Ü>ráÝ4 –ïq•t ™QöÑòÉì“{¼šÉ»ª]ë®® ßäKG‘Yeu옅Õí e†© ­TP±¼2ËR½J ?˜ÌY×¾Pa”@È™T,w#)�„B �0›H¡Hr+$9O 1£þ ú­5æ’ßÏlÚ3{Ÿ‰Ï‚f:<›ï?u-r¤Ms�0ëíW¸ëVE@å¼Ü6Mx›%Û¦:k £î\1Ï[íüzOU �Ñ×KÛoÞñd¯*Y ËeFú'¦¨®AÏy™Åã©e3 D1—u޵瑣BÚ³ÝcV-çïb"•áÒ̳Ü6Y0vÒuÃç†êÒ��¢„÷2£›æÝ÷Z´%ºÍò}KZ)$ÜØ²iÞÚù£­iÒÉR�ˆ¾\òíúïÖG[’ïzÜ´ËÅi}÷²"Èä#·¼1]¸uƒ«‘—V@2îžË”½L-À¢”wwß媻X«„²•_¾\0ÛÃÜÅþfSVîéi¥XòY2½.Š:w2lüÔ£ã9‰·w.õÞåâ´¾»Vµ>ËVVaÆÿ¼fÉÐ#×ÿß r©œ7²€‡ðÞŠ š%Ë8 a5Ô®’q{õÊ#éÝןÀâ.lÞPˆy”½¹§a4¼Â¤" ÿÞH3UÉoóe~/f �eÏ ÜõX�ù~[¯²¦=Zý-�`<Óœk=N>Îäþt‹¬óC‡3Ć ¥®CÓÆJQõ5‡Êå$2gúx¹p*l¡¤a4Y~$N &·ÇÁLÙ•hÆ%³'jJÝàR2[þ_ûoèl31qöÿvµVg t†Nf•Õ­cʘ'¢ª1L•k¥¹o·ÍQÞre©æ�%/5U9 R5¯Ž}m°¯ö¤bùµ1ñoŠ¢(J”vëÌõïŒ-uè_rGDQ [öd)¯õלY/myöuº­šË`‡[®‡Ï´³W€™þ>ŸX×óØ”(-ààÿ˜ÃOìeJ�茜9æÑŒË¯2<ºS�¥Žãƹ¨Ñ  1±r™)ó“ã2v»™[v9§bÖÌÎÁ©UOÏNš ñb‰Bû±#[( h¶9Ùzì>ŸèQsÔJ3LQRC KNʉ>|xôé—4mSûñ1 ?iå¨gÃ.´ª™tR@Í}܈\ƒŽ}\wo~Sø—}œoÙ„®‹‹¥¾:ÔUuLdh½ü)HQ� ^,oïV2Ú Ù?Õ–U‰òie„Rß_òtݸh|�ÐÒ±�ˆ �J®“tä`ÀrÔ¨¶7¶=‹)üK…]néB†>g+JW–óêŒ,ý¬Ð‘!—J{(³¸[ÈÐŒ@¦ºÈªÕÞE×ÿÜ¥¿÷ýË‚ €ÖÔy¡'úŠ£”NÓÉxüÇ�Fk½öúÆ– ��€+ê™0@<�4}Gc6À1�qo¢‹bß´5ß*Í,!·@ÎyÐ’ö·Jêƒ��ŒÀÄÝ6ÝßÖJ’IïϬX9bŠå³3õËvP:N—ÑP~,.QÓã(‘ìJ1:AvOì¥þ#Ÿä7Ù-ߣ$bËçIv Õ­c‚*;ˆÌa*Wº•âoÉ.¯’tY¨ôj PrSë.»Aº êÚV}o¬ü=�PðbeÇöâßl›þ —¶Uðû¨¬—7í½ù,:[òrV›\„ e׎"ï»Aù¼Vù¯/Vî6Õ’aQÒç¸âäO£ú•’cø-O hÚÖÚ 9Ïõ•=M7î³ôz×ÔÀ  Ï¡/ìžxúöă›'šh:¶:,qhLÉÔ’“™T@©–fX’ŽÔß?þ‚²£g¥D$ýáflq&uÛªù¡qù¤tR�šº©]g«0IET9tc÷þæ·×{Í­U›Ömz¸;²±* !�á0ýؼf ,L‹¸±ïà¼õçÖwÑ&ä(Ÿ(#´8%4¶V,“®¸°vz’RÑ8Zlai†¥ÃTÔ'i%]YüTÙú)„2äËi�¸» ÍÈV¬Zíüo‘)¸þIkbèóL¥j_ÞÚ� ©ZØ;:H­áÀ: Çp � @H8í½5L»LÜ—²Ï˜�À�Ža¥fL”]À40W£c$�€¦ldecÃ�Ø6³a¾¾î¹çJ\ÿ9´rkc²z†”.0Ù=Ê©ÄÌDy=QíǪœ¼š%yJ�þÊš[ÙUV·ŽYu‘9LåJ·Òb¹#¢tYŠ«7@U¬bƒ”ÙkÔŪ¶+ïA1¢Å”C³íp¦Š¶¶€‚déŒ6•àµôBößKÏmåq™üOÛ=—‰§¬8ö½ÛãÞW>dê»®Ùe©)M2±‹[¯¾¼EêžOܳ89ÛÏ*Nc,Íæmº6oÓuø(}cæž>ùi˜—€Š(I"$)¤$û JóÊþ @én=Š’�0)Ha’�¤@Ù¤@É}±$)�!$Ë‹ Ýsºã‡—Ï^x~lÅá“Ý÷›îZa«FÙXB@(j(�ŒMgÿoî¥ûIíF*½‘£ü2B¡äWIþKnhJ2 d¸lÙú”®,HÉÓ ¹r��²4#K] ÕQûµ^É–�P²#®¬7VqRQ¼¹Pzw"Vr Ã�`µ2·®ùg =û&÷¼Œ4aîÛƒ‡CYn 9È©  (»*—79?C�K+Zf«¤eW„T”_³â9.Y{•e¶p6U§ŽYÅNE9Ô¨\+•W^¾tYª9@ULVƒ¬{_@–¬z[<*>� µMMÌŒµÕX@ú<„‚?5$Jd>t £—€0#:6—, ƶБõöʽK×ãõ=:Ò( RtmCë”E–_J.­ç?)BS5â~^¡€¢ “¿äˆ—ª…iA!¹\ m(Ͱtæ)p @Š”ÊƒŒèÊÚº ñÕ—q0AZHP¶’…!J'U.ÿ?ºy9¢p“–/<|dsÖó‘EU¶$)ÉOB�ø9…"ùÊ/#”®mc€Å? Ï%+Qxi†Ë…‘«ÏqiZ²õÃ%Wn§Y'«T;MÓL‡L|— ÑmQÒ§„åžÃèÏÂ��åOŠ XÉó[º}–S~8cº«_’¾|x|Âk屑¼óâ4E¹IÑÑ!Ÿîž]?²[¯C9îÞÞžZ4é«‘áŸ]µðZŽv—fìòÏarž tì—ÕãäU"WG~ETU³’Ûr­¥’z¬cǬF‘1L•m•5<©²Ts€ªî8VÒ éõÒÐscµÜ©åY7Iß!TŒõ°Ä'Ò…Yûh×éÉEAŠnéÑQ%ðÜ…Ã~µÅ} Sk=±»ÂË7í—ò-.ì­Ïá#Wbø’·¤A¹]Uú'ùíѲù;ŽÜ~õ12ökä§'vî ÇyÍ)Úzýs·ø—ÿí=£×·— S*ÃÒ™‡KG“øö>øë÷¬ìœB‘œè ê­†·ÝÝrøÆ§Ä¤¨WG¼ÿûbØ}–M¶LþaIžËŠ(ˆ¼±÷ÜÓ_¾¥¥%?õU¤j¦ŠW½S²à[lLÜׯ1¡oîïÞý,OÍ¡­.M®òË ¥Ô\ǹÓyo;ñ":ñ[rÄ›G×^¥ åe¸lEËÓ§t\\Ž~0YrI9  X–fŠe««jµã­;\Ýrêaä·”¨€Ã;¦ ”»ùÁiv$brv*JÄÕºn»w~*÷N<gç^óOGqMThrÏ Pä¿ ³k;W·n½'íx(ì²ùæËKã,X‰’«­Zwì4`Õ#õÑ®¯sS*¿S‘†ÓdÛš÷þrzœ¼JdËí‰Rc©Ü–/öËdäG^•Õ­cVÝAdS__Ð�� �IDATÒm«¤¼Re©æ�UÝq¬¤AÖ½/ Šµ_+®.?Ù(™LÆÔÛ-ýyÅŽ)]·+pµyý‡µþxþˆ@7îäièsX©G'm\r Sl5kã&Õ£w.>“�SÍÆÅ}¢ÔÌx•³áJ¦®&¯nü·ëÄ·B �–¦U‡Ikf÷Ö"`�4³!õžo²'“âZX¶bŒ9]ò"MøƒÓî N£µð:2jÈ~Àé|àô�ÙѪû’Õ™»î›==Ðu=6.dÁ€e’-—ÿÒÿʈصÙ2ýŋަæCÀдíµpñPC¢b‰aùÇb tpü8Éô•®}÷å+FÙ³!Æ–§ü²å:?³õì ^J®Ÿ˜èj–½gÚ¹†eæ¬d*DT6.&G?@I†\9 �˧UÔ – ã¤dS[åjÇÕ{,[š²iÿÚÉw„³>c†9Ç^¡ãeK`†•¨ÁÔ>HX®2˜V‹Þ¥,’>Ã2ö\uÞsU…6*û¼úÀåõB¬Ò«R!sm ”]D’ÑãäU" Ëî‰ÒRäÕlÉÚU…!`tYUFÂ:uÌó3[°*ï ²†©rmCÞÈS®,Õ ªìÇX]ûz°ìÄãñžùÝV¢§&Å„yŽÜºyÕLUzR¶iÔÚ¤IûwwU­ËÌnvVzµò&J:5qîã¾{÷Ó"j!¦ŽÑë‰ê¶ø=R刽8|Ê«'¶Ö--Ç·”„n}F4–"øÞ<«£kX›÷;Tb½æá7ê ¿t”píг ¼SWÏ5G/¥&…¿7ó¡ý\i,ÌÍŠyøßC“W+´:‰hX`A„ßãlS+5re§Ï7ËÑí4‰?ºÄ¨Ç!ФbýR¼öŸµÏHÝnógµVF} ÑÐP…±7·Ú˜)€eØªÏÆyÝõhtQC 3VÏ(8lºãÓàeÒ}âÒè_ýl#W!ÇqÜ‘KãšPeÉëq¿C%¢ž…ø9 ÷Z"™1@ C ¢F”_c+*KIøm³û;ç ZREóÔ×)¡¼ËÊHmDÑ M Ô7ß›g«0cb•Õ²ñ[Q›Yµ7&½ò@ ´Å@ ÈŒ!Ì@ ÈŒ!™1@ C ™1@ d@C*@ ˆß‡”ĸOïrs²!¤šH‘1 WRæZÙÚ›ZbX¿“'ÏŒ¡ÇŸ¢¡INŒ |ëoËs602¡ÓM¤ÔE¦¦$¾õ‰DV¶ÈCÔŒ¬´d¤¢áQÕÔ«x2ôÓ{[ž³‰™%hJoSÂ0\GÏÐÙµ}pà[=v}˜1äŒ5)0,/';:<(7+¢(¤âg€ã¸²ª†…M W@(s˜ÍÍÉÖ70Mòu€êÚùyÙüâbv½˜1DS"/'ësà+3[góf*Žvý ?Š$s²Ó>¾}îàÒž£Ì•íA@ŠF§Ã&éIàNQI’5ˆÌD‡2³m©ghª¬¬\‹õUQmÌt´µC[u½™™1DMÉÍJ7oÆE6 h�4u r³Ò+ €>0R?f i±IAQ†ãȆ! �AÐÄ+аf,¿XtÞ/ñCTNxR>�ÀF_ÉÉ’;¬³«Ñ{&°æycñ»ä•ñ6"sű fZš.†ZÛ›++ÓŠE‚È”ì^/Öá¹X7¹7æõ|A¸·Ûio¬è÷«ÅísdÙmŽVîÀe>[ÝÕ€Ža˜Bß\~Ôñ‘<.†aoû!…ˆº1XÙñ:,}Ñþ7]ØE9‡î7el¿AÏ[¼’%H;8½­÷Ù¯ÃÒ+O¡á~äF{U—}qÂjGù]Ì?îæò><M:ASòÍß^~é¿n·èë.…;~æØÚ�"ôÆFÑÆsD?ž2^¹­;;Û;Âóú—´Ì”ÿº€ç+æûhx¦ddL7¥£qø9v,¿P¸ø€{=ƒ—onܼܢ™úÒùýÿÝ0±¥“ÁªµÛ7n9?ßÓiéAÿüBa%‰ðãn­ଧ¨Èb+*é6o?tÓtòg™2±s ®«ï·xZ×£ÿVƄݷµ5`æÅ}ð»ò½ .ë.”@� \N&+ŸJ­$Œ¼dkšTu²Ñ�Ô´8ò̘†ûÚ£îU~H¥Yõp3ÓP€JŽ)Òóèd«£ÆlЬ"Ü^ɱbrG’Ó÷>kÌôïßc¿DÍžììÐÂÖÂÂBUMóWnÇ»›wú5·µic¦{ú~ÈÔ~ör†èà žC·ÓÇl÷9ØÆ€‘ôÄ7ô{ Õ~Â-~6X³]+5Këy(%=¾©:t÷ÖÉÝ]xÍìÛzŒY¾gË#��E_žßÍR™F4C¶<Ï � 8dïèv–jA#z­F̃%3x ¼Å;gw6åL‡Máü¢èË {ڨЂÆ6h3õj’xrÊy·kO… .“/ÄÊd'÷^ßfó‚ùŸX³¡9îyV¹d?Ê”�”#N™öp~ %½A'¢¾—1êôÆ–,“…ï‹J*$óÎ@5µ·3¡ ÜÛN¡ù‚­Ó:škqôÚͼ+É­lÍ”m&Ùowp֢тcÑ}ÉxL-¥ù­íe©HÐ-×Éx¨hzš_§IÅ¢èKóºš+a†©ñýû<ƒ„—Ú+´ÞŸRü¸Ÿ*†aFèËöjÎÂ0ÛQ��‚ð 6Ìf‹vÌêh¤ˆÑì½ßïªKÇ0 £«Û ØÁóÍ®áŽ8†a fÝ]/)æfó‡—yX©20BÍyÒùr@üIÆM®·òús¼ƒѶ­~³f–ÆFFl6@ŠÅb6·³èÐÁÚçî3C•×ÁqòR&?½¥2xûÆ 95³mîÚcøâíþ6$ €°èË•%žvZ¶"G×eä6ÿ €…˜Ð©¹[‘ÃV6k;áðÇ| ›Ô–ï×ÝV]QÅekxqÑ—+Ëúò´9lE×¼ÓŒkIB�!�dî»=#[j)rØúí¦]ŽåWêŽý“Š×P‡™õÞ70½Ü •ùp¦ûx?ëw‚¿D½?1 Í»÷ðÿI�(n7~ßÿ¿~ùü¿õ-ÞÌï»äeɸ+Ý}†µôyº°èíµÇÓ:= †Ÿzñ5<àøTG%±yo[ýÁm›_ðëËcÉS¦]K•žÀTîy#d;Ù|kD1)"ÓŽ·W,›ì<s(S:•ñ@¶8ñ@ÿíÎìNý¯ðùÿ7ÖR«¬ˆÓÃGNk•váøÇq±ÓïÿÑkZ{ñ­Ž lÏ9Õµ¯Sr²#öÛÜÕÇûS±|ÍH[ÍäK£ºÍõo¶ÞïsÄû³Cò÷ è¹ácQ-Íf_ÑwC‚Çñ·Q_|qN®x ±ÊÂ/;ZÜ¡ójz•é;£Ó¸ÇÖ+ï…Æ| <90mƒÇ°³I*ƒŸ¼œ¢Ãr¿™ !„P”x¤%ÓÒ+„aØRË|Q$Å„î:ÍZI ^x>nê]‹õÏ¢“b}¼<™�dòÅ‘]ç¼h¶áiXT๡y{ûw_÷£˜!»O1?ÿÎ/ ߦwyâŸTô¶D“›T ‰LdatQ±ÈÂ¥¥¡ÎUV¦„HX EBeŽ¢• § ‡ÏÀ˜!‘IòR ”õu™Ùþ˜QnÁŠÌ|4ÏcÊ‹%×Þ„¿8Ò/ýßþcÏ'Š�¤¸í˜·?…~þpwU‹·K.•/™�„í?ÇZð0)7݆ê“ÙÝFžC<  |zp‚ƒ¢Ø„ì\ÿ±õFßwOÎ"ÏN}#•¬ÿÅ1—•'ÌyûñÇó9³+?'ƒ$Eµ=òB 4�еí:ô›¸êˆ_\¾ˆ â¶U°XT V²Á–íz4^X6zæ>*†³^å‹È¢Ïë¬wèƒ,RD’"AìAW÷ï[ßEÒáÅaß͉HRDfÜìÍQûçqv™üð#Km Y>YRŽtùâ-¶>9?ÖŒm2êBl‘l¤ó)jŽ~”MŠHa©NlíñOrJD+ ¸“!&ˆ;Ö†¡3Ù?»šáÙí„« ÷Íç§8â_¦1öiN¹âð¿ìr¤éÍÈÇÊ=ר œM’üøó#Úv]ñ:_F©3R®œÜ Åc÷:0m7E %o«`±2¸XrIîmËv=–DByfL~~ØzkÀö0BaÑ»¹Fl·c "(…0f¯®6âa6%޵•‡iŒ{žùaë­ÖÄùâp¹©¨÷˃DãäÊÉ© 2‡ÐËgäeË;l=×M˜~§M—ÛwŠÍËÉÈÏÍÊÏÍÊËɈŠݾ㰳ÛÚÍÛÞÛöY/?‘o»ú�èZ6n½Ç-Ýû <5?/;7b_k³%¯S%Á2ßzY³\ö‡ç•žrÕƒk0õÙ÷삌7«-ò ëßò² ò²sÃv¹Ð”\‰É—/3ðjrnvA^vAâE%Õ!w“*)à峇RS¿Ubbòs2|ÎìâñxË®¾¶\uSaðjWïël›I£²£^\^?¦Ê׳S:›wXû¾ (æEDaôúŠA#Áj¶<¬(#.KÈï~9é±AÐÔzÝÌΈϑxrtÖ&âWkǾŒ†¶}œU+LßÒZ[(‰Ï2Ô ”øUÞ¤—& äH—/NðiCa7Ž?=<ÈPÎV\«ëÌ¿„·½Ìdâí/Õ‡LtV*mìj¦(ñ[ÕlÔÒƒ¢Ò¾ÈÓL)ü„w±˜Už²8?t=·¶ZYÁÙdÙâðãßÇáV­$5aÑц%ŽAè>ùüÁš–5{Q(ŽyQ½ŽÇÂÄ0l–…eÄe k…nØÒTœ–íèIöïÆ›š¶8ÍëèÃè|�à'¼Å¬{Ø—ÓM+ëS¸¸˜ fz’•7‚£É.®FE#š7fk¬’‘›Á`³£ãø"‘’âe$I( #c ¹Ü¸äT[#®üD˜VcO~NþøøÌÊQ®Ü˜ó³»7ïîXPYøu“«¶"GE‘£¢¨æ²:¢83>SEiO¶ ok©ÂQQä¨è¼›“™#ÏÿÑ X‹ã^Ö½¸Xù9Bº¡‹™¢x¢”®¦¯ÄÏ,¨o ¯l­¶¡dÚ¦÷ØùŽú~|¹ØðÖuÏr!‰V'¤HôãˆXÝŒþýÆø~{û˜’+ŠrW# ”¬ðaÀ¤Wû*ÊŽã%?1L¼”Xyö¤’¥äI—+ŽÐïÐÃ2÷Ñé;_‹åŠÀÔÚMïM<8ð45æÚÁú#ÇòØ%Ñ!) á†'$@Žf˜eä�0Pî X•ZªNmVÖ(H¸žL&¥o$£¼š3k#è„äÎ@¡Åò)Ÿo¯ñ4Ìx°ª›¥ÝdßLJRÌ ˆOa8Vaíhä;<dõÇJ–Ž\š|ÏOUå*}£Åħåæ“$E’T~a~Lü÷ O”±¾adÒ—æú•ïÄ•ŒZy ŸµfÏ­×çëܱéE.¤ á|(2=?7óǴ̆–~gÊÐ{î}ý5)''3õî`UR’t0‚ŽKwFY²0œÀ¤l„€ªbm¬æãÕOÞ-ÆÒµÖ�EYy„Q[Kðùâó´r·Ð‚„€O§93{Øh*˜(-(8SÖcY,ã6XØÍ÷Y5ºpPÎ[ÛåI—/ŽPï¼éá¥a³ºŒ9''BÙuêßJ~»Žì?f>v¸Mé¨/úú$(KP˜ôòe†ºƒ…¦©lÍHÃ4t1‘¾Ÿ%K[Âdÿ€ïª<•r•Ç4p2"#ý¢ %›3¾> /®ÓXÏ2q³ÁŸ¥Q?# MµY÷qKw^|ññ|çï2Z™ÀßàÒbúWµ¯PLâOwÆä2¦¯kž(›$,æ¿{öžxýò]äËw‘{¿òÞÍUãRŠL ×adUw~“¡c©вó0ÃVæ ôª:Yö:?áU°ÐaúwKu„iÁ¡Y%!¤óÊ0r1Ã"î|È¢ÊF/Wž*Š-d™ÁÝÇx»õüchÈÇ§ç½Æ-xK´ÔRÍ`ÀšQÜû/¿ø:2.6âݽCËçãÓµy¦xĵ'IB� ÂN/ØðIæÎ|B¿ÿÊaÌ+cFxß üÿ%ðáéÃ÷«õœkb@‹ü4$é{zf~9)Oz¥âhºž{ýNv|1Î}úÍ‘l †k<Y³+Âvâ` é/ß ž/yàEt|؃M“¼B,'LràèËÖ �Ž{·q&Nh}ç÷œ™4ûX@ä×O7½Æ¬¶ž<ÃI±|Y ûÎê”}pâ²Kcã>][=ýxÀ�À� “.ißcÍ»¢šÕ&¡?Ðk4÷Þø¿—]xñöîÁ¥³÷‡òë¥èãÎÅ›Ï?ý›œýêúõ¡^s]Í ßÁé 3úG~ º±fÔÊ`ë)3Ѹ†@“ŠâC‰Íغ°_dV ))Ñ^¿ãÿ»+æß__½/ÖÐPQ`3_żલm³÷‹çÏe¦@&^Ùwª÷©{AaaA/.yO_úžhÕÏQU·÷òaʾÓǬ¹ò6:>.êýÃck– çÓµìŒñ¨[Ï’…* ?¿ôßÏ¥9”Ê*¡Óké ÆµÉ“¶Ü ŠIˆ ztþ¸o’°lPñçÏT¬-¸ªcf¹÷7ŽéÒÒÞ¾¥û¤Ó9Ý7ùúL6£ãjÝö>÷™¥rkº›­¹…]—)Ç"¸&*¡?äð¾^‘S­T5ôì†?t^Ü_]æ“l¸zýOþ!8þ‹•™µÛ¸ «ù@•NkV¸…Ïv6ÖÓ¶™õ² Ü˜+GzâèFCùím~ch·EÒ)Y"X¶#ÇYÌuê�éò0š/\jví;3žÇ¾â‘go-oÁr4�™õ: 0¡ˆ€Ð|êÁŽÖAK:ØY:ýs^aÚÕ;Ë*.tÑ Gœ½¾Lÿö˜–fîÞÙ#×tV¤3i�TqR`À«ðÜš¾€Wë¾?àÚl•›SÛX›˜Útšt4‚k¢JÔ= Îb$__Þ×ÞT_ßÒ}}Ò€ã>óm€ÐræáÎ6A‹ÛY›; =§0ÝçþJ6ÕÈ+¥5Ïd÷ò ü¯i… ž¯¬Hr9€N$fǼ PÇ0AÖ?CÌ›7ÿÓ§O£c\^W›<ß­ÓzvhתCß™çr»z]=?Öˆ†©¸o½wnŠòÝy=yNN½æžŒâq1\§ÿÞmÝ¢æ´Ô7¶qïç0··­$‹Ò¹ÅT»n¿}|ˆàÔØ.öÍ[ºO=þ©°ô ¸Rg Jž"«_o ãñxÏün+ÑS“bÂ<GnõZ4¡[ŸlEeÔ˜êDÿdkèÍá‡ëJîÞŽNW¦†¾™aÜ0/²„®³w¾6-äÍ,³Êfg|ó»w¥e§þÆÆÆ�� ú²Ã©Ù‰q¡昡n"?ƒ«§vvîù·ŠºNÅK>ŽwëÕ¿Êò ù§n¼~› �°5ÑvmaÌ…)ûvïÒÐÑwhnŤawïû¼òo\šñ½s­C×>òäúÞ<»úߣžkŽ^JM oæƒÞp_ï·R¼ŒoagVž/îñ_¬Ò½õ.;çÝé«iîNº ùÙþ©ÿÆ9mîeHƒ5È{NRàÝÛ1lk; dÈŸ;TT2©XJlÆô¡í§m_î¼±î¢EK>!É̬̊IqÕ´e&˜“™úû¨½áþW“ÿdŒ©Ç ‘ù°#'º«7ô§O¨¼ £“fLJ)@ɲǜ+‡&šÕ䇅¯ç:µ?¯2x×ÈG íÛ·?qüØä©ÓR¿}ÓÓÓûÍU=‚ÌX}Ãùëjž¬Ý' ëe!Ë~®lLµóö€„íµŽ¯ØîøwxÕ!ñ Á°:mY°µ³{öôI“Ò2c€ã8I’HD@’"¯ÌPa8zÆ™1D QVÕÈËNÀ ©øÙ¤§&)«jTê¡ï°#3†¨!6->¾}®­­¥¥cˆRñ3 H2-5ñCÀÿìZ#oìç›1´U±)Ááª8¸´ x™•NQè]…ÄOÇqeU ;‡Ö®Š¼÷©a)Ø4ï&)’Äq¿xycˆš!G™ëتÒÑ0=NÞ%ŽrFzª¶®~ÔJFZš2W¯¹3Zß_F46ä=G‚@ ~¶5«xʺù§À·¡¡©ãMÅ'£(2=-5èÃ+Û,³¦ycñ»`ljA’dȧÀ‚¼œ¦3Ãã¸2WÕʶ…º¦›]ãÐ!3†@ ¿ †™[ÚèSa)5ÀqœÅbÕ†!3†@ ¿l6»vzÓíìD 2c@ 3†@ D@jA òÆ@f @ ˆÞâ@ ˆ?ÏŒÕÖŠ4:Ò)@ Ä"Ég„o\>«÷8w¿ÁcêÅ«%¢÷£#¢¢u€ý‡Žƒ)Š‚$¤(Jêo Ç ‚F´[>çêÉ«CFQm!¢Á¨o3†¾V…@ ˆFlÆ7†@ ˆ0 “wI(BŠ"huÝ0ÖÆñó̘쯦Qµzõ� —×j ychDPµf—@ ��®_ï½|Ù¯½O†¼1âwE°Ó¡A¯ÞÌ·  "7·jã39Ъ­á¥WÿQ og£÷Ƭ¬¬ÿÝ )jÑâÅ[¶n_¼xa½›1Xëü¡JB j™|¶—õä�“¥¯Þ­°c–é…°„’¿~–ÝŠÝÛÖåäˆ7/g™Ò�˜‚•ÇÏfJ„°Ü%錡ªCTeÊÙˆmÛ¶ÆÇÇïܹƒÁ`@ŠÚ¸Ñ{þü»ví™7oní P}ߨ¡V@ÔÆ„$Þ:ôžÛ\/ñ¿³¡ó68²¥z„’Cܽ^+'Së¼bOç¾$1¢&‹D¢mÛ·±X,Š¢��,só&Žðù|Z­^ Ë³žµ<( è@GMÁ׫G¬îÞàžsåx`~é%� ÿ �dšß:O;®WÉ´ëÜ+±|Š‚oæ˜kõ¼- Ÿû¿!ºæ“ýóaqÄfGMï‹›9¨+qUlm{“™ýáÀ(%®q·5~i²yȹ?¨å¢~èR®WÁpʋ츃mµ·E *^Ê—Î £¯,îÓL‹« ÄÕk5jû‹tªStH·a)÷ŠÍf/Y²TIIIÚâ(**.X0ÅbUi€ÂCs DÍáG^8g?«‹Îv Ç}³Þµ#GâîHÍ*AèÎ-Öë½Û£þõü‚c©Y=]n ôô”š†‚½[š¯ÜþxãõÆQs»o¤Û{íŜÏ;FϘ°Ñ#h‹³Bi”º]x½¹C›SÿøÏ0¥�D Ÿ%Ò+¹!•õh~ï©Û®nn¯Çÿ|~Ù„ã5ß]®G zE4 õüNE´Å¨ù<Kèéóß[{uÓ%”T'ô¢=ú"³]U @  !%îYÌvk¶o­‰³¹»VÞpÝq4hî �€$€8 ,ù©ü—÷ö‰í•°\<j§ÛAåݧ§wQÀõâiû®œ}‘$p,³CCb !»~e¤Ë½$úvÇû kÆãuÃm��£ùÛæ_ëtäQê?#tPÅ"jiMjycÄ/¦ðã©«ùvuRÇ d·5Óÿ _ú_ý5pqw*ÝáA3igÇÅ „�Z-]Ô2>}É%Í\oŒnèlÊçèpzNæJ�BŽ.+È( !¤•é½RqK:3”ÚV"ëRqì˨¢˜×mô6K¥dŸ¡6ªY„LÒÓ¾…}ÌÎʯá8®ÌUµ²m¦¡YË[´áøµä½>v3%+{°™ÖSÄßožCu%7…H¼ø,ñ‡�%±$’9ÅoŒ")I0 Àp €NÃÄÁ¤’’¾í,M™‚?¬šDºüK §Ÿïü££¡�Q¥|ëŸÿUQmh ¯  €ãD1ŸŸ‘‘ñî•¿ž‘ƒ“ëo`Æ(ä!5é2Y‡PÝwÞY%Ùž„ çF?q;aà½Ò™<!¢Ø¡Y3Ì5q�D©ïÞeªµ4QÂÙj   £€¤88�¢Œ/ ”ª´ÛDA�¤Jþo΀’ÞZÆÖPŽŠ$%Ö’’.ÿÃÀÅÜôñOÒO}„Q9Aï_}KN06Ò§4—¬ž²Ùl###Š‚QQQÁAï‘7†@42Òž{ ÛêíhÇ-9e1t€öÉc7bGMa�ÉÔÄàð_x-:¡¹¢›jÌ¥¥ë?›LÝÓŒEuhËÝuâJHß©ÍÀ×ËëvC̾Ô@ý0\””á’Zè’¾í$”Œti‰OýÃú+鱨\U*]þ%\ÇcÉ-Ï¿–Z5¼¥&L|qç 5håxkª\D9’bõuµh„ »C£Ñ,--###3†¼1¢øõÇÚqæHuºYŸ^Z»N_;Tz£"tÛ3 oMnµ8•Tswðìüf ­–ïž:qŽ»é¿L-Û¾3¦uz¸»Ì"–Ød ý«ÌµR8íÍm=vyû…@uз J¥Wr ãvùeÙ,‡�� �IDAT÷Æ­ëöÞ™�[Ç¡óÐ¥’<¢ jjj4š\£Ã`044µ’“jš,ÆãñžùÝV¢§&Å„yŽÜêµhB·>#,…Úå2/;U@ $7G*â?n\>mjbB+yŸ=Ž8Žã8ábÇùaÈçO}’—š ¸Ð÷æÙÕÿõ\sôrPjRø{ó0Ÿz=†ª @ å áVÕ7YXL&ýÿìwXTG×Àg¶S—^©R—ˆ "Ø Ø°bMì&1~ÆÄDó¦ø&š×TM,‰±7, b‰¥‹ ô&½×…vÙ~çûc‘º»ì&`æ÷ø<²»wfΜ93gÎÌÜ{ÕoË�»1 ïòb0 FŽë= ‚FQ;`7±Ã`0Ìßé ±Ã`0ÌkçÆúzȈ±Ã`0L?¼É?û0*a0 fDcØa0 f躱>߸˜ù,ëƒÁ`02Þ;]Ý$j; ‹ÕX_"nzZœr–Åb…œ?Ämb ü¾ýCý‡¨¿2¾‹„tï=ÑR„Iwù_®¨ÛßÂì¯€ÉÆ®,‡æð¥z†+µˆ‹"›lˆl–}ÍÙbôV=néQdÌ»×Ôé;Iù)_M‡ÏÒmŸE9û]4Æž¬ ³¿vÌ ûÙ³½S÷ØÍÀÐz!„Dyß»Ó\䊸èð(’ÁªpŽìIx¢¼ïYÐh]4W‘œŠäQ(âÅo1cL»Éi“öwoºãÞLaï’¿.«&?i‡µ†ßÉ2Iç’û%6B¨)l¹‰ãîBõŠê“Žê9ÔŠ”ÊÙ³,…õüÄ¢»ÿ/R¡áäT¡kò.FÕÎùzVÛŸ¶¶[»&‘´ú²¿–ñ[šBÒÊs“5L7DµôͤyOÞ1£O½ÁiKÕ|®ñÛÑ\E•âÉkD f°Ñîn]>–ò$¼ý_ÚÓˆŒ¤ÇYÏ£³SbsÓâó2žd%å$ßùã„Ãmb‡œ?Äb±öü™àøùMÍe_°X,’bwØ·³6I™ôkBfffFj½ßÖò˜¿æb™Dyš™›]ö'YÇXCÀæ²Ä’K€»Žìk-×�7ºJw$Š¢s[ó¿b1  šóžl>»¤A ��Të±Z²H–iɤ =B¾üyõ<)–%C§™º²Â¨~~&i9©9û$F_$·ò¶•=}–á²v“GÒz[[ßÅïì=žÏE�ôWl^Ú•FÀ‚ôž¶$¸9“ !¤y¿ûÈîÝ ¿Î3)“SNY*ªB f¶J­@Z±ÉHS„B½Ù78ìRN›vhLflóßü5® HËo7 Úä­=0&ÝK¥Èòƒ|ôÁ;¨çbéV…iãìêêêæ1&`Ó¿,!n}s©PÜ‹ë#uvQÉÞFA¢ÐÚ«H¢RU¬."yì™Jiç9EÞ^wº¬òË\ Ô~Ë9í/°�rŸfÉÙ1ú"9™Jn+[óOcª2nhžÿ¹¿£ëæ°¢bó³ÿxHLYâª!oŸx$6555#¯²…óìð¢aÔ^ª&¯)US…ºÙ*†¨ ]7ÿ«²ÀÓiµ< Z¯2 ··n'Mh0ñ½@ò½c‘5E×=·\³ÎC£& ì*`Ûë"UJa#b0ÿ.†À‰ ��­ <©º éÖÞÖ¨(¡T(û(,OÌç«4#`Øø9‚ô+Qu}èÖclPnXz‹ì£¸26¶VßÃYO]]÷A 5’PôÝÖí>x%&%xJí•“É­ý[˜ã.Ï/h¤¶Ü¢ôìÝ=<<Ü̵É}«šâëId@ÑWuIÞQilªÈkÇöYÎÆšd(©KMoP<éú¼³T;âàñ#Dzìׯv¦÷Õ¤IZ†Z€û2H”4¼(å½TªG#â ƒÝØ`AÒTœ“•••™žvü£mÁ³€9 µC:«…;¦ÔýäLv+BüÜ {~ÎWT\Ë”gí¤i-Ø»–ywý’=—Ÿ¼()ÎM¼óëîíG³„ª–;lÁ‡³Eç6l;û¢0õÆ—k>KwÚ²ÍKK]ùÉ–‹ÕCÅ$ü”ƒŽÌ(®¬Ìš)¶p7§õGlqÉÝÐz¯7Gë¾¢ª)¼žÂ´F)}ø8³¢¶¾‹ÔÕX×äýÕÌÖ”sýQ… ^öÙ_¥*~\¨æÈ«Œ}~0×uÓrZŸMšn3m’^Ú± é<„x¹—vÿ/A%u—ÛˆxDÃ`76X0Iä–±nnnîc>¸o´ùTøtÔφl¹âÂàÀC¦±ãÒ{£vNÑ"É/.æýIÞíx¾ýÆ]ß®wsë8'[çÉ›Nä2môÉ*—k±ü|øÁq©w²tIóÝ{ŸÔPµî� ¨+†jIH Zeè§ó=l--§}]±èTÈNZ?Ä–T>¸Vî¾ÒW_凡©[5…×ëMÙûùøìmžÃLߋ竫±®Éym'èı¹¹›í™ú¦Îo†yí^d¨øæ†ëÚõN�ú¼³Ø†Ò“ÖöÛ~‡Ö¡1ºz#VEúìš!ÛuUPwùˆÁüûÿ¢*]£oÙÑúšó2®ÉûÎsÄ÷¾±EÇ}5‡ŠÌDåÙI®GV¦Åo±&ÿ;[³É! ÿ»ü«Ìñ“LgDB¾ì°Ð³V6SSy/j!‘ÈÙϦÍ]¡p€òÿ†µ`úŒ”óâÙ“°Ÿ~ÊÔòÙç4”¦‘ö¼½_Ï·ø7ú0$naWgûô’`Vð,3ìÃ0˜¿ìÆÏ€È [ï³<ÞÔïýsGf¥÷¶Ñl´ý_ÚjÜGk¬B%+Nžiˆ_¶‡ÁôŸ/hjjâ „‰@¦PµµµŒŒŒuuuû–á�?Ów á²hbÖÃÐBÇÿz+î-Œ’ z—µuìÖÖVËaí†Ûii3A´´pª*KKKKtu™Ã‡ÛôÁQT)ƒÁ`0˜~ú±Ú:¶TJLš:GC[AB¦ž¶Žîp‡ä¤øÒÒ’>8 ¼˜Á`0˜W`k+ßg -fÏ_éš^cÇ755I µƒ(ìÆ0 óÊ‘`˜µ¶<&ƒ¡¡5ÜÖN" 7öÏ>QƒÁ`0¯íÞ@p¸­£ò‹--‡K ¤®‹ÁуÁ`þ¦«o¤ü-&R?Ân ƒÁ`0dr/·x‘È}¹û»1 ƒÁ a°Ã`0 vc ƒÁüàÛŸ1 óê@¯:ÉPƈ†¨/¦£B5†5 óN­f1!„õcx0Ë-)9âÉp=ðBÜíoi [¨k¸:’‹{†z<͇Á`^$…¾ðŸºq ±¯N i̿߬|8¹°}n`hA]CÕÅ© ú?;CŒö'W±ãÞµ¥þó“öÕ °ª©gÐw1ìo¯&i9®ZÀÒ%ýûûIÑÏ£ ý¯Õ¡jqÿ¶cèGœ»Ë˜B‹mOùj×*è–¨:=V{Ì©J¯Š–Vœ™HÐñ‹ ¡úMÂÍ ÞèaBƒB» oÿø¸F‚GÌ¿5S×;¨éb†h4&®Í­¡Œ˜égg¤ÏÔ$qK‹ø“&»˜èéÐU©!¯XBH™ôkBfffúóèK[ ïìšûÞCN·6 Mûï‰ý³Í^Ë÷›H«#.¹¼é×í©ï$ «“wêR®ð¥g{t4Ll2ðo{ì¿n%e¡Gžêy +;{:CMÛšv`†çŠ“­³¾½ó459æÜ»6OvMñÚp£FÚß5ˆWo·Ìk øùW?˜n¯ !„¬¥ßF³¥ˆ}u‚¦ÏÑ*AÄ}!„dËõ‰Âü½î ]¾ÉÉI�åìs¦»íúéýIÖZâ±?)ùäú±æT!¤º.:,X ÎÓC+=HBM;ÿ]¡¥"ð2­ûŽï™=BŸÉ^›‚‹D½ NaÚ8»ººº{Ž_ºkï2£¦´Ô:I÷²cUJq;jß\{ ¡ÑèÍ ýQÝË‚<þ{qß<Mé6s$4ržýä΄šNÜó°¾m¬íŸ*vÌ¥û )&Ý Œ¤7qëÔ†óç²��@Ô†5_äØÉÛÈ/2YíkÏ„BŠ©÷š£É-H™<ªéVÙD©ðꯙ.»ÿèßtù÷ç<µÂÐS?Mpû_Ô_Þš>Úc¤ßÂg£®¯œÝøi4;ï{ÕæãAG0ºT_70””¶W‡Ý~“-ƒ3”ÜÑöÞäuNŸÝÍ**H>³¸nßì7/Tè-‹æÅo1cL»ÉA!$)ÿÝ›î¸7SˆPönG®œ$岡Y”uècO\ƒT”°(zÝÖ;_Gå•W%‡ì N‡�H+¯¬žþ1nû"³ó’/µ^ðUJÛL\”ùóYúÇѵÂÖœ,®mÜR£â¼˜à…_|È6óó1ïe¹S^ÒÊàÕs>Ëv<± 0ìÊÑîµ ¾«î¥Òü:Ûÿ·øô¨ƒÞ ŸΛ¿5nÌ3âNÏ,üfÍÞ¤VÐoU Γ‹©‹gXö8BõÇoÙzådJ+�Òª;G“ì6-³ïˆÆ–KˆHnŽF¼(.ΊØ?2aGàÇq\ zÓȽ†¬mnm®-7`æ^8Qäùî2/ÿ÷f‰BŽ=Q}ÁVZyïÌSÒÔOÖ¹2:z™ñŒß¶®»~6Ëxá:·Ê+—²mjŠ=.²q¢TÚ^ívûlç*´0˜n°X¬ÆúqÓÓ┳,+äü!n[ÐÊíÛ?Ôˆú+ã!cÞ½&„$å§|5>K´ý$ÊÙï¢1öd…)rcŠ“³¿vÌ7ÛBñ“vXkø,“t.Y\txÉ`U8‡%ÍûžÖEs‘0ûk'`²1¦­zÍáKõ W>jQZ….J¦{ï‰n”"„¸øðHºËÿrEÝþVP„¸èð(²É†ÈfÙ×ܘ-f@oÕãEk§=Ý—©NºÇh†Öm5v§¹Èõ[MaËMw§zÈIÑ_ó¸:vó0‹··ˆ‹ŽŒÖóû½¨à¨'Ùü½„VeMÐÎùzVÛŸ¶*Ô›*ºUf„­I;†ëú_®–"ÄÞd¡¿ð›PÖ|àÅm1Ãw%ó»~ÝðçdÆž©ò¤ZøŒ"Ø·èê.¸Õ@¨j·Ì£Ý;\»ð›D"‹„"ŸÇåT–æ7sØÜ¦†FvuiA&‡]Íki´¶\»ð›Ãmb‡œ?Äb±öü™àøùMÍe_°X¬A Š¢s[ó¿b1ÚÎJМ÷dóÙ% â>&¡ZyÛj���`¸¬Ýä‘´ÞÖÖwñ;{O„çs�@X–X fzèʶs¨~~&i9)��ÐÌÜ,è²2È:Æ6Pio,#5áÞokù?Ì_s±¬—M~9EËKH.î:²¯µ\Üè°ßª£ZuÐj[ù´dÒ†¡_~‚¼zž´¿ªà¥]‰a,A—«mÏËèý™|íxþ¨­s-:ElŠË•ÖFì_2Ò”!„Poö »”#Q¨7Ut«D{¼çǯ´LÛ6Ä€–צ ݇‡Ô Ì®ÅzÞ:ê«—²�5Æügl¯Uµ[ æõ ¥©±®ºœÛÜ�àµpêk+¹-œ×tQˆ<öL¥´³oÏÛëNïcH¦’Ûœ€æŸÆTeÜþ2Њ}ÿsG×Ía ²aJŽ“}IB¨·“7m{cnc6ýðËâÖ7— {9›-§�‰Bko%•Jê¿ê ‰ü2$QHjÚñ`Î>«‚ŸýÇCbÊWEC¯†û[+õîì|ÿ§2ßwLÉò éZ›ºÐuó¿* <VË“¨åñ*r'AUhuš¯9þصʆë†$!Ôôþ±¤ùÁá;UªР[xX‚Фܮ‹¿‚¢øBdàb§C¢ \çQ}õBfkCô‰G$ÿ ¾zPu»Å`^ t˜úÆfôuõ�Z:zF&Ú:zìÆÉ‹Z6~Ž ýJ”a5’PôÝÖí>x%&%xJí•“É­të16(7,½Eö»¸26¶VßÃY¯ÿ®�@kOí“jtkokT”PÚv°OXž˜ÏG¯Hu]Ëí‡*„ù7îòü‚Fj+ÎÞiÕÛÃrŸp§¾;µëIFEåJJcSE^;¶Ïr6Ö$CI]jzÃ+;¿Ž"Ü&月O}IÒ÷­Þ(S©H²EÀZo飧²;Nãuá?œ.5^°ö -�(ÃænYsí\ÔýßQ6ŒÓ€öÂ`o0"Ï;É}C2™ � “ÉL}£Î¨µ GF¶\¼w-óîú%{.?yQRœ›xç×ÝÛf ûŸ„ŸrðãÁ‘Å••ùOBC3Åîæ4ʰÎÛ°íDì‹ÂÔ_®ù,ÝiË6/-Å¥M)Á‡ß/—eIšŠs²²²2ÓÃŽ´-˜c0Ç¡ö”ÕÂSêŽ~r&»!~î…=?ç+¸RÒð"åY;)EZ ÔU]—rÕVEâ’»¡õ^oŽÖU¶~ê´3]Wz>@ªT.ÕÌÖ”sýQ… ^öÙ_¥‚Wžu‡¡iï,öñx‰WÀº óäc× UºÓ™j·þø½3>™8÷“³Ÿe¤Å…þøÖ¤…—èk~ß?AWf£³7Œª=µíÃû´Y|˜}5u fè:2©TÒÈ®•J¥��©TÚÔXOH¥ª9 ¡±¨ˆ �@28w}»ÞÍ­ãœll'o:‘Ë´ÑWz/jIH Zeè§ó=l--§}]±èTÈN [,?~p\êÇãìG]Ò|7äÞg#•mJHëìÛöÑÙ<9£ ’Dnëæææî1&àƒûF›O…ÿ0A§/ž|Å…;À1†LcÇ¥÷F휢%·É$æýIÞíx¾ýÕU]טBMUtøÓÊ×ÊÝWúê+÷3Tm#=IÅrÉ–A'ŽÍÍÝlÏÔ7u~3Ìk÷"CÊ«±>iÕÃàĵ>Ì.Ñã’…æ™Ç/æªæV´<?}øüüZúígz³Þð[õsÁ˜ÏN̹~J¶˜µÑ›—_¥3gýX]µìƒy=ؽ1Èb±¢ÝÖ¦ÖTe®þ~ï® þóV‘©}¼!•¡¡Ýßú‰ó¾óñ½olÑq_ÍÁÞÍaKmVk\É=;Cï]´3•g'¹Y™¿ÅÁ FÀo»5ævÈ¥…AëA ‚K„M õÚºú$ÅQ ‡­«gH¥ÑÉdÊ­Ks­P8Ï‹Ân^øâÛ_ž¸–ZS‘óÌ>;„2˜ê+å¼xö$ì§Ÿ2µ|ö9 £Y‚ü°,ûNÂ>¬S0&Òž·÷ëù؇a0EÈöÆ‚@!Ûƒ¤¾/ *pcÿÈî'l½ÏòxS¿÷Ï™m8\cÔ÷™‰Ø"»@³YüÑv¬ £Ä›H¥’öhL*•Ê¢±ŽwC«é€S4 —EËp«c0Ìklo � Ë4í‘Èd}CÓÆ0 ƒy5è0õ ©´ã¾1©´?÷a7†Á`0˜¿•Ý#a…b0 fè¢(CX5 ƒé7èU'ÁуÁ`†0Øa0 »1 ƒÁ`þ äïá1 ƒÁôôê“àh ƒÁ`0CìÆ0 óú¹±AòÞÌnHJŽx2\¼wû[EZÂꮎä¾ÍF4D}1}B¨¹0¬Y˜wj5‹ !„¬ ÄC¢¢œ}Îô‘¿Kp”Ó¸‘ŸOµ¤È·wY×xýèä¤Ò^z|Û[ÇÔt1ƒ/Cì«`TSÏ ïbØ=Þ›LÒr\µ€¥K€âHóï7¢ê÷*¤äÂöý¹¡u U§‚èÿì 1ÚŸ\ÅnŒ{×–ú /)úy”¡ÿµ:™±¡ºK~P.V<ã÷±iÅé 4€«µ]^“Üúä= èøE†ðï5ÂÞRxЃ¡æ�*)¹ðÿË_x³°®¡êâTÜ5^‹®�ÐÜX¯ünKTÿ©ðƒóíÏ2éׄÌÌÌôçÑ—¶ÞÙ5÷½‡œny“Œ¦ý÷ÄþÙfÿÊ‚ˆksk(#fúÙé35IÜÒ"¾Å¤É.fz:tUÆ.B$"^…XÒêˆËE.oúµ½�êÏ>“œ”””””ul†pÚý×Ó¤¤¤¤¤ç÷?teô± ²ùœmSÀã£÷ª; ß-‰Ç¯T»oZéDÀº«`„¯¬qÉ#üýlô™šÜ5^‹®Ã1� ¢’¢Ê/­¬(!“àkðög�� 0mœ]]]Ý=Ç/ݵw™QSZjDñ*Š(gŸ3Ýý?Ç÷Ì¡Oƒd¯MÁE"™U²£ö͵׀Þ|±@ ºüü«L·×†BÖÒo£ÙÒ—yü÷â¾yšÒmæHhä<û9È !4¸ça}ÛØJpžZéiD‚jÚùï -¥rª!b_ és´J±@B!Ùr}¢0¯;B—orEJ$wÛõÓû“¬µ ÅcRòÉõcÍ©BH5t]tXö^ãþ‰M°c.åØM1yiT=Ç‘^^^^^^žN†T¨mã1JöÉÕB�ˆ¦ÄƒË\u!„ó”+'‹5žþÞLZÌ‘›åíÑwìz£×Ö¥vÔÞëNÖ6Ó€Ö;Û£AÔp{‘sá­¤ºÊ-ñ2»«´ùÎ<çéÂŒ4¡á[Ѽ®úê©íöÆ}8_B¹‘îC°k`��€Lå¥%Üf…oyæó¹%E…²ÚáØ ?âAðŠÂ/>d›ùù˜÷²" Êüù,ýãèZakÎ×6n ©!€´2xõœÏr§O,( û€rô£{-ªM§‰†°÷&¯‹púìnVQAò™Åuûf¿y¡\ÖEé?~íÿ[|zÔAï„OçÍß7æ‡Çq§g~³foR+�@Zyeõôÿ‹qÛ™—|)¨åð€¯RøŠåTKŒ ½eѼø-fŒi79!„$å¿{Ó÷f ÊÞíÈU"yÖ¡sŒ=q RQ¢èu[ï8|•W^Q”²7p8ö[lÄyr1Õbñ KU7-Jÿþ³ç~?Ef&þ±Nzfý–B©æ_Æ#“Þ¯›økH‰¸m­éñÑ¿Z}ßoÙ¬BÝÅõq‡|ë‚O¦È\ QÿðH8yî;  ŠF¨@BIÑÉÕÝUª;ûfÎO,ºûù"„ṷ̂Ρ«<m ;7.ÿF€.î¯A×ÀÈœ DššO¢Ã¹-M=ò[Ÿ'Äêéé‘Iê¯*²X¬ÆúqÓÓ┳,+äü!n»•ÛÔ·¨ÿõWÆw‘î½'ºQŠBââÃ#é.ÿËuû[˜ýµ0ÙÕåоTÏpå£qÑáQd“ ‘Ͳ¯¹1[Ì€ÞªÇ-=ŠƒŒy÷:‹.)?å«éðYº í³(g¿‹ÆØ“Raö×N€t_ÖI©{ì€f`h=B¢¼ïÝi®rEH\txÉ`U8‡@m?° Ñºh®"9É£P ¤¨¯ö&ù›á²jò“vXkø,“t.¹_b#„šÂ–›8îNÈkÔ–ˆ ]èõ[G2y–ßk”Öx;PÇ`å£ÅUî7z“)pþ:Kˆ’Ö\ö×иR#R­îHZ}Ù_Ëø­GÍ!iå¹É¦¢ZT6BEò䩉 :ÜXWj»kãâ®ñ:t7íÞáÖåcÉñaa·‚¯_>™û ª¼°™Ãnj¨+/y‘÷ðÆÕÓï‡f?¿óÇ %.†ÛÄ9ˆÅbíù3Áñó›šË¾`±Xƒ3{¹‘špï·µü毹XÖË š™›EÛÎYÇXCÀæ²Ä’K€{Û.¹–k€]%?/(ŠÎmÍÿŠÅhÛK§9ïÉæ³KÄ��@µë Õ¶¼cɤ =B¾üyõ<)–%C§™º²Â¨~~&i9©9û$F_$·ò¶Õ���ÀpY»É#i½­­ïâwöžÏç"�ú+6/íJ #`ÁºÊ­LµöqÔ–F3¦-dó«¬åµi…UÎÉ 9B ­ºsä1eæ{ÓEªÕLflóßü5® HËo7 Úä­­²*’,O¥JPªmÜ5^«®é0_MŒÌLMØu5ObÝ¿ýGø¤'1 õÇÛXYYÃ>ðì{cnc6ýðËâÖ7— {9í»„¢�$ ­½Š$*UÅê"‘Çž©ìäíu§ËÊ!“ÚÛ@¥ý“¬ØNŸºK¨HξˆÑÉÉÔ—«Îšo|S•qûË@+öýÏý]7‡5ý›ŸýÇCbÊW 5LºC“�¶&S­Êîo¿e_tîtzKùÍ£ñÚóÞh�U­;€ß $ß;YStýØsË5ë<4Ô0BE¥(T©2 ¨ôîC»k`º£¡Á033±·³uqvruuurr²¶¶ÖÒÒêûrå8æ@kOíãÎtkokT”PÚv [Xž˜ÏWÉÂ6~Ž ýJT]ߦUtë16(7,½í–qell­¾‡³žººîƒj$¡è»¬Û}ðJLJð”Ú+'“[û%¶0ÿÆ]ž_ÐHíþµµÊòÓWmr« >úçÙ_Ÿ.Ù꣫VÝu}ÞYªqðø‘cYöëW;ÓÕ0Be¥ôP)�$2 ‚xEF‚»Æè˜¿a×mpŠ%i*ÎÉÊÊÊLO ;þѶ`ŽYÀµhS¬î˜Rwô“3Ù­ñs/ìù9_Qq /Ržµ“R¤µ`ïZæÝõKö‹ ä�� �IDAT\~ò¢¤87ñί»·ÍRõ¦$ʰÎÛ°íDì‹ÂÔ_®ù,ÝiË6/µçdËÅꊡb~ÊÁGfWVæ? Í[¸›Óú#¶¸änh½×›£uûÙîªW™j·t‹gÝéÍ_¤Y¬Ü4JKMuiŽÜ¸ÊèÑçs]7-w ©c„ŠJ‘«R@aÚ £”>|œYQ[ßÀ• „‘à®1´ºæïX½œ˜$rËX7ÙßZ6“6Ÿºüí�$jûŠ 7ŠÖ¬cøÝÐfÊÆSþ(¿¸˜÷'yw|ö ®‹>wÝlÛž­ãp�дô X÷_}•ïÃ![,?^ûÎæÇ;5�†Í´÷B‚?©€JGq�„��HòÅP<ûV˜¤ëU Zeè§ów5!À°ÿÖ©.4�û,¶¤òÁµr÷í¾ú°¿-¯šü��@±^ø®ïöu1vo¿í®¡fZ�®k×;øLÿÅ6õŒÈ/…Ô$O¥€:eïçãoó¶ ¬*ítXQ‘‘à®ñZu Ìßd±XQnkSk*вW¿w×ÿy«Hä>º7 -]¬Ó~!ÎûÎsÄ÷¾±EÇ}5‡ŠÌDåÙI®GV¦Åo±2·Üòb69ä—ÿ`•9^Â]óêàóÚî~|xû’•CÇŒD&‘H$’d´}ÌÎx6yæR…ƒTvóÂßžüòÄµÔšŠœgöÙ!¬åAƒ”óâÙ“°Ÿ~ÊÔòÙç¤1„—ˆ´çíýz¾ÅÐðaHÜ®Î:÷é%Á¬àYf؇á®ê(x߇mþþá•¶Þgy¼©ßûçŽÌ6„CHršÍâ¶i¹ÖX„JVœ<;sH©w¡×50}ò&ê&ÁÑØ .‹&–a=¼jtü¯·âYî˜×¼¦‚Á`0ìÆ0 ƒÁn ƒÁ`0ìÆ0 ƒÝƒÁ`0Øa0 ƒÝƒÁ`0rPø@9¬ ƒÁôôª“àh ƒÁ`0¯_4†ƒ1 ƒÁ `lEc¢œ}Îô‘¿Kƒ0’’#ž ×/ÄKiDCÔÓ‡Q!„š Ú…y§V³˜BÈú±@üšY|KØB]ÃÕ‘ÜÁÐ4DCäçS-)2µ·ü+íƒ .7†ê.ùA¹X}ðŒß×\Åù?°H¦›ã[Û>7‡/Ó…ÐíÛ¼¶‘ލ<ãKÖ^x·é¨0ûê’ÆüûÍÊæ Û÷ç†Ô5T]œ ¢ÿ³3Ähr»1î][ê?ÓNì«:5ÕÔ3è»¶ôÕ*)úy”¡ÿµ:¤\{$-çÀU Xºý¶lIÉ…ÿû_þ›…u U§ê¼ºzô` ÌŒ¤k»Pô†{Í}ï—G¢¿3‡´|Å4Ýö§§ÝlŒ"7†úú¯Ÿ@ýÙg’“’’’’’¢ŽÍÐ�N»ÿzš””””ôüþ‡®Œ¾æJµœ8Õ¼.êQ©¬3 òî=#Œ4Šï&5ÈÞgÞ’v3 °æ½¡3HÛH\›[C1ÓÏÎHŸ©Iâ–ñ-&Mv13ÐÓ¡«2V"ñ ¤‚”I¿&dff¦?¾´Õðή¹ï=ä¼ÊµhiuÄå"—7ýz{À9ÉhÚOìŸmFµ“GøûÙé35)‡J²]Ò“œÞãO¹»}ªKà¯yÂÏa0+3˜‚õ½ƒº.f-*RôGzyyyyyy:R¡¶Ç(Ù'W � š.sÕ…xm .j›$òó¯~0Ý^B XK¿îhŒ˜5V+ÿÎS6�TÅ>j÷Ñ»¶973x��Àq÷i«Ãl#’Ü|/óäú±æT!¤º.:œÛsH“PRxhÍzg{ ‰n/Òc.¼Õ ¬9{æƒØW'hú­D,ЇBH¶\Ÿ(Ìßë΀Ðå›\‘üº‹rö9ÓÝvýôþ$k-HñØŸ”,¯ çé¡•žF$¡¦ÿ®P™›åìs¦»ÿçøžÙ#ôiÜYÏÝÚŠiãìêêêî9~鮽ˌšÒRë$��Aæ/«}í™BH1õ^s4¹)Ï–`Gí›k¯!4½ùb@3fÇ\ʱšbÒ›Åv,*Šó¾gQm>Ny™#âÜ]ª¯ÊF½ÚL»ÚÎ׃Pcþýæn*ý&[ X{ÿ½¸ožƒ&„t›¹9Ï~rgBM'îyXßÍ6›ïÌsÞ‘.ÌØé@ƒ¾Í}¶óÎíâ>rÌä…›¿¹þüñûúa;¶]¯&¶¸ê9¨£×ßm`c¤Cg˜ù¾wµXÔÛ:ªÛPÙ18BˆÒ¿ÿì¹ßO‘™‰¬“žY¿%¤†�DCØ{“×E8}v7«¨ ùÌâº}³ß¼PÞµƒëxÌc¡´[é\�PÓóÛ%¶‹çùÑ’îç �TÆ<ª4š4ÍŠ+7IÑÉÕ[ï8|•W^Q”²7p8½[8 _�8|ñ»cê‚O¦ðdÕ?<NžûÎD…Á„Ü|*ô–Eóâ·˜1¦Ýä „’”ÿîMwÜ›)D({·#WqÝEY‡Î1öÄ5HE ‹¢×õ¬‚´òÊêéÿã¶/2;/ùRPËá…_¥´9]QæÏgéG× [s~°¸¶qKH’y7Á+ ¿ømæçcN�"’Û†£/Š‹³"öLØøqÜË.yÙJ+ƒWÏù,wÚñð(G?º×"ÏÑ#Γ‹©‹gXªñf!ªÍÂun•W.e Ú²ˆ=.²q¢ìÕf agµóoèvUé³ÿÓQ¬½ô¿Îöÿ->=ê wÂ'óæoóÃ㌸Ó3 ¿Y³7©µ‹º³oæüÄ¢»ÿ/B±ÏLÐê‡Ë‰¬˜¾Ûw°Ï'6)mqÕrPG Ù?_Ôÿ:©¦¥%ï˜óÕsö¥ ”wm&§–)bþ­°X¬ÆúqÓÓ┳,+äü!n›ÛÜØ·hÀh‰Ò…^¿•I^~!ÌþÚ 0—ßk$B5ÞÔ1Xù¨ER~ÊWÓá³tAÛe¢œý.cOVH»ä&ÌúÊ Û‘ÔŠ¸Qo[:|œÜÊe8ê—"1Q{e*Mcöº2ùùð’vXkøì!„¸øðHºËÿrE)@Z}Ù_Ëø­GÍ!iå¹É¦¢ZºÕ’¨¿22æÝkR’RäÆ'‘éêÍð&„B|yUE2XΑ©S”÷= ­‹æÊôl²1†+»®9|©žáÊG-=ÄîbEtï=ÑÒž­È¹3_ÏjûÓV¤([qÑáQd“ ‘Ͳ¯¹1[Ì€ÞªÇÝõ„šÂ–›8îN(ҞܦAâ‚CžTëŸñBûÖ]Ý·¤šÍtQ;êªRåÚcÝ—¥¤î±š¡õDÛUî4×¹¢®Ut¸±~Ú¹\…´<Xª X?æóɬrbu” ½ønÛp )?5Žf¶%ž§¨ E&§Ä9·¨äöÆÁ fڽíËÇRž„·ÿK{‘‘ô8ëytvJlnZ|^ÆÓ‚¬¤¢œä;œPæešØ!ç±X¬=&8~~SsÙ,‹¤þâä+Ýëe~míã¨- gh†Ã´…l!(ŠÎmÍÿŠÅhÛ•¦9ïÉæ³Kºn˜Ó†Oh\ñ0¦ŠWü0^â=Ã^ƒ9r®Mñíä&næíd‰Û<OZ±ü|È.k7y$­·µõ]üÎÞáùÜîuT(�ÉdÆ6ñÍ_㚀´üÖÑxàMÞÚŠë¦ZETOBµò¶•½î!¯ ²Äbè4ÓCW¦Nª…ŸŸIcZG ��437 º¬ ²Ž±†€Í#îe¤&Üûm-ÿ‡ùk.–I��ÒÚˆýKFšÒ „ê;Áa—rÚNÝÉÉVX–XBr poÛ—Ôr p£Ë‰WyiWb FÐÕ\£¶ž·Î£úê¥,@1¿GÀÇëÁ¾¨tU©RíQ­Ç:hµ­ÎY2iÃFÐ/?A^=Oúêì\nWF��¡R™UÊA-% k¯ÕÖÖ®žõ)y-Êâ(E&§à{CWS“ÉÀ·½âݱ¡·¨Iäv!ÈcÏTv™•æíuï6àiºÌõfäÜzš¿Úi®» ›Ž›ªŸq+9ãA,Çf¦¯ YQ>šo|S•qûË@+öýÏý]7‡5tíŽ €ß $ß;YStýØsË5ë<4”6œJQ9 $SÉmAaä8 ئhØe“g=m{cnc6ýðËâÖ7— ÅD]èºù_•žN«åIÔòx•¹ã…är²E�(´öV%Q©rL’ŸýÇCbÊW µ÷Z‡®ó¨¾z!³µ!úÄ#’ÿ_=Ø7UwS©2íu²R$QH~Uéíì}·s9{…µé¹\†µƒEi‹«žƒjJ@R±ôeU‘T,U¡ÎòMNþ÷d }m}MìÆ0CÏÉaãçÒ¯DÕõ²d®ë9ÏMò<øò•|Ë™Þ$�þ^â˜Ë—o•èO˜aGW–Eß-`ÝîƒWbR‚§Ô^9™Üªª�º>ï,ÕŽ8xüȱ,ûõ«éQ‘¾%éQºõ”–Þv?”¸26¶VßÃY¯o�� µ'•Æ¦Š¼vlŸål¬I†’ºÔô¥7@Ñ­½­QQBiÛ±ayb>¿Ç@/Ì¿q—ç4R[}Á(ÃænYsí\ÔýßQ6ŒÓ룪{ˆ=€Ú#‘I�Ä€µu—†iŠ;t0]cÊêѺ}”¹Sê(ARø(¥Q&«¸".žm8ÒAg�MŸ_^ä§…GpÌëàÆÈ–‹÷®eÞ]¿dÏå'/JŠsïüº{ûѬ§ É&ãlo~û€â7ÉŠ ��ZîsGŸü9â覩0~ÊÁGfWVæ? Í[¸›ÓT@säÆUF>?˜ëºi¹m@*¢~¹U  [ðálѹ ÛNľ(L½ñåšÏÒ¶lóRc\4çdeee¦'†ÿh[0Ç,`ŽƒjæaKʹþ¨B /ûìίR•Ïö)V wL©;úÉ™ìV„ø¹öüœßãqÉÝÐz¯7{ £mb4¼HyÖNJ~·E2²åì £jOmûð>mÖf_UÝÃ;öW{]¢Úa”Ò‡3+j븒~›‡¬]2Ó’"oÿt±×ä_~<´À”¤ºÌŠrPK ¢¨ß;_š}ï› _f8nÜì©9€Ýž÷ä“Y3?Šãâ?x9bƒ€£q×ͶíÙ:î��MK¯€uÿÕïy×Ýn†Ÿþ¾ÂVÏÙÎm GÏ´1¹.ó¼˜�(?R­2ôÓù»‹š`XëTÈNª*�Ãuíz§Ÿé¿³Ø†¢`Y@ ²|¤ý¬;‰!¯ ÐbùùðÚw6<Þ©0l¦½üÙH �T=ÑŒ$‘[ƺÉþÖ²™´ùÔåo'è�¨tâØãe›í™›˜†Ã§lÙ½(j/¡Ü{¯¸p£hÍú1†Ñ m¦lÜ9åáÝÕÊ×ÊÝ·ûêCùbļ?É»ã³ßù¤ ®XÌÚè½y}œÞêõcuÕ´%b÷S{Ñ›²÷óñ‹·yÛ ÖFåÒ?;ïh’ŽÕ>ܳeª%M‰Ìªç †hî»>µ rÞV)5³õÒÿŒd d¯—4dÄÆJ¤xÇ�� ‹ÅŠzt[›ZSQ”¸úû½»6øÏ[¥Â‚¹|´tõ±N»Nc69ä—ÿ`•¹œÈWœ÷çˆï}c‹Žûjb]É…¨<;ÉõÈÊ´ø-Öd¬!(gŸÇ×ÞÍMÚfCÁÚÀC`s£ìGw¯XÙ8tLÌHd‰D"‘!IFÛÇìŒgg,R2»yá‹oO~yâZjMEÎ3ûìlf¯ $naWgûô’`Vð,³>LÊyñìIØO?ejùìsÒÀêR8ïiÏÛûõ| ìÃ0Œ\°{ep­±•8¬8yvfÏ'(!NØzŸåñ¦~ïŸ;2Ûbu)‚f³ø£íX  »±¿ÿë­ŠOWCÃeÑÄ2¬%Ìk8ópþ4Gø)ÖæŸvcø…c ƒé?øíÏ ƒÁ¨áX ƒÁ`0ƒ-ƒ8Ã`0Ì¿"ë3_|ñÖ)ƒÁ`d|´ó•Ÿ4`7fhhˆ› ƒÁ`0xQƒÁ`0C˜ŽÆ§C0 ó»±¾:#ìÆ0 Ó/o¢æQEa0 æõ‹ÆúŽýmn 2†›;{Œµ6I’ÿç¯5ðœìbDõ‘§.<ã¯e[‘ Æ®Y="åôÅäæ.$éŽ\ùöÈœsçÿÉŠÓ†ÏÛ4GúûÝrñÐì ¦“×­¥ € ëÊï÷*ÄxpÀ`�€š.A[f™�ªîÿv9“÷ÊÉчplð=Sj8-Û ùõF±â—7‘t]¦Œ1(¼y2¶R ËÙ“ù1~Ëi‹EÿÔPNÖµ7u¼‡­!BÐT[–óàI©PwÔª·Ü3ϾBçŠÄ Ùùõ"5ŸßÂô\±Òîéé/_· 5œ–mcù2W»(-úa|aK_ꩆNã&Œq³1Ò qSÅ‹”¸èä²VB¡`¯\c ‘–ßúíjž���H:vcÆvµ³Ô£į/HŽŠxZÌí$Ôvž÷Öl{Zù­£WóÝíj Ÿ´lá’¤?ÿŒ-tmHaÚzùq·5gÒ! ø …YÏ’‹8b¤T]r»F·V¶ÔUd&=M+ãJåõ,¥WBª¾Ã¿1nv¦Ú�„œòüô§ñÉ%ͤì§îù³£OŸ9£‚tÛ9Ž ñR.Œ¨–tèÎmÙÆ�˦'çÎÆÕK•ô XŽï[³,ä´÷ùÅàªÉÛ«#£!úô¹$£"3I”è°·KNæmª_e ŠbÕ*”Ÿ~ùDx¥DÉ(ª®$­ÙÁ?¾0ò{k¥õ‹Æú:¢@4&Ë!eyA }M¢¡¨œÓ*�jëèR¸E¥õ\¾ŠVÉd •hàH1öY<ß[šqý^E³”Æ4µ¶5Ò �$è¨Êå)!€�@ {V¨µ$ö~‰Ús,+'&;½‚Otd†�Dùƒàåb2ÃÀvÌŒñóf5ž¸šÑ¢’äÈm7ªñè%+'èW$>¹_Ë'ëY¿1~âÒUF7ÎßÏ—ÿädÔ ˆív•Ÿ¬g?œ^›ú0¡ºI¢ií5ÍoÑééKO_¾©‘¤ã:}<³š¬_&é$7IË~êòùnü¸+! UÂnµ y-Z9É´>=.<¶¢Q€hÚ†–ö.¾ãkËo •«Kn×èh5 ™ªÁ4µq=e©«íƒ ¡©ÒšUr%Õxô╌jScï<®àˆ):&6n£¦øTž¿_ÿ$îf "±ž›³þ3Ù� Vo 'µJ»µ'I×~¤™ ®EÇÕÍ0áqDq’Ý;�T³ ‹§ë< ¹›×Š�@^£Ø�¢"âÚ£Jqû„®¥‰@4ÅfŒPoIzÓa/—¼ÌRTe¥:÷­Pikƒ!%£hŸ$ù§:åëâÆ(zNü'zX3©@PÿâéƒðÄ 0"èÝ@K�Àü÷vv$3{ëÿƆèSgšuº')ç#²ÏÚµ.Q%æÞ¬a:-qo·xÌïf®E„€]{ãvrƒ@ºù¨é3|\L4€¤©$ùÑý˜üf) ø¬]ëüâaéè‘Ãõi¢šô‡7f7uy´–•½¾ çÊã”2��Ô×V��hv‹×M6"ÉëwL@yù·pËßßËÁ‚I¨µ&;îþƒÔZªˆ‡�ÒLGÍ]8ÎÉ&¨I“‰AÒõ\µ~dΙ³O Y>…1åæž#L´hâš´‡=Îm’öœX8prJy¼˜¬K9ìúz�õõBS–‡…9½YܳÊù�¨1lì¬Y>vL ¿:-&ƒ €¨› ˜n3Æ›³£Î„<­—��@mMEyx{áŒñ%÷ËD¢7büôñ6ú4 åUe<¼WÄZÛUcw+H ENM©æÓ7„½š/��šÍ‚-³þ~¯¹O èÑâÝí®}’ ,¹Ü>7¨¬•šoYàh©ñ”Ý‚dÕ O~#É:Èšºº1¨í8=hžssdðõ¤š!2‰éî?Ѳ!úìå„ú¶¤¦ª¬ #B„ru•+vc/[ ÔT•æeNY4yªCÞŸ9]–€”^Égºû·`GŸ½’P'¬¶º¼ #I‹"†LOE?u— ËR*Í]] "k%�j—™Ex8N³/’îˆ7 Ù W¬–La™ÄTWˆ÷ �@«lÍšÆ'�£©®ººmV5�„ ¡¦ºZÔ5øWhÆ2 ô–D©{ó(=3W\e@ÒsWI±ê º±¾I‚�ÂnLÍY1�€‚ ›iA3Móüñ ŒK6v›:gñÞÉ?2.lž±q¹þý£W „�@mU›Æœ=Ç–Ȱ —¤!@6åVpýâ/Å<Š‘WÐ;vXð_EÍCßÌœ&AmçÙK§ç‡ß*²fÌ]°DrölL-BF¹å†þSÈtŸ·ÚFIÉí›´p¥ SFy¿cåIXr2bÍ:ŒSg“dKdTS¢>-<é›Ob0cÑÄÚ“á"¤Šx²Ñh?“؈˱|&+ 0`FIÉ9üNp[>.ùWÏ)i;ú¯ \ÄgŸ‹­“tõbtscî‹ðfi—a¨“æiÌánŽLi}E“ЇËm®–ËìÅãõ³ïœO(Gæ£gØÒ¤Y] jÙ¸›£’[éõâöo¯81£Ù…åfü°Œm5ýÍ@‡ºØ;ç²kD4CK³žƒÚ. 6ŠœšrêÜ_þu=fÏè¡RÔÃvtT…%üV‘LÁú3}ÉO¯<gëYw$A�@bºÌš9î.ââçuâžÉRz3µ“B:JïU] $·Õ^®£U<Kª5ÉÕ”–] �ª]™[oën†Šo¦ÖuLÊçJIL7E?õì¹HPžRä6eû R¢eû†YSꎛGç¬ïÊbÖ<Í©.ª+œ>ç óÈò¡Â$o–TG¹#„TIÒ‹U¸zl8È­2IÛV5Åö¡PEß÷QÔÉa7¦^4´|ʼnç#Òë¥��NÜý'No®™‘.ì:sFàåbT”$ ��„/Ç6K��$mÁ).ªlhA ¥…S'›(;޶#2¯…§– `Gÿm·Ñg”é“»U��Кýøi)W @Cγâ)ö”l®¨ÓÂ^þǹKýƒÞÍcWT–—æg¥e—·HP÷Þ'ª~þ¤Z–¦)-â¡ý–�'ƒˆò*Ô»x€ ��¢‡aÏŠ„TÇE»½1ÇÞ€’]Ž:;1�€(?òIi+@s^tLͦ‰#Â*»¬QÐL]ÌùÑ)ê>[§8,yÿ#ÙGIEüŸ73š‘K®J³J½mÄi—#2ªD�4>6b¥K·ùEËXp‹ÙÂÎAs*8`´!“®màëJɽ~3®@€��M Õ��’^g‘t•5Šœš>êªï—¾ Òu娴‡ÝÉoBÆðq­xiÁ%!²ÁÈYã`Â¥d¶„Âì”!�(¶3f€ú˜3¡IµòׄÚÒ ’)„j1cã*Om��hM»ôÛCB™º¨¨^Q4ÖíK)¯®AD6УCÔÙ#(»’Â7Ö-E ]‹n[iPø“¼ž+¬LɃó=L#«šÞ0®Oþ«‰ìÚÖ;‘lQ•å¦Uñ8¿E*à'¿ yZÒK Haê<´ ÎíÓÍ\�ÂÌàc•Ë7cõ’D5öR}9™—‰UYeŪQhCÌÉÓql©¢EžJ‚ЌƉ¤æ0ª¾åº¾¾ld2H@¨~�ÑRÍ‘.vFjç¬Í[ÞÈÏ/*ÌËÊ)i!²Ž4$Ö¶-ÜŠ ÃÌ€«��R^}ûÌDÔ*¦èQ»˜‘°Snü–Å4·¶f9ÌÖmæ›ã<c/ÇÕöØ“îã?ÅËÁD³í*â<: �)èU<™PÍ•m“|‚ß""÷CvM[>�ñÙ5 S}¬ìP‡IŠäLúˆ²ðàR c×Éž¶fñÅ"*¥ê˜é"ö“º6_.fÕKÕ;ôԃìçÕB%ö¦´QäÖ´Qn>ŠUÚÛ&"ÍdôÂîÍQ#+„ ½çøñS¥òzOcaµ¶—ŸsöÍtU6U$µñWN§P´œæ.óÐ7€ÃWp¥ªˆjÒr¤KFZ™Ö¼¡_ó´€KŒè²Wjú†3­ä~q+@\š- e£Q˜ÓŠõ j±’v"Ê\‰x9ECÒÖF±lº×ÓŒyD/ITÑ cDжÖ��ãNŸŠ©“ª Â*«¨Ou Eâe£ú)I6* ‚{c¢Ê¿Ž^ÈàvË–Úe®ÑyMMQ²!ˆmID5q¿>ÂÑÎÖ~ü2?ßÔ«gî—ƒö õ\Æè˜*Þ=EBNE§"/-!öù¤õkÇúZ%^gwN 5GÌZ8N3)ôÔ•Ò¾˜:lîÖ%´—’÷"^‘!€AôtÇ�;Z‚{Ì¢(#†ƒÒ¿º¯kµí4ÖÕÖAMM(Õ|ÓÔ©#ÒC›å«”j�":–æ©uW‹˜[ËfTPÓi0¢èZèA Gˆ¬ºM°{N»‘ÒF‘SSB¶üÚ‘'”].W¥ü®å"�º T“Q ßô£$^¹’ Ûç¢Ú™kZ™oÜ9½ý¢ï諸wô €„ý,äfùü•³VÌ–œ¿ÕÔcD‘)ÄT¿M!HÜR_ÛuÌÅ«,Â�� �IDAT�„zSR1#iÐ$ÍüžÑ¶¢+E-5\àf¢G5ÝÏÈIÿ$?žצg VN™f¥Y^È“vé¬t O'mcq§˜²ÓÊI—íxÉéAå/k½ÜªªöØêiÆW3¹HiUt((úëäI� #E=Ô+'sÅU橦Ø>*×Tú.I§` /*ªî‰BI8å ÀÉe˜FF6)Šq_!Rž¤çQ)¿®0µ®05>Î%èÝ™&‹+›€½15£X� iYZj ªêù¢vI«tååpÕÂn:•„¡ìj²Ž¥ ¹:"© ¾@Ò01f8¨óFŽbñ Ë"1: ü�’žµ1=¾ž‡� i[ZhðË»,õí¨j„Ýåï’¿´)+&gâr_kòU*iªjÃ,tHy|)�€¬m¦Oü®n�5¦W“¦e¼xòòDÔ>†¥Ûú"½†Ï1hD#Lé™üIWIš”4мšJE|1 ½<$J¢ëëÐ`«¬N=UÚù4r½H5µhÅdä+Á1ígæ…E<Ek›R‡ù¯ò§>ºx;¯ŽK@™ðªø«Áä7W®˜)97·¥«'CÍ…iUp†‡a^|û~e»JÕ%B$yÇÅzX¤[x{KJã*݆<%WJù…iÕ3¦ó0Èo/�@bhQ„͊≠JØé-¾“ts¯–ð @é´æ¯1ÌÓÜ=Y%yyäÅcá|OŒçÝ|~{]çªö¯€üu.ùfl[O¨”D‰‘°©¾®÷ u9L¥¸Êª)¶…Êý¾?’ UÎ>7öÞþÜ1ß–6çD§_>{á$‘ZÁ…šFÖNv0#ây}§9zÛ<­m®0Ic—v ˜Žž`Ç+ȯhà“ôF“¸I-isî“‚ÉógM/»W,2zcæDcv­*êÖ†çÞIº¬ùslê³sŠ«ù@ÓÔÉwª9ª«äKMÍ„îp+£LA‹D,äÖrû+­œ.ÙÈ}ªŸ @ÔÍ)¯71:üÙjÊ Ï–Çy|}™ãŸÞªuÕÎQ£:ºRØ£±ºžÕCüÒ')Më¼¼´ÏÈWiCîÓ’I3&±2®§°‘Û$o}�*ºº´1åN”Û[“W.a<ŒÏ®n¥èÛxNžê*Mÿóq™@Šrb2'.›XûWdVf8Ì‚TœZÐEc¥"§¦Rq©`¬§›QVB0p4΀€È&ÞrUªðˆÙÀsáªéæ•Cs…º&¦º� I ›Í4Ö¶oùÓµ…@œÚÚìà��!BX}ù2yÅŠ…+$×·åó:ÏÒÆÔ;]ßš²z3:!«¼OЙΆ¨$Rª.„4�$ ÓVQGüÏE�èLCC‰ª©gjËòñÁ(¼žË%zFÛŠ¯lL¹éºvòê7u"Ÿd—sDT3;Ñ.¢°S•)þ©TÜ}Ê.ócOÎL!‰ù‘:Y•æp/[P|=§¢¦]‡õ©YÜQžÎÌÔ,Ë@¹=ˆè|V§ûÞXWm�i+»¾E¾{[<½[¦,‰j:ìeàê‘yC«¥Â*'?iTM±*–¨7a(fÞ}–¤îÿ©ÛŸ;e" ��4:ãïrc/„j-¸{önÀä€5> �Ä-Õ…©‘|!ØyÈébà “ €:ÚKµ'-™¬G@Ò\–öן õ„Z²n^Ò ˜=yõf i*~öghLµr—´r£1‚_]P7ÂÓ7ÐI‡�ˆ›+_D\zð¼QŠ`qTLÙbÿuïÍüôó‡ïþuÏzѬ­;g ùÍ%Ïãr­ÆÃ¶¬z¤PŒ6%´å#­{ËqZ°Ù_¶V>¿q9¦ËîIÛÆY§.±œßs7·{ÅĵϪÆNñ1üSžJ¥Í™7¯1ç¬ý¿©R~SIJB‰Í˜žó5QuìÅ“œ‰SÇM]î£Iâ¦òœˆ‹’J¸R�@kÁÝs7¦Ìš¼àí‰ åV¦†!$誱[ŠE~MËß|º ð­%¼Úœøø"?€‚òa�€437;:�¶“—ÛN~¹}uü÷˜zBA’ÎÚC­%/]!¯^¾d…øò…ˆ¢Î÷z‹jž\<Î7iœ÷œÓh�­ìÒ¼˜«7+D)UD’ÕŒ•owäV~ã·$HÖ3×n”íÛ6×–æ…_Š{^Üó¶u„”]‰DÕqO4øMöõ]à¥M@ØXš›|?ª\„ ð'Eg=¥ÂV^÷o¡–×pPögEçGÂÎ~Á7ÒM?%GAê1^£NÕéªÖÔsGî°˜±]dY±’$ªé°—Á¯{æi×£õVÙàiTJŠíuÄ•õ� οÖ7IPà.Çæd±XQnkSk*вW¿w×ÿy«‚h÷aõU��}#sU<Ù/G÷ב |Ömñ©8wäN9~úÚ3ôÛ°ÁåÙ¯§’šäïôBU›¼2?û¼™x½kªö„ùŒ­kLÃ]È`;Â`ºô6“I›ß¶9r6«¶SÚöÎ&Ù‘÷ÿ°²qè˜P“È$‰D"C’Œ¶ÙÏÆO›¯(7‰vóÂßžüòÄµÔšŠœgöÙ!¼7a>‘f¶£Ç‹+¢¤ýËë_ „��!T¤=2Y”™ÇCC]½½ÖTý "[/ú`7õ¯wÊð ƒ�@-×ïη&PÑßþ•Ñ‹£ÑúFæª/*ö«–a7gí|K^yÒí°Àn¬ïóŃ;Ñü"! €¡¯Ý^kª.Òꈣÿ‹ùóúК}é»l0¨;FïјŠl *)ȹx #ýhˆÿýûøƒþþ=5Å`0ýtc}™"c0 3HܘZ'±Ã`0Ì rcêžTÄn ƒÁ`0ƒÁ¡N ®(£¥¥ëƒÁ`0=¼É«J2À'÷îÝ‹ ƒÁ`0m± §îŸ‰Æ:»B*Í3ï1 ƒc±Î°–1 3té݉„ÙaE ƒÁ`½<X$pØU��=CsµîƒÆ`0 æoXUċРƒÂôâÆht†ž¡ù Å$%G<®^ˆ»ý=p Q_LF…j. kæZÍbB!ëÇüüØQÎ>gúÈ_Š%X vcŠ<ÙßêÃûê’ÆüûͲҺ°Ü© ïO#ˆW]–"?yaûþÜÀЂº†ª‹SAôv†íO®b7ƽkKýçunVð®@„êØMxûÇÇ52K z0z÷н^&)úy”¡ÿµºÎËÂ’{Ý ÉBH5°»øËˆzwB ójÝØ?iUÝÚ6~ö¯ÌÏ?üj’Á?$«¸6·†2b¦Ÿ‘>S“Ä--â[Lšìbf §CWE"B$ø‘º5íÀ Ï'x3üõ459úì;ÃãwMñÚp£FÚÏŒLZiuÄå"—7ý ;ë"Hý¯ÿ‚ïŠýöý•–‘yþ?æ-µ­Ä ƒÁ`76àî£üÏ;óÏ[|}ï?>L�€ŸõƒéöÚBhÀZúm4[ª$X84Šf½óÿeðÒp{‘sá­e{‡=óGì«4}ŽV "èC!$[®Oæïug@èòM®H¾H¢œ}Ît·]?½?ÉZ R<ö'%Ÿ\?Öœ !„TC×E‡s…��@pžZéiD‚jÚùï -—iÝÿs|Ïìú4H6ðÚ\$êèœÚøé—}‘}ûöŒÑ#Ç/úð\ÔË[Ïnü4º´&¼kΘv³©íâ–°…L“u1<�™¿¬öµgB!ÅÔ{ÍÑäºKK¦k9îHfìt A ߊæÉU{óyÎÝ/ëê]Ø1—r샦˜t˜¤"âÖ‹ÿgï<£šLº�<“N¯Ò©A0Ø@EtE±aÁ]PQ±¯]q-¬ewíWÅÞÅÁe-¨(EPéMJèJ¯ô÷ûP‚I`Açx<ÉKfæÎ½wæNKFeÎñƒÞãS-ØMüõ÷ãÜô Ì×î[2Â@]LѲ[~+Ÿ €t¬þÌø ^E説–ë¹lt¶øÑÃÖÕŸýêü¡3MG‡¬£)@��¿:tù(Ï0“­÷Óé¹ \+v;ϹR,.ú¸.\qýl¢ åW>9ñ?iéHU±¿ù(2ÿåY‘Œo-ʘ»µ†a·øŒ-ÙØ7…a›Å‹ÄN?r‰â]Íc¿œé¹äžÑ®ˆìâzB ¯K2€WzÓã§ß¢,v‡gd'\sk8>ÍigbKÐe§½HÞYÎjÊ< °Ð;°LhÂÁ+}páÎq“—¥Ì;jŒßà©WqçbCÂÄgáåö&??=lõËÕ.£[þô^ZNcMæA*Ùò@ðª #dDª]Îùnæ¡¶“kç>µ/®&i»ŽÕis¯¤×›\÷ðu¥ˆÅOvÆÑ«*»âʲOš{LÜÌ”N`vüÚþ-K»Üw!+GL  žŽ¹îiŒNÕ"=„.D‡Î…˜ž9Ø—,½¦¼ãiàJªœ ððÞûÞYsåàüf}­'o9µI/êdh™¸%¼ö¤#ëoŸŽm��ðËø…ËM÷¦$~¬“ùw˜DÉußïNºdÌ)©&ôã4ØHGÛÀÒaæ¯.$À-º³ÿÑýì‰E#L¬§ú^ÞIÍúçX|K ÒpÛ»ÎA“eŒg¬KŒÉh ñ%ÉÅ@g‰¢PH¦ ë «3òÄJ,k³l“§͸O³‘ žÀ Èh­¾—VNž»§��hˆ¿öJu²³AÛ½C¨>ñÈ‘M:ô’Õ²p˜¾xǹˆbæ{¯”Ÿò×u< éMÞù-çôÉĦN Ì)úßbûY÷†^ˆ¾ènHB=fc_Œ'ØÊ¥õ½‘ÃjyĤGf5åì¤R×ÖC’©OFsUAµØ#8±+Æqîþ]xÅÿúŨ¹-²•_d§óï QÏÖP0Y¢˜Í[d·ÀÐÐÎu©¯ÿ£œF �À*ŠÍ‡&ã­ZBQÛÞ^£&9³–��$- mrK4Vè%ìbðE*©Ý{Àøâ ¯<lÏ kM„BeçàÚªÂÚ–‰Ñi»¯��#ùfÅij²ðcÓŹõyÑ·÷üj§œwy‘ƒápßx��Ä>CúµÌèðªæ6ª•‰Ù |éf'ïçL;é?KˆZ5ÂØ×‡b¶"(|Ƀ#æ_+t™Ã¹PÊÃÚíkI UG.wÁ?8^F¿sòµÎ\O+‰3ÀÎæ/9 Äñ-FvÀ–¨·©!;\ôªngl¾8´åÐ%› ®íŸ0Lx*MÖ±Ò%ño„ž2ócò0U3#%<€Â©ù��ð+‚<§ì,r9Ÿ\Îàò±†gîªx¬5‡6Òv_- 9ãö¾ã sQúÆ+›ì¹îÏsR^nÒ‹ßûGx=��`<¯UŒÇáuR`¼ŽÃãúÇ—þËC{b c=E0ÚÆ{aÛt±(°„ (öÆ åfDE'Î¥)]:S>ìðé'Óû-ð0•Øõv!ÿN$!¨X8yn>|3*ñºcùͳ MdýÁXVhJ˽6œÒçÏËU¬L•¥±^Ûé×Aü°¿Îe°Þ?ãW<Ú¾PcÚ¯Ör8959ÐØ:ƒãV¿)lä�؅ϓشի&˜ö’ÅCnERJµèú8<îäN|…>&+'ø>ÃÞÍZ¾õi›ôÍ5  �ÀÍ{šX#ÈŒSS¥fmD.–R`��^môÞ'·]Ó—;Ì»ZÀFÍ@a쫟ðȦ4lûÇT.»:¬ø¯RËÕwžÒý3|n¼xSŸ{ïŸÍ«üÒYsµ^è®þtÛá,óE³$o˜àu:¿”Išoüûzxj~ii΋  4޶eoAwê:gö%¯þÏßä%5ÅÄ{MN*ÅúzžÙ58m“ƒË–+áI™é±!GŒš~MæWÿÝÃ�Ù`ŒƒròÉ+) cd]ÛüW"�D-+C\æ§%€12.®Ý™DοJº„Â'ÏÒJÊ+«1quþXÛøÂ)¸TI›3H±]Ƽ¢K3ÇÎÝá72!--áÙµíó׾›5H ��;bãr¿ÈœÂŒzíH5^¸ØFIJ[åî=Ù/üÒ¨Èù£–¿E_…F z Ÿý„GOÿ1*œê¨=ï­"žžì¸á5íXôUÊw— 3104µÈ?KÉ@ßÁˆß|Þ�‡.u5 ˆY2�À©:ùu2é’à(¤Ò -S¬ utŒÇì*™~.p­ àµg_~txXÒÆá&ý¬Ý®É. |°ÕZFZ½ÈØôøõÕù¤»«²6³ìòÛ%òƧ g\4ñ��yû=—Wˬ(£Üß=|膱 �€×qó?9)kq?%MÓ9¡´ÍÓÕDÿ ¦²£ï¶á+lt5{/iWGá}8É-}Plù‹Jû˜ƒS±oQ÷ÜQ--:.¼X7~ïã ï¾D�� YnØÒ7ÐÍ´ù„c̹×îýnM‘Zà÷õçœ÷£Í³þ1úZ5ñ£�©TjÄÓybY =ÃÅc¿ï¯q“ݹÜ.g•T5zVýQ‹Œœröå<vï-"bs²÷Ùôßo÷œ~ÚNöÛë4¥›j·:÷çcŽ;k࿲4üÒ‹æ'~IŽñÖ—Vvæn«˲âVP‹D ¾/êªË/"ê}×âð8‡ÃCœ€–·©ñvŽ.bW]„лW¶ïõwÙáTV’ß/#ðûýi`ŒÓPYôòÔ–kÌ «'h}TO^í›WNm;”&7t¢‰Ì·\Q(k±"0êâ¯j©Ï ¾þ.[~²ï®)ÚxÔ|ÄAÜð÷Û¿í¹ñé\}§ ®ÑÏg/ŽWûhS« ]0tvŒ¦ýÊK'œÕà·>§–§ºÿNí¢ \ׯBí @t#št.É÷»Š£0îN“x]@µY‘üYÈÁzDä3Ý’ÉÚ‚ô€@ ººo @ (Œ!Â@ (Œ!…1@ PC âó!æÀ=†4ƒ@ ˆnóÙ¿6öý@ ?@C‹Šø†Aa @ ß]ë×I„_±ý']"„PvZh=+ûœU B©s9=MÇÜ‚6ó¿ßp>k’o—¶••¦âìÌݦdëcù½…ñj©ÑŠèÆÏ_#^Éåñº£Nå÷kÏÄV¼!tš¢šGxãgô·¦ Ä—çó_7ÖgcXÕ­8™)ë%÷|WVíÉr Ê­¨~{u4ˆü}m úž„·U5ÑË ‰_Sz^É…‘·§~¸='gêâ>•ªØãtÍ¥¨6. ëœò%ç™wØŠ"z0UÝ…ÐXÝÔλ¡+ E�xÅ›.(¬X=X�NqÈN÷‘Æ*8!¡—Õô?–¶&âU„íté/!$jÛ/½šÝ,é9#r¾šp iBHÀëLû}RÞî¿^4J­IšåT��€5en9HOB¡²‘ï{01 ;ší¶‹ŠS©U Ÿu6Öãá”g•ú·ï«®¢$‹k,¤7k;Œ2ÓRUV KS#>›ýynUäx¥l¥[tñ|jó{«ùóþ‹‰!eÈ}vƒn6ÇþKþÀ?$ ?×B|ØÖ”vþ(NWÝ…}yÿ«þÞ®}��æ› ÐÚ‹ß‹ˆ~zý7ƒèíã'Ìd�¸çfMôÍ{úezâ¿+宺ßúŠ!þ¹ÌÀáñ­µyõßs@vœ?H� o»hþÖÞ'UX” SД¼w,ÕõH±íú+áq‰ñQW7;4^YõÇ«& Û t[íbU*YÄÆšsn­ù©Ÿ<„ªRgî¬âaU·FÈõ{Ë ›ª!„¯³ –•ãkIÐìÏ,¶ˆ$­+Q­tЗƒ«=q g éM„B¢šùôãY,��à×¾:ò‹:B(Ûw܆ BöûU,ËßOû8÷W!A¼*mÑu:[dtÍ»õOšÙæÓÇÕÝ8óš!bѬ¾w¶›’Í×î[2Â@]LѲ[~+ÿ£œ™iÇ<ìú)A!AÓv®_BÖT"5ðQ­Šº–ÙÏÍQ£C#�ÆHk¯Ãú{“MW§°Rב „jó#íó"¨ö·¦µ0ÐRO'~�^E˜¯s_¡ú E'ý&VÀÒ×Åže®!l©¸ä¢9ùw¯d÷9JÐQ+Œö 9¶î—ñ#†šésá”3%ñvd9°ß\Ü÷Ly¡ÿÞŸ› ¿îÌ߃ Έ®û'§g9°¥24Šg)8¯+Ð'Ådêhbø¹˜ZQ í@ Ò8'×OŒÙžça'WNI0Ð~â‚?â_ì(|yžpÅàWEìžÔO ÒÅWs™«]„Y��kιµÎ©¿"„’µ‡xß.Z'§ÒŽT@|ïaŒ_º|”g˜ÉÖûéôÜ„ ®»ç\)QžɈñÖ¢Œ¹[‹a†q‹ÏØ’}ÓX–±Ù¸QD’bA7ÎN?r‰â]Íc¿œé¹äžÑ®ˆìâzB ¯K2€WzÓã§ß¢,v‡gd'\sk8>ÍigbËø—vô"ycd9«)ó€vÀBïÀ²'R¬¬+þt›e³hã–O`ž|!fiîƒñkû;ãèU•]qe Ù'Mƒ=&îNf¶Ÿ´á,¼üÂÞä秇í±~¹ÚeãûmQR‰TZñG «}q5IÛu¬NÇwõˆ€K?ëÑ^‡ŠÎw3QÉ–r؆U]!×Ùbñ•_\vN<ŸG¼Qá¼Ïƒ†÷zvÊþ­¯í…§ÅÞöä]XàX&/©h¬.ñ~®¢­­–ˆÊbœ&&Ÿ¢ÞK‡Õ%?É%œh!HJвÛ§!.¢€)æyÛ%>ýÖ‰WJS—Tm™ÛÊ;1ãf7w³ ˆv*nÉýóqøŸ¶,´ŠZDMy¡&Ý®â¼Òë·f9››º†à·¾J߯4lV�øU– Ÿ}¸_ŠËÎÏ~q~©<&~võA¥ŸTÄ7Æxoƒ}oȬ¹rpþ3ƒ¾Ö“·œÚ¤u2´ŒßÕ$J®û~wÒ%ãdNI5¡ß§ÁF:Ú–3u1 nÑý÷ˆîgO,ajd=Õ÷òNjÖ?Çâ[Æ¿n{×9h¡ŒñŒUc‰ñ!MMSÏ]*³_é¢CP²_:xïDDµè–þ^ 9y"@~Ê_Ôñ€¤7yç´œÓ'…³–µY¶ÉÓ‰fܧÙÈO`„d´öK%­Ò⯽Rìl ÅV¢h¸5ùUé°#0æÝñJ­»B&;3Ø×ÒŽ<U^röo·†Ö3vù-Ðk³Å«4þˆßJ's[×ßw'ĉ0‡ÐÈá]Z1WÝXƒ(b¤æ»é™–—ÏhÈ­+®Â”tU[?EPé£j k˜bž·™Ž°2/JÑr[:TñýÊ¡œŽLez ³[JçTì’¤ C3Vè`AX¸âÜ¢;Ceœ=àaÛ×pàœ½'=´>Ú5iV^I ïUæÌK×·N¥õ1²qš·x¼.QìàóƒJ;Rñ½‡1&=2«)g'•Òº}nê“Ñ\UPÍéb¢ž­¡`ðJ1›·È*n¡¡ëR_ÿG9�€U›MÆ[) QÛÞ^£&9³–��$- m²  ¼B/f£}\`¼>}³aŒ`QI޶ÈMñÉñÇ¢"î1oû é×2sÀ«šÛ¨V&f7%㕇í™a­Ilä;×VÖ¶ô "¤’RiŒä›Q§©ýÉÒ 'D R‡Ñv[èu𢾂(«0®�gâØ_VðVÆh”å}§MÔj,/xGRÓ•g}láÀÁf°�I†ØÎݱÆÄƒÓ¦]Òÿ3ø¯áŠÝÙ!lN>{>×`îBkÙ6M‹$Cä77q°î(Aj§’ªâ¬¢Øœ™“¥‚àræNäöÕiVf~tf>ÙV¥C%‰T©xU Ÿ1ŒõŒ#÷ùPÊÃÚíkIîbˆ'â[—|l‰z›²ÃE¯êá¶qÆæ‹C«ƒˆvÚ2¤Äµý†µ¯l}ÌÉ€Òê;.j8!”µ=XPÿøø½·"v¥Úˆ��ÃÃÚ¼n?¶­òœ²³Èå|r9ƒËÇž¹«â?¬çˆJ*¥5gÜ~Âwœa.#ÅÊ®8ÄêPm¶…lL5É]‡ïºŠ0‡0xù^òQÝÔV¹#ùÈÔQÛ›×> Yg-�%]5XWü>âsk j€Š¾ EÌó÷+” ¯N^-1[8ß¼íY ^S5“¨¢"ªŠR+A¬S‘tè€Ò×9 4¹vÇ�ÀHï5‡#?î�ºdVq*íPˆ€Ï~ä¾GÏÆ(öÆ åfD'†ŸHBP±pòÜ|øfTâuÇò›gšÈúƒ °¬Ð”Áß9¥ÏŸ—«X™*K£#¬:üD¢LR+qÁ+õbý‚‹:ü 7ïib@\NItL•šµ‘B›"مϓشի&˜ö’ÅCnERJ5·Û`åßgØ»YËKQ5I|áŠô$�� �IDAT¤C�pxÀøŸà&Y¦ÏËzú¦eµ°9÷YSrK_4Qs€ ¥,¥„õ¡ÃM9:uä¦Ê%÷l¦Ô¢n¨d5¦ëõ½4Á:2÷]ô£Û}(bž·Œ °šÈãÿ«¸Äͨí¢*·*‹ÎÖÜG¦­_¼St&̧qï9›.´RÇ©)k䋯8YßV£¿,lQ«86§“¦iP ìŒ`úݸLR ¡ÒO¥ ¢ó³±ž1Ãë¸úÎSº¿`†Ïo ò³bïý³y•_:«ûIšoüûzxj~ii΋  4޶eoAwê:gö%¯þÏßä%5ÅÄ{MšS üŠÇÇC±1K]‡ZµBsòtëp2 ¯Ã¯”²#6.÷‹Ì)Ìxð§×ŽTã…‹mdÛvDZV†¸Ì;OK8�cd\\»3 Àî*Sp?¨’6g¢è¸Zý&1þ=‰ ‘ˆÔ! (è Ÿ<K+)¯¬nìΗ^ zSW9ÖžôÚt3!¿ )pÛÒ³E� •—T´Â€i6üÄ'-'óXoNºÿíÕ`ß¿§ÉÓâããã2ʘ õŸ»nTíé…¯Çf&?<°hS¬þµöŠbŸ·ÚþØÍv˧ iÇRæ©9Ž5$u¢ÊšsûˆX§"öõ:³sPê&»1ËG%$'<¿wnÛ,ÚPŸ×Íâ+NЛ¶Ú±ÂoÓ…Œ& kκâs4çãõQQfÅëLßö39`îÏ»ï¾Î-ÌM½xê~±c‹SiWU@“1éCLœa| @ ��§êä}g•òÝ%ÃL MG-òÏR2P‘øåé’à(¤Ò -S¬ utŒÇì*™~.p­ àµg_~txXÒÆá&ý¬Ý®É. |°ÕZš!$ïí½ãOáÈyC•ÚÎ&LfLëvújKrb’å†-}ÝLû˜O8Æœ{íÞïÖá°äærRÖâ~J*š¦sBi›§«I>[ر¸¥Š-±½Óq£V:ؾÇfAŠÓQˆÖ!PvôÝ6<c…®f/ãå1ŒnÅ1kw·èü;o ¡ãîÚ¹Œ–#’ b¸„¢qšã¼íj‚ïä°��X}ÜÕ‡õ þѦñCZj9pÊ©<�ƒ7C¶>ôl6ÀùPýœËw–âŸ�xoÿ;ö½bbï¶*Æê^\z¡<sAÛͲŽ=_Xó4ûÅO€X§‚r6>O’n.ÓŒÞ3{ÄÀ‡ÏÙ.?÷øŽ!ÂÃ.¡Š¼ÎÏW‚Wƒ¿«)õ2žù`àZÇû‹6+NmÂ?‘×<ØgÝhF}Œ†Í÷Kl‚BËÙbUÚ5U �R©Ôˆ§!òIJz†‹Ç~ß ^ã&»sج®e§¬Þ»»q²÷Ùôßo÷œ~Úîû÷{væn«˲âV¾X¡üÒ‹æ'~IŽñÖÇCªJóµ´ \–¿ªo×TÕ±Ør.ñFÚñarŸ_Åo¯N°>2þùóÕF᮹/Yñ® ÄW ¶ò­àEÔ“`=£&‡ÃápxˆÐò6#5~˜ƒ³¸Üˆ$rèÝ+Û÷ú»ìðH*+ÉŒï—Ø£fc¼Ú7¯œÚv(MnèD´þ¹à²å'ûÝãcV{þì½Ä‚²ò‚×[~ý«€¶ÐE¯Ëá^Á~û¡) YŒ/àÈå±qš+Žyõë÷¬xOWâû„ЃdÁjC £i¿òÒ g5tªésA2p]¿ê›”ßtÆk©×[&�òÆÖžYÜ·½!^{ú‘‹_Dn¼ÖäC—&÷5~¹Š÷xU PûÌ@µY‘üY?VD1Ý’ÉÚ‚ÜPŒC¨Œ>ü¢ô0RètC_SD D÷Á>§+@ ˆ/ÈÐíÏø†Aa @ (Œ!ñ5³7†¶ÆÑ}>ÿ4C Ä7 c@a @ Æø$a¬g\8ÖnÁ Šùßo8í^KICè4E5ðÆïÀlüêˆí?é!„²ÓBëYÙç<¨JBH=˜ËANÝ)Gú^`¼Zgj´"ºQ¼Û¾ZóJ.×u*Ÿ‹\ !)št!É7zû3Vukü�QÓÆm_Tï#ÁåL]ܧRqŸ 8œÌ”‡õ=¨úÊÃ-¸²jO–KPnEõÛ«£AäïkÕ÷$¼­ª‰^fø5IœK?:Pm\@…À×°ŠköP$zkâ›{Š#õ@ßîJ )ØtAaÅêÁîóþM†Sô¿uSíLz „–ûsZ"^gÚï“òvÿõâ{""¾ŸÙØ×þy™–––ò:òÚµ{&-RÛ. ãÔÇüá¿ÇY ÿ#ZSžUFè?Þ¾¯ºŠ’,®±Þ¬í0ÊLKUY,Aùl6ÿsˆÅ{vƒn6Ǿåv¨â|!!......âäX`²ù¿Wqqqqq¯®3§ôGê¾ÝyØÙ—÷¿êïíÚGÒO}‚&ƒ±PÏqñ®ÎJ·]4 kï“*ôU c-” LÍÍÍ-m†ÏÜà;K½.9©‚+~]ˆ¹Û”lùûiçþ*$ˆW¥-ºNg :쪈ݓúÉ@Õ-¾Úr…½T4çÜZóS?y!T¥ÎÜYÅk-Èê«»'ÉBH6˜ô÷ËšÚø£n–JBÍ‘>O*[FÖüÚWG~±QÇAeûŽÛTÈåì„XÕ­²CýÞ2æª@!Äë,ˆeåøZR 4û3‹-Ar‹ ‡V:èËA‚Õž¸„³ †ô&B!QÍ|úqÁÕÝ›_u-³Ÿ›£F«S”­i4F³1Q#By«4F3%EmÛNBNþ™Ÿ~:“Ï��VúÞAµoy�0ÓŽyØõS‚B‚¦í\¿„ ��0Fš¨*tÚ‘š^.ëMs·îÜ’†gC¬HWn|[¤òÅ«EhX“÷Jvß™£Z#”h·oÛdÄÔkιµÎ©¿"„’µ‡xß.Ö©ßÜ}Çv¯™;¦¯l»‹”(&SGÃÏÅÔ¢>ÑCÂXÙã3è®>©Ò²Ú»ƒÅ2vÚÑ‹ä‘嬦ÌÚ ½Ëø€WzÝcâÖ¬1§csóB×üÖ?hNF~uèòQža&[ï§Ós.¸Vìvžs¥XÐw°SîÊw*&%â°íËM.“§,‰|àYjôùñyÎõk�ðJozüô[”ÅîðŒì„kn ǧ9íLl/g§Ä(QžɈñÖ¢Œ¹[‹a†q‹ÏØ’}ÓX–±Ù¸Q‚äéG.Q|¢«yì—Ó#=—Ü3Ú‘]\BOôuéC†Ý«}q5IÛu¬¡+º%üzîˆÝ«ß~=›Çf¦tßJŸræÄôÞx�ølœ…—_Ø›üüô°=Ö/W»lŒn€K?ëñq>#u g'Ë•Z$1ʯ–¶š¯K¼Ÿ«hk«%мn/ºüªK†Ï>Ü/Åeçg¿8¿ÔF“ºQË;1ãf7£N!:št!‰´!†J¥ÖTpê^å'^¤R©—4ÖUU•wíÖ}ø•7‡ IH¶õ‰¬áa†qò[“ÍþÊb·{ÍÊØe4F5 r¨4SYí—§ úñx ¯ðzÁãÆ(o- ìþ¬á£â eòƒº6ϸÅçìd¶¦0[Þ³3÷˜É 9[Âceì2Jnñƒ™äÓȺUò1 ÃØÙû-Iæg±1ýø@œªû£Z>Öò*T÷Œl'§8yÄŠ‰ cI>ç‘ šÍq«õeìÏqÛ–Ü-±1 « ­a¼9‘)ʨ anŠvªˆ+¡RÆ)¼è¬(3È{¾Q}NPODFµ÷¦(ë­zÕ$º ]q$Æ‹¥ZäÑÁµ-©êNUìõkd£89–Û%ß«|iÔÂLÙf„7Ý“ÉzoG‘nߦÖ"µÇ-<=„ 43¤ŠßQ=š^.ï -öe³…mü³it`5†@´å}tø÷ÆÉÄÞÿK~–÷,ýudFâó¬ä˜ìÔW¹éqôÌ„{·ý%„˜ÆºªÀËG¨TªÏÿ^o»+;k;•JíÙ{c©I/œš×|`ÊÜ«Eœ‚"iYh“/ñ ½d˜U >«(¶�gæd© x,gîd!ÝÈ™IÌjÊÙI¥´lÅ“L}2š« ª9��@Ôb$ײ:¤£DÒÔ_¶¾ƒŒJ°Šbó¡Éx+EAaDm{{šäÌZž9»$FW$׳5”¬�™Í[d·ÀÐÐÎu©¯ÿ£œF €îŠÍH¾EqšÚŸÜuÝô~9utDê?Êg;âÒº6É+Û3ÃZ“!„PÙ9¸¶ª°–+º ŸÂ‘:ßQ¹5wFZÒôß–Â’R$IÊ­á+ É‘ÆíEj™ƒ™O¶UéÚôG’!ò››8hw öÆÚîXX vZtàØ þ¿^Ëëàœ0ĵm}0€€#ÞWG$JY]Œá‡\(÷fûZ’åà[s@áý;A±mÞµ—Pœœ]£+’ã‰ø–²el‰z›²ÃE¯êá¶qÆæ‹C«ùÝ»9ãö¾ã s™îè–_—™Ò @]nNk°æWyNÙYär>¹œÁåc ÏÜUñ&© t$ pÍø˜D9;*Wiì…Ô´´´´´´ô+û“:#’8å‹P‹xù^òQÝÄ{¿"Ó¡ÛK§½NÁkªfUTººÆŠ@|ê0Ö“¾6†�@S5£Óç’Éú¶úýeaˈ˜U›Ó,•ˆ{cr3¢¢k-›¬?Ø�Ë Mi¼å”>^®beªÜÙ!CÄèD‚Š…“çæÃ7£¯;–ß<›ÐÔ-±Y9Á÷önÖòÝ_ºnÞEåwϹdmž{,ƒ��ìÂçIlÚêUL{Éâ!·")¥š+¶ ]q$œœšhl]r«ß6ò;ФÄrqòú¦ææææææf}Õ;êÓß‹$Aù"Õ"Qs€ ¥,¥„Õ)·ÿ¨;#˜~7®¦Kí˜[•Egëî#ƒ:UÄ—Þ롳1n]~fzzzZJlèéõ+®×j9M4êôm‚Þ´ÕŽ~›.d4aXsÖŸ£9⊫~“ÿžDºÜTßyJ÷Ìð¹ñâMA~Vì½6¯òK—öDAwê:gö%¯þÏßä%5ÅÄ{M®³òãu\;+†”Išoüûzxj~ii΋  4޶eoRwÄæÜª¤Í¤ØõJñ+¬EÍçê6—¹~§]r¶xIg@Ô²2ÄeÞyZÂ#ãâÚI‚ŠÈ*tÅ‘Èc”“O^Ia`#ëÚæ¿1(AN)Ëí¬o‹U¾µ£0`š ?ñ‰àH¢4n/²xéÛ~&Ìýy÷Ý×¹…¹ ¡OÝ/n7ûãÕå$ÆÇ'd”±0FQêëø×)‚¨°†”‡yjŽc I¨ÛF|ñÕ;IÃį¾¹áÞC,¯å Ÿ»±w„�ý‘�¼ÎÏW‚és V[OV3p\¸ÖñÉAÑÅE­t°ýðÞþzE¤_ô­>K†ý] €¬ÍÉó©¿oƒ×ž}ùQùÒŇ›TŠÁ˜å×·ZË�À–rA@ ��§ê$Z ñS±I„?E!•m™²™^‡ŠÞðùçך‘�ì²ØÜÒÇÅ–«ì¤ÙU-!¬¸·ú×k[^m´‘@vÚqÿin£7[ºùŸ|6kq?¥EJj}½7Oðå‹­BWIÞ~ÏåÕ³çVÜFÑ¢ÎØ°aì»%hW'M¹÷m RùüŠqjiŒqšã¼íVúÞÉÙicI–ÆíÅ8€Ú„"¯mööq£mmäÞƒ=öS;‹Ö?^`3#Bðúè´¡G²û³¢ËòXÝ‹K/”gþg-‹úTÄ'ˆ&K©TjÄÓybY =ÃÅc¿ï¯q“ÝY̦®É«ª¡‹ŒÖ-8Ùûlúï·{N?m÷ÍôüÒ‹æ'~IŽñÖÇ# ~"[Î%ÞH;>LîkxÀÛ«¬Œþ|µÙ!Duy±àEôÓ=£c)‡ÃápxˆÐò6#5~È'q¹‘)²¡w¯lßëï²Ã? ©¬$3¾_F úiàž¯öÍ«§¶J“:Ñä[Úbà²å'ûbØ×CÁ~û¡) YŒ¯â¹å±qš+ŽyõC1 ñ5 ô˜™wmè‚¡³c4íW^:á¬ö-÷"¸®_… øuÁkO?rñk•­5ùÐ¥ÉÈÆ~t Ú¬Hþ,¤è hQ@ (Œ!Â@ (Œ!…1@ PC …1@ PC  c@ 0†@ ÄÆøÕÛÒ%Be§…Ö³²ÏyP• „z0—ÓÓd地¡˜ÿý†óY“|VØ™»MÉÖÇò¹=ÓB§)ªy„7þï9¾ÑÓ¼ù c=¬ê֜̔‡õ’ЕU{²\‚r+ªß^ "_¨¾'ámUMô2ïú+Û¼’ # oOýpU%NÎÔÅ}*U±ÇéšK?:Pm\@…àn¬âš=‰Þšøæ®–ÁÉ9@Åi.Ži½ù§þÑ,E-öf·ô}üÒ vxùi÷ë>c5ó[Q>ãø«º5¢½Ê>cçþUÜId«üÄ’ˆj;bm÷ø•Ô.'£;lÁ©„z¬[bžæÿ…øF˜SžUFè?Þ¾¯º2�üÒBz³¶ó(3-U²”s96HŸ¡àx¥l¥[tñ|ê¦4Ám+8õ1øù’bHÙm¼ »A7[hßòkúPÅùBB\=�лÙiIáoÿ]vÕÄ€“éÝžïb!D‘£{¯}ZÈfJ€™ý ž¯.“?®z±&€†ä»É€zl€Â·=„„áGž¶“{ßÁëõù<M‹Ï檊q§/?Vÿ”’ˆl;?º_It9‡“ÏýFÈ2ß½òÿm‘·0É9;JQŠ®/:; Íß”‚fcÝ£9çÖšŸúÉC¡*uæÞÈ*Vuk„ìP¿·Ì°©*Bñ: bY9¾–ÍþÌb‹HÒ:‹·Øph¥ƒ¾$Xí‰K8»`Ho"„Õ̧Ïb��¿öÕ‘_lÔqBÙ¾ã6²ß¯�Xþ~Úǹ¿ âUi‹®ÓE^‰ÌÉ»õOšÙæÓÇÕÝ8óš!bí¥¾w¶›’Í×î[2Â@]LѲ[~+ÿ£œ™iÇ<ìú)A!AÓv®_BÖT"5ð‘CWE]Ëìçæ¨ÑêeckF£ÑlLÔˆPÞÀj à¹¶ �ðëbÏ2W„v¦,™þ†ÈåÜ{UÅ�pß>Z7lý2ÃÌ»© ��h~sÿU“‘óPu Róâ,�¿*b÷¤~2BõA‹¯æ2[†”Œ´öf­¿7Ùtu +u­ B¨6?’!6O¬9çÖ:§þŠBHÖâ}»Dh͇Wº†*«åz.›)b<¨Ú¿Ey4fcªAææŸùIAá§3ù��`¥ïDQ›ð–'0œh£Kãº;j»”'>‰Hß]G©F¢"'{?•h°1±U1Xíý™*Š.AU˜Ô™‹j;"l÷£ù•¤)ˆ’©¹¹åÀÑžûÿñÒ¬xx')N|GÑê?x²œ±h•Šhþ ‹~wt9Y �ü·—†ã â¬Gõ��Psw¢¢Ö¢è& šDaì}O[º|”g˜ÉÖûéôÜ„ ®»ç\)QžɈñÖ¢Œ¹[‹a†q‹ÏØ’}ÓX–±Ù¸QD’bAÃa§¹Dñ‰®æ±_Nô\rÏhWDvq =!Ð×¥À+½éñÓoQ»Ã3²®¹5Ÿæ´3±e>ÍN;z‘¼1²œÕ”y@;`¡w`ÙǃVֺͲY´qË'°O¾³.úAŒøµý‰€qôªÊ®¸²††ì“¦Áw'3Û p^~aoòóÓÃöX¿\í²1ºuµ^”T"•VüQ×Õ¾¸š¤í:VGÚY;eÿÖ×ö‡ÂÓbo{ò.,º,«ÉT,ùß”F�°º×!†Ó]&Û“âæ0à–F=-Uw£[)Zóâ,Â+½î1qkÖ˜Ó±¹y¡k~ë4`��.ý¬G{³*:ßÍ<D%[ÈacVuaELžüªK†Ï>Ü/Åeçg¿8¿ÔFû°NÃ}²rÄÔ�êé˜ëžÆR N‰¿ž;b÷ê·_Ïæ±™©Ý·Ò§œ91½·ànQQF—¤Ìv>#±´&å¢ê(¥ÃH®ë4O‹Ò›×2˜-¾õÜÿÏqáHU(mæ"ÛÎG¶“C~%²§È“�—Åf‰ï(Zý‡ÓX“yPœJ?š¡)ÚL2ªzQ 1åß4(Ãè·)ó~fãl*#±Ïü‚P©ÔšÊNÝ«üÄ‹T*5ðò‘ƺªª²¢®ýú¿òæpH™ü øÅçìd¶¦0[þÄÎÜc&3äl ÆÄ'aeì2JsÕa†aÍq«õeìÏqÛ–Ì¡ˆSuTË$ÍÞO…êž‘+c— ÐXÕ(ø\ý£™Êj¿<mh/ySÜê>Šãn¼ãaXcä"m•iÿVñ1 Ã8ùÇ­Éfe±1 CðVÞõ~ ÖR“sÃHZÞ1Œ¶I„©½7EYoÕ«&LœTâ•&L]èl ã͉LQ6hsS„´SÔ#{öƒjjB\T¥.‹•¾ÓꮎkÂ#~Õ1Ú˜ÐT4Amà1:‡_~s4IÆ9¸<O´æÅY„C?>¯á^/( 1Ê[ (»?kiVŒ“û¡»oenáé!¥™!›µ­8iÀˆž}e æÝ,d‹ñØv­JÙýY†a§ð¢³¢Ì ïùfDõ9Ae<IF¯—ÎuÛº“doá¢ê(•Û´Ê6Šm㥜Ü#6Dýuñ͆ñ«þª¨8õßj>&­7Šm;B¶Ã~(¿’®“ÄØ•q'\”ÌÄÛå<ñEÿ‘ Òšóëõ²£®—ñ›ãÖô3œ»}l¯Gó8쬿ÌÈ6Çó9âûÌ6¼ÿÞ8™øâÑûɯÂR㞥¿ŽÌH|ž•“ú*7=Žž™pï¶¿„ÓXWxù•JõùßKãmwegm§R©=z6ƤGf5åì¤RZöI¦>ÍUÕœ.&!êÙ –Ü)fóYÅ-04´s]êëÿ(§�°Šbó¡Éx+EÁ^QÛÞ^£&9³–��$- í–7¼B/f£ýlŒñúô͆1+Æjà�£-rS|rüq…¨uèbÞöÒ¯eH„W5·Q­LÌnJÆ+Û3ÃZ“!„PÙ9¸¶ª°¶eUB„TR*‘|3Šâ4µ?Yú·þPcyjHjºò,©Ë"õ=²WÉ“¨·Œü'1\Û±ýd”¬'ä‡$Ô5¦…$p-&Û‹Ek¾©Hì󜙓eËÆ‡œ¹“Š3kûa¿˜<ùÑ9˜ùd[•îÝf'ïçL;é?K(~oìhx\+ñ»i²��@ÐûåÔÑ©ÿ\(ŸuN’Ñ+r¥r]©½]”oˆªcZ™¨.ýÉžVïn]Kg¬&êL»p¸2”6s©ÛÎäW5wFZ´Ö[ ëãc̻㕠„$uÛeOû.»òÏdÕJ±…hÿéŠÑ¸Áä”´º·ÏŸ5 ˜9sV¿Â„šª¸{ùZ?Ùi$÷™hQ±ÅR| ?äB©ÐÐ-Û×’ÜÅ$OÄ·8“ì€-QoSCv¸èU=Ü6ÎØ|qhµ Õ@]”à\Û?ahçÊõ1'J«ï¸¨á „PÖö`Aýãã÷ÞŠ°g1���ãqxX›×íV+‚<§ì,r9Ÿ\Îàò±†gîªø‹"¤’JiÍ·Ÿðg˜wµ!ÿÞ[ ìDY@Öl’-%óßWÙ1ß™L²”xÍa£URÿMH}ü¼Ö`¼^’æE=Ç�À>ŽÁ‰8ÉfiÒŽµ€×q˜`\ÿøÒyö.„öÆRõåñëÒ#Sš¨ËÍêºE]Jוºtä±Ýhe¢ ëâiõîÖ•´¦êHÿ§¸q^vÊPÚÌ¥o;?_)½š––––––þ`e’ˆ‘ÓÈÏ“’’R³KjãO×®•ÐQˆñŸŽ‘³t±hŠ }ó_¡Ñä†CǪ§‡ÄƆ¤R†Œ3¢t¥Ö?^£Øƒ”›ŽËº”„ báä¹ùðͨÄëŽå7Ï&4‘õ`Y¡) -{Υϟ—«X™*K£#¬:üD¢LR+qÁ+õbý‚‹:üf7ïib@\NItL•šµ‘B›"مϓشի&˜ö’ÅCnERJ5·Û`åßgØ»YË)ÚL¶à¾¾~ãfŽÎx[U�£q4NÔÿ¨ŒÛ—,Nó2bŸÛêcô—…-CTVqlN3&ά�àð8€ñ[dW–¬L¿WóQgW½÷Ém×ôåó®tjÿš_ºnÞEåwϹdmž{,ƒ%Éè½ú~Nooù¼ˆ:v¡•‰‰c“¼¬Ë.E<<ó”àä5LYÚÌ%¶!ÛýP~…“×75777777ë«NÊý,­¬¬,ŒzËã;ÓQHTéGVµÐ§4èܹqƒÕe Ç Æž9Þl1ÉRNB­q(Œµ®¸úÎSº¿`†Ïo ò³bïý³y•_:«ûIšoüûzxj~ii΋  4޶eoAwê:gö%¯þÏßä%5ÅÄ{MNšþªâññPlÌRסV­Ðœ<Ýz'œ Èëpq†±q¹_dNaƃ?½v¤/\l#±S�� �IDATÛv-OËÊ—yçi `ŒŒ‹kw&IêH£NÁý JÚœAŠ_È@xaN5w÷>&Ø;ÖOä,'õÏ?{4™@s±â4/ö¹Þ´ÕŽ~›.d4aXsÖŸ£9âÍ Jº„Â'ÏÒJÊ+«˜<ñ:Ó·ýL˜ûós sB/žº_Üj;BïÉ~á—FEε4ø­ÈÎ[ý&1þ=¯S‹|~僵ó¯¨ù\Ýæ2×ï´KÎ#éLñFWølÞÞæó"êÈ—:á:&æ´[:Âë8{ ,?·bÝCÒ¯¡JÒJ(±íÛŽûãùU'ŽÙHÙQHVéÇK·ú£F(f^}Â2Æ€dÍ'š”ý[Úg U� }æw~Ä£âº=”™ò e›•I¿ã3ÉLY0µ×¡MÛú_)ÄClÁžêQ:Gð‘ŒîC • ��Pô†{_Hgð1 Ãx5/Ï *GŽY˜Ïú°Ûšc¼XÚ[Ö)¤¶í.ùùD¹IÁÂÛ¸Íqkô Ñ¶”ÆvG<ÚdÅÊØeB²üýÔGm<�@}ð’k¹Ìv›çXsÖùyTH2ʽtÌÚu`ºšâÔ‡õ¥­´6[ó'l•G^~Ë“b·íŽtWÊjÍñ™‡ �ä A­*beì2�XkÉS´æÅ?çV„ùN0”§(¨éPgìØå(§êþ¬AŒYù qOèC��Õybóä7e][åh ��äÞƒ½os„*Þüæ´‹Éì·G¼Žx�õôÝ5ˆÔ ¼ïg«‘lö¤4‹5ºt®‹µ;þ#M’6öQGiŒ(ªŽö—㎠Dⵃ�¨x<©o“Vræ’Û³½í~ ¿’òˆG¥IÕQ`¨´}óçWM âØÿUò1 cç° ×ÂçŒÖO‹«õ—<â©TjÄÓybY =ÃÅc¿ï¯q“ÝY̦®EU ÝîÆUNö>›þûížÓOÛÉ‚ïvæn«˲âV|¹/¢óK/:˜Ÿø%9Æ[?†Ñˆ¯Duy±àEôÓ=£+8<‡Ãáð' åmFjüNâr#SdCï^Ù¾×ße‡@RYIf|¿ŒÀÕŽxµoâ_„:”&7t·‰ ²ÿg‚Ë–Ÿì»kŠ6Šaâ; '…1¬6tÁÐÙ1šö+/pVƒÈ8Ÿ ’ëúUH …±O T›ÉŸõcEÓ-™¬-È ‘ÑDWA÷!…1@ PC …1@ 0†@  c@ 0†@ ˆo.¿ã/cÆævúGªQC Ä—cÜŽB“Åäp1ÆÑifupÓQMMm²Ea @ _‚êêj.Wìå0l6»²¢ü{cÜ‚6ó¿ßpÚ½–’†ÐiŠjáß7ð«#¶ÿ¤K„ÊN ­geŸó *A!õ`.ç[´fÉMB&_Òy>­f>9ìÌݦdëcùÜoKlD@GÏ ôm¹ÈHÆår³s²µuõ¿‹0†UÝ?@Ô´qÛUõÑ}æ89S÷©TEÜ'('3åa}ª~‡òp ®¬Ú“å”[QýöêhùûÚ@õ= o«j¢—¿fd¢¨6. BxmkÊÜ:sž„Be#‡_÷>(`bŸ¶èNú« ØÇÅB !„DÕ~C\w„Uò?™SuÒÉ Ê}h“–{ZÂþ´¾ x%F 4ÞžÊê’”3ÜÓžœ¢ÿ­›jgÒ‹�!´ÜŸó!†rß=Þ5ÝR!”7šðûýR.��pŠCvº4VÁA ½¬¦ÿñ°ô}¬!ùÜR‡>²B(ßÇÁç%ÅOŒÕÀ¡ZÚz…%ïÞ•3™-—È677¦§§ihö¶`Û…l{æ…Gàpò¹ßy>«:#xÇ‚ “–È¿6NY¨Í¨ùÃÌê œò¬2Bÿñö}Õ•à—Ò›µG™i©’¥œË±Ù€Dúô½ ï]Ø ºÙB{¡Û š’÷޼)ÅÆ{וö}å™Å /YõÇÐ×§ú|Ò0Ö`&ý1nê>ÒÂcÿ·×#7ä¿»ŸZÞÄê_Ò©Zœ\–ÝXIOxxqïªÑ—BNÆßõ6&*ßæx¥l¥[tñ|ꦴN^}$Öp'5> >݈€Í€zŽ‹w¹<ÙèSÐfÊøæˆËøM‹ÎE “¥ßÞì1u’Bâ‹f¬7A¡µ÷Ò—ò.ìàŠßÇO$g¼ÜhJ윓SìV¿›¾ëÂãá}ÈuôŒZE´åò©Ááp6ƒìõôû¦§½.*.áóù‚‡JÊ*ƒ†ŽPë¥ a—®6éy·?·»Ø”µ@˜ï}þ÷–ÓþJe‹-§6O0V&œÊÀ…×òWò*ÃwMìK�¨Ù.:é7^AÕýYƒ÷¨bXSöÍÕcúÊ�€ŠåŒ¿#*¹­Q}¯ìré'�©ÏÄ¿^T×Ä™m¡�бùq·õFÔ—‡¶Vƒ��ñëï|¸EZ¤œbåùX Q÷ð¶bº'“%AróõWŒÔ“ÐdûË×þžƒµ��@P5›v,“Ù=±1 Ãxe×G«ÐŽÑÛÞÌÎ9b‹ƒÖ{’›Ú~’]ý®'|ÃuêQ÷a}��¯Aó8ñºžaÆoLýXN‘…ïDæ7eß\;ÎX��H½/(ºý:ç ¨x´ó„.Vë<"5,R*éoïå׆¯Ô§ëoyBbˆÉVr[´œõ·¥Œõþ·\”µG5v®J0œ ì¼µo¦™�à½?tl1VÆ0nù“ ª^èw⽪E;¤(š^.ï -öe³Û˜Xun«‰9ô£pšÞÑŒvf¨ r¦�ÛÓE\Œ_ýßLe¹1‹¹âÓò>:\9Åår8l›ÙÌlnlfÔ3jëªëk+êªËêk+ 5̦†€+§:{ûsoðôGWŸTiÙíÝÁb;íèEòÆÈrVSæ퀅Þe|À+½î1qkÖ˜Ó±¹y¡k~ë4H·”ů]>Ê3ÌdëýtznÂ׊ÝÎs® 6Ù)weŒ;“qØöå&—ÉS–D>ð,5úüø¼?çúÆ5�x¥7=~ú-ÊbwxFvÂ5·†ãÓœv&6‹—³Sb”(ÏŠdÄxkQÆÜ­m¹þŒ-ÙØ7…a›%Hž~äÅ'ºšÇ~9=ÒsÉ=£]ÙÅ%ô„@_—>dØm±±ÚW“´]Çê´™ásKîŸÃÿ´e¡¥ÐT€¨¢)k7AÄYxù…½ÉÏOÛcýrµËÆèF�¸ô³É)ò¡pfU– Ÿ}¸_ŠËÎÏ~q~©<ÖÖðx%½Þ䚸‡¯+¹¦–bœGŒot,Us3%»U«©Ìg—cë„—iEeÛQë¦YWüé6ËfÑÆ-ŸÀ<ù¢SËæ޲ëkûCái±·=y|ä¢%meÀ+¾ò‹Ë®Â‰çãóè7*œ÷iQµ$‡ìhŽÆer�IŽÜâe8’<™_óVxßã41ùõ^²8Д|ã1ÃlXé¶áºò$ ËÉÛî• M¾o†9’lëYÃk?Xn? [œõf*«ýò´C?>¯á^/xÜå­”¥™q‹ÏÙÉmMiN³3÷˜É 9[Âceì2Jnñƒ™äÓȺUò1 ÃØÙû-Iæg±1ýø@œªû£ZÁP“½Ÿ Õ=#ÅÉ)N±b`âÂXG’Ïy$¨fsÜj}û³EB#Ïn‰aX]èl ã͉BsF”W/`°)QÔÄDxðÞ–Ú{S”õV½j-§È‡msãžBPšRÅëdMÿÌè� jšœ¶hûÙð¢f¾p&âœGœ†"¥’~6†aXÃã™ò€z0‡ÓF ‘••¢‚Ö·ºâ¸ïxÖ¹H[eÚ¿?ÞI†øÒì5‚üjB\TyÚÐI|°2‡~̆ ½âEËT©)vPvÖ Ö!¥˜aŒ—+uâø£ñÕ~sþÝÆ��핯ÚÎ-yU–èãô—GÔñ1þ»KC�@Ûõàý¸„ˆ‹Ë¨`¶-©Í¥Ðl¬;Ûÿ¼LKKKMzùàÔ¼æSæ^-âJNBÒ²ÐnÙÂ+ô’aV1ø¬¢Øœ™“¥‚౜¹“…t#d&=2«)g'•Ò²O2õÉh®*¨æ���Qˆ‘œ`_QIG‰¤;¨¿l}• `ÅæC“ñVŠ‚ÂˆÚöö5É™µ<1rvIŒ®H®gk([SÌæ-²Š[`hhçºÔ×ÿQN#@wÅf$ߌ¢8MíOî’Åyåa{fXk’‡ œƒk« k¹¢åùPH ùÑ9˜ùd[ñÆ–1][Ÿ}{ϯvÊy—9÷g´ÍHœóˆÓ0¾#©¤˜A`�@xo@de¥¨ `¼>}³aÌŠ±8�äh‹ÜŸ\ÑÎf5wFZªÑ[J§Nõ‡Ë Š'©éʳÚùƒ E[™UW€3qì/Ûb£QfØ‘Cv„¬íw8fþFS%âd –eš¢p¸â`‰§M»¤ÿgð_Ã!À0>€Ìħ~O³1wßù•zgÏ¥4£‰Î7±åÖ3Å"(˜š››[X vZtàØ þ¿^Ëë`ŠqP¨K�À�À>eÀ‰RVãcø!JymÇÙ¾–dA9øÖ\ GxÿNPl›wí%'gWÄèŠäx"¾¥lÙ[¢Þ¦†ìpÑ«z¸mœ±ùâÐj~÷Änθý„ï8Ã\øIg€(}ÓÁb.¿"ÈsÊÎ"—óÉå .kx殊Ç0qrоsà ‡Mö\÷ç¹G)/7éÅïý#\hÙMœóˆÓp·¥â–§d5RôT…Ž]u1Ûú˜“¥Õw\ÔpB(k{° þññ{o…#€ÒØ ©iiiiiiéVö'uÆpmZ€P²whe‰ÍZªG¢z6%Û5Atf]i~aEýÊf5Ð2ÓTc$™:j{óÚG!ë¬å ��'«¥%4©†-±™¢7PTæV¡uÅONssó_ýÙØ(ô݃±ÿÁ÷g¿“0Ö®? ©šÁëlB²¾­>FYØ2ÌdÇæ4K5F¦Øƒ”›ü. LÖl€e…¦4ÞrJŸ?/W±2U» F'’T,œ<7¾•xݱüæÙ„¦n‰ÍÊ ¾Ï°w³–oWˆÎ„ù4Îã=gÓ…ü“SSÖØVBváó$6mõª ¦½dñ[‘”RÍ+§Ø‡”`gÓïÆÕH;!¢h›ôÍ5 ¬c瑤a‰RuäåuÑG§È8z Rì0Û+ˆU‡ŸáOôIj%.x¥^¬_°ðšN^ßÔÜÜÜÜÜܬ¯ºðB…”†ï‡"$ge²MŸ—õôM‹ºšsŸe0±OÔŽˆŠ½ûè©“Þ†œg[ÍvÔ€1RŽN¹©rɽÛ†)µf&g6ÞW‘^Ð2%g•$•õ~jD€øÄP(°vÍÚ÷A‹ÉdmÜäC Èä®­åôÔ0Æ­ËÏLOOOK‰ =½~ÅõZ-§‰F”NOéô¦­v¬ðÛt!£ Ú³®øÍW\õ›Äø÷$Òå¦úÎSº¿`†Ïo ò³bïý³y•_º´«.Ý©ëœÙ—¼Vø?“—¼cîÖï4¹NOt\;+†”Išoüûzxj~ii΋  4޶eoRwÄæÜª¤Íù¸ &öõ:³sPê&»1ËG%$'<¿wnÛ,ÚPŸ×m—kˆZV†¸Ì;OK8�cd\\»3I0ä)§È‡ÂJ˜¾ígrÀÜŸwß}[˜›zñÔýâ¶Ãj^Ñ¥™cçîð¿™––ðìÚöùk_á‡Í¤;vq#¿.ñúñÓ‹9b<-9.<øôWÚ¨c5NLÕÄuh©Ž*ȯx|<³Ôu¨U+4'O·Þ 'ò¤^Hg8ñ~(BB ÆÊ½©«kOzmº™_¸méÙ"�€R:$¯.'1>>!£Œ…1ŠR_Ç¿N)läÀλñ×Á«ŸÇ„ß9ä9nÁ“Þ+ŽzëÍI×´ìû÷4yzB||||BFx]×-3Hw—­8‘žð»×‘Bs/Oª ;Ÿ|ǵk×éëë¯_¿Åb±X¬Í›}ôôôV­ZÑÅÓöà8â!gà°ä\J¿ƒ#¤G[Oz3^,í-ëR‹a·"Ìw‚¡<EAM‡:cÇ.G9‘îÛëÄþzŸI¿ã3ÉLðU5YÚ´­ÿ•rÚÄ-ð³!›îÉæW\·'ë¯{Ý,8¹þâ𜪂é˜uùN®‹”³<×í¡Ì”-G DŠ!þˆ‡Ø$ÂE33N¸5ôÚ½áÞÒüîˆÍÉ?a«<òò[žh‹6fÜÜ<ͦ·`¤¥Øoä¯ûB ™ÂG<š³ÎÏ B’Qî¥;`Ö®ÓÕ§>¬-§háÛŸöκ¶ÊÑ@��Ƚ{ß:ÎoHö_5e°AËP\VoÈÏ{Ÿ–qÚg"ÖyDiXŒJÙÙû,€âœ°INŽSг™¸ôÈ“bÖGÇUÄYJR¹ÅçGå& Ÿ¯hŽ[£¶¥0;ÑENœ?tlÑVÆ0Œ[þx»“� 2Ðëø‘Ñr ¢bR˜êÛ#…›¯à;×–™���UêôKÙ†aüò«ví›{kÛáÕÅw·Q��¹~N›ÿ-b£ãŸíˆG£~ýÚÕK/\²ØkÝšU5•o»sÄR©Ôˆ§!òIJz†‹Ç~ß ^ã&»³˜M] Šªºh¸Ñ-8Ùûlúï·{N?m'û­ÈÌ/½è`~â—äo}<² ðUèL™›YÇ*C¤ ©`§ùZÚ.ËŒ_Õ—€´ñP]^,xöèÞ47OŒÏÇø|>Æãq¹>>[�À|}·C� ‡Çðx¿×Fu»eC‘ ½{eû^—þIe%™ñý2‘£ôxµoâ_„:”&7t·É·´šÁeËOöÝ5EŰö0sBÓû­þŸŠaÁêb/Ü®°ù‰¦ JÂ{ÿU@Û碇º¦ïçë»ãóq8Æçw'+ä+=§-׆.:;FÓ~å¥ÎjßR¿G2p]¿ P”ûÓb‘:žÏ7$ñZêõ– €¼ñ„5g÷E‡+~�ˆD¢`fÖÍ|Pë1@µY‘üYHˆÏõUF~Qz)Â@ z.wnœûÂØûÝ<@ Þ#áàF7AW â…1@|Ã|âEÅÐ{Aü.$‘)Èâ ÀA 8ˆ!mˆƒË‡\~OO¾µÄÏÆø|¾Ëô9Ò|ð”ĸ·%E½4{÷51×ÔÒÅãÑyñåàñ¸õ5•ôìâB:YV¶—ºZ×é»d\~3‹]]U¥£ghEŠÃIµ’÷™Ît|Þ0&ˆdâž·­yr«òwoGuQTUo lÝû@t Ä)«j(«jôëoñ"âQEe•F/u¤Ñ¡‚€S PdÈš¥Åù|>Ïfýû?1™L2™üG�Ÿ#Œ‰ø.[^~G0죃a|�@uUeIQá˜ñS”UQôB _99Å!ÃÇD„ÝknfÊÈ   ÁŒ Ý[£  OW¿¯z/MÁÃCàñøuëÖ­HöÂO(ŒaÈË/bsy¶4jSC Œeg¦ªª«+*+wÿûÛˆÛPW£ ¤‚ÇĽFZBt Yy]ýªŠrÆ:Œdr²2i¯íÆ ž,[¾lÍê5»víÜì³YÊÅÆoi6†aXn~  -m`c]¥ †�jkk†ÚBó0Dר«®¨xWÂçqUþßÞyÆGQuqøÎÌöÍî¦oÚ¦‡R!ôÞ¤(HWPA)ÒADz‘.ÒA¥" €ô’�é½ÒËö™¹ï‡HÙM#`à=Ïo?ÌÎÎmgîÿœsïÎXÈmƒ•€úâàä–ž–J’ðpÐZ077KKÏx~ …7~?{öœ%ß,Y¼xE½n6¾Œ=oÆ8>9ƒ¢¸Aþ%Oq…½² caiÂŒ ÂDj†a"5eYÖØ6X ¨/bMÓÿ‰?ñ†y®"˲GÇ[»vÍ‚ .üzéÒ%\îk}&æ+ôÆ0ÆÅ!H² /‹¨öŽó²ÇõC‡��IR™yY/2¶ Vp N ÞX}=– _1Bøõ_Û_íܘ£­EfNQRZ¶“­%Qáo$Iåæ<±²±…®�4�†aJ‹ M¤¦EÛ+õ¥¤¤€ÃåàÕ†J¥"I²âÊF;þ3s³… æSùš=¼ò•Š6&ÙʤŒ§ŽvæÏ{‡T&‹´´†  !äååd² mjnel¬Ô—'ib±‚е’ŸŸ/«°È\©TÍ7_¡PÌžõI¯?Òø2FU;¹ÉÓ2¿X'7—‰œ³‹Ûð¥¥%© úP_¤f‡KL ’4¶ Vê…F­ÊHOurr† bÍètºââ’Vm;>e;~Üéîî>}úÔ·gÁ½ÁµÎ¶–R¡XªQ—–µÓÜÜRnc{óÊ?»÷1%êßÇxÏÖ"Û€zh˜Jvÿ–L&“H$` i:!1Á^ádaõb M›6õmûû3idZB«QA<ûÕÇ7 :êñ•‹YÉm\ݽ­¬mH˜Ï��à5Â2LiIQfFJJR‚©©©Bá£2ÆX£Õäæ<µspô ®h(±Øä¿­^ãËØ?çÏÔëøÌôÔÌôTx40��¯‚@Ip(BYœ‘1ˆŽÆzº|Æ+91.91®IU¯‘e¬Ï{ƒá”���¯ ˜ ���@Æ�����d ����@Æ����1���������1��������Þ.à]ï��ü‘›“§T–T|—/ðB„P$vtr±µshÀóÀ@Æ��øÿÒ°˜¨Ÿ€VŽÎ\. Ò`Y&;+ãÁÝë4Í::9Œ��%1>Î' •³«B¼±&ã‘6vŠà¶Ãîß´’Ë…‚ú=bd¬©ŸÞ’¢Âøèðâ‚\öµ¿Œ�Þ,H’”šYº{Hd¦ÈˆD)•%öެéaa)W)•Z­dì­¢¤¨àqèmWï–nÍáU�P ,Ãæ„Ý»ت“±WòbŒ9\.F cMï.„"1fY¦Þ÷ë cMšøè‡®ÞÁv ©T oB€:àj#—G„Þ jÝÙè!àŠ½]€Œ5iŠ rÝšË@Ã� îXÙ8äÖp�L‰Œ¯–e ’ €ºCQœš'’AÆ@Æ���Þh@ÆÞ*þëUtúžní¶$ê_Oq¥WG»ùMº©¬wÝôñ:¸vÙN7}.ÿê7=¸Aˆ](ÖÆíí'#‚ðÛ [{±.z¹?pKrÕ³C§l ø¬Žý^raÔbô•Ò7Õ¼êûÓ‚ ‹O®)߆þ‚q=>ûÏÅtqªëŒSûÏÅÔ+aíŸâ‹Ã¬>¹ª¬ëþºô©?´1X¯«²ý’ŸFÌÊȧ©È˜.ý²QÝÝmr…ܳC¯±®å¿‚•âtꎮnw¤¼µ—fƒ/ïH'Røþùâí’òó´1ýO&äägýÒ]ûzæï–+B³ò nNváþGצœZп¹EÁ5wk3dÉ¥\щý¯V\I±WÿQý¤õëåtÒæïÍÁ•,O<‡cÙ¼ÿÂÓiºF8£¥‘‡çô÷·æAH\;}ºáßìn”^ƒÅŒÂï|,çíï$FHŸ~fÙ¨Îf$A+ÿÁߞϬ\#&ãð@A]Žè·LÎ…¯|¹‚à…Wª_°:éôwut3¥‚ xV>=Æ®:¯Âµ™«NC£:¶ï\ôôZ94xß¹èú$¤3ö ÅÍ—Ehk¾l×k=>Ïr Džý>ÐÜ„Äé·›·Ü”¨oXž³2öyÉ"š„Œi#× ·5­ÕÂ_N_»zþô¶i}äÊ5¸ð¯ ýÓ˜lN³>\-Íd"²45Im×¥«·¹©„_—sÍêt}Ï¡ ÿök“;,ÿóÎÃÇaW~úº¿mÉSUÃJ©gõHËßî^ÑφªOÌ“K¿&yè`QyB’àtÙq'"âqèõ£3]o¯<êçtæå £z¸ºWÐÈ=ª¾kÎÞ ½~p²óí9ÝZŽ?•Í4í.¦‰=y¡0`âÖ³Wo^><Ýùæ7}ÞÝýBÔé´Ÿ'ÎKhå† MèÒY§¿ìØo‡lñ¿—u1¯Ò#Õ7ôi>`Uœ÷;/Ü~zïŸ}szò..^p¥¸‘Í…ëͰzš‰Hɧ¶Éôé§~ ‘ùÚ§ÿüS„ÊÈ1¨\l꺿^<o(aÞõë­Kß±&ŸímxΕ²ª©`ô2µþÏeŒÎºq>A6xåâO»úxú´î9|æÊEƒí)„Ò$Ÿ\<¢¥‹ÂB®pëòùæÛºŸ‘c°&ùä’Z¹),ä [ÿþ3OÇŸÓea”.ꛎ6r……çW·TFÓ²w6Œê`'WXx½ûÕñ­!íÞ=­Oko ¹ÂÂ.¨û”ƒK [“É»¾jx¹ÂªùÀ9§Òu!uè?·çK^-Ý¿¼£* BvZbÃèŽör…mËO6=(* ß;¾³·…\áùþê«ù/}­RÇ[¹-Ý�� �IDATùª§› A„¹ß°5×òœw¤“¨íö,Í¥fAe?îž6~©¯€ ¼WÆè $y‘k>çû©]ÅÇÅýÐ=ãÚØr ‚ ¸>ƒ·ÆhBˆ-¼»é£ K’ ‘ë;sN¦êžGó|¿Þ¹ _33A™·œp8©Š—Bg\:k6bë†Ïû´ökÐþÝO¿ÞºþCGÕÙ^3iÏtç•G«4[F·w“ApäÁc¶‡–`Tçê!„Ø¢{‡ûH ‚x^ŠAE]ôr/¾Ï̵“:9[Jø›öSŽ$r¨Ø¼ë‡¢Ý>ìf]uhpdÎ^>>Í; újù:òfŠÖàY(Ïåêò÷Ü„AX¶šøK‚ÆÏ·÷³…wš¯ºúçêOz¶òì0hæ«'Fj|¶ðZ1B«ãÌêÝLJÁ·kóù±¨?ªZ¬¦“b ¥ª;“m=þ(zê”Y½®DXaĤ†‘tß}íÌ–YõéÔ®ë°ûì';víiyÖ'í·°pڞɞÕó¤O?>±ýû?Ù­¼vîë¶2²šAöŒ›sÝkåí«»fïÑ&(0¸ó{ŸÌßñwÈáÞ²ÚÍU?«—ƒ€q±R›[ ¤õúº§Ò%ßå9{ëŠEÇö„)Ÿïgò¯¯âg&–'ÿš¨~ævÛ_¡ÊÈ_tr5Š%B™cЈc´ëbVZÍßøe/{¹…©KéÇS´/œŒÆtêŽv–Aât¨øÜ°³#´óý¥b‰ÐaâõBcÉ1StëØö&¡ØÚ»ÿפi+gU^t‹¥{ ´1•ˆí;~q4Y[½¥¡j×äB6£¤vr^QØ¿óªÄFØÂËó‡}yÝuÖáË¡wÏm{/oÃÈÉG3™:Ã\œ3hÜa4|ëÙû!×Îoã'÷8xe¹7Ï{éõ'Ùiy1Ú Œ¤e²OþxE|Çn<82³ï»‹$ŠÕ‘ÍF¯>r/äÖ­ãsý,¹,ÄЀ>jë¦ÄÞ›o†\úu÷׉c6DÖ<Üõ‘;6Çv]uþÊñå¡ßŽútÔœû-–½ñç†)['­{¨F!:yGO ×IWë;oÂæ_˜Òuì%ÏEE&%„î’³¼ßˆŸ3L‡_SÞúÜFÐã²Éô]Á|¥ZŒ£æ{”HRîQè"7,¸™Ïèî ¾6vÒY÷ï®Æ¥g$…þ¾´¿Ÿ@ˆÉümtÏé×›/¿zèÃ’­ƒz/ S—G‘#6àϽöT«Š^owô³ÏÏ®ä0Q2…-¿àþù¹•º„´ßÑßûñ}×Çë0Æyû;‰YÙ|üöK±ÉÉ‘—VÞ™ÑîÍgV©­z!¤{´nуß_‰¸wl,³\Õj”µù³ïîg—”Äýàujô»ËVÓ\xû—p»!½ì-~bJ“þÞ<‰×¼ƒßàYHg“yxô»‹bzì¼—xá+ÎöÙçJªö:&óÜþ»d÷yc}^<¯€´ê5ëSÇœ•lÞ¹I?؇F¼—w{ßA&’¾U,&¨é¤ÔÞÒ ò1Ú°Ië¤z•†XZ‰H„ÒÅï»D=kï¯jOaÐ&ýòIÛa¿{n¼yfVKIõ˜ŒsûîRÝŒo^%)I‘µš«±'ÇöŸ‹î:ýT‡)¿·Ÿ|\"ä–hr U|ŠhýÙ¡Vãi;áÐÎSá5æ ‰;| %à³!Ý'½£;µënIÙ~:óȸ¡ßÆvÙz5<ò)œ_ÿ]Š2¾¿BžtÒ±Ó.¸-þëQltÔÍŸ¿îëÀ/;�颷ÿf¶øJÊ“ŒG›š?tÍ#uÕ°dù¶Iï#÷×4çû¬ +*-R¥ýÐAh$9yl\ÿÙ7½–ž¿÷èæîa¥;?°ú¡ªZ´颶â}u.5?;l¥íï“§ÊU)¢M¶‘j7jP±‘W*æ=V.wØì¡Í¶[z·íÐsèGÛÙñÙì kN¾8÷Í/BÈqúªé§úìý7wøð ýØÈ1Cº^\s\ûþm³zš!g„Zi I;¸Ó¹íÿ G_<<@Œã’5wN÷?U­ÖBÿ±“ýË6>\¶ìïÓ³ÏÄ. ªf~‡…k>mcI"שëœé²iÄ´¥5xi÷¥kÆu”"ÔlæGÛºí–nØ3©›¼fOüñġۙú 7.Á·õmì ­çy`²N-ýUøÕ ŸøòBÎ œw$è‡ Ù£ÇšÖ;É(„’ Yûuo>BXŸ‘ÏqëÑ»µ»=…ìíœ}ËÄöĺ³ÜQç·Mè$#×ÒŸ–i¶jKȼ=­BÈúÃ5³ºÈ¹y Öë«ÏD©>”›¼è–ïnÚ4´Ïç]¬ÖÉ}ÚµïØí½Æìä ¨f8QÐäyAe›NãÖo<}|âѨõZQµWéBHÖgÓö©½M ôõò>;Çœ‰R}رj&ﯚÓÅ’BH1`Ù·-]ü6÷‡¶¢JË1BÝ5ðsµyD¬ù£¬¼ÒÂö_Ÿùm´ÊÚgФ#ºŸØpA4îÒúÑÁ„\×üpõ÷Ž¿V½ªg<LGö=šU¾  œÛ¹ë¢ Ó¢—þ¢vòð¢wÍ „“{BˆN¬$?i5-]o¸¯ÒÉyÕMZ×»©KKçýk3þßîfBÚ˜mÇ̽úE3ž&¡ªõÎOú5_úûT?‘áéˆÌ‡È®§»IY-U·¾poÿCBY»–¸™ªÉ\%¬O}ƒŠ5°çψwÚºó¸–eG&ååªZû9òyËâR•vç‰ÐÏúû”D8ô´í·½m)‰égý¹Ãw^ËïÔ׌ ÓOo¾(úøÏå#‚LrúnãS½ŽcŒõFöW¬§¾ %ŸãÒµG W[ ÙÚ8z#„0Öa„É»Kft0'1²ï»pQ`À7»ÎXgS.ƒÏr©¸*lL>õ«°ç¹ž\÷i;)<îZx6ðûí¡3~hU)+„ÕÐo§u°â ä6ðóóÆžV mW©ÃÕnìY¦F_â!ð³#$áæ¹=óF¶’&Û¿Õ 5á*Mêxuòº.nr……\aáÐuYœ&?½°â ºÖÈ1¥©÷“p³¾²ÃXZeFx:éÞÝ[\~¥ôìâÅ3p#˜{}Ë'݃lä ¹Âeä…¢üŒ"3í§öÞ塎uË–fù“Jkš©á8´t•;©6R®m[Ù¥¤¶RB•¯dB”íûÿ:2+°~Cš¤k1ªøe~‚òU<¯Qê¼”|}“pÁ.²óçýñÿûã\\Úùbéî¿ãK1BH›v/™ðìã/-³×®C낇х BñlšÛñË=/‰•P“§¬b¡×Ä£ ʼn7­ø´½iâOº¸t\¢¬Ö“™§—V ”ó‚ Ó~§ óRŸõZªWvŒc[òK ÏÂÁD[­!®S·ò®@™û™ç†Å•T>Jùð·ë‚Þ›ñ«ß¡q:o»vïÒÁÁøþ¹û9´Q“–¦ÝK!½{ûJÊRŠ}z7ç×ä›ñØg@°YM}¾¦“R{K_ŒX£&­uJ؆Aƒ:®<µª£”@ºèMcVqîýÜÃÀSã äÑ7X±yé¯ñÚ:e. üúÒÃð{#¦ñWˆÕæÑz}A‰öì­„sw’/>HMÈ*b0 KȽ“š›YLëu5$W†í?VÒeR7KcqàÇÃ$Wv\Êa1Ö¦=H%›õô—&öìîÍ'ñý?Ïc›‡NòõïþÑW+ö_J(eŸḊ`gQÙa¤©W€YÞÄRÆ 7öÜÝ©Ã3<7åA áþNsc„1צM;«ÂÇ1…L¥¬B<¹·œ_žVl)Ôä+™*E©v_âQ6pL­z0eáú߯œžn÷hóúÛ%c*hÛÔ¼ì´çŸûs*ÇÏïãý•Á´!‚óB¹—¬>rþË1›2ÞY-2ö铴ԃͨ:›“@•f²+Ý?äó§ "HNå#_n²˜j³?“©8;·Ô—ßÀ$Å¥Êk' Xx=ëñ™%ýyç¿ãá3ñBù‚2Â`ëBY¥ašFI\Ú ;kåÞ¿Ý™§Yóí•*lÎɱï/Kë¿ïáS%Íâ’G™¿8 uªI=?µa¸˜Ñ3¸Âvõ»è¨cÙnC}„†îJLÝ|ý‚»^sôûàðogÍdŒ™#DrxÏ«Cr«÷:¾¿=ʸS9Ú¨Iº•ˆÍ½]%dÝûŸÁ]†ZJ ¢ò‰bqÍ&­±*nØõõÌ¿ÏÌ !eÄŸwŸ^ýÒƒO!ëwV‡¯5'Úì*‹[ ¼¿<ye…ç¹q>9dpy1ßÎße>ˆ+7!´óòó÷÷QˆÉF4W]çÆ>îíyýntq^^QîSMq~§�…L"*|š•š—žøÙÀ@ãÉ‹ïì>™Upf¨“¹Xj&¶î¶9­äòÎ Y F!’Ã}¾Î,»Ý_)[aóÙ¢î××>ÿŸåƒý[Mÿ§€)ŸoÓ3ÏÄeôLÅ1ˆ oWÊÙPr„QmÊ £ÊYa„òÅvYU‹0^í¦;7V­oÊÝ-¦HI)‚]Qô‰Û5¾£ácøŽÁ.Dì_áE¸ZÈ?û¯¾±´<œz?£|._—ž¨ÁÕ&žï?ÖùOšÐÍÃBHLndtáEÏtÊͨ¢²èœ3_gŽÈ\„”ùå ïèÂÄtåëx½À¹ƒzôÛÕöU$á˜5ï=vþÆß®‡îöô·=¡*¾ckgsáQùJ}æOÍü½LÒ{vžVH]P¢Ç•Π.õF¸®åŒi}½¬DAç„?ʧëZ½º¯@J¼VPV >ãæ­<‹@÷JW@mü©¿”> 4©Ù<N~3LøÏò=)v†MÊw vÄIwRËýmú½øj‹u)»Þ3—WïÒTò¿×ïKµøq€…s{w"òû5öùNŠ¡–rÄbTúÌK¥ócSŸêiR¬|´y`çy¹“Ξ[ÜîÙZ i¯ýŸqck­»úèÐÐgëDII˹g/-vøý£N~Ϩvr)ûÞŸ´b.®Üah¯fs‰{¥âgý}oíqï¨}cŠ‹•æ¦b©TTR¢zøËø‡‡> ýyü烂Œ¥eó¯ÿxŽí³åü­›WË>WOpx°çLºžë¨À)÷Ò´eGjÒ$¨1ÂØØþªP2¯î#g®Úsáú®Î9'„«0ÆÑÉW”ÝJé2oÝÍ7÷s1!*F+n$p…%—“[8¶pÂñ#JpùîÛ·rL›{H‰JYá*¦|öµj«Ý¤W*2™Ç>6}õ/ßzýèÖ±53…R­˜Úö›÷äŸé¾;ù !==>ìÒ¾åßì­´RŒ²1| eÓwö`þ©ÉS6œœœ‘òðߣû/fé9…'ýÚ­è¬Ü¼B%6’–c×gRÇü½ß‰Uc¬I8²|oRõ«’µ·ÿçõ'z„UqG­DFB9ÚË縗”iˬÎcÆø yÛI#öÿ©ÂX•pü»mp½ÂGLÖ©é}‡¯ ÓÔÓßµ²ôcÙ_ã†.øõvlJr̽³;æOÛ^ã’“:&Q‡mœ»úð•ÇÉ™™ñ·OžŒÐÛùÚò8gõÓÿå᧖ŒYôÈóó/[ÖéêÁ¤ÖkÌ’Ý\ ˆý÷Ð7ŸÌ¼KµÞJÆ•9;pR/þ‘ñ47¿”°ñw!£O\ÎÐ#¬Œ:0sY¸Á³`°zu·›îêÜ)ۯŧF[9~ÉcÏ&Uœ¨Ñ§üu2·åˆVÒÚ\ Óγ>sŽÙº%íƒ&å(Íè–³}Þþ(Æê˜Ÿlޝž ×uÜÎoƒÏëüÞ¼C?¼yrÃ']âÙµ¢“”²¼x$ÿ蘑ËÿxšzáÀ¥ë9•,†j<)ZÊwîÑÅôá??Rb¬Œ94U&bRmìC:N¿ÛzéêA&I¡!!!!¡QÙLI]|ýŸáë*ãg__7³ Ó¾¤¬Ý7çÏÏ1ûiH—/ÿ¬ºPžã:n÷Êv‘óÛu™°á襻á\ûãÇÕ{#Y®€CÔl.ôL˜ÃBBBBB^>¨Xi… ËŠE|™DTÇ„¹—w_Â?ÐÒ×ǧìÔý£!òG»O$c»~“;åîúæPŒŠÅê¸ß–îLD!Ì1²¿b¶ê‡?,úþøõÈ”¬¬Ä{gÎFém|äÜ2ÇIwséÌ]·Óbþ^?uE¤ë'Ÿú qå"Ï·)‰“=•våzTfN^~)m$¹Ä¶ïÔwt‡¦Ì=p;>ùÑÙWDx|òy UÍø¯[å"JU»)I™oÏ’¾Ÿ6 g=‡O?RÒcñáŸ?vä’¦ÝWŸúi‚ì¯9ï·nÙ®ÍÀ¹?ÅK²Êÿç1v iÖsíñÃô?OèÛ²EÇ>S>V’vš=½m좮AÍÚ,º§1’–²²}Ï$´½§§O³¶Ÿ_ôŸØQTµÉ”í€MkzÆÏîàÜ,¨ÍÄ«Óúš^pÁõž<Åñô¤6-º Û©þ`ÇÁY¾|„Ämnž$ÞÓËÍÝ¥ÝÔÁ“ºšÔKư6ëñÝû Åuz:f1"D „HóÞÛož˜fúǤvžÎ.^]'쎑9›Õøÿ¨º%!¼Ì“ ß÷w±·÷èñ]Æà½¿Ïôæ!ÊþÞØ.|nGO·À‰&ÿ~nQ °n]Â,¨Oóâ¿–éÚÂ×·E·ÏõYóÏÉÏ]¹È´ÛÒÅ£¾ r[yL¹kúáîÞ‹™è&3“{¸Ðrþ` CgÁpõê ÏwÎB×ß?ôròé»E3æÐÙ¯+ÍIÒ™ÿM÷ý¨½YígPà7ñ«àÜ_ÖÞ ÚjȤ”ýÈŸOÍ@«[[Ȭ<†k1³›ØÀ@-¼øà§ùgfõ ö è0jsBëÕ—Bv¿/§"-úî¸vh´nχ-ÝÜÛ}²=LE•-vKSÃI1ØR“+~š!ÞÔZ*4m6êJÛ9½$DLŠ‹ïÿr¾ÿ=¯O›à2Z¼ÿc]ŸÃCšw]ñÏÙiܺÍú'·²’‰ügÿóøÄ,×G[ÆõlвǸ-Þ‹ÏÜXßFT‹¹BÓ×§v ~yo¬"\ŰˆC‘\U—ãÏ.Ú,©°‹ç6ð=yÔþ£±z›a?þ4oêâââôéß_t‘cLÙ_ñ/[|nÖ™ï>hߢ™W«÷ÖfغÿKÆ#žÏÔΧǷðm?x§väî_gûò°1g K;Í›Õ.fno/çsï($'åƒw[Ýêñ¢Þmü:Ž?"÷˱™~|l ÛŠßpÙêJEÜ¥T»Q½1ÂÏÏïêå3&Ü쌤¨þ£×-3þ£´š�—ÿ:ÜuSÙ[½õqkƒš­k#ig{˜¦¾è¢—ûsÿKgÃw)læ.>Û>zxësGêíni}QߟîÑ1tSÖ•!foŠ ŽØØ­ïPƒ?]úûì;ïª{V?ž ßu"!ôÙ  ‰šØ¹Ž[×±Û‰ñ·®LPp^òWÀ…?O¶lgnn´§ñ¢ üüÍšÝý—ì>žâõ;<ø€)Œ ¹}áûï#Äm—{ Á¯Zg2`éwïÛQ`Šê>¥½:Ôœ°-nWGñ›ßžúÜõO|ßâûþuO(3—û©(?»±‚^*÷’É› coĨ+¼0®í·ä¦ÜÖÏÞÚòJà9™= Ì`�að†¼ìP7_«�±·Âbø5v8Øá¥TÊka´v!´@ˆ È·¤%üf³ïeÎþ¯’ƒŒu$I†aÀ�Pw†~ñ—Mƒ2F’`%ðƀׄÔ̲¤0!W0�Ô‘Üì ©™eÞæAÆ€×…»W@ؽkr¹µµ‚¤`ñ�ÔË09ÙénþãØ¼11 I ‘™¶êzóVA.˲`�¨’$¥f–>m%2Sc«ï‚À,†›Â¦yÒ°iK±¦ Æ©,¨ug°�ÔkàûE(çåfËmíÁHM¼œ‰¤ÂÃQAÆ���ªáèär'¨u{K+9I‚OÖ4ü0–ÉÍÉ ¹£ptðùõM2�Àÿ¶v4Í<zpO¥*Åoøß~ß‚41‘(]dfæ ¾ÉAÆ��ø¿ºbŽNÎVr­VË20ßÜT )RÀç7@Ã@Æ��øD(tÅš¢‚ ����1���������1����d ����@Æ����à•axÁ}Bt˜���hRø¶¯«Œ<����Þ�oìÂ?ƒ]���€7Rƺ¼3Œ���4]Öì®ø –x����o0 c���ÀŒÑG§&Æd¦%‹ ���š AØ9º:ºx‚)ŒÊXfZ¢¥­3E‚»��Ðô®Ý\NFr¬1+-)Ìš¥Õ¨ßhW„ ¾@hnmk"1mˆŒaŒI}úC ‰)‚CÿúT3 ¦Bã=æ@g��0Ë–¨Ò✬4{g±DFo°+‚1«,)ÊH‰#!–Èê-c£2oÙº•ÁßE"±È¤Ñë­T•ªT¥¡»÷0 !M��€ú‘ŸóÄÎɽìºñ›ýjP±Dfçèž‘Ò C¨Ì¥1c k¡˜/àÓ¬¾qk¬R+•*e• ����†½ Ch5*‘‰ä­¹~ŠÄ­FUÜÌS&ãl5 D<>f]ÃTêÊu}Óï#���þqÃ!âíqˆZÚ©Ñ!Äbº²† ù.ƒYÃÔjµºšÞ‚7��ÐP%û¡æ "‹0¢Yº¢†qyÜF÷ÃÔµZ£®î‚7��Ð0{¡çì3„\§ÑçÃ4¦º†7���ÞØËÊ[TdBŸËã0,ݸÅkµZFSs����C—Èd¬öP–V£Ñéi‰¤ê‚sV‹1æ o‡7Æb„Lóù|ŠK5º¦ÕjµZ­ñ„!¨¼úÔ#Ç_vð·á6XøÒ1Œjñ²Ÿd§$&±¹{zXZZ<߯T*#E Û:Ø)o¼Œ•EW9\’â’®a:­V«Õ_ Ô6N‹ÏOüµlå¿k[‰ë—w£:ö$¶ðîþµß¼ª¦¬üßýjñçï*øp€7sààšý°”¤$[k;Û‡aáBæ¡ÒReTD¤·wIQaZz†™™™‰‰áa‡uÅi)YÙEZ#‚≥fŽÎÖ2JŸóÔÒÓ߆G4 Ã#D"Š|¦ÓéjÓ01 ‚!Ü€Þ€+èXíG3Y|;yWÁÀ%[7»”\Þ²lþ4¾ã/}p€7Í«íâÉ0 ËbeI±ªTâFî‡ãëçÇ0tQA!ÍÐ:c‘¡Ü5©ÑÉY¤µg«µ„Ǩ‹r³‹¸bG›ƒ"ͦ¢ÂB%ýÚìPKP‘"Hº±çÃô:½N§¯ÛU‚Š0RË&HYŒY¬‰^9tfÒÜ#;;‰BH2cÀ*éúŸ–úäì5ñ¯îSºÆ=r/C)t8{ñü^6\ŒËõ³˜-ºµeöô ów̨àê—©§~—¼¿qz¯fB„ÆÌÿÏÝÂ?ZÓZ'xoÿj’1PØÌÛ3:"ŠÅ¶ _?ÿGÃ)’ôõó§õú´ä¤üâ"WWSSSƒù`mI–’·nán®.-.eÊÊÞ†ËÃ9c’ÕE_>eêãï`‚ÕÙ©ù‘|‰¹“³ÜŒG ¬ÍˆŒÏ“É%ʼ|5ÍBk…“9·Á\-ÿÃ1êŠéu´¾nVv‚îñBdðÅv…° ÆcD'¹ÐkíúKëD™g—Z¹©u‹å½¥—Nç_ù~Öœë‹vÍz×–cxd–&ÞÉàzMu`Œ"Í}Úڨχ>ѶráÁY�Þ.CɤR¯æÞ1‘ÑDzšƒ³³Åáд.=9¹ ¤Ä£Y3KK £™\Á”ä”*µžE!½V§A"O׸¸Ç®]EBˆÉ‹»™¢2mÖ²¥­X›ñ(46QÔÂKÊÁ!¬~ª² ôµ6ÃyQ·BÓsdnV$ÓÈ2†Ëž;‰Q#FõzšÖÕ÷ca¥"€q™L±,fYŒ1Â,fŸ{h¨ü+Fȼç¸Q¦$F]¶Ù´òJ’º—Æ!ýÓ¿W­_òÀwéŽi½¬)cŠ.Î)Âbgɳ±?)ѳ˜gxóÆMí¡,©ÄĽ™{|l,JN´U8êõÚ¬ôô‚â’f^žææf5å@‰fqñw®$p…b‰Dbi!5á14YÓE©¥zVW^DX7³Ö”Z(ì²>ÉáØ;èÔ!Jîíá Óåf–2B{±:½@`i^ÒèÞX™!pci=MëéF?ÀÛ>+Ëæ0[Þ1pů g3nÙÁ¤ÀŒ¯ËP3³ÑqÌ'Û¬Ø7µ§YC*ö‹ÌÙgžÜLo¤ŽÕñ0Š 1‹Ò’’FEq(²¶ä„ÀÜ&ÐΓ`ÔEyÙQOнr>®8ž°N­AB7KJSðT­a"Å\}‘Zà!@!LD©sU!Ä瓺"-2kàP«ýïÏT¤õ £gê} ¨T\â1"PÅ "[¾a„ñì‡2m !��ÎIDATÿ ³#ŒH«À–ü[¡ÞÌê2À¾†ð )²”Êì"=Æ<„¢K²JÄZLA/šîè¨åê]39¹¹©I)‘HÏèšAaÄ‘IL"EúøzK¥ÒšË¦ÕˆäÊ,m­l¬SC¤æ t…‹wÙp$I¤×ꌟEVXŠC³´VÇâò_Ûð >§Vyù "£gézk°R¨à%aŒ1Á— ªHÃbS”þDÍÊ^Üîàç2†^,³'e-Ænè{l¢¹ßÖ/íeÍ5VØ©•þøíU;o!BL^Ô'Bo+ôBà Ô±Z»mnn^ZrЉP¨×ë†)Õj9$Éǘ‹9¦R“èȘæ¾>"qmë›N¥Óa†%£#R>A¼¸ëD\äÓ&ecQ§.¥)S.0FX“W¬·*½úb%Ë1c¬y5ÞØKÏ14Ëè$!¨T *r¬‚ÅO^Šë:Èežûñh,&<1[æx!ü,�øBÕÊöí'îX ·bÞjáÚyÌ ÿš²í÷ßþï7oñ›>Ü¥äÊû"åïÌö@'ÞÌ(FM2–_Pš”d"Ózša˜RÆÛÛ[§Õ¦¦¤ Œ¸ˆ# =ŽhÑ"ˆÃ¡ 9bÅIij¡ÌD"äRˆQç§«‰£)ÊãrM^^©”ÑÓ,I‰åÒ¼¤ð8‰ŸÃhr3òÔÛ 3¤Ê"ŒØ‚èè\G B«Éš¥á98›á’ÜÆ—1„1BøedŒ¥Y†nè½,æÁ}0€0Ë>%"¾ÿ¸#¾Ýôi¿_xfNÝG n}ûèsñzñ7gö™;öb?%ï>õÕšñKŠV®œÖRjhi/iÓoö†üÍ«ÖÎ<¦!Ì}z/Yó‘7ú ðúb¨–¹1F§çq84£g¦T£ñiî#•J’`–MOMCó¸\‚Å,C#ÊÀË£ ’/j ò²ŸhŒÉY8¸‰ôYk iFÄ{,¢d^ÞrS;…KA~Bt†<‰•oKs¶0GË Dˆ]<D¹±yÌʽZ47§³‹=¨ˆËïƒ,c,Yúe®<˜\]’]ŠEN‚Å!Bðùú½Ÿ?ÿuÐ{!Œì?ÞìãçÆó˜uä·jû¹ýžë‡Ðóà m9ê룣ª¹‚�ðæyc5E,­, •%¥ZÎÛÇK"—oemɰLFZ†Ž¦Í-͹\Ž‘|8æ6v o+‘HÌã!L«5)yÅZ$¸ø¸´´¶pÄæ¦ešZ)¼m%b‰0£ÎÏòTW>N-ݼ¹ •‰€ƒµ2'µÁ‘ÿ7† ¿6³NÆ`L¿Ú3¼í°¥é ïŸ>œ,ðk 75�PŸ‹g-ÃÅÍÝ5//_ ˆE¢ŠËåÖB¡$IqM™0êÒÜÔÒÊûÂ"“B%–} ôqA!¤*ÉN(1è)2¥E™ù…/ÝØWò—–F, xɨ¼³nÞ¢H™ÿ ©3[KëmtÚ‰?ý)©Ê^§ÿ8ĉóRÀ›EÙs %¤’†eèãâàÚ¼âžôĈ×ÐÆ‹,1ƒ_þ¢·Þÿï’÷hô¯ôË?ƒ^ÅÁ�ЄFAþ'åf$EÕ^ ‚oãáía/$ЉF©g#ËË`Ì4Ž�Ð��(cMü ª+͈)m¤Š6¦Œ± Æ48Q���ÿµŒ‘äÿOcMÆX³48Q���à½2Æ23ˆ� ��hF¼5J†1®¹- c,ƒY¦ñc‰$"¡;��Ô¾@¨U«„b“·£9•’/¾œŒÅÊjÒ0ÌbÄ6ºèˆ$ 1��€zcnmû43ÍÊÆA(2y£}2Œ±ZUš“!·slŒËé/}�� ©Á²,iD¢L$¦Èå?Íz¢Q¿ÑS#‚/ÊíÅYCdÌÁÙ=#%¡´¸º ��@“»Ä“¤½³»±_M$¦&ÓÿS•1'W/'W/è+���@SæŸ����1����ø/¨TLˆ£����µâæØe¬‰T ����ê���1���������1����d ����@Æ����àÕÁ����¯ãܼ¼¼ÂBM3 Í¡(.k!5µ´° ú0þ:yclá핃ƒ­å §ñ—KµM¥WG»ùMº©Dúø \»ìN§›‚¥›Te^ÏÍ��ðÚ4Œe#ãbÕ:½»[³ ¿ Ö-Úøx5·—Û)•‘ñq,˾:cÒŽ-Ù”Üç—{á ¶t2s���Ô›ô'O,-¬|¼}i½^YZ¨*-DŒ^$ä;;8 Âô'Y ˶.AE}n|éÚ¥£¹´š¸êôˆÇ}s'Ø^uýßtû���4…%Å ]Á¯"ž³XÚ–ârZO+C(ÊXúŧ60þUÛœàñξ§Úkc]ä »1WJôñ:¸¶ÿv×¼mäÎ6Åë4É'h颰+ܺ|¾ùvS–ÖÈ~¶àΆQìä ¯w¿:ž¢­è÷å]_5¼\aÕ|àœS麪•QEšÕËÏÅB®°°÷k÷éþx] i£wOëÓÚÛB®°° ê>åàÃRŒPyÀ°jý—|ÔÊMa!WØú÷ŸyúI™-Ù’°Ÿuw’+,<ûÍ8‘Vµ2úø \Û}³cÖ€v®®v¾Ï*\-mQØ“úxØ(,ä-†/?›¡/oÁr ¶Å`ÃëgšÌ��ð iZÈ*±cfáÎ!b°.‘ƒãER9ßâ ™(^§×¿#Ìþ{þc+~§}IÙi™»HBH³ó¸`ÚÉĬ¤ËͯÏöåu×Y‡/‡Þ=·í½¼ #'Íd[xÙà~&ûøäWÄwÜxáÆƒ#8û¾»Xúüå¤ú¨­›{o¾ré×qÜ_'ŽÙYébK§þ:iÎ%×ùÇî‡Ý½¸kÞ;<-±:²ÙèÕGî…ܺu|®ßƒ%#—…<› ªX³+s;Œ†o={?äÚùMcüÄeoKÕGn_÷°õ7§¯ý¹sxú¼39Õã¶úØÝ'dóþŒNŒ¹·Æí¯ÉÏ+\!ÿ ¢Ó“G,¸ÓláÉË÷/nTºôib .V/×H[ 6¼~Ö¨Éì���¯>—“«ÕĘ&ùž9É÷@”ƒ¾ð‡•»€/hX¶ \©(}ïë™ÝlyQ¥—Öž|qî›^<„ãôUÓOõÙûoînWÖÚ?¸Ó¹íÿ G_<<@Œã’5wN÷?õ¢‘®ù´%‰\§®[p¦Ë¦ýÓÖ´>÷Õ Óó)çÎ]]l)d+wôB!&ë‚Á‚†”ûì_–ÒáÃeËþ>=ûLìÒà ªrýKþ^{\ûþm³zš!g„>!$í¾tíø.2ùϘÓã§éâÔƒ­ÄUì î3j{s !ûÞ³ç´_¶?bÚriÅüÉ¢‹Û.r†ÿ¶üã¶¹ÏÛ6ûB»m»Â'¯økMµr™¬#Ûò~s ×ÖÇ5›��à5`.3}’§¥8RB¶µjaNñÜ1›Ÿž#³þ$¿Hg*£^§Œqìeº©M½¯N¾ÛÅm]…Ÿ]Ò KìWf„§“î3¼Ëõ@äÙÅ‹÷ÇólÚ{ËÊüCŽuË–fù“JÙÂg#¿ÙÐ}LmÕþ§Þ=»÷è3l`G1a¬4²,¾¾}Öâ½ç"rË=UaŸ"!ªJýï'áfŸȪ­ôä8´t—íå™Ù‰u)ªêî GÑÂIT¶I™zú™æ?L*e*æ¯ËO#ܾð1)ˉkÜÆ²(4¾X… ”k¬-Ô  ¯—5j4;��ÀëÀÊÜ,.%E­¡U¸ûíG\_/›Ç1™˜uó4“i4éN¯SÆŠC•_1ÆTжГÊ+Å'U·ì¿…Áá=¿xœz,€ú|uúA¿kçÎ]¼rnõÈÕëG»´²‘ °yg¿³)wÂÎkGÛ¹š 5·¦ŒVâêõ7ÞF’|ž!A Œ‘(C3ÏöbFÏ"Ãù(ÊpéFÚ‚ªÞðn¦õ°ÆK™�� 1àp¸VææE…NŽŽÂÂÕ4]˜_й}ûü¢BS™”Ëi`tðe/f|Ç`W}âv>[·ý<œz?£|Á„.+<Qó\è”›QEe èœ3_g“*äȼº}0ý»íg/më˜óÇÏÔÆ ҧ߬óŸ4¡›‡…"˜ÜÈèÚpý]ˆØ¿Â‹4SD§\,¯°þÉÝû*ÌsTà„ËQå³rú'÷ïäÊš»K…†Ê5Öƒ ¯—5j4;��ÀkÂT*E©µ3Kó]{™š›•*•z=m*‘68Ï—•1ʦ߼$ÿLŸðÝÉ ééña—ö-ÿfo¬ÎØ~Ž]ŸIó÷~w$V±&áÈò½IrÓÞX>÷À½¤ŒøK[f­ˆp3ÆWXáWÍãÝK·œºþäIòý¿ÎEÓ6ÞržÑ‚¬½Èø?¯?Ñ#¬Š;ºh}¤Aˆ²é;{0ÿÔä)Î?NÎHyøïÑý³ê¾\FwkÅœ}w“2â/nž½:Ú¥J…BÛÞSz蛱觻‰ÉVOYé>ê³�‘ÁrY#m1ØðúY£F³��¼&‡Œâ`ŒS3Ò¥ÙŸçΨTªÈ¸X­NÇá4ü‘R/ý0*Ò´ûêS?Y/Z6çýME mº}0_FÝOÙ Ù¾'eʬžžËùæGMìxmç³¼¸Þ“§8žžÔf^6c8vÇÁY¾üJE xOþZ=jyZ1F|ûV#7îšìÁE„á‚(ù€MknÝÁy–ÔÜ¡ý§ÓúÞZgè/â¤YϵÇwÊæ7¡ï âËG®èTç'¢p½§|éüçmT¨p ¤äƒ¶Ê;oiÿ.ˆïØé“ƒ?N÷ „ •kÄhd‰†“ õ°Ff��x}ÄÄÅÙÛÛøÅ%Ä<ÉÎ*-UFÅÆ¸::68CÂÏÏïêå3&Ü쌤¨þ£×ýûÏY°rÐÇoèúΩO¯^ï�¦��¨#ÿ^¿—8~섌̴´ŒÔÇ"<\]»vêX÷ºöì×Éî£áÙÑ!nQ¿ÃD?���ðúHÏÌôð‹ÅIðx<''Ç´ÌŒ—É ���àõѪE‹›wî= Tö•¢¨mÛ€ŒýpÝ¿º‘øØ�� >xº»;Ú;|9{ABRŠ›‹Ó–µ+„BÁËd2���¼V„BÁî­+7˜���Þ`@Æ����1���������1����d ����@Æ����àÕQþ¿1Œ±³wÈõ=-;ö£����o˜Œ•¿Çã«—Ï€Qjåf Fhtn„å‚��h°Œá2ŸLˆÒ›n]9ƈEˆDƒÄÐ$bY’D$Më8$‹4:‚Ⲥ–Ä|†¡9­gHŠVª=Åò¹b®®TC:Ä)U%\F]Bë9%d¾®T(Ók ¥bK)u4)Køsu:’j.aÎÐz±†K)YŽHhG°*–/áÓZ½ÐR¢ÌÏÁ:•F÷ òJŠŠX¬¤JUÈÕò²¸ÅÄ(±K’X«O5aÄ%ÒR1©×Œ W†¹:=-f( ¾#JMqÕX¯fõVz~>O§Ó‰èÒb-" =—/V±*1æëÍrh’F\=sô!‚Âz-Ñ*IÒ‡Ô³,ÑI24¥#ô\ŠC±HGr°Ž`¸4—$±ŠâÉx˜P,'’!&‡`8˜ë ‚'3#K4 IÐ+BHÏj˪h˜‡”4M!.—‹*ÅU!R‹0©%1— žåp†FDh ’ƒÅjI±ˆ$Y–%µ$"h„K#’ŸÂzLP˜aÄ%uˆÆ:ÑÈ,²�$��õ¥üE-Eéÿ‚-ê‚À¦K}“t>rìVүǂ��¨nQ¿~~~`���à å¡µŽœQä¡����IEND®B`‚�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/help/C/figures/mp3splt-gtk.png����������������������������������������������������0000644�0001750�0001750�00000125346�11753562422�016321� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������‰PNG  ��� IHDR��B��É���æZÁÑ���sRGB�®Îé��� pHYs��Ä��Ä•+���tIMEÚ 92+àÒ-���tEXtComment�Created with GIMPW�� �IDATxÚì}y¼dUuî·ÖÚûœªºCßÛ Í,2ªç ‡ˆQqòò¢OcTbŒš¨ ‰Ñ„Ä1‰Cò5ÆŒITD0€"à�Ò4ÐÝtÓó½·ªÎÙ{­õþ8uï­Qà©mjýêwoÕ©³‡³kíýí5ìµè¾÷½/F4¢hD#:0)�ø—O|€ÃGÃñ3�€Óà �w'‚Ãi0¢ Ãêp8aþªSSvø†Å»ÝÝ›F Á Xü¢ù8ôÁi¾¢…ž:Ì—ñù"{61Ä >_ Ì?˜c—G<ήä`ƒ‡vrrM樹m¾F5È›‡[°]ÿºƒܵË- Í·Ýžš�k.Ób½ƒ®b—ªæ{¸Ø›…ê‡rÐÚåñ]»íóLcCà 'ÌÅü/Õ0•ïÖÖ^~÷…Ò»ü-ö„vcìò€ ß»ûð#6<D̓,Œ/Í?-\õ]YhøÙwç&';yhqÌU.þ>4Ä#Ñ^éâw¾.üèG?Zµje'Ü1`Ù<v}÷ó¥ÅåÒ†.�‚¹ 8›ä™à‡u8˜91Á`ãL‰²)ˆ�…¹°drdw‹AS|N‰²Åjc‚:Ñœº%wfêžj†8ˆª™ýT¤Ù äV0 wÔûÑ…,\jEÑç:Õtgœ¤ëccE쓯k²P[½)ÛÆº½;zaº—æúTΘ›¸÷´ê ­| ÖÕØ V¸ô¬ ­e¥ò˜”³™qÒ€Ð)b 33©Ø¦ŠDsäµ²Þë¢ç®íy¬zÀ‹^?–“˜h¨„Üh°š&+¹xp¯…¼+U“‡v,'Æ;ŸgŽÊ™ÕR:sZL¡V‘:.±žO´Z ï¡È’Zulªæ\Ï¥Me1SWÛû¹›ús]Ó%õ“ybR04{r‰Ñr&"AcèW&€»Õe ;ûÄÌ‘M`îP�à�305H †Ã¦ n˜…�Î 8snLJJ@=“’¹Ü4"oÀχĽAivwv79 £òà¹dû@W›Ç׸8-BŠïÎù>ŒÚ»oeîtÊì²ÍØ×¼Þ³ôÉF´Úø“kW�áˆ#Ž�@P¢ûyègz€»3/æÛ±fÅšŒˆ� $ƒ ©£�9CÉ“yp%¹S�4CB 82¸e° ê*ž³«ECÒHªÙL’ÆZÌ(ªnÝS¡ ³¨èÛl"6Ë¢ÈÝ@mòÙvzgYa­ílZøøÎ8c˜’nÖv;†¹Ö„±„Êñ>„ë¬Ôʽnm›‡˜ó˜fcÍ‚"[­í1›ClåàE×»%£åå¬V’ÕÛe¼¤¬UÊ<C¤VïÔTô¹çNs>ËHÄ)iÈS]kªÕµÁ$ÃÙR¬Ì$@™Ü{žD®æÚ÷¾z´J¢Ï„8muW80Çlµå˜=†@NÚ£ÚêÐîêñn!-ŽE*&¥5SJ›¥§·¬êã¥Zß»­rV¬JÚUM gwr.S,M™àµX‹²š¨Bªs›¡Êœ³† n0ÍN¢^¸k`« ŽÐä´ˆ, "uaWˆAsáæêD’sÌî‰\Õ™Ü]­©¤1àP‡ÃÈYá6ŒÀæÍ.‹ØÝÐl·š»i {/ T»Hñ¶ *bw]Ánñ^§Ò݃­Ê#úig··­V À‚ZãÀ®».PÑ^Íïðv%¾ƒÜAÆÆ.†L7ràÜAnÎ'wƒ Ø5Q�“'–Èš3‹‚ÕÙƒfe.JM !Ï re)á9©Ep­Ö±T÷¼Ý޾ùíE`éš°'+*µ(¦„¶sÕ3)"›mëÆ¥œkQª·¸È--³l[e­Í$Už—à\´Û½¹^«O­^Û18•f"wjÙx§$´¸ô@cpâHî”<Q{‰zgY¶ÓŽYŸ`£%¼ãܧ|ŒÑßi6.Ee,QPˆî®ä–‰Ô‚$ Èò P;Ù™kÏÁ[¯K¹ÁÆT˜…à5YIY¼g%¤BÙ*ˆJoG–Ô+0ÎTn¯ªZàrŒ´J¾­èˆ›º&U]0d,¦’Ub‘X9(ï ÎR:'WÁ͸‚™Y N Gpvb�JpS0˜˜ˆ€DvG¥€‘˜ErV"7{Wd,ÁU! (_ rhH pwLRñ@áè<P¸šI¿¨ãmp0¨ýhYæ5ÜÀÈG»¾¿K`6°_ZúÄ‹ºj²õÓÜ9[å§¼çÒŸ[‘Ýmc f“ýp“»iÕG=bD{êTÍÝSUì³¾Þu¯:åEïÛˆãÿäSW{xü;´+àù^oôîõçÜÿÅï4qÙ¼½‚ˆÜš…dÙ LæÎnälLäcÀ™Å`¦17{ #…‚AC°\ H©Ïbv8Ä\Ê2e�41©½^€ÍÔRºx)®n^CZYR‘Rm™#KÚ‘¶UZhªY5×0)Ä'¤l×Eò¹œ³¶'='‡z=íi«-­+«£ÅÌ  §�g«”CÄ5›a¬Õî0—…0H‰"›õ‹Ñ·H,L{š ËZ†%És‹9z­…T2ˆà&•ˆ�lZæ•×%¸oCºC(ÀJE€F"vuêQ®&Ü +¢SaDH¦¤Éë–Œõúa²h;sò™’±cÌYÚÁ»UÝ¢’Û’¨Ô8–¨ïöR±½*v† Î]ç¨E†µ¹ìPl‡jκNEðÉŒ,–k¡ˆ¾™°1qì{%BdlêD$ê2@˜DÉdNsfÀ`Ä\¬6#E5¥@™I F\ˆÀ®(Nêr9\@†y]€ƒ@îFDw@0P£q4Ê Ô¨>yɈZLœhoBí f»¡ý̳ÛG¨öËJ«&[¯ÿð¿þxý–ýßvðôć^õŒM7ÿ`å‘'ü|ŠìÆû½“ÍíL·\Ïý´ú cã>ØÑïvÐûÎ_¾áåÿxõuëæ@9uüé9ûO^þ¢“Çy¿•ѾfÏ¢é¿qM˜ý™{ÖåàGþõí_xØ’»�ª4û…'ŸñìËÁü«Û?ÿ°É]t/x³6‘HíæDWäÙoøÝ𮋯¼­±Õ|þ‹ÿúõOºß”ë¼…‚ٜʹÛ7þüMùðWoØXíå÷{Üs>ò·O>.rdˆka—tÛ—>pî».ûÆwoÝj�V¿öËï:û¢~rc£®[©µ†Ä2ªÕzuQ”–z&lÉ£Gs”Jâܧ¹˜G¢™`î¹%ѺH,DÚER«%l£±–km¡ÃB]MÊÒ” Ÿ§É˜"™BÊÛµh‰×ËÕµGK±Ýj'Œ±X ö�v˜�”(ê—ÐJ‚Y0ª“{pï› S† &@( rÊb˜Î¹•ÊK²yáÛ’3gí:¤›';íP¡b ™£hÖ˜,‘NH0Š¡Ux•ÛK™Û¥O'šNêèPÕÇt”*z4ívŠ9g1ßa­1AšUêG”*µA(ôlÜÜ9[ábD̦ bB¢f54ÂpaRsɦ"¬FLDî ' yœ¡Ç΂ón•aÓB# ó-¬gä ¢Ý˜5dïj@o°“óÁ}ÃrÛ0Úì ft·¶ª ÊΞý2Ð×o¹¥b«³Ÿ{ÄÇ�¤~÷çYdwÛÿþI{s½µ?žýñ5©lMŒ­ì´»ì- åÈ=H¯Ö~ýÊÿÞÐZ±jÍÞ±ivû¿þÙW<WNþÞ«Omݳòßm‘öv…@ž÷K#¸‘›ÁÝôÇï}õ£ßtmâÔ¸m_wé?üé#oHßûäÓŽ F©#DFàÐ[óég>ú—õ0}̉Kãì?ºòÚÕSî=(Qp$5dºù[áÛ›¦–—Ø\ı3ÞÊ]�Ù„ ¥P[M¥ìÊPÎFr‹eYVý> +QÖŽ©ÃŠ)„1áªÍ-Wr¦q‹êe šû•y¡Lj(¸@« $–6‡Š- ÝB†” :Ã\BAHYæPwóRŠD”�+ER0ªá-¤Ì-ˆÔIÈ29•Á=K„dî„­Ì”…"Á³ÃÝÙtF,ÕL2Z™k²U\»Â­ÊJž+­…Ê&Ktœ»µÁH[1ÕÉÍ E«¬2“jµs«L6’Xî`‰Ø,¨Î\2ÅD¦æ¥ Ðs)]ê´f7š+<æP“álYƒJ˜:îæÄÊ)‚Õ 9”AFNfä¤L¦Æâ®dNLä̈öN`goôˆf nÜÉ�˜7³Ð界wOs"òÁ¨ ›ïyÞ\ÇÍÿJÑ"_/À‘Sãc:ÏÍûC²Ý®Ð]W½ìáJ2¢_ 5ƒ[²3±ŸÛŠv{·U5¶:çŸuÚ /Ùóæµ[æÞpá5û)ò÷߸á7ÞÑ|{ÿמ÷Øãoº}ë+ÿá‹Å!÷Ý+CñZíÁ«·cû캛ú·\[¯ýv}óŶáë­­ªîì¶mýÙ­¹êæ§Lóêý÷ïóàrê´ûžÿoõÂgMM6õkðŽïn_÷÷ÄVN=âØg}èŠí õ®?ç¸ÓËéÓOúÃO¿é¹Ï^:}zyØó_ð¾î´–œùɯÍmùÚm?¸èÖ[þã3g¶ šëàÝk>ôçºÏ£ÊéÓÊéÓ—ðü'¾î² è]wÎñ§Ó§ø‡ŸzãsŸ5=}ZqØóžÿÞìPohÑ»ÃOyܳ.�»ô5+§N/§^ôÁu†Æ >ôÊ®|ãSŸ61uúØñ¿ûêú×ç~z9uú©ïßû7¾éä3ž=¨á÷WNŸÞZú¢m°ÅßÜê›?ñÚC–žV.}üÓ>tsÞѬ!l»êü ®ÍÀ!/þ»ÛnüòÚ=n è~ý}ñ¸ÃÌ`î fØæ/þá{.ë£óðW}÷†Ïý×%ÿðÝ+>µá;¯|@Ù7SÚh|Ì‹{ÿÎÛo¹õË7|äŒÍÊÛí±v‹[­µËVCIL–F±`‘äY‚f1 ¤‚xFê·L+ôÇ%´;˜Ž>Í:ÍeǸ$iK˜ ¼$–S±XQG´ŠÕEX½d9ÓTéàKË0ÙoµŠ²]Œ™LÄbºœXii«uhgúàv¹4ðÊÒ&аŒi)xŠãŠNl3/ ±Eõ˜;³#R'{Ù˜qIJ‰F¬(˜kÉKuv´1¸·T¡"Ú‘ò·^ÆlwXµMu&ÛfÃí;ÓÍýîM–n«º·÷uSª·ÏÕ›ÕjóžQ_„à1q+R)²4í¸¬àeO—ñ1+ãAËbX^&Ü)Âd¤vÀa*ÆIâeÒž(d‚¹ hƒ"C„ €—Nn¥`^¸˜ &f˜À„Ý=P0›Q€“+I’ÆØJp¸°Û�Qˆœ dƒ=$ƒxÀ]󓘉�'n)4¦X¢Ææ8¡ñºlŠ0› 9ÍoˆÀó7š–À�¤]uŒ´ë¾nÏ~QƇý‚脃—<øÈe{¾NXÞÚºþæýù½Çðècðࣖ¿þ '>øÈe'­š¨z³ûj(ÌóÙÀ€¼@9ë¶M›ò¦5cº¥ÓZ/²®3íÈ9m­w¤-åŠÃ§;±›Ü‹úŽóßм[sÙëÎüñ_õooôk¿òþß¼à´ëÞrB{þÎßû¶œrÚCNÞù•kÖ|úõgë¡ÿò‰3—2¨=YÜ~Ñ_þö{~²cÛºïý¨Ç‡öš¿~ùC:¨¯ûÇçþÞE7!õ Ûš]síõ—|õÇÛÏÄ!»TøàÓOÞùÕkÖ|úÏÖC?ùñ'OóÐy"GqȉG­\»f�Zz¯{KçˆeÁÝm—g¨oy÷ó^}ÁÕ`Ú~òžW¾Ùõ“ÅêÝk8rYX˜£yã—ßþø—_ºÇþÅßì·/oŽ’1hî†KÿsÀäcÎ:aŠ}ƒ˯þGµík_Y×;íè– 7ù¶k>òÀ2»ô9'½û']^vâ#Î}ëË^ùk ~£žbqGvË–O;%<©ÄHŒZl©,@ѳFbªLŒ¨`7îºÅX˜w{æ‘XœC[ëX•K ÔZt[ýZ5{®„MÐ*Ä’Zœ<†Ê©všp/‹Ö­¢]ª%¢¢… s„>µ³×¥Dn±$§à®9–0*‰M’BÊÍu_b Šš¬vöHlΞ-êf°QTɤY‹ÉÄX¨Ì @\{RS ŠÚ5 ZrAìÈfÙr‰Ur€9BY:'0{)PSD=ºÅ�¶Ðf3ˆ+ñ9ÜœÆ%ÎI]@be].T¼UC:L±3ê­šj¡è2 Í`™ƒR&Gv‰”8'Pœ—‡dæ(1¬%Ôƒ¸:‘ ‘²39‘«ƒ Ô(Ùiá0—62 A ¼; ¤1cv_£|pN±<&·ad!Ÿ7ƒ5ÚJÚMå0ïðѸ œC†N$öÃ{z-ÞsšÆˆôžûÖÕk6 _9îågœrLnû^ïÛþóŸò SŽ>ø:ö '|IJ±“þѺÍoùÜåS~g0æ ç[TŽOðÄÒí6ÌlÕãy|,š;éŒõo­æ¶ögw€ÛK<!Äb÷]ÓϽøÒW}áË~Õ÷½{ùÛïÚð—÷úʳŸþ¿¾žnûúÕÒñG/¶|àk®ü·³ŽÀú÷>áçü×ìçÞþõuO|úa@»·\sñ7oTxÛ­·lîg÷jà ë¬>ëþù܇O6ߺ³ÝûóÖ¾æŠ/uÖ¿ï Ï8ç{³Ÿ{Ç××=ñé‡ôЇýÎ?¾oÕo<á9W€þº+>ûÐ%�,W}<=…²àþuŸý›«ˆxû'¾ô[mþ›~íE—lχýÎÇÞ¿ê)öåà‡¿îŠÏ?| €Þu�v|çg¾ùâµ(ñ§ïû——ÕáÁ1�ÖE½õ¶Í�0yØ’“«'€ ›oÚž-&7c09ú›×Ü’àÖ˯™º×1ÇÜqã×ýÏØÔ¾äÍ/¹kΑ‚º±«»Ámñ´+1A³Ä¢´Ì¡ˆ¢Z€H bæ &Ï� % ¢ÖeJ]é§Ö¸¼ íÒ¥ÖÎ2Ì8Õ"%{Í"Á™c dmjÕ°¨mêS,:ȳöÊÚ¥“ªÇÐrPÏP´Bå±<©:§u'F¥`Ú/¥Lɵlyæ"ÆžÕ} ìµôÌ:ðšÀÄîÈnQ¹;!˜ˆ@…y©0‡š‚’z½­Ê`îY‘ +ÕQ9Õ”K‰à<¦0‚,»-6ɘ€÷8wjñ"AÕœsNB€IGœDc2&bˆS™C ®Yé61Ô¬älEϨN&¬– ¢ðF°!ˆXM#ÁàìY„I ž™Ê 1ÁM‰ ggW€ÈÈ)R#µì0³˜;ÈgĈ¸9’ìDóC¤x0-:@6^F\ÛÝØ@˜7»Í2£]<÷Ô(îÕƒñnhGtÀÑ¥×®¹øÇ‹ÖØÂ•-9žqÊ>ï¿ríŽ .¼ò÷Î|ðY}¿ÕS�®½eã^yùÚÙÎ’¥û*5¯T4ßÍ;£(ⲃW/;ê¸ÖÒƒ²NÏn_½sÛê~µ­ƒ:«Žo-[ÍÍÔa>ð?ü©¿þÀÉ0uìÑË`ÙS_p¿¥aü¸û,€îöÙìnƒ{~ôɱ;/H#PÝüý5ýF (Gýî?U›/ÛøÝ·½þ¾îç]ð…;¬sìÃNÀºyÜÑ™¸÷³þÂwr-ùBP‰£sòAÁ=,?ýQM…×Þ\ïæBÃúF3û7¼úÑS«=uÈ£§úáÖ˜½ñëàÞ/xâÁ‘ÂÁý‡”»iOÐþé�¾tñõŠC_òÎO¿âÞã48@Ä»ùš ŒäCÖ§ÆÐoDPrCJÚè‹òº«¾þ÷ß»ìÕ§1¯ÿ…·WÌÑYPÏ�©ÙÜæ•§ª kÙŠ\ÄH¡,‹èÒi·B EÈÁ3DZQ& lâÈ,Ö,µxÕ q2Êx«=AÖò"u(“§…Š€±@A¸ ÂãÁ 1,¦±ØšhIôvÑ™*Êé—·x¢ä¥írUkì 2¬,dY«3hE§µDtYQŽQë„ñÀg�-×<,²°ÒœÝD™L�bˆñXRdxÒ¤” É¬†%µ¬ÈUîšÏÆ´:Ýœò |Æu®Êݬý„Y¥í©Þ^§¹º]óΤ[ݺFÝœûœ+ÀÈ+KTÁ•D¤[B+e‰„i“D˃L¼*ÊA‘Ž2^ÁÇ ¢( 6;7’ÿÀ e‚pã$häž î”]U¡ì0s #œÇ2rs7b“ù˜*Ä B‘ ”¹ÕšÁJbpÐq`5Û»ЇMÇ»ë ç¥Aº[ÚÂý*ÙÏö³')Ç&Ç—ԼƖÔž˜ÞÏ6¦=1}ÙÍ;o¼cç•[·Î}õÇ[ÚK–î§•°¸ÂîÁŽEKƒÏ•>ÓßTM˜¡SøäøŠÉ£X.;ØÍC,`ó·ùEº3] ÜC�è¬èÜ|o'sjÖ]×Áн›·D˜:êôsÏ;ù‚~Wë›®¼¥~ÖýŸò©/—û¿zñ÷núáoýö—nýö—®ÃUï{ùAóÖêî€i÷bgÞmÇH 8³77yÜ»“}££9£3|í¶O~ì³/¿Ïoæ[w7-•Ë]ŽïnÂÌmÛ3!zšY·�–½´p&rBpÔ KV-Ö�«N>bI¤¸ôÈ“Wà›±cC±hUœ *jKH0C(È£0ÕÌcfcЬ)"k&.C6 „Ê aB%ää&ÁM…r& pŸ*«sQŽÅ4ie/UÜžpí‘;‹3ya0f)’³äZ‹@žÛܪµ+õlZƒÚˆT¸¸IA˜"©Bô‚ ôS¦ mãL´„Ðõä[šw0zã­¤Y™Í” ¶Ú²ÐœŠàäî&Ä ã¢;9)£ꉓ¢\Œ#«Á-X½pìôÙC7uÚE*ª¨¡�´ÖÉ8†í” !»Ö]mYAä,În$žLK H�)SéÎÞqάN<æÄ€�è„¶“¨uÁ(Ù’fF]²WT†d÷’<1·u$€ÕŒ5;”Œ jU`1õdÄÙÈÌ80æì1œæ3sc0È ÌLäp(˜up&0€FŸw^Ä|Ü4 lf "‹qÏ0äø83Gíþa׃•¾oGü‘Žñ˜ŸÈO)„?ú”ãî½ú …‡´ìI§ž´àñ±_iŒæc™ ½º[ïØ¼æ†õwìܨã3c+gÇVnË^¥VÍ1–í64¹ÛìÉöýÝÚ‹¾vÝœûÜŸùÒF�8â>G”Ð-×|ô³×n¨�ê_ýì �ãO²î\¿yõcÞð® .¹ìÓëøÖÇ�n¾lMµ€ k/úÚu³æ³7~öK›�àˆ“/}/ð€õ»µ»ÃÇõÖ­[¯è7¯ï¾ø„ãÇžp�Üø‰‹o¯=¯¿ø¢Ë«„pwHSCÕËóŽÌ {î½êx`ç¾ì©oÿ÷; ´û¶{ÄCÆ�ì¼øs?Øî¾ùŠÿøV `ê1gRPïª ^û„§½âérõv3š¾Ï¯�¯_7cÐí·^·�½ïAªÿzû=åi¯>ëükg) uRÕEN138à § QfŽAÚ!1”CF"‹ÑÙ²šIH¬®•±e6à[§ NAc »›$Sƒ3ƒ¸Œ!Ph…¶*C`žÜ#,Ä\Wœú‘BãHma’b‰´Z¼ RJk,òd)ËC±¼5¾´Å‡Oµ9¬(WŽ…{O¶'˸¼ŒcZ@ Ln‘=:Šh%<°GxÁcb „R8Š3¡2ë›÷ÝzBý@ë&í%ÛâÚKis¿¾£Ê[kßZé6KÛ<Í$›1ßb4ºµª¶dß õún½±gëûõ†„-}ÝA¾Öó¬ ³æšœ îîÄTF!í;ÂKXJ’%AŠ–(EF4‚³³7ˆ\à"ÀÂNQàa G4‚’%!U닺»6êHvb#"goü20ðÎ`"f4ÎLÁB$MCb"&ð"€Á >ìñѼaZpi\?¦5^túDç"rbg,GS缸ÆC‹Àþ=AFô?žîøÒßÜñ8|éµ·l¼è;?¼ú¦ '¼äµO8éÔçû³;îÄ6FDî¾ •SšÝ¶e–X'VŒONM,_QõªÍkoÞÑëÏÌÕ]):Zõ©Õ&vjhïаfÀO>üc¿°Ûîè{ê¹ZÈv^ÿŽ—üÍK—4é[¶lË�Ð~äsŸsd¬ÿû“gœñY=îÄ“×u×^V8äÔC‹Åºò‘‡wáb…¯zäjÙSö«O^‰KoÇ·þä”~xõq¿ñ‘=çøbWÁö„³Î>åS¯¿º¾äì³=lçæ9®ÁÃêûÍ×pê‡W÷Ô¾wàÊS§üé§Ï¿åáüù[>÷Œç®üÆEÿûc4$:Mú'¿âEç_¿þÿþîaŸ™ÈÛfh?ò¥¯}`‹¹wÇUW^zyF}fí@8ì%oxìßýï‹·^úæ?þóß~í5 ,üžº²,êW]ù+2ÒæÊ…þ-{ÓßzC·Ú±�Ö½õÌç¿/¶ñÎ÷}ü‰!Dw#b§À!EdÌDZsp ­‰8”ž¤&Âm�� �IDATÞ·~ôÑɲ Œ[eGâÈÆ‰-P&³³±*G*ËH$=O™-ZËÈœI,T¡ТYûαÌäQDÑòTÃJá¬VHáu]IÉhƒ0ò˜HÏÂç@fŽºWSÉ®´„yNˆ•ºÉ-Gb#ƒ˜Pĵbˆº Äê RÔªÜuí(SÖçÚÑIÉ”wz½3H‘µ›h2@5ô£×ý~‘ ‹Ñú} äF¨c/s7„²pkÁ¢Q-º%B'in‰¹–êÚà¹lK! å9 íB{&n9fR€5H‰“ 4b‚± ›š ³» !7s°:±çDÀ@†ƒ‰làSßœSa28s0‘â0ÏÖÆá±Ñ¡ÐB\ÅÃb0"¯ZtE^ ¶6$~aÞuÄ©¹3É¢d74¼Ûr°W ÙÈ`öKOǯšœlíå¸p·Îß_¿O€9ñ°•ڮʱE·ûVMî§•ó{|ãÓqÁ…W^tÕOÎ8å˜7?ï1Ç®œxícùÂÅ—àÐUûuñh¶]¶è°—ª*LN<q\,Û­±©X¶sªÇÆÇ7­½¹[S¿×/9JÙbhÜüœýv±”í7=ïO_rëGÞüém;â¬×¿é½OY*š>îéO>aî?Z»q €±ÕÇ?îY/øÓW?öˆHé “Ÿþèk.ºêúK~d�Mó ß|Ý«_qLDo0 Ž=÷üÿsëGÿü3Û0vÄY¯{Ã{Î\*{ ‹û¼ì¼—_þÖ÷^µ}óš5›ûælž‡Ÿýñ¿Þú² ÞyÙÆY:úeïzÒš×]ðï=È�¨¸ÏËÎ}ù1TÃB²Ї>ჟ½míãþá{ÿõþ'½xÅ·>ræ‘Åà¼*@<ñœw^Òy×¼ë+ß\?ƒÎ!xîo½íMO9*:†½%™$„O~Ý¥XvÞŸÿëW¯½v&Ž?ãiçÿåKŸ´\Hl!zý`G0»ùÖ-‹ž?yÇö;°}ý²2…g 1Q"&™4 jÄf­Ò»`B(±ö~ɤ-åÚ5SÑ 0÷k/J&BîÔ8Y8«„Ù!Ì[¯Îe!É•Y4³‘. jpSTi)" và K,„œ¬3i…L;¦¸¨²uB¹1p1“ËÒf2£PôYÑ„C­3ÁœÉ±†²"@\ÆÙêÀ9’Ô¨˜êà¤^ŽÉMkKA·“’xœ•Íæœ’æÚCÎ9»S­Y˜DûsTÆXs3$4cÛ“"ÏÔ9İԪº—^•ƒˆÃ&²÷Ä&„3󏀯–s2uæL™]ÙàFQ 7B£®r1Næ"šAj2„ÃŒ%Ôêb n0H BM˜`¶L ØÁDggb˜ƒ`ƒc Ú0“;oŠÏûp4!i×c>dèÂ,&4È5M?8]Mì5,1³Â<˜Í·rgšFŒPí—Ž^ø £NXÞÚÝ©¸ióÌyknÚ{Ñ·m™;ëôû<}"?^¿y_­ÜtûÖ6Ò[>wùåkgW~ìÕ[qþE×¼ö±Çì§�ºï}ï{Ù%_“ î6,5aÛ†O7;¼Ný™Û½_w¦Æ$ÆVk öÉ´w£½ëÎùµÿó¾8þ?ùÝÝ¢CÝi$ì=“ˆ�è]Î^òþM8þMÿüW÷ݧ!ÃØèrgn»=¯:x:�ð­_{ë)Ïüâ&,{é—?õî.žÁ&"³ÁžÕN†íÖ¹AŠ&tÂðà,x,gmÁÈ?ju 9r³ø�l$ÜÄf'2u'eu%r0AÕ²!'‡‚ŠD¹äNAL=x”fUNÂb¦Vq(ÁÄu®8rªAàÔˆa‰\rÙoëŠ%`!¶{ý$wæ’<BI!š[¶DN–S JV«š!´9÷Œc Œl,9Ã,ƒÝaìA‰Ø3¤¶DØÍ¸ íVæ¦èNuêöTÝÞ¬lÀι$Ûz=Ëq¶°ÔW‹Ákݼ¬|Î<®¡^“97ÎxªACòD}rGì{?i„)"«J‡UÍPIJr.Ü”9*÷ÂYbÌ:GîLÄd™$'‡3êD‰AD-*8,Œ¬ÓP2·=ÄHÝÕÐì¹?ãýÏXº´Qµ²ª¯¡– ub2eÖœÅÄ™•29,;Iʨ³– ÌRºÅ¬±Œ±Ÿ\@Ä–Aìª,”Á2¹E’D�¸a¢—‡¹Á´ ìn‡Ò ˆð€E}!Wƒ^g‘ Þ¢n¢IÖÒ`–aÞr8þžaò±˜“f/@õÓ\ÑÏ‹.9ï±Ï|ËG7ødٙغþæ½:Ê3‡û?àÔÏ¿ôa«_ô‡ÿ€»SdvëÆª7;uÐáÉ¥Í/ߟݱmÚ=‹4õ¬ÿáU÷úÁgç]<öˆ ¼à_7l*ÄK§W²0ˆö ´;ßÏÛï;Ó>ºBû »ÕÈ¢?yÿ+òÑðÀû:Ñ[ÿ­oß2 ´þÛçÜÞK„ÅÅ&æ3Œ ï3CŠcqÃKn ¸Qþ¸‚ºC„È\1ÆÙš]3jxA=7~Žu6#¨+3³°«±$WG” Dì‰)dM™ ‰ªHØ !ÌŒØÍB(Œ‰äìœÝ9³Ps%0yh›ÔF˜Ëš“(!Zì;µÅ•É¥Ý Õ•œÍØÙ;$,ÞwUF46’dý ë…n#´‚ƉM-¸WLÊ¢_õÌ©£¸¹–m"ޝË:.q&ùTÔ­Eås!”¡‚l`R3B&Žh꺓š1¹Ä)äX‰‡Âê®g·–Ï&äE5sjY²9RΈ‚׉K©ÍDÂŽšuMÉÉ‘‚¦’ë[¿?9ÞªÓN²e٦ǹPÏ(:)£@85A=ÓÈ’ÙãÖœrßRyAvã /˜„²!”‰ÌHÜËõ©´ÄÄC,õKІ ®‰ÔÝOzxá–)$WfeÉXÕDœŒàDbÈ�N”ò gù”!âùLfóq®œ¸hñ¸ØF`^Æ›÷™Oæ¶7 Ãne»¸âïKÁ82žýBéàé ñ±¢Ý^=u¾îU“íáë®9ä¾»/±Sí]ânEj C}wö…)p {A En£Ÿ ›†—î4ÉÙ|î½³óPØ‚|Ä|Oð</?åA§^xñ·/½Íöªcã9/ü³×<îè]5ÃNm¢$ f*Ób(¸¡T“‹=w‡¹5I¤Ü@¸Ùÿ6iÈX¬¤ #‹BYaÌÁà!dsRÏä<0@¸2³»IͨÀDs%Íʨ \ÃX%zJ!JÀTcÖBšód5é0T)jNQ8R†8gã˜Ô2JÉ]m#¥¢«­B;hN(! U‚±Ü%©{P` !9rE"$ Ön«¬IR‚•‰d…RHœCM¡Œ`Îf mµÚ}©:ÞÎUêr·]ƒB\ÒývÕ±¥a[àÔ³¨¹")s²FÁeàL n®£·¸êI‘ÔZd ®!]Q§ºT7'óÀ̧Šfú±Í@1«d¨Ô}DÙlT¹…ÔÍ$¾cn;¥1”] uÖ ¢–Õs¬ž)ÊÅÞÒZÚí±­b�õÊÓ¦^Έ\™·9Ç pᙈ©Éåƒdx4š²%¨ºL`N9 £RKÊu q’Dê@fè qÊBNæ­Ÿ9ÄAƦæLÁpø{ å e˜ƒ‰|1+ˆóšgu'J|JãA¼ÇEëØ.(å»,�óiÔh¯³Ú3ï�§Ù*èUÏøiîÜÙíÿ<‹ì¢\k”Š^ç|ó J^çÿ_™æ§€Ñ}Ç|€9jÂ2ð¼¶É–U%桼±&Ø3-dI#€p‚H© ™ç ­MÈ”ˆÙ•”¹¤\S!ª WPv  FJ™<™à)PHž !³AÂM0óHdž2ÁA%8„H5¹‰ÜëJB§¢”„Œ¬Œ@R±sBQFÒ ¤5ÃËiâöò$í~ÏjifË©úĕIJ_‰„½ÊÄ,êͪì\‚k«C„‚‚вSžÍ‘½_SQx]IÌ)%Õd˜5Of]ÃŽ”Œ½[+õqcÕ›­Ò”S’š´ê'ç�u¨3ÈÍÌ)¨;\ žHª0ç*` *^'2¶<§¬V9±k»(º‰Ç½Û·¶nI9ku©NÄÙ+° Äà9×.Å繬“ $|P›îË-pK¹KËKfKLH=—g »cÖv¸ÞœÓÎT… bkc¦æÂ¼pµ‚Ŷ”Rbé(õICb2·@ ÖM±§V@(J_C$ &%ˆ›UîÅ”)Še `fvFÌNLPƒ› 9A³»ÔÁM¦—fgµp”ˆS†Ãh@dAÇèÃ|=te(_õ ã¥ïdH¿bw2‘i”ÿù®¯^÷ ÝqÓöŒÆ»/:äÄüÜŠ�XýRq>]¸ß8áûÇ=¿ûPæwGÓ¸/6 ½)Ii¿µ βPÄ T=ÕID†áªIÙÛ„.o:¿|ÃÕ„æ+¼ñ#3@ë,‘µf±:qAŒdn‚ºÊ,*+™)˜àUí`²kªK¢ä2e‹¥i!xÍÞ;WDž¸$8ÌÔkAS7"(¸V ©rJì-É0IýJX@NܵŠP„ºÚ™RoQ·ÖbÜ|F3RÇd¹¬¬v‚φP*ØTú浑ôŒ +ÏÑ=Â3i†%ÓäA¢šY½`ÑHíÊ\ç–QI¹GÔјá±;2yæj'éŽI?ÓL¥¹ÓCŽ©Û'n% !ZÉbeŽ,”ÜçZÞêV-%Mfr„d*K-“UÝì‚8˱Ìm­r*!N1åX†²§Ù•ÒÆj‹Ž^;h·Þ™*Ø\(Û4KmiSQ{OÝ­Õ÷²Õž4”¥®œÓ0Cí±_ÑÍË¢[UQ‘©ˆÅv3§=kîqʤ41P"ÉÚÊÔ'Hò”ku·&Œ³)ƒØ^©˜Ôël1);L�g³&Ÿ äË삳¡52ÕÀôšÖ»ÌÊÆ††“¢ÃKÌÜ=gßð¡Ò=Ö wøÿ0ãÝÅuñÿ-;òÞ?ýÍfyPä§îœi°ìˆŸ­âEÕ`ÖÞxý÷GœŸ™åæ=˜1ïöe¾1¼‘ØU5¶83ÓÄûÀF¾8ir¿,¦›l3¨ùÓTåó+‚ÍÇÂóùœŠC­8š.ùbšú¡Uh¨•…n˜.§…’Í¢6\Ïâ›æ ònYX²lÈ0ê‹Cµ˜iݘîÆ|AØ@¶[:0ßDéXåhôfØE�pßey¤A£‹ƒoüÂ"+- , šñá>Ï+Š9j±òfḻ`~<gà3N>´MtÃ'‰yÜr,„°voLRƒ1Yx,v~a`}øXâÐãÌÿj‹�Z<P3„&à æóü1_óî2ßè@ågóŸ,Ñ<ã"+.tuÀ–Ío틵Ð@Ÿ±+Ï7'.b•hƤ8ø¤ìc(ò¼—ýíh€F4¢at.yD¿Äô“Îv昇1æuk~�à’¯üëhŒ–®<t4#шFôËI'Ÿ|òSžó럺fã.06¢a)1Ft 0êúí7oÚ¹¾Ê½»)z•±µ||Õêé£x“6#Ñ/9…Ñ ¾·åÁFc0¢_~ »~ýU7mþáwÖ|}ݶ›Õò]®J8¬ž>òÁG?fgwˉ‡<àžNé>¢ý|altb~„å#: hݶ›oºã—üðž~νWÞ'H¼ËUeM7lºöcß|×£Ž{ê’ö²ÕÓGކwD2ŒðŒè@ M;×}çæË^xÚ9ǯ:ån2­p8~Õ)/xð9Ÿ¿ú#«§Ž<dêˆÑðŽè�†1áØÆFt P?÷Öm[s¯'ÝSìz¯'®Û¶¦Ÿ{#þÑHû€±‘mlD¿ô\j¦–…ùžbWaQËn6âÿ¤±_ÁˆþçòêˆÿGt`Kc#)Gtàpé=Ϊƒç#Ñ c?+ëºþúã>øÔ/]òò£âðû_ìcݽžŒ¦ñˆ ÃÝPŸTuUå¾€l4¸#:€al³Â·_øŒ¾ôÛCW–=ç¢+~ÿ˜3žú¤ãÇh(<Û=¹Gôí>ãÔ³§>xí>1¸Ô½üyæÚ7\}á3âýÍð»Ü“‘m`DŽ4vWxõÝÿüîw~ü¯zî«Î}þ¹{“ÆFü?¢_Ui̧pê?}þý;��*–Ý«5Ýyõ[ìšïõÝqúuÞiCw¯'£Ýèˆ[üû³Ð¿]ñïoÿøÛ'N-?xÅÎ}Þ9{ÆFü?¢_Ui î€Lyâ}OšX¸¦·}ð‰ÿÐo|ñk/?*,N,w�ýµ^ð¦·|습],9î‰g¿åÏ^ö )¹ë“uan̓ß_+C¥ÒMï:ãÌÏ<ö÷NÿÞ?]tý¦¹ö}^ðgï8ÿÌÕñNÛш0û©éGktÞÛoò¡­±ã‹“pú>’)øD¶4æw6a|—{†RçíòÞv\ú†œ÷ýǽå£o|ȪúúÏüùÙÿëÜ_ûÀ³æ»4K‡º¢ûheåp¯H7|ð Oúøg¿ÚøÆÓ™¯ø?ÓGî5'”#ilD2~í3Gàú;Ö‹„ƒ–®Üíz·?÷Š Î¦£òäƒÆ¶\8÷œç=Û÷’ßk$è@‡±;›;ÕW^|ìáƒG¿úß¾þÊö^ïÓM_}Û…­ß¹ðõÏ9®�pØÙöÊ‹žú‘Ë6?û9+ï„nt@§ì¯•g>s÷*ÆÿšWœ6-À!gœû÷{Ì[ÿñ¯yË)û^ F¶(0¶ ¯Îvg_ùׯºô¿.;ì C¿ò·ÿQÆÅ½ššžó¶óÖVkV>c¼SZ>³êá§<lOVÙÆFtÀØïWsP8õþåÛu>T|óBÖ<Ê WÝòÝ{k¿sÆ}Þ1TÁ‘·mw_ñ³OÖáFô®þË¿~pïäcýr‡žrX»y6ž¼÷IK¶~ÿf÷“GÒØˆh Û“WßõÉ¿ùN÷›‡¼tÉÎïo¹ð²‹žù˜g,°ôëÿî.þﯭ|Þ8 Û.éžû¼×ÑÞX}$èW\ƒLuÒ.¶±}M1s9ùßüçg¯¼ò>ìÚhwf:`f¿­èúÝz£I¦¦%ûiö¹#Ñ í«Wÿøê§ýæSZ­ö—;_üô~ú>ëÿ±wÞñQmŸ-×/¹ôÞ „’zïÕPAi¢€R- tED@D¤)ˆåU)‚4é½…Þ! é=Wrewçýã’äö.—K!Ï÷sbnowæ™ßóÌ>;³³wÆ}–lùrûñnƒå*÷?M€,pP—¼q“ŠÀ >+º,½SÉOÆ? Œ1ú5 Fû÷\ÈÜÏ•¬Zg5©ôÙ˜Ïl-e­BˆM8w7wb°;‰“v)6ϹE€…–B7ì!ñĪX$—5¨ïÑðpʾûâÛ÷îù¸ù|ºvîþó\ûÈÄþ´æ^s˰dþbM›IcÿÀ‹>³vüäÙkæàÕÃgOYŠgk憳ãÎî?Í š5:\Xµ„”ßÓpáë9¿x|ÚÓ9~ÛüoîŽ_ÙÀâî �uÎ4V7\½g…¼©!$Zô¶^kPéT®12i„ÐÎäÐ|0hRËÍÌ9ñØy³<Ãe—¾£²ëáKÿM8vYô¿Ý/3ôû„$žQÍr$+½–—§ÒR+I‹µ<³JñÞ„ÀÓ;ÍË`]¢F}»þÃB£1À¾‡c<±Ú§M¯ŸVn6¦1RB0 õôîå"?šUr™»Õwxÿõ '] þ;Oc–ž#ý¶ÝîW.×QÞ£÷]mÜXúo„Ч÷̵½gZ]¾µ•JÚ®¾˜TA-e,Á‘ní>ú}ȧV¥kèÆ€=d1¾{c ƒ¶õiwûQ¬$T€rl%vl%F±\úŸÊHïÆkf¬" ÒòŒ:Ä?`ï£1³»ú…44Ýøôñµ·ÒÊÕ^ùoô€n ØÃ`Œÿ¹±IßñÝhI I‚F¬’#dæß*o±÷êi«D‘åðưRxGcIo›ëK5o¥•¬¿¬ïÐûIge‰®ñʉ;ÿ ¼HŒJJæîRˆ7ÏÝèéâŽ*Ñe�À> yø{ÑÁ“_;8Ê—²þ�°gæ˜Ææ#¬ÄÙ;Týöûß­¦_ê�/æh Îâ�`ïÈ$²_çmùëÈṈ­?oU/ 4^¢4¿þ �/�BZ8¢÷0Ðx)GcÅ�À A‘Ã14Y=O2C‘ЀÑ��5?Þ¢„^þñ9÷ÃÝUKñ9÷½ü…´´ì‹—`‰‡ /�¨ó¸È<šùµÛq}˃¬[ ÇTqö ëÖŽë[šú¶v“y‚¶€}Æà,�v—ƒŸR›ß.¸û»;Ò”I,ÇÚ\ER^þ탻8‡y:ø‚¶€}§1xò�ìc"… ëy4VHœ½ôŒ®*·Di‘›ÌÓÓÁîvŸÆ2R“@°#$ˆ’ iÕËQçe=FY '`÷i¬EǾ ���P‡ùÔRC0©���Øïh Ü���vœÆ`4���Øóh ²���`Çi &���ûMc0���ìy4i �� ÖIKIº{몲 cî%l>A2ǰz‚B ¢rÏà×Q��<ÿvíÊù†Q-ü‚áK¨�DZé©ÉW/aY&$¬þs©ò³!��x‘+\Í}t÷Öµ†Q-‚BÂÑË:%F¤—óÖoÄ^ðòñ—H$UUQA‚PæçÅÝ»^›Åq.��/-$I::»…E4qP8!Œ-œ]•y¾~°4ÁÕÍS¥*Ðj%bqFcU›TTæçÞºz>¤AóÐFNIB�ðÒ±l~^æµK§¢[vtpTX8»bŒi�Š“‰9Žå˜JIQÍK<âîÝiÐÂÇ?ØÑѱ²·é���^8B¼<=o_=Û´U§ ή°¼®TªT&2T¬Rõ¹Y¡Ã���Œ¸{ùäfUxv…UâeÒPeĨæÑÇqIB��0BQ´q¡€å³+¤±ê'A–eò³ÓB WOŠ¢AY��€*2lü”ã8®Ô|“$E¾È‹*73;Óë´µ!$‘+Ä ��@?5ûÑ©³GŽÛÿìÌŽ‘@(ˆéýzt“/¨P¨Š÷ÆŠ„™ƒñ¸÷��P §g›>=~â@‡öc2Œ9Žcõzý¿·»»{øzû[WuÎöž#ΖœøÝ›¼6uåªÉí\¨:›Çª0+Nø$E9»y•Û���ØxrF6ÞÓë ,Ë<Ž¿W²ÅÑÑ9(0dãO«†)ÞF ŒBA÷®1íÛtåË‘ÝqÕ±Uídœ.÷Þ¾ÅçœÖøþæîŠ2+8½ …äsªRI‡4•Òf L��,$* 'O\4áy± £Ñ¨…d¤çŸ;{ÿ¿g÷ï?ý(.+áIžñ•”˜ïààêïçwàÐ?fÊA´c@½ˆú £Úúpî`×ü›73Œõ÷—F»6›³fzï®2§–Ëïæ_^3¶½¯ÜA"óhÐîž$F\Î?=Âg^*ı©¿÷”ʼ‡-Àã¼}¯y†N:¯ÁX}ççICœ%2‰" é›ëïë0F>Úþqÿ†™ƒwˑߜÉfÌ·Ô˜½*›kàî��j)Ùö)ðYÙ™*•!ôèQÚ¯[§iÚdfĨ·š5.,ÔðUœ Æqê'Gþ8žãÙ­…‘#¤¿»ö÷>Nþ׃Q¥î×}Ö­˜ïþØEþ`ë‡ï  <fnè>!9?NÑ·ÑÞÞw—èc?ÒvmÂÝ;tG­'bâ×z(bÕþÍ=ýé¼GW®(E#6÷Èô˜ WcVü½¬“·þÖÿ>7pŒG쎾TÅã1«1;©È±l~n&BHáìNRD ��@•²˜­“Š“ž–®×kBÇÑ4}øèþrûôìö Çq9Ù¹ Ãb¾4†Öîä)/Ú j6cï¢Ö²âÁã«‹>êî-DˆÌÝÿíAÁ°]ËÇ´u$Pøœsþ^¹öê´š¶êêùÙ+¹S¼“_wöa³CûÏ¥0gÎ䆽%G†ø„:¸K÷f!Þòö h€ÂLʾ%ÛÅ“-ÑP„ ˜¹rÆŽŽd éUQ«ŽÇŸ zV£BIeŽ"±B�� Šy̶Ñ˰ÙYY¥·´hÚŠwOeŠeXþÑ"èßYÑNŽUÊ¥Ÿ?ýøñáçê‡B¿¦bŒBº¤Ø"lJ#91BHàÕº­{^ìý<¶Mp梭ûï´¸sRÕxîk½â6쾞ûšî`‚g—V×sl£'6ŽÚÓ»GÏ~C_ï*#´OÎ>Ð<>ßÚsi)[Bsö¬@¨jyü™¦…Æuö4-„û^���UÍb–Ü# “Š ÊL‰]¾z±ôcd¡î]zbŽax¿£¢{cõB F|}vG¿>8=�cDP²T"%JMêáâ% ^‰(\rôêÅëI!ƒš5ëæúÕþØ+Ú;ⳃEcI£Y‡îö;±oß¡#û— ZòÕ¨ÝgV´Å¦š¯Bêv@�� �IDAT¿{p¸Y©iõ,¸'IÒÉųÂË���ÀÊ<f[’cV@¥1Š"wîúåò•s%¿®i<ðرƒœC73“ŠÅ !„‡B…9j¶ô'!_³@|ðÈmåB†”óç2š…;˜pŠîáŸöçÖ­îÝ»ˆ:7ǶlÕk#4B)"º½Ñí­i3úöo4ýçë‹;‡µ E»vœÉ6Ȭ”PÕro ���¨Î,†l\â!‘‰‚¢sµ—œVäöê# ‹Öíq%ÿçƒa÷?;Ì-ñ`òÜ»'ì&åòÏŸîÈ÷Ñ'¸ø±àâÌA{¿2¥×‚±|Ônãôβ?Oÿâvøû¢%c¡_»v‹·œpñ‰¿‹#z…¥Ž9 ¯7§¹0.¼¹î‹#½{·ufü{×àõž§€òê7çÍ¥ß{>7T+œùàä?G¹aóÇ×V˜ÇªÆ`à��P#ƒ1[ŸÓé‡ . ÇaŽÓh5Y9éŒAâ8a„æ8Œ0vqõ,ÔhùFc#Ìœ™Ñ¥µñ½4 ýèµ?Ík+ÃX_´wÑ@ô´n{挟õn‹DßùmÓŒHÆ!QXï&Â-'"û„‹1FŽMz†¡SmÛû 0ƈ R÷.º ±�#±oëák¶L§1áÔ}ùþß=>^0½ÏÊ|„$ÞÑÝßš« *”¢z&9–-ÈÏF9*\a¥"��@Õó˜mc5ZKÓ•ZI Œ0–ÉŒXã@Œã8c„Y–cƒF£å)Šp¸?c ¯M°™ŸÎ,e¡h6aÓ± ›Ll#œb¶=Í/ÞBO8—;¡¤aÂð1ái°È¯ïg¿öý¬RST=“ŠƒNW¨B¤r!%��¨R³uR‘10÷î\svv!Š ÿ¿/˜eY–å8ŽaY6##àכ¥p1»20?'½ UÅ÷Å+‘q¥¢@�K<���jt4f¡CÞúkû¦Â=¥RéÐ!Ãí"WU ®Ž{cA::¹•Û���Øzr¶t"%³KùúôîÛ§wß—J¨*þÞX• I’eYˆW���#,ËXóÛ`Ä‹üûa5K5§1Gg7e^B! ,���B(+=ÙÑÙ­â4F UHcaM®]:åééááåë�x™áX63ýiìÙÿF·Ñ˜Ý¤1…StËŽ·¯ž=—›Åqè �ÀK I’ŽÎn £Û8(œP7ÆÌa¸ôçXÖÂ=ÂZJccGEÓV ‚��JNŒ–?—HeÙYéžÞ¾/¹NÙ™™r’ª\&£!À���ž/Áׯ\hÚª›»'I¾Œc2Žc³2Ó¯]¹à,‰ ��ØÞ>~ ÃÞŒ½¤Ñ¨^Μ‚”Ëü‚Î.b±Ò��€}ĉ€À wO/NDZ/骒"Å"Qes¤1��€º‚D,–Tþ$ÀO����Ò����@����Hc���ÀËBù%î]Q����{Mc¡Ñ7/ï»¶=9'åêÄwÕS$åëØ7úõ¨€à0���ÀR»™xeÇ…­ƒ:Œð÷ªì7‚ÔË%¥>Ùqz+Iý›Ï����³iì¿ÿ é0:À/¸î˜HRd°_Ø£\Ü2µuÁ ü”;AR™£o`B(9!îÅn,H QRTEgWèÈ<i,3?Õß;ˆ@uî—o|=ý³•™Þ~BcîÅ PRoÐ=~p!äþb7¤†¨�)láIÜ„d2ž4Fb’¢ëâW{„" QE±ó";sE9*œÔJå‹ßX¢¤°U_ÿäÄ8Hc<iL@ ˆºº _@ ðËñfιٙ~° ¤†¨�)Ì@Q”FU�ÁÀ“Æh‚&ëj£ š{9æÁIšÆspW ¤†¨�)ÌŽÉX¸qna4FÔM[_žÑXñÌ\wƒÔ PÙ4F¬ý i&yK÷^›í=25¸vn¦ Hc�¤1ˆ (;:7ñˆ,óÂ{cÂ}\Š^ÁÞ˜±åž“$" „P¹kò% æl1©¿¿Õ£ÿ–}¹¿«øªÆ¢J½B\µÈÿÒ?Y7¸Ç ?R µPWõ¾ªOöZ’ÚŽ¢Âê“õ» ƒ"[tnÔ~Îiu­vÌj—¢zÚRëñ� Þ{c&“ŠBÝ~ÑÞå­$ÚÌØ_Μ>š;¾² QòiÍÌBr=ÉÒ¶•»þÒ§Y÷õÛÎ&äsˆrðnØ¢çÔG¶r23šä8ŒÂsF Ž=º…JŽÃlꯣÆììûÓ_oùØ4¬,U”¹]lª¢LcqÁÁ÷κ^ü–rŠèöÆ'³†4U˜:[S)Ç!„æ°ãë(VÈ^-R#„œûnÝ5=º*¿U¶LRîQ¿IÛW‡¿5¤¹› ’Î-1çÝû ¾ïŽsùóϳ"D5ï6eßšMI¾û{tG±LlëyÕÖŽiÁk"÷1ã>œýZ˜Œ¨Ý¶�uuR‘ ¢Â#ê9 z êqmïàCûžèÚºˆ$’@ºû>žöÃáËOTˆrmòú‡+–ˆ”s ë´[ÓößËs›ˆBç=¯?½¥¡}²{ÑœÅ[Î$hSƒ˜)ß,™ØÖ™Ò?ZÙ¡ÏÎW>îxyÓogÓ|?>xö£z¥m+sSWÿhÝäÏ7 b>^1+ÚC I}xñÜ“,-Ça3‘‹1.:gc9¶?£%Bco”·Û@©¢ÌžÅl©¢Lc1ƈ šNýyv¤òãÏ®[²á}²a ¢ •–Ò¤j×"œÁ€‚Ú\d…ìU‘ºÉû§5”eLç !.•-+ߨRî óRãÎîûó«I‡O|ô÷}…•qî3Så­n]«æBº[k?^’>hÍüŽ®B¤È-PP+Ë Y 9T@ó&ÞŽòª8ÂÖŽi®ƒˆõ9·v¯]¸t6øe~3©uQjC[j?æ«' Dš¼ŒÉŒ$I™�1z®øXãvd ë\þç…çÎìù¨ñ•…#æ]Õ ÿ€ÑM³÷ü~SkÜ'÷Ä/'¨cÛ¹\Á‰Yæž ¹ýhìÕß ÈY9dÊöL ’@†ûëvЧïŠË~|䃰Òf—x<›ŠH¿z"QþÊô÷^oU/,(8ªm¯w¦¿ÛÛÀú„oôøíŸ‹ßÞ¹kŸV1S¾<œª7…QÑÈÃúÇÈWnM4pªS3Ç|ýÈ÷í¨mzD÷ú*6ßìá\ÁÝß>¯sÛÑmúö²þhª¾lQœ±êÁëö®ž6ºc‡ÍzNXx0EoZ…Z·ûë}{G·éÝ~àÀþŽ×•Ÿ00^l–y!DË=‚ýƒƒB¢»™Ð]¡Š{”cà0§ûóËQƒD·éÝîõ7çᆱb±i¥Ž+|zðÛtëݦG˾ï/>’Á`Œ1ÂÊ{¿~:¶}›ÑE—­×œžú„oôôÝö¯&¼Ù¦Mï![t¼úp|õr.|zpÕ¬~]{D·éÑé­›¯æ±‡Y>ex7V,;‡9ŽÍ‰]7mDë6=¢{OZ¸c÷¤nç\Q[%µ£O½zaÆW«ØP¾±z^û͵«”ûBÃê5ï3ù˵›†ÈÏ­üîhcѹæM%¤þaF C)BâìpmÅÈYÿfr¸Hù¼sÓ{ ˜v2Ÿ³Ð)Ì\êÅùlÞÁ÷úŽÜ‘£»ôy‡6=ZϺ¨*}¯ËªØ15ÖvÐð&¯~0uKþÙc Z½Žãm ¯,zëÂÀ|@Vµ/˜ÄÀ“Æh‚&QîeLc$"HCÞÍ_Wþ–,nÚ%HRt°qi“wÞÑ=*Ìß/¢Ý›‹¿ìª9¸/NK¼z¾ÛNõÏ–D\ö±ÏKûlíHàôÃ_ïOÚ0ï­¶áAbf,ýÐ÷Ò–£ÙÆ9JÇþsgv÷“´\&(mMÐs%/Bæê&Pݾð —áJoǘCˆ‰ÿëˆãøïŽü·k÷,¿ã çlŠÓ-NÅÆ•º%‹Ûµqf¨ lòæ‹gÄîŸ-6s8›y`Á쯯~ðýÆÝ[>ê­Þ=ýÃ_îi¹²År1þ:$¾üÈñÝ;'»^úí‘lQ¹*"söÏýú¢ÿ»Ëwïúmï–Ï'´w Ó& ò[0ÂEµ°š”Ëÿ^.p¬ïJq³"`à̯víØºã»1õoÿ0õû[jÓv óÎ,›öÑ>óÙw»wü´uN¿úbãô:óð÷-w#ßÛôÛê¯ûq{¾øöH6kžBÌã¿ G­<~zïoCEÿñêÃñÕËåŸûfÆü˾ã¿Ù°wÛ÷ ºämšþÅÞ †IáQ†w£²³˜ÍØ;ï³i­æoÞ²÷Û!Ò½?ÕàrM«Hê2"”j¬üŸýØL»xÊD’¨7†é¯ï½£²èÜ L-ÙnQ{uéß8÷Øß4Æ¢r/í>O¶-CæœhÞàg/ÞÈ×É{®ÝýókÎÂóOž9pni3i©C̸¬jST¯´„F¬á¬q\¦´|[,øÑš00Uî <~¬{ü™$Öíäl|+kòÎw+^q§ÐÓâOI±Y'¿Ÿ1çÇ·² ƽ$¯0$!vïúngÃÄ_/´ï\ðß—œ/ˆ–#R“p1®ðÉÅv¡ËKU’TÀ !Ú·i ¤hXÞ6®ôˆCËS;L^>«ÛïN!F7kõJÿ.ÑîBãÍiÇ1#›È‡ÜÛ|¯þ˜ïwÆúÐ¥èÎȳ¿1‡ÆÅÍ>|xÜÖstÌ7_‹”È÷ÝÏF|ó¯ÿÝòy£ÒEq!—îcG4QùuÐzõW'ã5=£ÊTaÈOË£¼[¶ ÷u%‘«³WBˆ3½´*³ sÂúÓs:¶/¾51tíÄbŽã |àpãVžN9wäë“ßoÐ.S)—qzý!}/gkë@ „<¼ÂBLFHÞú½7u Pø¨Qívs2^ÓÓIRîÖžSe!yç±c[ºÐùçáÓg®O½\æáuÿ‰†oß7X€ò9ùí#l;ŸÝ=ŒG=¯\lŲwó>ó{¬üõµcz†‰ò˜8ýÎáñ‡Œ‡TJê€wÖÿ9•n,©¾¸žÏþÞ­cyÛ#àŠêyV¡ ’ž$å8™yçZŒŠr7—8¹´|#ú‡¯wÝ›Ü0JŠsÎì¼!î¼8RÂq ¿GŒNâ7¸¯kIdÓÎðG~Q”LLlâp¦jUØAŠf îþóË® a“^®ÀÇÅô•—n —u–_–ÞœU¥õæÈîúªö€Ù|oŒDˆ Û}±ïëV2Jâæà)£Bˆ! „A‰³öðÖªìI?žÙÕ.ÄU¢=ûAäP5&H‚@.íÇö¡Æýt6;8á—Þo¬j,%D Œ©fkïüó¦gÙºôq"(M|iŒ”}ÜO8à“]=Òo_½~ýÖsWߺwüº¯Æ‡"Œh¯^bãÞ„<8Ü!ïA²šs.¹eT\N©¿KþÂü‡ç¦ÞOA¾ÃC$Æ©|ʵAgÕÛ°tQ#Ú5Ø¥ÈPRâ$Ò'råªvºwá1·oÕ¶MÛ>Ý£ý%„™[ÏÞ DPÑïÿ8½‘³šÌû»¿_7}±ßï‹»yR\nì¶¥köœŒË+úfqÛcªL¥ÚÔ;IØÿú²2åÛЧ¨U´ƒ‡ÄðÌàÒû˜êÉÖÈö¬ï)Ä#¤Kç×GƒyêÕ&ßJЦÜõê¦RíõOS’Ýy”á— W,».íA*éûŽŸÑ@$ô .å}‹RG½÷Ãä„"ÄžN/ÝXsö«Íl7`ç"%K×Ä=kƒyçZŒŠRiA8¶Ô”ùâßëªÈVª Ûn9öš..–ÈÔ‰9OÍì"(~kγl¤áb”ëªü.«ZǬ¸ƒ`ýéÏ:w,ºŽŽ8ë“vŽXã8–•n‹ùÝ(ëJ£x’·Vª/@Ʋ~4F˜.ñ A 5r(»Ýøæé¥[†&‹&t¯çJ Ädߺ—ËÆÙH‡ï¼&¸ö×Mi÷ƒG®«'"„Ä­BÑ?ŸÉ6È4)!‚à[ýÈûø3!voܶGã¶=†Šùþíi[·Üxs˜30\Ñ6–5pEë J¦àËýгÕzÇ8Fs˜#ŠÎA!Ì¡²E¡âëb\¼c¶|‚À1ßmí{îä…ØS?Îݰ¥÷w?¾ßÚän~Ù…XcDÉÜüd¡ÀÀà)7ÿ›ö×ä#å|òGÞëŸü¾<2@!ÒÝXÑÿ“BÓvá¢wÅö—¬TĈ P±Á¸Äà²ûðë‰0")•oNžz1Ça²þ¼m_—ºè/‚O>¹¤ÖÈ^\W”6PñЏХvô‘•ldÊ5–ßþÂfÚÅ)±QßRë*Ùœø„B¡§Œä8sÎåG[2µÔ…F‰£¢úu$¿Ø›ã›¶ïž{·O‚iÌqœhÆàgvš÷¬1cže®¼.áªÔ1+X©ˆ1&¨&ÖOm(%ENžžn![ç8ÄéJ·ÅìnÌS«Jcžš Ȫ÷ÈdÖ,ñ ¦l™{>¬d»Ð³Qùpß©tÚûÛæ.»T¼›¬Éè×]O-ûáaý1ƒBÄÆ'À¼ÌyÓñðï,ÚqõqRò£Ø£›|öã}†,J`fž#,>7F;(N©ÑsFlòÕGùÆ[Õ†Ìë· ažââ“´qÿR#’@˜c‹ogóîèæžž¤6î¦Ï¼}=Oæ/Á¥‹âžÅ)‡¹gݼ\˜ãHiP‹î£ÞŸµaãÌæ¹§v?(¬ð±˜â¢ŠÞ²#¤Ë×0ºôÛ™Ðaƒ›(²ãž°È´]Ï?"ñ佶̽{s—ÛǬž%ÇÒüúùêxFø£'‡®ç²¦~äU†oc…²Óî!^ìÓËIEÚ&߈×clÅHfDxV…9û-´«|™œêÚöÝq¢ÈWê‹-8×Ú‡¥zvî—„ê,¾´}ÿ_»}c:ûÓ–œ¨ð2<[t9PN( ~¬bÇ´Âk”Ì388 $ÐÓEŒ*å8®l[ÌîfeifRP-}ž«x‰I›,S$ʬT,¿$I{þ~Eò lØ|܉¦Óû¹ÐDñm3RRÿÍÑáˆh9îÕ�añrG—ßìÿßDÅ¿Ó_iÙ¼yß[*‚œèò«"˾h’.íD6íȧ3VnÜ{þÚƒ'Ü8¸yÕ·÷ÈÈΡ2c„ ×^¾ëVRZâ¹ßÖlŠ÷yµo¨èbüÙY¥èoBìåN¥]¹ù8#7/_Ø9\êÚjx+æß¯7ì¾ñ4ùáù_üöÈ¿÷0!.[,F¥¯+‹×S•­Bý`÷šßOÄ>JËÌL¾yêücÆ9Ä™¬xùF¬:íI|ÂãÇñw.X½ú¤Ò%º7M9úOÇf8¶ðÉ‘o·Æ]–­”si=¶»àÈßl>÷4-åþÅ#ŸÏ4˜3¸ìùÁœž¥%ÍèCðÕ˺´ß[znÙÒµGî%¤¦%ܽ´sÃÆíñ:-Ÿ2Z~¹*–tkõF´zÇ×?~–úð솕‡Ó8ΩMO’¥« ÌØon{÷Å=ˆ=uà‡Ï§MÚ©j=q\'¶àÜŠM}fpI‚„ÇtvºúûIþ¯uö¤-:QbÁ`®ÏbÎ8.ã±ÇœËªÖ1m𚵎+×ó»YY@V½/ÀJE«&)‚"ÊÍ箃f 6=TðÞéÔ÷ŠÞˆÃ‡nø÷%Îþ ÔžlnR¤ã¬Þ¾t©¢Åý?ÿ_ÿÏËZoöåÔÙfl¥ªÌl¸<¸uÐùÝ¿}»9MÃ!$v¯×éÝùSûyP8!:dè`ŸSß ý.‡S„útîÛ¡‚¢/ÒÄ%”L»K›ÒdÁÆQC×"‡®?lÄ8rîþñ¼œÕ뾟ú~x7ùrÎ0!.S,*5³_êÉ-ŒËTñíWáY§›½)]…‘нAßY ó§*¼aƒf¯¯7¶H>ï¨Þs掊’`BÒá“©·æ®œÐc…Tá9ðÍ6×¶o”m×ÿ&·™ºd|ݺÅ36èÀ%¼ßä(dÖ`\fΊW¦ì±„}œ§^BÖjÊ—K7­[õÑ/*„D.-»—„Š6U†HâÙX´¨Í²ì¤kŸO?I]ºvá{û !Þ~³ù“íY!52Q¡\cùíÇæ¶—u)u ‹lñáׯlêB7×¹¦7…x7‘]úûïÜ ïÓÅ“,i™¨˜3¸ÔÀŒg‹ï]™ÚDø\Æâ*uÌÿMn"®¬×¬v\¹¶˜ÛÍÊÒÌ$QÕ¾�ßÌ yòØ^¹ =9þnÿ‘ËÌ~§×€ÕV<6¨r2îþoB¿e®›¯mŽq©ÒÄî¡=¿zyûW¼“üóøiG_]óÓk” ÕTñðj"/7ËÉÙ­NÄHݤÚñäÏáÎÞ¼ü oªŽJ]]Q¡½»tÔÂäw×®îáLÔ'V« v䵇Ö^y Þ¥GLÿù›¶]OO¾w%ôîÎþR_õéñ^ÿ‡ ~cÍ÷=]àæ$PË`õýcGó‚[ÖsAY··¯Ú™>ºƒ;õB·˜ÕäÆþí°¾Ù‚VNÐ倗qR±š‘wý_Z6¨ </8Í“=߬ÿ2ǀؿՀ/§÷ö¡_èÞ\øÖ“¬w¯SÚ8B Ùk›|Goþkôó:ô¬CMÇnükìKä,iôÒ};먡g5|¯%����i ���� ���@¥(oÌÙÕ³.››–šôòøæ¥j,H QRØÀ‰C;A„òi,7;½ÎÚZ´���vÈ¡=¿VÆŒÈ]@,��� N¡.È©x4f¾ò���° `‰���`ÇÐ ���ð\8¼çŽ5þÜ/AÑ‚ý‡C���ìŽeER‘H(—ÉÓR“m+&��€ç‰X$ªÊáÆ����;ÆÜ¤"¬T���j[R Y ���°Û,“Š���€=CÃ` ���°ÛÁŒÆ����{Ò���`ÇÀJE��� Ž`KêÑ���`Ç@���ìxn ���¨`xn ���xù€4���Ø1°R���¨ àêüNEHb���@íç1€IE���ÀŽ4���@���€ç<7���Ô lJ=°R���°ã<“Š���€i ���€4����Ïxü���¨ÀãÏ����ŒÆ`<���ØÏx ž���ì7‹Á¤"���`Ï@��� ����¤1����€4���¼,À‚{���ày«žzà[<���€º˜Óª6ƒ<���ØCƒ{c���€i ���€4����ÏX©���ÔlI=0���ìHc����¤1����xÀsc���@ÝÀ¦Ôßâ���ØoƒIE���Àž÷���€Ç`4���¼€£±j ?'35éQ¡Z‰±- – ‰ÌÁÛ?Táâ~���j5åçd$>ºëí,uPaËØc2?ñÑÝ�„ “���µšÆR“{ùIåŽcÛFc!©ÜÑË/05é¤1��� 2i¬Ê+< ÕJ±4œã8ÓÔ*¥F­”ÊdrÓ·åKe…j%¬8��xñ©ÆçƪžÇ0Æs¼Ã0*ß ×k0'•JMßòy ���òXeÒX5À;C‰ÅRŽÃb±Ô¸C¹·¼Ù÷?p/��@]†¤¨®}Þ¨ýzkð[<8ŽåOcR©X*-Ù¡Ü[þCdŽ"���u‘H(‰ÒS“«˜;l;¼GcØü課( P���€ZMcæ& 5*Z#•I%R¹é[~+i¸ �� NcÓ³Uu:a3“„j•Ò`0`ÌŠÅÓ·¼¤¥<…��¨Ó£"êùŒ7jj¥"AÇñ>ø,‘H1VK$RãódåÞ–·c‚ :÷yB�� ÎóîŽÕÔsc©Ü ×‹¥2Ód ™ƒÂÜÛrh5j‰Tëí�� Vj4VU¼üC’ßs!½Ä™Í_F¥-Tçfgø‡D€s��€ZMc gw‚Ò’g¤$ÚþÕÀR¹H„¾‰ ���¨Ý4fÌd���€çÆàV���PÓàêH=ðëÏ���@ÝÌkV¿þ ���Ø1Æ����;¦¦ž���€ ¨Ž›c0���ìHc���€+��€:¬T���`4Vu”j-( ��ðâ ׉4SŠ���€ àZ?&���;†4›«ò*AWðU‚2É|–Í,È_þ8ýÓÇ9g •KÅ%%[®B¯Íÿ2Q™ú\G˜VšZÙÒjÁàºY~…‡W—Óí(ÆžoÀ�€m飲ÇòQ#+ÝÜÜJõp•Ì$œ\ÝÜxS&§þ'17ºAƒ¡¤A™2'ŽœÔÄ+غ1bIÉž¬d …ºÉù~ØL§Ô‘Ù´YjSSŪÊ5¶ŒfKíEé•¶n•ת\iIlÓ¡BÌ9]ÿâÆXÍ© �•A«QV-Vú¹÷0&“£ÚŠH¢ eY;;ùE˜Sõ/G{kB?jºF£*õš:�¨«ÔjÃÙ9?'æÜÓq*È){�� �IDAT‘¼w°o_©zÝ­ä‡,Ž¿qo·H,Ó«óôMlEI‡6òo',Ý­qfNƯ‰9wtA‰ZŒs–ºdNý,Ž˜åLZÚ !öáÓ„r$£"¼¢ËÎ%¥§nyš—È ¹ÔéÕPïÎRR¯Lž‡;8³× ôùæë?ÖK,*wêÑl‹K;¡40é s™ÜÀÓ[<'Žk­`ïª jêã7ºìQE¦6’z˜›gxÖØæº3òØf(n¯šÏHVµ¹lᥕ4µ9ˆ,ï—~ Ú‚×ú)hÒÔ.úr•¶AJ“Š*Ö¡¬ÓKw’çÆá¶ ÃÕ=vôûÈ£`q‘ÇÙÇ)É›’•YHPßÓY–ëT/l˜ŒD!ÌÞONø>M•„MýýÇU¤L ÇŒ†²šãÏí‰K;£ÔbÂÙÑõÍP¦BÂZñìf»Ú��iÌÌüŒ:cåcUtXØd'º 'uy\²gdÀ¤HôõµìvQ!„–&|tªô•TCC'¹)F— §xûŸ…Ý0fn&$ü¤”¿ÛУ]æè‚´ou"ê*GSWÝKójâŒA¯J–…|$Ä…™_ÞN½èÔ±lò‹ON‹{ÙÀA¸ÞX*£W%ËC? "]îÚ[‰ËÆÉMÚCÉÇ„;Ç•j¬NÇ ¯m!¥Jâ3²|á–mæõKS‹^‹Ö›è\¾EÜ£xq*ÔÁ½2QòyˆH€^UPä»üôïS¸Þ #zHñƒ§ +õ¨kñþŒ.ÿ2ðI‹�² }Ƀ •©Ùã—±l£8ƒ&ÄÛ?&B,çt§ÇoŽ—„Õ—gXå/·äjV�ìhr§öf“2òÔNž}D¸:»÷žQqV›˜‘¯qöè"!DÓ¢P)EVf7Ì.ÇÇoV;NiàÙ |ç’²”¬‹G/š"èp/Ïf¸à´šCQÇž®B!È¡‘ÀðHW~Ö–$‘N¯MÔ² AºÈÄÆ»&$íÐËUH#D‹½œðÕlÁJWðhÖ¶g§¦ŠŒ¬Èf~¿`K^c¬q¯8U UÚ±›HPÎãYJÂÅ£³Œ" º¾·[D);Úñ5o™‚ ÍúŠ”©á3ü¥E ¤-Ä"(Q['©F•ÎYé/¶ÚÕ�ñÌ(h•òégW ccäËrÖÝÏÃ*'wlÝÓʦÛG¸Q<G©uœÌA@Ÿ,=i|—ÁH€HŠ—œ6YGIùúHJÿóvF:5ñòáë Aˆ¤²¢“!’ÚB–Aˆ²æ4Ís Û„¥²ld…6K-ú…×klAÅîàÇ©jçVЦ¥„‰ïôœÄ‘2ÊKWºÌþÅz’Båáçc¼"s‚2ÂLáÑÄ´#¹Z&Äj‚Ád¨UþBÕ­6�@3…‹h…ØI°´ô½"̔݉ !‘êBƒ‰è ªàß»Lòåþx˜°7"°Ÿ¼Üd!’jÃâ˜t–p¦­:´¤[pP·`¬Tçüx7y‡c½b]‡I„—§eE"Š6³ú¦\cù¬‚mfVü˜ØÖ‰Ï/z•¯q•ü:—®ÔTœqŽd¥LåÛ³ü™,Ô±,B4B˜3d3ÈÛFej6Æxƒ_§,Ý(œ”útÎeft?EÔiŸÝc¬÷B‚jW�ìzRW þš<œÄÙ©{óô:„0Ǧ(ãËŽHJ äôÙ,ï± InÚž\½!–Ñ=Ò°ªÔn„³‹÷Ì`Ñéû‰ûT冀d€»•“þŸ’å0û(-=9¶—Y3ÙŠÓs é9š—¬3cU»ÓÔ*ŒUÊì¿óÈhW‘ÀÌØ«|cy´Ñ6óJšÚlÙ/¼Ÿ¼:—­ÔŒ8šÊª7^¾»:ÏÊÙfÒßMÎådœTs3÷S³îq6+SÃ1VQð#„ ,ŠD®0s'=?[ï/ÎFµ &ÞlMÙ˜\jq‰‡Hî1=”ø5áñäû,&(/Gç×Cåel‘(z+ò6ÇÞ^OIGFu*µžB$÷œ‚~~òèýI‰šŒ“R|UXØpqõ™“—ÞO¤"úÈžõu‰£×”€Ô-îífLê4¸¾WeÍÒd¬Qçlz””Å"’Fxú¼é@"¢EŠfLÆüËš|$lî0HΟuÊ5¶5â?×¶ o¶™W’ÇfÁã_‹^ æÓ¹l¥þ¦âXajG‹DÍÄÖΈI^“|’7ݹûÔ÷pj"È'lT¦fcŒWFŸrÓ°Þž‘“ç]§4åã s!­÷—Ù¤v'X©¼‘‘‘'í• Ò“ãïö¹|Áìwz ATU •È_R9uÊä¹é)‘žþd-ø‚Q˜÷ô«§Ù!r© †ü׳¢‡ôÃÙ�ž['VX¿ó‰ƒ;Ä2…£M RS’:öXA/çØC{~·lSÿù›¶]OO¾w%ôîNXw Ô%$N~ó+•Ã0ó0_«Äq†[)™„ a„�/4H�Ø5lBZâÊû2™Ó›án>pe�ƪLVVÖK+¨è#_„rlÀæ_v¢]]¢]‹ß¨s²Õ �<GdaIc°(���°ÚþÅ1˜���ìc���ÀóŒa­‘{ce~o ���xi(Tå׉Ñ Æ���€ÚŒÙ|,Ü���ìX©���<¯ñ®zêÑ���`Ç@��� Y@sრà) Í}®½¿þz4%o³*Î`[É–«PŸãWïãkÚÄc/XsjsáQQdÖhØW›¡�Æø7㪽*—.¼s0—Q7ãÿ [N+ ! ¼(�w–ÂCsö½ÒV£acsá匄^�ØUI6%—ç>©¨Ëx¬r‹ ”UåkÉiÏΣGuò¬ú3p†G?¼óÕmâ‹„¹ð¨¶°15p5W8ô�xŽiL—ð÷ìž¡IÊCcæÿ—aÈØ6°ÉÈSÊKï7r÷iÒ­uÿɉkºûººôýùi¹_¨Õ>Þ>³W˜#I’´sƒa?=6ðOàXÚ q9§æµól4iw cæ*BŸŸ¥Ã–¦2BÆ~=«‡¿˜$[LÞÿðÏ÷Ûx HÒ½ãÜã9ÆŸƪëëßnî! I{³Ñ?\SbýÝÅœ{ý™^ô3ÁªSãý|ÇP™ bò«¼fšÃf_ôJ°”$%aƒVßPc„bÓÿÞ5ÔY@’¤$ ëÌ]O E Ÿ÷~ïf C½Ýë.Þqyç—½&#)Y@÷鋇ø…L½TÈë#!æé®éý¥E dÞí>¹¤)c"ϧ¦ ØbIÙ}†Ì|»k³¨ˆ@ߨak®«°©ùì) ôƒc^/`ϦR[ˆÀaŸ¼Ó¹A°_£‰§2J ·Ð@S?”7z=ô‚¼}ƒ¼eF¤"’$/{hà *³‘V¡ž@åÓF¸*/3³%Wæ÷}°éš;jFs{¹ÿ/o¾½´óÚÏZ®½“™rýè…Æû|p$9;;qßh¿2?Ü©¾0§×¨}õ—Å*VópûÔæ ^Ã-솙´§wüo§ßO|÷ªí—¬º';ö¹.º¦TßÿÚý×7;½¾'zãÃÂü+3´«ß_{_.81=fúíþÛStº”¯ÞÕwúñÂÐ7Fù_Úð_‡BÊK›öƵ› òg kMstñn}|.O—¶'æÚ§“þHfBˆpl=óïj–É»ô™óÏoOÜ“É!„6qÿÍÖëÎÝy|Ìãyïÿ‘Ì"„óMøEÁ¤S¹ú¼ËsDÛv¥ÌùèÏåÅESv„­}¤eYmú…™¶Ò˜|ʧ@>®¬%åeºÿV‡MçoÜ{xzšrÁÀ¹ÔüRç«ÍZëØ{óvÞ�«”Á–Ð&í»ÖrCìã§÷6v.þ]sK äñ£Y#¡Ôå^àÔwgªZ­V«•‰»Æ;wz§¿_!OPqæ"­"=ímNÑödacr‰ŒŒÌÍJ0ä_|ríçÈÈÈ¿|«ÊÏVVíÅ•FunR@àçÕªÓã½]ß8gÜjx²¶¹S÷m™LæZnzÊp§:=Þ7àƒójÎåÉ1ž.Cöçr¼%—üÁ¿›òÄhoÿ¡ uï´è\.cZ:ótKwg@ Ð$B´@ Û}ûPgR”‡ûˆ£ÇqlÆÄAÅj8Žãô—G*zÿ“ËqÊã£Ü]ß<œo< ÿÈ7··Žè,Vtüé©ãr¾é0ù¼Šã„­¨ÕÊ£=܆1V ¹4=ØgÌIe¹©/L ò{甊Sžíé5¶èsÍ•Ùa¾cN*9Nyl¤‡×˜ÆÍlÆ_=d~“/¨9~“ÏMpé¶hßí -k*žú|ùOù¨¤%å›ìîòÆ¡¢ ޼åáÿÁy5Eé&ö”Š“²V6•1Ø,Ê£=ÜÞ:RP¾ps 4çGèvØ ŠÐÆ­ïãê3|GŠ_Ts‘V‘žöE¥’Å¿Û7Ýÿו3û¯_øïÀÎÍî¯ÊÏÞùË·‘‘‘Ÿî¸þùéó"##koRQŸñ0={×ð~~~~~~m?¿G°ùëF̆¬x¥kC?‰­»1Ow¯øS;p΄–|ׯ¤çë¿]‹‹‹‹»{hFýàñÿÜŽ‹‹‹‹»µc ÏýrZáãD#„!ˆ„NÅo„R§Õc„ 9‰*—z^"ãÞ"¯z.ê§ÙzAÐÀ±a76ý›ÊäÝxX6dt”´bAÌ6‡vòu6ZFˆdB¶Ð€B\î…Õc:†y899»úv_óD©Ôq!DÉÝäÆkzB ¢˜BC‘‘N¡îEeH½ƒœ(ó>ÂÍæý1?äè´öžb—ƯÎû·ì\”¤EùOù¨¤%¦²û5ÑÎþreBŽ_jª…%kùæ2[¼;¥ðs¢y 7×@^?B/°Ã^`ÔŸ_ðÚìÔIÿðšů€Ú\¤U¤'PWî \ƒ<¼Gþýà©‘ä eöѱþåNZÂ|N¸;äÜM®hõ–ÙÝ¡wþÚë¿¡}ËãIœ”ÔÃÏßßßßßßÛQ(tô2þíç)·aÖEàì/Ï}˜^t\—ö Wæç*DtÀ€q·üçæÑõG†h$¶B+[]4¡u}éðù‰ol•—›rlj¥k—�yÞ£Lã Ö¤>Éc-øHàÒæƒ Gîå¦zW·úíN«ÊDPùOuü TÎÓsóƒ”BchhSîçÊ]f¤&-ZË`‚Êl¶6z]÷ĦlŸ0xcÀ7;ç¶”æU[¤Ö¤±Xp/k6a„|Û‡‹öÅ«9„uYwÿ{1³L—¦½¥ÊG‰JÓ.&kúî[ЦÏßóXƒ±!ëιÙ|' » |­;öC½Íýú}q± &/o¤Mß Øõéª3Ù “}vÕ§;©þcšÊ¢|û½ÓøÎ²™ŸsþV‘5‚XÙê¢÷Ú½4 A‚FLúkÿ÷ÄÒB3i“‘}¸ó6\-à Ç¿Y|¼è–7¯Iê‡{þ>—¤f‘ÐÑÝÃQHDésµÖäS™*e‰I@*Î[q*‹a²O¯œ{Pþê›$üRS¬5`ÒÊŒêØ[β¾ÿXV6z=÷‚Â[+†¼{iàï[ßXPÀ½r‘f·¼È îe­ÞÚûæŒf š¤ }y,)c•¨ÞÈY=ñ¢IÇNËάõ’ƒ?õ¼>%RNQÒð×W_)à´¸›Àè¦ãßú¯eÀ²Xeõa±ˊ½_…ï|ÕK(ô°3téÞ•ÝBˆòye|³§Çîú.´N+[mì6->^sóíȈ¦-; ßîÜÉ_lÉH§n+w|$û®½íÔ|‘vP?o!I˜3‰É½´fD”“€$åQsóÇýôUûÒ5ùTnNJYRQа9ŸF9Ý_ù3ìË¿¿h#3#5gÁZ3FTÆ`Ä)ŸzÖ“XV6z÷Ý£mÎå?Þ<8ØY¡P(ÞÝx"åQ€¬T¤ÖÇ[ddäÉc{å‚ôäø»ýG._0û^F`\¥�—9º€²ösé”ùWÏz_ô½|yZ(]7-QŸSœçÞK£ÅÏ_®üÃ:þ1æÄæÞ΄K €kj uAŽõ;Ÿúo—Xæ¨pt iAjrRûný+ÈXqhϯó–mê?Ó¶ëéÉ÷®„ÞÝ ß©ørbH9}èj†!ÝÓý_Ì;ç3°§ý²[bŠ>ÜØR™fo „^�ØÆ^Ò‹Ï‚++_ – (IÈÛ§Û~û׬F¢—Þh ôp]/'ˆ©û§Ú‰%²Ž›Ÿ>�©p P‰4VúΘ^WˆŠ$ ���PÁ ·&åͯ`RQ¯+ÌÍLÍÍL5&3����°ƒÑX™¤HTK–���`<Výã1ÚrQB¡ØÙÕÛød1��� Že1+–xEbð ���P7÷���À Æô:­^§¥����ûKcz67+57+2���P©p¥bÉ· cX©���T®åc+xüY ;¹yÿ€$���Ô­$VC+³²²À—���/!"Am×HW>���`8V[ÇÂJE���ÀŽ©x¥b^vj^6¬T���ê"5òC-nnn ,��ÀKˆ2¯¶×FT°à^(9¹zÿ€;f���@EÔöͱŠï Eâ*}­"óxÅ_³WfêÍ}®Ï?þÙöI~šøîí Æ¶’-WÁ<XòÇ'?dž³g+ÒáÅ¡Žnwn2WušTaáÕåÍšî­u­½<ý½ðÜ¿SQwçÆž{þÓŒýaCý‚̲Åñ¤[צ¯u•×í_²®ÐH&n™mÍ^ 7•T]®Š o› ·Y»è­ÏQX ò<÷÷LnÎ)ܵJߢO:6 oWçúZŒd“ï®]iôe”¯�‚·îº©jU3µef¹Úo¯]ôVsrùÂ7³„ªíckõbÁ ŠÝxúÏ)YZÚ­Mäè9Mü®[¸(]kÈü¬ï×pqN¬FƒöÏ8D‰µš³,ܹtÄè•—7œÙ¾;%³ ]Þ¹£OéñûÎuD×ÅÓÜ…–vC¸ }÷¬#—ÃÛÏœèD•Ú^˜sbÅ©¿f«( W³1ÓH™K¶odê5ÉKº÷T£¤<ú/éÜ=”&ÊO€lßPÒ /5![«xôý¼C·0a¦Àb#Ÿð•¬½pjíM¾¹æ—˜jÐe¥la hûD£æé·\Ñê5»¤óû‰ßwg*<û.ê1°™ˆ×<ŸŒkó'¤ ø½w+!¤»~úÓÏÑ»t¨O—sYtC粘œËOûgÆ‘CTØ'pÈ—FépÁ¹‹ëV<|˜ªç²úƒÛŒŸèL›Õ«2,>±ç´yxw º´OúÁ¯m‚E¦QÝÐçž¼´a彇Y,!”é9s‚›ð9¸©Rq&6;=]±sÑun»[e«Î]UÞµ|„lÔ…5ÊN¸“ŒÎëÛéØž¢ÂÍ ÎçÍ Âµ{«Y‘ŸgfÉ×¾—Ú÷÷Þ­á}íô'óÑ„ÿu¨'©°Ørr x»±®\øÕË¿Î×wÚ~(n¦IÄ6`ã–Ž|Ðù·˜v.Ü“ÕÛíPLÜÓ§…‚‰[¶c£¸û¢)¥£°9ÕÈ`ŒIøñঠïÙØ©ðêªýë—8.XÖ}>Ú÷Ñÿ¯¯çD2q˶¯t_2ÍÝÄ‹Ìãõ6ó¿¹G3_Rý$+WÆÛO-íÆå$ý1íÔÃ6]>~ÏGN–É ÷Wúóqýi{ú‡¢Ì}3®Zí´ä#w„Øœs¹!›ûðFÉ¿üóåòÇÍ¿¯g’ZØÜó¹á?÷狲öý·è“Ø _Z‡ŠÌøì(ž’[wœ4 ÝLó+7`Ë:ž$_1pí2Ý™O÷¬Ÿ”Ö|L—/É3ß¿tÅݶ›£½i>óf·ó¸uâ²¶e/ ñÿ$»I˜„u¦. u"+œÍú/žþºÿš¯ˆûßíYS"̽ÏÒ&ÓCD†ø?M>¹µñ)]h~5ýÝÕGö©"?>ÐÈϺëÃyL³Q´ÐáŸUO<f™Ù^Jªž&Qz^n²º¢)s6‹ËWÁäVC –12çlNÐO¯ bâ 7'¸oZÒ¡&{«9‘KO瘆YÇŽ>7Ÿ/l#%‘>nw"Õ¹gÄÊbËÈÅÓ#¾àí;(ÙÂyo‰{¤ë¥k íZè\gœ%y×Z4Vß½ÁOUØ}«ý/£"Í—V•ÚœûµQïGGzP„P=:ÒõÖÃGJë¬ÖfŸ8¬žÚ¼¹M¤<ØÃ_ATj7&-~ËÄS‰ÝzÎ2íºì3§Ø¦×s")'Ï^“‚ØS´!RÑ¥qso !Ê£µŸCZFÏ}�BÖ.²•/‰éÖ-²±öɅǬùŸ©nEÉe¼‘·ÿÀä.[Þí²eâ¨Ø§‰7õÜòn—-ïöÞ{$™35É¡cÓîE”ȱY_g‚öïÓÇYB üº…¸gedêÌ´—qhã°ûi>‡*ãäªYŒ‹ˆßeÖNÈ;5ïÕTBÓâz1AŽ©ÆŽQ!Q¡bš $!a1½DIò æÔÐeŸ;‡š””³Oï·½E„ù(R4ÁdÇådäs„DPOB=7Uª¢ m6¡JZÆHy§È¶Qú—tÍ n֛ϩ·š¹Ô§<aFÉ›t~º;1C¸ íøEAë~.Bk‹-%oøòõËç=­<¢ •p®@§ÌºUà3P’pI©Ïϸ™¥hú"ÜM«J²°%¹ÔžfLaz®.nÁŽÆ›:˜+$œ5:ëÒ£ÍÒˆê{жîÆåžºuQQoúknÓ^Áèr Eõ\‹N#´‹£L›¢6 Dˆ´qw‚&I–ayŒ%%¢#)¡‹ÄRÀ™+°T·±¦ä2̱k—…ÍYŒ“tçÛ¥ú¡+£ý„!RæJò˜ä&4n¥D-—J†hŠc³í%ëu÷ØrÿFVh‹Çn‹ƒ§‡ÑHoÎeDE‚“R÷"YMs#„°æÎ?¾»sý±–% N­'»Ûͧ«Ï.6*÷ ݤ¤ù(B®¯.lº}ý…/6åãÀ€ï·ÐVJ>7U¦"ÒÍÄæŠ®Â«¨å½S>n3‚›õæsê­æD~–‘yÃŒpn´îvlZ½ÖîÝs {-ˆ²ºØRrñŸÄ7Ó¾Srƒ“ÿªA;Wí†Ô´ö¹>Qí3þ[“žÑ(%ÝÃ?Ä‘€9Â:|oŒ»:IÝ¿þvT™:UeÏ׿Žu“êR2,´\…™ÝH÷Ý_U_7ëÚ‡+¢Cåek¡….}F‹‚I„“S ËdÖ. àTIF!½&M)pu$«P Ù&Åbg1B1-@ ™‹ÍSfÌ#=:Äž:“+»"íñН!Žße•öKÑý’œ}ó¯f¿ñÊ—k\¥›ðÝŽY–Œt•è3ò8H"„ôYJ çd!ŠGÃÑ«Ž6hãwøfñ¥ˆí#$ÏÁM•©ˆ5*gs{¡å*ª¨G¿à6èP£½ÕœÈ%—éfÂŒpöëya÷‘tÉ• —¾­½¨rÅZ<‰!ΤïTt‡üÝÓï_ü‘¶Žv ùeß¼pX)ŠŽr†¥Õ8©Xýˆ]»ö¡/¯ºv#•Á1ùy÷Îe*ËL‰WZ›¬Òr<Çvî)¼¾úêµcNõ$ãi>æ­Âìn´´ù¬˜‘þWͺ¯.{”È­}2výí¸|ŽËÏ8¼î Ù!<ÐÚ•“X{áêÁëZŽÕ=ü#ö–$ uekæ›_½˜3”5àœòÛÅ¿cÅm{9ÑÖ¸ÌJ¿u\VËЮ q9ÉG«,=%(rmÛ_ùñ^¢³¹©·¤ÛyMÒ\;‘‘£ÅH ppÒAÏËMVWDZ°ÙL•4X{üƒî‡n¨­Œ 3‚Û CöVs"Wf„(b OÁg·ßrìÔÕB•,ÖòIÌ´ïTtéìÑØ9ûà~CX´Œ–º4qÏ<ðŸ. ­wÔíÑ¢ƒÇ÷y‡:ûǘ_¾UaZ¡¨Ór\+T*R(Ï>‘ŸšÖé˜(ªÝâ5.Ïr,ò^Ÿ1øôo#·~§#$ÁÖwòSðTai7ZÖêãvñÞ‘3—EJKú£ þ”žC–ŸZÝ?VDþ=ZLâ#!¬|›rë¨^ÿ÷Ä›…”ðà¥-BÄ!Û ´Ðüj…¿½!©MýÀe'ï4oéGZp™µ‚—?¸ÅLòÿ~ÉÎ9NR©Â©^´Å!l0¥û+‹N|Ñû"áîÝy€¿â_ãyžÏ¤H¿ãĦϔ…!òñéþiÇpñór“ÕáLS›ŸðWfS bmºšòYæ·A‡šì­fE®8̤Qõ£Ðþ3ášy’V÷e«Nb|}§¢C #…ÿdºEPˆ‡´–q7DÑáðmç´ÈÈÈ“ÇöÊéÉñwû\¾`ö;½Œ`˜*=´ïèìñRˆÇ<X²}³KÏ…]!újåÑŸüì÷ùO=¨ºì¦:ú›Ÿï»Ø7flkQÛ‚×U‘™‚c÷Ü1xF/ }¹æ(ÈͰ~ç³ÇöŠeŽ Gš¤&'µéüJ£!Zphϯó–mê?Ó¶ëéÉ÷®„ÞÝiæŠã*½� ª°Yé·h„˜Œ¤}›Ò:ûº Õ¾\�� �IDATP Šõ#W™ö ^xçî±lï­%°ˆ¢†©J²°)¹À E ŽvuÖ¡¬Êb9BØ»ÍÄ·àæ7n+\á…éÛ6ÄŠšÍz¥±\ýÂQ‹?¿€âÕ›3ìK¡†Ä l4mg#»r“}ÇCõ ^÷D&%­Wj }¹–.ˆjýعàÊÊÊ_��¼„jý çI���°_ ���/`«¾ïT,Œý¨Y³Obµæ,ÐÅm×:ÈË3°ÏúøÊ-ó/)Ùršó“£Z/¼¥{Á=Y‘ÎPu•ž—ÎÏ×ò:]VöˆÚ‰(àåå…øNE77·Rý\!!)ÒÉÕÍM·¯úä¬onõ?”»²CáÙ÷ê·í¸»º•ĺ3HqÉÞMF-ZL4ñrsãkŽZ!&)©“«››¸®xYsö½úoU¢¥•RÃͦ2«®ReJ`­lÓãöÊ[›:ʪÜðÚµ¼íÕÙMGŠþº²(¤.E—i^´=Ò‹ÝÊ4ŒK4‰!à%&?'­–k|î?›©Ëx¬r(«Ê³´gçÑ£ž³ëXG `ŠÖJ±ÒŽïÌh57JRÔP·.î;ïV€ÆlÞÙ¦ÔS«'^]Âß³{†:P$)™ÿ_†!cÛÀ&#O)/½ßÈݧI·Öý7&'®éîëêÐ÷ç§l¹ËßÇÛgö s$I’vn0ì§Ç¥ç5> žr±°‚Ý—sj^;ÏF“v§”ý¬º¾þíæ’¸7ýÃ5%FH}jŒ_Ððyï÷nÖ0ÔÛ½þàÕ7Ô&«Oñ öÉ;û5šxJeÒ@–×ò‚ƒc^/ÓR6ýßé]C$IJºþ¿½û“ä¬ïþ{+uuŽÓ“ãÎììl˜M$0‡eDÆà¶¥óƒÏö92ÜaÂOœŒñ8àp6gìLJ@Á’Œll £€Pؤ³»“swOÇêÊïýÑfvº{fÃÌά¾Ÿ?¤éÚ®zë}+|û}«ºú#ßž°¨Î ¸Ù}þî^¿ ú;ÞúÀgß×Öó[/–ë·³³¬/Q½•œÔÓ¾½Û'ÞÞ{.Öwu•ªÑÎöÄ·¸£Ý'Š¢ìo~ÃH¹égüÀM¡ÜcwF÷þÑpek”žýP{ïG_ÑëÕýz¯y=Kö®ªEW™Xúáý­ïûÈ}oÙ7¸­³uð_:T\¶›-_“ç:wDÌ^º§Õœ±Ú!pá°ª¾9–íÆ8}Ãu²Ž1¦½ü™;ñɽ_:V²µ£ÿ³ýo~î¾oÚ÷<zð¯ß¼ùÏŽÍOú×þáC­¿þ/“éôØã¿Ø¶ä ¥>ñ“¿ðxÿç_)ØŽ6ôÈoíW]ñ:oãö̼å½OÜþw?ø“»[wByþÜõÀÑw=2eSÞ}ü£ïxàé'"}ìÜòÏ;3üôýg?ýŸ¾>Yå@ÕÇ?xó—_9;qâÿÜ!,«àÃSN•U ÝùÕG–Ö”…nùÈ·N•;ûâ§¢}߯~wÞ¥+ÀsO=ðž‡ò¿öÃ3ûÒ'<ßüö”µb;?<嬦•Œá‡ñ|ìù¬1óÝ»~ü×*õÕVY©êílþøÁßüûÞ?;£;Ž>ûŸ¾¯C&"ž{áëÇû>ðúh½xÕÆ¿Þk~‘Üñ3þîO·ÉÕ÷®ªE×Ú.ÆÄ?¾úƯüèð‰¡g>\øÝ÷|ò…K†«U]“•æ""¢å{Zõkõ6Dz…_Ò&�7^Œi¿üµô]ðÉ··«‚ÚùîO|´ëG_}>»º.déÀ—ÿ.û®?üì=½~)‰¯ß/çmÜýƇÞtÿÁŸý‡ï?ôÖ„xéŠýßï˜?ý¹ß¾½A–ÞôÀïßc}ç/”ˆHnºç÷v{ˆÔ-wÞÙ0òÜH•‹ÝRâîÿro¿—±ªœ|ek.&ßøþw 6(LíüàïÜ;ôä)j¬€vðkO°÷þ÷ÿ¸/,ÊÉ·üö§ÞrépìŠí\³•ÄÄO?øá;š9ù¦_¼§ñ|q—S©eíÌ$U(>x:e ޽ûe"*øÆ+mï{SCÝ}¯Zݯûš/Údñ×ýÌ{÷W~cyÙ¼U‹ž:Pc»ˆ±w~äý["¥û}¹SûÖß]Ú¹®¾&+ÍUSµku7Dz%/j€õD¿ú±ÍU2ç†fÓÏÝ;ÐVyÌ7slgN[ݯ’X©áBüŽ6͞øÎŽßÿä¯Ü\¥geÆŠ±;Î? ÜÓ´5Vú~Ú¤$‰Dàü¯zD»lUi)ÜvþwªV07·Š5w^øÒùãǤ,QprYñ}†KDUWÀÎŒ#ok¨œT™¯¹+"®®/ÄgÍV’"­ÑsËõøgÊâDÖeUjY;{oúô×?ó±O|ø¶ÿvмë7?ÿ矺«Å|õ›ÏÅßó©–úì«Z÷ë¼æ5.$/›·ê&ÈÎTÝ.I’ÂmçVž¤h{ p,c-ZÃ*k¦ês­æ†­j3Ö8Úêo€qiln¸¿ðy.Þ•lþùoš¨˜œ+¤ÿõ?´_r.cÕŸý('ºƒ™ã“+}Þ¬ù6y˯>ú·?ùý÷¿ãÁç³Ë‚S޶†fÏÝ2mÌœZð·ÅWý³?ìÂV­`OcUZTSýÐçîýÌØÏ>r*•]HO=õ[]õ†eäXG {f¾2’ȵ鑬s™í¼ÊƼ’J-og!vë¯ù_NdʳÿôËÆß÷_Ÿ)ê'¿ó´z×OuÊ•Ž†è˜v¥!œbf…O5×yÍk–té¼Õ‹NÖØ.VêÔT¹ÒúÔÉ…@gì’í_uMVœ«Ö1UmÆ+?žW—5ãuTôïû•¾ùŸ||¸ä7RÇŸ~âÇóKNÁb¨ÙW83VX~.óïýåþ‡>óݳçVêØó‡ÓÕ.(×y›ÜzÏ_<õç[¿úÎw>ôãüÒ¦ðí½ïÝò·?þ‡Ï¦m;ýÜ~üQñ]÷ïõ_£ ªUWiiM]=oú:ºÂÙ³ßÿ³ÿ7RïKH¾Ý?ÿSîßúËò®5÷ôÿúìÓ—Þy²b;¯²1/»RÕÚYúî·ž/9¤„’!…1f<ñ=û­ïîóy{ÞØ6ñøÓ“‘qúá/>¹Pÿ6ë»æu®ä]2oõ¢km^xòÓ_øaʶÓÏ|ñ“Oîþ¹K;‹Õ×d¥¹jSÕf¼ÂC ö °ž„õêŒù_÷ÙþÚG~{_XÄðÀ=¿÷Ô¬½ä½ž­?ÿÑ·¹¿IB·ylÉ ÊËÿxò¯Þvè7wDÑ×÷3ür¾ê¡S÷mrûû¿òôµÿï·¿ûó¯ÌBoþÂc¿ß÷èÝMŠÒøîG·|î±/þDøJîÿ¯ZÁª«´´¦ž›>öù»ŽÜ·kÛÞ›ßxï#ÑÛÛë}‰E~â‹ÿ_ýr[DŠìP¿çÍŠÀ.¯WÙ˜—[©jíœÍ¼ø¥FdA ~2÷Kõû·dÿù»ÙÛÞ»½rΕ{?ô§ö<tswÿ®Û~ãðþ77®p{Àõ\óÛêŸÖ—ì]¾ªEר.ž®¼'óñÁ Òðö‡{ï[ÝzIAÎBµ5Yi®šÇTµ¯ð¨sÀ:cë÷íç?›iWõÕýH¢›r]v—ùo¼mëCïxé¥oÙ?ªáN}õ-·>þ±Ã¼=‚­GDTúáýý¿ÔøØáÏíQ×|®«™`Õ²©éÕ¿ùù<á „ÏÿlæØëÞxgý÷+uÕ?› —5õÌ?˜3‰Œ‰|èÓÏ·¼çmm›æ‡¡l#t÷§~ç6üä�\3ø)ÂÍ×Ë¿üÅ»ï|ç´n³øþþÑ7>ºcó<ûGé~ïÂ&€uˆ±«ºý¿7¶¦÷þÍ+÷^|©¥Se³øƒƒÏS©âÚÏu53¬>TÖû‡31¨��7\o _�€uêO]ݼè�À ×»ÊîX¢!–�x Z˜ŸZçîzc��pãõÆpu ��Ö­Kuó¢7��›b ��c���ˆ1���Ä�� Æ���c���ˆ1���Ä�� Æ���c���ˆ1��@Œ��lFÒZ,4•J¡e�^ƒDôÆ���c��€��@Œ�� Æ���c��€��@Œ�� Æ���1��€��@Œ�� Æ���1��€��@Œ��\°&?›)r- ��è�� Æ���1��€��@Œ�� Æ���1��€��@Œ��b ���1��€��@Œ��b ���1��€��Ä���b ���1��€�€×� M���ë¦XÈfæ¦ ½Ì9ňÈÔ “Œp86tôEõÆ“Í`1FDT,•eIP…1†]çÆ3ŸÊÌΧ‰¨±!Þˆ]ËE;…Gľ}!aUÓáºàúÄ«'ÓÉíƒò¦9¹9sôøtlÛž[ü÷µÝQ7òi9Ÿ›onïV}â®ëº®ëTþÏ]Çu]Ë4ç¦ÆY óÃ(Æ EÍáŽÈÄ`ÀW™b˜–eÙ¿÷Â{–O¹z¶k{å@Q+{=I×­¦DT©ì%/×´ÄK¬E‰%­,‰¢Ç£ÔšR,i¶ëLú}ëðÑav>ÝÖÖBœOLN_NŒqsþôËÃ%O˶½mjíµdR¤) Î-¾|:¹s‘+0rúÕúoèêÝYc›åÆF¦fs†Í‰IŠ?ëìn ‹DDÌßöæóe{µó7†}Å|ÉöFbÉÆÖ°/›/iÓ¯ŸmØÝ¤\æ‘SkGÝ 2ó3-[|þ ëº|Ù*3ÆTŸ?žlNÏMm¬s¸D² D亮V6TUÕuƒsÎ[>åíQUYQÊZY×4Ÿª ‚°Ö5MÄD”J§*/cÑc”ÎdÖºDÎù…ÿ®Q‰¶í(ЧXÒ¼ªGÅåS×Çâ ëô¹–8箦•9]ÎÌíÌœ&<æ‚)ôIß$Gÿ¢VPÕ 9^;1<%$û÷ö$ƒŠSÎ¥ær’?(›úæn &…Û:~Ç:¿2_cØWÈkö ¼ºæ „ˆ×;ìT¯N[ý2×#ƸËmÛæ.× Ó´¬p8,Šb¡P`Œ.™rmËu—snY–âQ<ª§X(‚àU=k×Qà.'"Ã0*TþkYVå5-Ñu]Çu&0©u-Jt¹«zUÅ#çsYUÕ㺦äeIâ.眻®»^ã3dÛŽeYürJäÆÂLÙÛu˶üKÇ&¬¶NfÙ¼’n¥É³£ãY“KÞÆ¶¿˜zÕ§Ã:ŽÃt±é–}½Q£T,qIilo•ѱq+;rìØÐ¼îH¾Æ®®î˜"q[›ŸH—-ÔP¢«§9¦0{áìˣʎÁ¶€@Vjèųz¼GX 'üà˜Ò¿}K`ñÇ\®ÍŽ™É —˜ä7oéŒÄs#™©XG¢4=‘5I µõu6QæìÙéTÙ•‚ý}Ma‰UÞ6n—RiÍr_²£«+. Õåìбá2щ§¾w‚HŒíÜH*uïÚÎŽJ[·÷…š;¤k¤&&Ææ ºK’7ÒÚÕÖ”ŸéVQ}VµÊúô‰³¡ÁÝ-þÊâìüÉã¼{`[TZ±Ð*[“sƯc+¾á:Ę뺂À*g·H$RY?Û±³¹‚ªª‹§\㞊ãTΪ–m‰‚ ÛÉæó^Õ£z<kTÓJ‰•ʺ®ËaíÎìJ¼a¢ T¦_ûžŸí¸®kYv8.kål.ï8¦DÊZÙáN¥{½vûÒÜ|zv>͉ç’(Ù¶cY6#vèÕãœsF¬1™hjl¨s•SiÝßÑú#α1½§‹Ù'n¥ÎžÓãÛoh”óÃÏ:¬™¨ætXÏN‹¨(Ì)¤Š¢iV>tØ–mqNÄKçòÝÝûû¢öÌ«†ç’‰Î £§Ïž.GúoÚßìÓ'Ž81ä½igLö‡T;kùÃ’¾ÍêLäe+äS´b&_¤àζVi¦t±sÎ]ò6÷÷î3sæÐ‘S³Ñý­BeÔC›MÛ=}7J#^Ï+,Ú½{kÈ;xøLªõæ×qˆˆ—g‹-{öíL†ÝÔ±çŒÌ†·5‹ÕYßÎÞãÇf;Þ|{‘5“!’BÍAÏ|Á8w@É‘f?›9UuGu²£§O—¢[÷ìjKÅÉ£†¦ý{;"ìbˆ+WªX­ÊžXÜ7‘.zúCVÁád—ÒYìî jã'W(t}¬Ç…A×u‰˜ªªþ@Àu]AcŽã(ŠgÉ۹ƃ`ŽMÄ+çwbä8Ž(I Å’fZÖÚ…Šã:bŒˆ[ó[œa•Æ\“sœÊ%×uý¿Ïï·kÉŸˆøZÆØÌ\* 'â±x<‡4M³,+ÅbÑX, ‡¦gê^µrõ¹”îhó9º/f³£YaDÜÊMåXóν=Q\±¥³A!&0âf¶êtXWR¨»+nŸ~áéç_=p|øÌd&o.:;7ìØµµ3¢¸þDsŒr ÊNn2G;oêkP˜CMÝíþÒô,óKŠ/"k³yAbF¶$%»bvzÁ–E+_tÔ†ˆdYÎâó¯hllŒª¢]r¸ÔÞuÒî=w/†Ø°c°¯=¬P8™ðšOÿîþö¨*yšš}f¦,øÎ]ß’z[ü8¯ áö@y*-)5û*®ãp×åNq&37‘IçyõŽiõ’[Ùñ´Ð>¸wKR!³ì‰µv(Ù)# ,:Á3yÅ곪U”pÒkLM¹²Èˆœü\" ²®k U ½;ÈúĘëºÅb‘8…Õ TŽã”J%ÎÝ‹S\皟v9§óçwQ’DË´gggý>¯"Ëk*ÂùܪôÆDQ\ë[šakÖsœJçRÅB¾P,\Ç]<%_Ìû}~×å×üç¢AT×¶b1wnèˆ+•JĈ£óWk6W)•rCÍ^§œ'<.žÉõo÷Ž¡™äoŒ‹F>gX.y¼>s"·ÆtXçOÛÞ†Ž›Zû£”[HÏNŽ¿:•éܹ¥U%"¦Fü¢™Íi:w]Yp G‘lÍ ß–¸hæ Ë%AÊVNS<A5`s³eÖVÊ9¾Þ–&}lºÀz‹9SŽ7x]=¿ä áv~öä«óÍ>·ÅÁV:U-W)T0²…²á2Q”pÐ˵YÝt‘‘­s)!1OØ'¹¢å¼^ÑÌébÏUyjí®^Ò]côGOŽ.z³¯Ä”ˆhêçÏ«lÅêרrÙˆ5xG§§Ž3rsyŠ &e³P(«JêcS““MÍÍ’$9¶“hŠKÚâ)×|ŒˆAe™s>;3'Ib"]»=Îu¿Î žï±5±J‰2LÅ5ëÙŒ1ÆØÔä”Wõ$â±ñ‰©ÅS¸Ã+]õۗ“‰éÙ9Nœ8 ‚HÄKšV.•m×&"ÆYKscÖ*ÌeMÛ9ôý']øˆ:’vHDDLȲ÷Üàü¹!«Óa½q×Ô˜ 'š;›Z›F^|itNìî®|Œ!÷ÜõMƈø¹O7‚@¶i/: ¸ J’/âu§æ‹±‚éMF}¬T˜)èv™…ûdfø’Ë ÍØ-Ûßpk[Ä';éÿò¢Ã˜ÈÎï®}þ\Ï‘c;œˆ*÷Yˆ[kçܺw9q.HÒ*?ßñZS«ïœ³Ðî÷¦ö¥·î;¥2£ }L¡~õÝÚUV¢qßøÔ´ÕÚXHçXtOƒli&'ªZhf.cÆXeœ-ð{UÏÔäT8r›ˆ–O¹¶½‡J†eÒ]/'â1ym:a—„Š(,é­é]•%{O%NèüÕÑ5êå²¹|>—ˆÇEY4%›ˆÇE)jÚZ*656\¸ôõÒÁò,K’d;öM{WQât–Ƕ¿~gâÜnÀËã/½<–·‡=>…ÒYÍ Tn÷0µ²K*‘ VŸ×)ËlÛ°mn 9&É~¥ê)_ðTšNåíȹ8-o‰¿Ìˆ‰þ Ç˜™˜¶äXÜK,ä§ÓcÓ®ëï ¶±dH‘ ­ÄÛº‚v:Ÿ2JÓëÜ^P#gªÄ/§ V‹@DÄ­BÑ‘c~‰™5êV9|Ï/… ’Hšis/w ÃaÞÚ;¤à ¨49.E•¬Yûø[¡úµ«Ìä`Ò795¥û²ELȆn¹ÌãWijÅBk) Z1§ª>Õç#¢²V, ^¯oõ÷Ù_Üâë°ï1bósscD$IRsSÒ4Mé|¢,Ÿr {ù\~dxX‘¥æ¦ÆµÎ0"œœ¬TV`ÂÙ³g†‡Ï LXÓGGGFF†‡‡ÏŸ]»E6 ½¹©±’aç§”››š*SDAåç?¯ýIDQ”¥Õ~³³óYŠtµE½Lçv™Ûe’| %7:+(j¤%dŽžœÑ#טŸ×‰#¦TŸë^fæä‰±ñù|¾¤k¥âüäèH‘…›"Ja¦„["îÄ¡“sš¥k¹±³Óš·¥'ÊÛ”@P(M¦)š ‘i{Ê1;gx“1Ŷì¥gbYU¹>—.–˺¥¥G&ËW°[» ÇÏê†id§ÆÆÊž–®(³êÝ,&( ÓSé¢a[ŽË™ JÅÑÉg䩱ÙRÝ’)‘ŽaîÐáÑœ®›–^ÊÏLLÎè—µBõëT™ÉÑŸ9~l(ËâIÉ,Ùœ˜¼ªBkÑJË45­tþ¥fYÖ…—®7¶|œ'E¡úS®žêQõ²ÖÑÞ¶nOñhnj\ú2¹Î%®ñv¼ô½Ö–æ¥#~ ëyvcÄø¹Ì\ÕöÍÌ(²;!zÎ<.‘bQy||ÖN†=[¬±á—~l0I54E sŒˆ˜\}:¬ç†–|Qq~ztBw8‘àñ7lÙ7Øãsò5nçar¼»¯wzjèð¤EÌnÜ¿#BÅœÍIP£6› 7G%»d‹°JE;Þè'½È/ÉÂho>tä‡ÏpAT‚MmñâÄå~4dþž>ßÜ©WÒ:—ý-;nˆºFºÖÍeb¤µ9|æè3Ï»$Åvíë ¶w´<ÿ¬ÉdO¼¹)–Ÿ­·C21ÒÙ¿Ã77zúİE$Èh²'Qݼn/ªXÝê×­2SÂ1ÿðXAníJˆVÑäµ %3·šÖñùƒwUÕwþ¥sÇë½’‡6ÜÈ£jokÅ)àÖÒÜ86:^õsRUÉýíÑ&ÙÌ”ø¢MûŽÛM!O)gØ-½»¶„¢ª,·­­eæ“x–˜ä[>½0æ¿B+>È£Ú˜ƒšìØÒ>òx<’(wM«4_4¤¶Áý}1/ÓòDD‚¯{ßMþ¸Db’šìØÖ±#êUeFÜ5‹ÅlÁáD$ƶî}s¤9 Å<gž†=¯ï ÇÃBynÙ7-™oÝÓº3ô Ĺcôu‘*Q‘©‹ eJ|÷­a¿`DDr¬ïõ-É`äÎû}ƒÁn9¤*"¹¦‘OéŽÜ´s_WÌÏô"1åâßD‚¿a`_O ’EF®–Oóöþ=[ÃQ¯,p×2»;¿èÖØ!y–ˆIáÆŽ›z½^UdDܱÍRùÒïâÖ¯~*Ÿ«Kl×­í¡DTâZÁr/|ÄX^hÞ\ÕVõ‚>Ÿ¯ò0*"òúªêåWtå†Íª¹)yYýÝç~ür­zÃëöq£œ)_˜Z:¥Ú­1.SGxÔÝpkn5n—Ó“åEã¥Ôä…¿õü¬^e[¹fvòâCnœBn®Öƒ¸£gr‹RÖ*ÿ_Z¨SÌÍ/ΣÏeôE—Ê\CËNkKëè™I½ÊßÄíB!½he¸^^˜¾XV\a‡ä¶YL™ÅF:ëV¿V•+³–òsËýVUèÚBŒÁkÅ^·'–l«=ä8&Út[m󺆷x Æà5g=l¸u²tì–«ÜâẼc•[<8/!Æ��6†K<a)Üâ��›Ø5¼Å¿þ��›b ��c���ˆ1���Ä��lDŒ±Ÿ~¹¿ô„�€uâQ}Z©Pÿ=z¹äQ½ˆ1��ØpbɦéÑ3¥B®ê½õœs]+¥ç¦ãÉ–Õ/ß�€uF¨…æ§Ç ½¼<ÉcŠêml鸬gy Æ��`]“,Œ\ÃbP��6±ê½±3'¢i��`CÙ¾ç «±ªo��ؽ±úîߢ]��`SÆØ?y��6®Ïeñ+Üâ��›b ��6±šß;{rjüì•ýˆ��¬)ÆXKGOGw?š¢fŒMŸM4w‰ºk��ïÜ-K“#§jÅX±ÍÌMW}RÆæŠjê%›ë]ºfŒqÎFáp» �ÀäºÕ#ª˜ÏÎO·võùƒaÆ6qW„s·TÈMŽ1buOUûaTœ8'îbP�`3ÉÌÏ´töVÎûœ»›º.þ`¸¥£wvrôŠbŒˆsŽkc��¶»Ruª¡k¾@ð†9{ûüAC×ê¼AªÓ<œ»›=É�^sáÆ9»q:!l…ºH+uÆÐ�ØŒIöZQP½1�€M™cˆ±‹Ý1ì��èmÎs9îT�بaU'ÆVH3tÝ´ì`0pÉtÓ08çU½1zcT�Ø|9Æi…ÈìÌìèÙa—So_"¿0½T*=r”\ÞÜÖÒÞѾécŒ0¨�°)Ž×ï‡775%[š<Ĉâñ‹¥ãGm(ä²ã“Ñh4ðW_¼™žÍ6'&*þP´£+­é£'çýƒM Û1Æ+÷Ü#Æ��6U_l¥S·ã8®ËK…¼V îÞ}èàAÆzEI:uüäÎ]»ÇÎ-dýŸbJ�� IDATmÇ6Mƒs_µ¥ëc'F¦…dÿÞždPqʹÔlNö‡%cžˆ˜¿9âËfKö†èaP�`svÆêŘêõnè?qô¸Ë'›ÛÚwî<rø(;w Ú–5>2œÉçº{z"‘HÕåp£°`ˆ¯Û×+óE‡‰ ­M²Âç_=9R&:ñÔ÷N‰‘íƒm^ž›œÌè6 ž`¬³«1ª0âÆä±Óépc°”ΔmGð&ÛÚ;còwàð½1�€×VŒQ8Ú¶càä±lb¼­«kûöí¢$Ù¶912²P(ômÝšHÄk.Dæ2 ¦•-—ˆÈ2L|Ýý=CCóo¾½ÇLjÈI=lT‹lÝ¿¿ÙoL9pê¬oß¶Ä9/ÏiÍ»÷ìLFyúøó&æÃ[çÇ'r]îâNE�€Íc+¤…‚Þ­½§O¢‘³Íí–eLOL,ä [·õÇbÑzK}íÑ¡Ó/üàŒìõ«`0dFäØ6wnçÆŠ–k.LäXrïM[“f~¡oo™><3/µ¶™eN$6ôµ…ÍÔTÑñ¶úË j"V¸æ½1 *�lÖ[åÛD&p—Ƈ‡‰“( ŒH…•fgj¬iOK?sʹ…ôìääñ™\ǶöF¿Ø✛e¼[¢¾0WÖ]"Á/[¹²Ú§©aŸXNiºMD`æ Š^a¯ _�ؤYUïì½âÜó©ÔØðhÐç³˱"â$…ƒ£GŽmß9 …ê—m—HÉ憦äØË¯Œe¼íö’ðàœHÈ2L‡WîäÄ]Qãܵ Óåçþ…Ü+Ä�À–c+žºS©ôøÈhÀëµ,Ëqœ¢aH‚àá\æR$8qìäŽÛ}~ß å;¦©™&w\FŽÉÔ‡±ó]1ÎIV=´0Ÿ·•$1ËE[ŒdFœ×Óy«¡mV¾äJ1?çúÅ�6[¾Õ±ÌÂÂØðpÀë·-Ûqœ¢© ˜†16:Jœd’B>ï‘WîÛ·W’Äj±üðxÙ½²HN9Ÿ™ÐX°#¢ˆiYbz:] 9–í ¢¿1”>4ìôHŽžšL—Õæ½Q²æ\âä.œ8‘êˆ3CÏÌMëJ[W”R×>Æðõg�€Í×£®9¦¥H’íXŽãu}ûŽí¡P(È]wblœˆ+²Ì\î:6‰U~<š ž°×XHÏÎè'_¼kÏî->ka:˜Œ‡&>û¢KbxÛ@c¤¥½{!sæÄ¤EL 6ìÜ?s³ó†CÄüÝ}¾Ô©£iKÞÆmûvÄìÙü5Täx¦"�À&íÕHK4ijÙl©P4Ls`û¶`Ð_yC2á¸Îäø¤iÛ±DL–¥Ë‘bM-í >Ÿ_‘"âvY_Mç RƒÝÛ»÷'T‰‘›MOEÚÛšƒ~U î”3™™9Ó圈”Ä–¹]m¨9åÒüØþÕýÞáNE�€Íc+ô@¶ôö¤ÓÕ«ú}¾ÅonlLz½^A½…8åbj¬¸tÚÁcÃDDt¶òrÏön""Ò ³g U{ŠN17•É^ue%lo�€× Ês— …‚W¶À=Û»Ûzv,ž2qöè:T1�p£aL¸.åN_y5˜§©o ¯ÕËò욬'b �àÆ‹1¶±WÐ,Nž,^£EŒ�Üp1&¯Ê"Æ��ÐCŒ�ÀÊ0vÃ$ç¼~]c��7ê5ʚ׸1ª£k%êEŒ�¼VÄ’ÍsSã Mm^_`S÷É8çe­8?;ÙØÒqE1Ƙ"#ä��6"×u…F¨…2sÓ3zyS?P1æQ½-þ`øJb¬­«wrôL1ŸÅî�°áNñ‚ÐÚÕ[ë_ÁH y4EÍëìÙÖÙ³ û ��ldš���c���×Á¥ƒŠgND£��ÀжlÛ³clƒ¬��Àj`P��c���ˆ1���Ä�� Æ���c���kÿ�€uâržJ§ÓÙ¬iÛŽcK¢(+r<IÄã•>Œ1��ë’a®{ìôP0êݲգxAвV*ͦææ2Û·ô • bP��ÖÃÄÌL"Þ°}`§mY¥bV+fɱ|^OW[‡WõNÌL£7��W¶ßÝÞd.|ݧtùC·Š²ìØ–]zYäœÄ®Óc6b ��6.Û¶½ž95þ äL¹öI×ôIÌPB$ýZØýªiµ^Ùb1¨��ëÁ£(ó)ÃÈ~s[ðì‘”˜àé#±ÍÊþù‚Ö«zTôÆ��`㊅#3iC”n}ùOoÞ•^îf&ÆN†“÷erf$,¢7��WC,jšFY·5þ?:rs®4ðÜÁîÑÔ]†Öu£!CŒ�ÀÆ%IrC,¶ËvvtLÍ̽øêÄôlzk__&—„C²t…£ƒˆ1��X'‘PˆˆÊ†MÄÞúæ·EbÑb©dYv$ºâe"Æ��`½:d¢Ä9›œÃï1MÓŽ 2LS’®üF Ä��¬Ÿ“CC>Ÿ÷®½]]>ŸÏ¶ã§N^Íc��°~|õÇ/¼X*•¸ËMÓ<uò”ßãEŒ�Àæ0155¸{—ßïgS¥³³c|jòjˆï�Àú¹yß¾ç^xñð¡#•—¢(Þvë-ˆ1��Øú{{;ZÛ~ã£?3<º¥»óOþà!¯W½š"Æ��`]y½êW¾ô…kµ4\�€M 1��ˆ1���Ä���b ��c���ˆ1��€µsî{cœó–®—ŸùËýo¼ ��›,ƈX%Íþí©ÇÐ(+z.g£®¹g¦Ð�pÅ1Æ+}2/MlÜu•DÎÉ%NŒb#FŽ-ë  ¶mJ‚"“n2QvCàDZ%ѶA´KeÇ]ì—Í¢.0“_I+ÈN¹`[RAȘEoØÒ³!‚QÉ´Õôp.›¦Y²½¬,³˜c[~]K®äó¶0Ws=AmXÞD°”™ç¦¦›s¤¦ ¹œËK"µ¬l(Ór^%§Ä£® pà 8þB¨è,ƒ99ÌeÓ²ýŽ÷”9‰eQ.s«ìZ –'£˜¦é³‹yƒØ‚cÉ¿æj~î1Év%[°I¶<\²ˆˆ‰Ü2<dkŠ Ø¢$X®ë!› ‚c‹&³dQ]2‰›Ì‘mY¸&*a…»ªè*Š/LÎ<s$îú-Æ”pT(èŽÀlÑõY®N®«Ù¦_¡’m‹$Ë2¹®e©ìã‚!p™‰d¹’DºM*1ƒ 9Šèê$ˆ. ‚뺂!³‰ÈµI¹è¹Å™È‡‘,˜dsÓ%›¢Çp@Àåb»víú·§ËM<¶X µéŽËåöo<‹v[‰gN¡�à²l9þ(Ûµk��6©ÿ½ýÌ矎‘����IEND®B`‚������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/help/C/figures/Tracklist.png������������������������������������������������������0000644�0001750�0001750�00000157772�11753562422�016104� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������‰PNG  ��� IHDR��B��I���ÉÏ”���sRGB�®Îé��� pHYs��Ä��Ä•+���tIMEÚ Y}“���tEXtComment�Created with GIMPW�� �IDATxÚì}wœdGuîwΩº·»'ìÌFI«ŒPDH&K# ˆhÀÏÏ`0DÉ€Æa¢m‚y&Ù“A"Ø€–d‚�=BÒ*ìjW›g¦»ï­:ç¼?nÏLÏjwˆúûõo¦ûv¥[]·¾:¡NѱÇ‹Fa„F¸c"�øäÇ?Àá£îø¥@��à4xÀ݉àpôèB·:N˜¿êÔäN°˜Úݽ©Ä|ÀpfÀÅ/šCœæ Zh©ÃAÀ|ŸÏrë*†Æ‚Ïçó7æXrkƒÛY:‚ÜlpÓNN¡iÑ|5ÉæKtPó¼¹¹Å[ú×4hô Õ’.Z蚯»Ü5Ö\¦ÅrMÅ’¢æ[¸Øš…â»rÐZò‹øÒfûü ±¡î„æ»bþ—j•ïR×n~÷…ÜK~È[B» ,¹Á…oÈÝ}ø›1DÍ,ô/Íß-\õ¥ChøÞwMN w,Ž¡Å>¹øøP0ÂnqÞ;_~ò“Ÿì³ÏêN¸e0dï ä±ôÝo‹Ó¥ ]"�sp6/È3Á!ê0p0sb‚)ÀÆ™,eS %raÉäÈ"øœe‹-ÔÆu ¢9uKîÌÔ=Õ qU3;û©H³È­`î¨÷£ Y.¸ÔŠ¢ÏuªéÎ8I×ÇÆŠØ' ^×.d¡¶zS¶9t{·ôÂt/Íõ©œ17qïi7ÔA[9ø¬«±¬péY4ZËJå1)-f3㤡SÄffR±M‰æÈke)¼×7DÏ]ÛòX?ô:€½~.,'1ÑP ¹;Ñ`6MVrñà^ yVª&'íXN$ŒwŠq3Î;”3ª¥tæ´˜B­"u\f=ŸhµÞC‘%µêØT͹žK›Êb¦®¶÷s7õçº¦Ë ê'óĤ`höä£åLD ‚ ÆÐ¯L�w«Ëvö‰™#›ÀÜ¡�Àf`j˜ ‡;LAÜ 8ƒàÌ!¸1))\\�õLJæFpo؈¼!?&÷†¥ÙÝÙÝä4Ìʃwæí]mž_äâ´H)¾ëÈ÷aÖÞu)s›Ì’eÆžžë[ç1Ù{ÀÆŸ_¾ t�‚ݱï‡~©¸=ÏÅ|=ÖÌXó‚�#�ä‚dp!u g(¹‚�rr#"#®2w €fHG¦�·,VA]eâÂsvµhHI5;ƒIÒX‹EÕ­{ª1´a}›MÄfY¹¨MžÀ!ÛNï¬(¬µM ßg SÒÍÚnÇ#ך0–ÐaC9Þ‡p•Z¹×­¢mósÓl¬YBd«µ=fsˆ­¼èz·d´¼œÕJ²z» —•µJ™gˆÔꚊ>÷ÜiÎg‰8%­yªkMu º6˜d˜ [Š•™(S€{σÈÕ\ûÞWVIô™§­î 昭¶³ÇÈI{T[ÚA=Þ-¤Å±HŤ´fJi³ôôæ‚U}¼Të{·UΊUI»ª ’áìNÎeŠ¥)¼kQV3UHun3T™sÖÔ ¦ÙIÔ w l•Äšœù€EA¤.ì 1c"h.Ü\]‚HrŽ€Á=‘«:“»«5…4D¢ êp9+|0 Á#°y³Ê"v74Ë­&5 dïEj‰o ¢"vÕì"ïöQº}tC£Yy„_;»½U@hµZ�Ôw,âúÕ*Ú-±ùmÞ’^¢áäî 26v1d‚¸‘ �7x àrs&8¹\À®Ùˆ˜<±DÖœYÔ¬Î4+sQj¹y‘+K ÏI•(‚shµ–‰¥ºçíööÎm/ëLׄ=YQ©E1%´«žIÙl[7.ç\‹‚T½mÄEni™eÛ>ÖÚLRå¹q ÎE»Ý›ëµŠñÔ걃SIa&r§†‘wZ@H‹K4'ŽÔáNɵ—¨w–e;í˜õ 6Z&Á;Î}JÁÇýfãRTÆÁ…èîJn™8@-HŠì OÁ µS‘Ý™¹ö<±õº$‘ÛlL…Y^“•”ÁËqVA*”­‚¨ñvdI½ãœAåöªZU …�.ÇH«äÛŠn¸©kRÕCÆb`*Y%‰U‘ƒòÎà,¥srEÜŒk ¸‘™âygw! 7i�ƒ‰‰H@dwT ‰Y$gu!r#°7tEÆ\µ’Тað%�"÷†”�wçÁã1`*(j7PóÐ/êxžŒj?b–y 7p+棥ï%2Øï,>þŒûî3ÙúERÎVùQï¹à7–eWÛØ‚Ùd/£Éݴ꣞ 1¢=õkTÍýºŠØcy½+žüÓß·G¾îS—¾ðÀøK6h)áùnz÷ÊÜýïTq�Ù¼½‚ˆÜš‰dÙ LæÎnälLäcÀ™Å`¦17{ #…‚AC°\ H©Ïbv8Ä\Ê2e�41©½^€ÍÔRºx)®n^CZYR‘Rm™#KÚ‘¶UZhªY5×0)Ä'¤l×Eò¹œ³¶'='‡z=íi«-­+«£ÅÌ  §�g«”CÄ5›a¬Õî0—…0H‰"›õ‹UÑ·H,L{š ËZ†eÉs‹9z­…T2ˆà&•ˆ�lZæ•×%¸oCºC(ÀJE€F"vuêQ®&Ü +¢SaDH¦¤Éë–Œõúa²h;sò™’±cÌYÚÁ»UÝ¢’Û’¨Ô8–¨ïöR±½*v† Î]ç¨E†µ¹ìPl‡jκNEðÉŒ,–k¡ˆ¾™°1qì{%BdlêD$ê2@˜DÉdNsfÀ`Ä\¬6#E5¥@™I F\ˆÀ®(Nêr9\@†y]€ƒ@îFDw@0P£q4Ê Ô¨>yɈZLœhwB-%³]Ø‹~é§ÛG¬ö»Š}&[¯üð—~º~ËÞ“í;=ñ¡ç?nÓuW­>ø¨ßL–=ÐØ@c¿{ØÜÎtý•ÜßAk£0Æ1îa8úíã.zß}Ë«Oÿ×^qÓœ(§Ž<éÁg¼îô§7Î{-Œöôô,šþׄÙ/œzò.?àïoþÂ-ûH•f¿ðÈSžxøo½ùó4¹D÷b€7s‰dÑŽ`NDpEžý·ßý²wwÉ}Œ­}ÀSžñ÷¯|Ä]§„Xç-äÈæl¦ý¿õw¯ýȇ¿þ³5Ð^yדŸô‘|ä1#C\³»¤¿ü//|×…ßúÞ [ ÀÚ—õ]gDÔOnlÔu+µÖXÆAµZ¯.ŠÒRÏ„-yôhŽRIœû”"cãH4Ì=·¤ã"Z‰…ÈC»Hjµ„m4Ör­-tX(°«IYšrá3ã43C$SHy»-ñze ºöc)¶[í„1ö�«Á`€…@ýZI0 Furî}3aÊÐÁeANÙA Ò9·RyY6/\c[ræ¬]‡tód§*T¬‘$sÍ“%Ò &B1´ ¯r{9s»ôéDsÂIªú˜ŽRE¦ÝN1ç,æ;¬5&H¡JýˆR¥#’­€›» g+\,€ˆÙDLHÔ¬q ††B.Lj.ÙA„Õˆ‰Èä¤ !Ï`‚sC24ðØYp¾ ‚Àm 2ljh4‚c¾ÆõŒ|A´³†ì] é Vr>H7,· ³Í­ÉŒn×RuAÙ9â³ßütý–ë{!¶:{I#> õ»¿É,»ÒØÞ×OÚ›ë­ûéìO/Kekblu§ÝeoI(G~pxµî›—üß ­Uû¬¢Ù[6Ínÿñ7?ûÜ'Ëq?xÉ ­_¯|ç·[$¤Ý]!çýÒîFä¦@p7ýé{_ò ×^ž85nÛoºà¯ÀÏÒ>ñ˜ƒ¨Qê‘8ô®ýôãôÎ û@˜>ìèåqö–Ÿ\rùÆêQwŽ”(8’2Ýüíó¾ðMS+Kl®�âØoå.€lB…R¨­¦Ò ve(g#¹Å²,«~Ÿ„•¨�kÇÔákb aL¸js Á•œiœÄ¢zƒæ~e^(“ .Ð*‰¥Í¡b h·!%¨Î0—PR–9Ô]AÁ°À¬”"%ÀJ‘Œjx )3A "u²LNepÏ!™ûa+3e¡Hpçìpw6Kµ“ ‡Væš,d×®p«²’çJk¡²Éçnm0ÒVLur³BÑj'+¤Ìä…Zí\Ä*“…$–;X&6 ª3—L1‘©y©ô\J—º­Ùæ 9ÔdA8[Öà…R怎»9±rŠ`õde‘“9)“©±¸k�™93¢½ØÙ=¢ˆ7A2�æÍSèóJÆ»§9ù !*Èæ{ž7×qóÀR´8®èÈ©ñ1Í{c²]®Ð¯®z¹•+É¿4[²3±—dE»½Ë¬[³N;ñ¨}—Ý:ñº-s¯>ç²½dùçoýì[WßÒ|{÷—¿è!G^sóÖç}à‹Å~Çîv@ñ­´ÚƒWoÇöÙ›®é_y½î;õuçÙ†ó­·®ªº³Û¶õg·æªšdšWïÿ>ç°{—S'{ÖWÞú´'LM8u·—½ã{Ûoú¯zøÑTNÝÿð'|èâí õ®|Á'•Ó'óªO¿öÉO\>}RyÀSžú¾ï´†–ú‰oÌmùÆW{Ãõÿõ™SÛ�PÍõ ðîeú»Þååô‰åôI+ŽzÊÃ_qᆠô®xÁ‘'Ó'ýªO½æÉO˜ž>±8àOŸòÞ«v¨7XtÁîÿì5ÇŸü„‹�À.8sõÔIåÔÓ?x“¡1ƒ½ò†K^óèÇLL4väs^òo_zò'•S'ðþ ¹õk;剃^ºzú¤Öò§hƒ-þæV_÷ñ—ï·üÄrùCó¡ëúóŽf °íҳξ<û=ãŸn¼ú«ë>vòÐýæûÞüݸÃÌ`î fØæ/¾ê=öѹßó¿÷³Ï}ÿü|ïâOmøîóîQöÍä€6óâÎõöëoøêÏ>rʪæGe‰íöX»Å­V‹Úe«ˆ¡$&K £X°Hò,A³˜RÁ <#õ[¦úãÚLGŸfæ²c\’´%LP^Ë©X¬*ŠƒZÅÚ"¬ŽÞ ²’iªÀtðåe˜l·ZEÙ.ÆL&b1]N¬Œ´¼ÕÚ¿3½o»\xuiEXÁ´<ÅqU'¶™—…Ø¢zÌÙ©“½la̸ˆ$¥D‚G#V̵‡ä¥:;ZŠ\‰[ªPíHy‡[/c¶Î;¬Ú¦:“m³áæéº~÷K7VÝ›ûº)ÕÛçêÍjµyϨ/B𘸩Y‹‰v\QðŠ‚§Ë¸ß˜Œ•qMÀŠV€WwŠ0©0F˜Šq’x…´' ™`.Ú Èá‚॓D)˜.D &ˆ‰&0awÏÌfàäJ’¤1¶.ì6`"gÙ` É Œ®ù‡˜‰�'n)4¦X¢Ææ8¡ñºl²0›9Í/ˆÀó MM`€‡2ÒR#-]×Ý:ÁoËø0Âo Gí»ìÞ¯¸õ먕­­ë¯ÛK–Ÿ|Ôƒ_àÞ‡¬|åÃŽ¾÷Á+ŽÙg¢êÍî©¢0?Îää¬Û6mÊ›®Ó-Öz‘›:ÓŽœÓÖzGÚR®:pꀣ‹±ÉÝH ï8ëÕÍ»k/|Å©?}kÿæFß¹îkïÿ³³O¼âGµçS^ýÞ·ýËñ'Þç¸_»ìÚO¿ò Ýÿ“?u9ƒÚ“ÅÍç¾å/ÞóóÛnúÁOz|À‰gþýé÷é ¾â_Ÿüâs¯A8ä^÷>¼5{íåWžÿõŸn?ëþû-)ðÞ'·óë—]ûéW¡ûâß9ÍCû‰Å~G²zݵ›�Ðò;Ýi\:­înKþÝú’³è�¦íçïyÞlQ?Y¬Ýµ„ƒW„…g4oüêÛzú[ÐyÈ›ÿùc~` x³•Œ‰@s?»à¿gL>ø´£¦ˆq߇ݻüúUÛ¾ñµ›z'Ú2¡àf "ßvÙG¾UXa<é˜wÿ¼Ë+޾ÿ ßôìçÝ-�ÔoÔS,îÈ®qÅÊi§Äƒ;•‰B‹-•(zÖHLub‚‰±ìÆ]· ónÏ<‹shk«rYZ‹n«_«fÏ‚° Z%€X2B‹“ÇP9ÕNîe`ѺU´K@µ¤@T´tŽÐG˜ vöº”È-–äÜ5ÇF%±IRH¹¹îKŒAQ“ÕΉÍÙ³…@Ý ö"Š*™4s1™ •ˆKbOj TQ»¦AK.ˆÙ,[® ±ªC.0G(Kçf/jj€¨G·ÀÚlF�q%B ‡’Ó¸Ä9© H¬¬Ë…Š·jcH‡)aF½US-T]F¡,sPÊäâÈ.‘çŠóò€ÌÜe"†µ„zW'2!Rv&'ru0¥ ;-læÒFF"!¨¢¡r§4fÌî r”ö)6„Çä6Ì,äóf°F[I»¨æ>’sÈÐŽÄÁzøÖ^‹¿>MãwD¼ç+ßþᵆ¯±ßÊSŽ?¬?·}·éßö…ÿ~Õ£îuü¡û>÷‡?ìè}Z1vÜþÓ?¹ió?wÑÔšo‹Æ|aë�åøO,ß¾aÃÌV]5žÇÇ¢¹“ÎXÿ†jnkv¸½üà£B,v]5ôäó.xî¡çœ~èóäý›Ë¿x׆·ÜékO|ìÿúfºñ›?ÜŽ<ta³å=ϼä+§„õï}Øã^ðýÙϽý›7=ü±�í^ÙyÿsÍ Ào¸~s?»W~¶ÀÚÓ>ð/¼ßió ;;ѽ?o¸ç™ù´ƒ°þ}{Ü ~0û¹w|ó¦‡?vÿá^ñ€¿ú×÷íó'{ÒÅàû½ââÏÞw�ËUßwO¡,¸Ågÿá‡Äû¿ýã_þó5›¿ðÚ»=ýümáù€¿úØû÷yÔCŸxø~¯¸øó÷[ wÅy�€ßý—SßpÞ:”÷ýû>ùÌC:<Ø@ƒÍº¨·Þ¸�&XÁ bríPaó5Û¡Åäf &Góµ×g�¸á¢Ë¦îtØa·\}õ•ß|Íã6µÏÃ3ïÄšs¤ nìên@p[ÜíJLÐ,±(-s(¢¨ R‚˜9ˆÉ3ÀB‰‚¨u™…RW:Á©5.¯ÇB»t)¤µ³‡Ì3NµHÉ^³HpæY›Z5,jÅE›ú‹ò,B‡½²vé¤ê1´Ô3­Py,OªÎi݉Q)˜öK)Sr-[ž¹ˆ±guß{í=³¼&0±;²›FTîNæ"Pa^G*Ì¡¦ ¤Þco«rF ˜{VäÂJuÔFN5åR"8)ŒàË®@‹M2&à=ÎZ¼¤FP5'ÇœS‡`Ò'јŒ‰âTæPƒk–DºM 5+9[‘Ås ª“ «%ƒ(¼lˆ�"VÓH08{aR‚g¦2C…@LpS¢ÂÙÙ 2rŠ„ÔHí�;ŒÀ,æÎ0¢Á1"n¶$;ѼÆÐAà†éL‹W‡Ñ€×v56æÍnó›Ìh‰ã­5Š»õ`¼šÆîp¸àòkÏû鯢5¶peKާ¿Çô—¬Ûqö9—¼øÔ{ßó°µw];àòë7ž}Î%­›í,[¾§\óJEó]¼3Š"®ØwíŠCŽh-_“uzvûÚÛÖö«Uh­éìsdkÅÚln¦óïÄ ûþã{N†©Ã] �+ýÔ».ãGÜe9�t·Ïfw¤=ôAÇ­aw^yŸF ºîG×ö- òœ«6_¸ñ{o{å="ü¦¿èì/ÜbÃÿè„ÜôÉ“½ÏÄŸx¿§½ûëÈ‚JúàãÖ÷°ò¤6^~]½‹ ë7]Ìì·^»ïÚM­}ÐÔ~šºï‡\cöê«ÖÀŸúð}#…}ò'÷)wÑž,°ÿüÝ�6|ù¼+û?óŸ~îÇi°#€ˆwñ5/ȇ¬N¡ßˆ ä†”´Ñßç—~óŸpáKNd _ùþsn®˜¢³8 žR³¹Í+OUA Ö²¹ˆ‘BYÑ¥Ón…$Šƒ9f0ˆ´¢(LØÄ+Y¬Yjñªâd”ñV{‚¬åE êP&N$ c‚pA(„ǃb(XLc±5Ñ“èí¢3U”Ó!®lñDÉËÛå>­±5eX]ÈŠVg:ЪNk™èŠ¢£0Ö ã;Î�Z®!xXd+`¥9»‰2;™�ÄⱤÈð¤I)A“Y KjY‘«Ü5Ÿitº9åøŒë\•»Yû ³JÛS½½N;ru³æI·ºuº9÷9W€‘W–¨‚+‰H)¶Œ0VÊ2 Ó&‰V™.xŸ(k"íe¼,:‚1ŽDQlvn$ÿAË áÆIÐÈ=Ü)»ªBÙ3`æF 85ŽdäænÄ&ó1Uˆ4„"(ÿs«4ƒ•Ä`£ãÀj¶{ ›ŽwÕÎKƒt»´…#ü>ÙÏö²&)Ç&Ç—¯i^cË×´'¦÷²ŒiOL_xÝΫoÙ¹p冭s_ÿé–ö²å{©%,ΰ·ŽE˃ϕ>ÓßTM˜¡SøäøªÉCîY®Ø×ÍC,`ó ·ùIº3] ÜC�è¬êÜ|w'sjæ]×ÁŒ½‹·D˜:䤾踳Ÿö=­¯¹äúú wÔ§¾Zþãÿùúy?¸æÇ?¾á;_¾á;_¾—¾ïô5óÖêî€iwcgÞeÅH <³;7yÞ»u££Ù£3|íÆO|ì³§ßå/óµ;ˆ›šÊû¯Ä÷6aæÆí™=ÍÜ´�Vº¼p&rBpÔ ËöY\ ìsÜAË"Åå· ÿ³;6ÔY‹VÅ© ¢¶„3„‚l1 SÍ<f¦1Í*"²fâ2d£@¨¼&TBNnÂÁÜT(g÷©²:åX,A“VöRÅí ×¹³8“ch"9K®µä¹Í­Z»QϦ5¨H…‹›„)ò*D/¨H?e Ò6ÎDË]ON±¥y£7ÞJš•ÙL©`«- Í9 NînBÜ <Ct''et@=qRô‚‹qdU"¸%«Ž‚>{è¦N»HE5€ÖÚ#gÀ°4d׺«-+ˆœÅÙÄ“i©A� e*ÝÙ;ΙՉǜ�Ðvµ.%[Ǫ̀KöŠªÂ€ì^’g#æ¶£Ž°š± f‡’D­ ,¦žŒX"™fÀœ�2†ÓÀ|¢`n ™™‰³öäÁÈàó΋˜›†ÍlÁAd1î†|ŸŒ…ÀQ»~Xº±Ò÷ìˆ?Ò1þù‰ü‚BøƒŽ?âÎk×,|<pÍŠGœpÌ‚ÇÇ^¥1še6ôên½eóµ?[ËÎ:>3¶zvlõ¶ÜéUjÕLcÙnC“»ÝÆšlÏß­;÷W̹Ï]ý™/o€ƒîrP ÝrÙG?{ù†Ú ÞøõÏ^­�0¾ï$ëÎõ›×>øÕï:ûü ?½þÇozhຠ¯­tݹ߸bÖ|öêÏ~y�t̥~·vwøøß´uëÅýæõ½gUbüð£ö€«?~Þ͵çõç{QµÀîiJ¨zyÞ‘¹!ÄÃ_ø×Ï?ØùßÏ~ôÛÿóíÚ¥í#îŸ1�;ÏûÜUÛÝ7_ü_ß®L=ø”ý ê]zöËö˜ç>öu?ÜnFÓwùãÃ�`ã•7Ítû Wl€ý]S úþÛÿúQyÉig]>KAHਓª.Ž3ƒ3Ì p e`æ¤BCÀ1„`$"°-«™„ÄêZ[fÓn±u ê4(°°»I2583؉Ë…Vh«2æÉ=ÂR@ÌuÅ©)0ŽÔ&)–I«E!ÀË ¥´Æ"O–²2+[ãË[|àTû@‘ŠrõX¸ód{²Œ+Ë8&¡ÄÀäÙ££ˆVÂ{„ 1&¦@(…£8*³¾yß­'Ôä°nÒ^²-®½”6÷ë[ª¼µö­•n³´ÍÓL²ó-Fs ªjKö Z¯ïÖ{¶¾_oHØÒ×ä;a=Ïš0k®É™‘àîNLE`Ò±#¼Œ¥$Y¤ˆa™RdD#8»1{#!È.B,ìzD#(YRµ>‘±¨»k£Žd'6"röÆ/ï &bFãüÁD,DÒTä &b/œàÃͦ‡‘Æõc`ZãE§At."'vÆbv4e΋k<4 ìÝd„?xÜýÀå/=ùÈ{¸üòë7žûÝÿðš Çì»ìå;æ„§û³;nÃ6FDî¾ •SšÝ¶e–X'VONM¬\UõªÍë®ÛÑëÏÌÕ]):Zõ©Õ&vjh÷аfÀÏ?|ŸÃ¿° Ûné{ô ¸6í¼òÏü‡g"._3é[¶lË�Ð~À“Ÿtp¬ÿï'N9å³zÄÑÇ0®7]~a `¿ö/ËþùGî{Ä9‹>ÿkåÖ²o\{Üj\p3¾ýºãïùáµGüÉG>ô¤#‹¥‚íQ§qü§^ùÃúü3NÛÿ¬±›ç|¸kï:_ ^{Ä£?úÞ(OÿúOŸuýýþæó×îqO^ý­sÿ÷=ÆhH(tš:áu/=úܳ®\ÿžsÀg&ò¶ÚxÖËïÙbîÝré%\”QŸZ;xæ«òOÿû¼­¼áÞýü¾7_~™+úêG¯.‹z㥗|ë⌴¹ò@¡ýÇ^ýÈ7ý¬[íØ�7½éÔ§¼/¶ïÿÎ÷ýûÃ'BˆîFÄ"NCŠ"Ș‰´æà@Zq(=I¼oýè%¼™Ø§�� �IDAT¢“e·ÊŽÄ‘[  LfgcUŽT–‘Hzž2[´–‘9“X¨B? E!²öc™É£ˆ¢å©†•ÂY­Â뺒’Ña"ä1‘ž…-ÎÌu¯¦’]ióœ+u8’;ZŽÄ F1¡0ˆkÅu2ˆÕ¤¨U¸ëÚQ¦¬3壓’)ïôzg"k7Ñd€jèG¯ûý"£õûÈPÇ^æneáÖ‚E)¢ZtK„NÒÜs-9ÔµÁsÙ–BÊsÚ…öLÜr̤� j'hÄ…b65fw Bnæ`ubω$ !ÙÀ§¾Ù/¦Âd6pæ`"Äa 4ž­Ãc£C¡…¸ ‹›Å`D4^µèмlmHü¼ëˆSCrg’EÉnhx—é`·²‘ÁìwGî39ÙÚÍván´~sô«µ]•c‹n÷Gí3¹—Z^ô#ŸŽ³Ï¹äÜK~Êñ‡½áO|øê‰—?ä°/œw>ößg¯.ͲËöRU…ÉÉ}'Žˆe»56ËvNõØøø¦u×ukê÷ú%G)[̛߂³ßKÙÞÆæá/zý3oøÈ>½ cöÊ×¾÷QË…@ÓG<ö‘GÍ}ë'ë6n0¶öÈ“ŸðÔ׿ä!EJkŽ{ìƒ.;÷Ò+Ïÿ‰4}ؽþì/yîa½ÁCpø ÏúË>úwŸÙ†±ƒN{Å«ßsêrÙ`XÜåÙ/:ý¢7½÷Ò훯½vsÜݪeÅgüûßo}öÙï¼pã,úìw=âÚWœýŸ=È�¨¸Ë³_xúÅo*aá°Šû?샟½qÝÉøÁ÷ßÿˆg¬úöGN=¸ìWˆG¿àçwÞõ²w}íÖÏ ³ßýŸüço{í£‰ŽaoI& aÕ#_qÁ¿¬xÑß}éë—_¾ Gžò˜³Þò¬G¬[ˆ^?XÌn¾aË¢çOÞ±ýl_?‡lŒCáÙB d”ˆƒI&ÄÄ‚±Y«ô.˜ F¬½_2©DK¹vÍT´LÀýÚK’‰;5NΪavsÁÖ«sYHreÆìDäKƒÜÅ”UZЍ¸Ç !'+ÂÄLšE!ÓŽ).ªlPn \Ìä²´™Ì(}VA4$áPëL0grA¬¡¬†q¶:pŽ$5*¦:8©WcrcÓÚRÐí¤$^'gAGe³9§¤¹vãsÎîTk&Ñþ•1ÖÀÜ MÆØö¤È3u1,7¤ª.Ä¥Wå â݉ì=± áÌ<. qåœL9SfWG6¸QÈШ+…\Œ“¹ˆf𤠡À0c µºXà R‚P&˜-S h v°ÑÙ™æ Ø`ÃXÃ6Ìdóï›ìó>MHcÄõ˜ºð愦쮦Fö–¿x²Â<™Í×r[šFŒXíwO»×!G­líêÔ \³yæE×Þ ´w£oÛ2wÚIwyì­²ütýæ=ÕrÍÍ[ÛHoüÜE­›]uàá?ÜŠ³Î½ìå9l/Y�бÇ{áù_“ î6,5aÛ†w7;¼Ný™Û½_w¦Æ$ÆVkö8i÷F)zW¼ànù¾8òo>ñ½]¢CÝf$ì[" wå îñÌ÷o‘¯ýï>ÿ€¸ç6 ÆnC—;sãÍyŸ}§�ßú7ÿø/nŠg}õSï¾çâl"2¬Y}agØ.Ò„Nîœå¬Mà YãG­b!Gn&€„›˜ÃìD¦î¤¬®D&¨Z6òäPP‘(—\Â)ˆ©Ç�O‚Ò¬ÊIXÌ4Ã*%˜¸ÎGN5‚1,‘K.û­`ý@±,Äv¯Ÿ„àÎ\’'B()Ds+ЖÈÉrJAÉjÕ P3„6çžqŒ‘%gc˜e°;Œ=({†Ô–ˆ»·¡ÝÊÜýÀ©N}Ø–ªÛ›• Ø9—d[¯g9Ζúj1x­Ûƒ—•Ï™§À5Ôk2çÆO5hHž¨Oîˆ}ï'0EdUé°ªŠXVÎ…›2Bå^8KŒYçȉ˜,“ääðÂcF(1ˆˆb¢E‡å‘‘uºJ涇©›à š=÷g¼ßá«S—6ªVVõ5Ô’¡N @L¦Ìš³˜83¢R&‡e'IuÖ”YJ·˜5–1ö“ ˆØ2ˆ]•…2�2XF ·H’�7ƒhàåan0m»Á¡4"<¢¾pVƒ^Ÿ"3`½EÝDsXKÃY†ywÈáXø·“Å3ivCT¿È•~S8ÿEyü?ºÁ'ËÎÄÖõ×íÖQž9Üý'|þY´öéoÞïÈ{Üž,³[7V½Ù©5v&—7¿|vǶ ×Þ:KSÎú_z§«>;ïâq«ÈÀ þuCĦB¼|z5 ƒho”@{·óýò1±ýW䇦ÐÞÂn5²èÏßÿÜû|4ÜóîûOôÖû;×Ï­ûýÅ‹Žkï&Âââ ó'Œ ¯3CŠcqÁKn ¸Qþ¸‚ºC„È\1ÆÙšU3jxA=7~Žu6#¨+3³°«±$WG” Dì‰)dM™ ‰ªHØ !ÌŒØÍB(Œ‰äìœÝ9³Ps%0yh›ÔF˜Ëš“(!Zì;µÅ•É¥Ý Õ•œÍØÙ;$,ÞwUF46’dý ë…n#´‚ƉM-¸WLÊ¢_õÌ©£¸¹–m"Žß”u\âLò©¨[‹ÊçB.(CÙÀ¤f„LÑÔu'5cr+ˆSȱ…Õ]Ïn-ŸMÈ‹:k,æÔ8²ds¤œ=¯—R›‰„53êš’“#M%!×-¶~r¼U§d+²Ms¡žQtRFqj‚z¦‘%³Ç­9å¾)¤ò,‚ìÆ^0 eC (9™‘¸—(êSi‰‰+†Xê— A]©»5žôðÂ-SH®ÌÊ(’#°ª‰8!À‰Äœ<(åÁ™eä ÏŸd6çjÁ‰‹·‹ iæe¼y_ùÃÜv'paØ­l‰+þžŒ#ãÙoûNOˆíöÚ©£ö4qï3Ùþ±~õ,û»ë;Õ^Ð%î’e¡Ä0äÑwa_˜ǰZmô qÓ°óÒmr6†{÷Ãy(lÁ@>bþuŒy^yü½N8ç¼ï\p£í}ÿ“'=íoÏ<ùÐ¥ša'‡6QO*Ób(¸¡£&[îsk‘r7IàfýÛCÆ"`%eYÊ cÈ!›“z&ç•™ÝMBh¶@&r˜+iVFeàÆ*ÑS !P¦³Òì'«)H‡¡JQsŠÂ‘2Ä9Ǥ–QJîj)¥XmÚAs¢@ ¬Œå~,I­(Ø+€[ÐÉ‘ƒ(q I°v;XeH’¬œH$+¬ðBâj eìs6i«ÕîKÕñv®R—»íâ²~è·«~ˆ- Û§žEÍI™“5 .Ç`ŠPPps•½ÅUOФÖ"cp éŠ:Õ¥º9™f6°8U0Ó­hŠY%C¥îk$ÒÈF`£Ê-¤n&ñsÛ)¡ìZ¨³Nµ¬žcõLQÆ(ö–×ÒnÍh¨WƘ6õrFäʼÍ9f€ ×ÈDLÍY.1H†G£I![†ªË攳0z !u±¤P'I¤ d†¾§L!äd.±Ñú™Cd `jÎŒ�׿Çй¡ s0‘/Á ¢ÅsM‡Ou':ø”ƃx‹Ö±%,åK&€ùcÔh·³;´gÞ³UþÐó÷‹¤ÜÙíÿ&³,Q®5Jů¿íqó[:¼Îÿ¿š_€F÷Üóæ¨ ËÀóZØæ´ ¨*1•à 5Áî˜iá”4H�'”šyÒÚ„L‰Ø‘]I™KÊ5¢Êpee·�J0a¤”É# ž…ä™2k@$Ü3Dæ)T‚3AˆT“›Á½®$tz JIˆÁÈÊ$;'e$­@Z3¼l‘&!n¯LÒî÷¬–V`¶œZ¡_PA\I,û˜HØ«LÌ¢îѬÊÎ%¸¶:D((¨(;åÙÙû5…וĜRRM†YódÖ5ìHÉØ»µRWW½Ù*ÝB9%©I«~RpP‡:ƒÜÌœ‚ºÃÅà‰¤ s®¦ âu"c Á£qÊj•»¶‹¢›xÜ»}k{à–”³V—êDœ½ B žsíRLpžË: JÂkâØt§Xi[Ê5XÂØX^6[bBê¹<SØ-³¶Ãõºœv¦*Tè[35æ…«,°¥”KG©O“¹J°8hŠ=µBQú"™�5)Aܬr/(¦LQ,[�3³3bvb‚Ü\È šÝÍ nNziVV A‰hñÈp ˆ,è}x\]:¯zpâ¥ïdH¿b·ñ Óèüç_}öúõà–k®ºu4Þ=a¿£ïñË`ý•CJÅùãÂý×À¾wÞóÛOe~{4{´;%)íµt¢Á^V‚ c"€˜á€ª§:‰È0]5Gö6¡Ë›Æ/ßpu�¡ÙÇ oüÈ Ð:‹EDd­Y¬N\#™[† ®2K ÆJf &xU;„ìZ€*ä’(y…LÙbišAžAE³öΑ'. 3õÚAÐÔ ®ÕBª\„{ A2LR¿w­"¡®6A¦Ô[Ô­µ7ŸÑŒÔ1™C.+«à³!¤ 6•¾ym$=#ÅÊstðLšaÉ4yP…¨fV/X4R»2×¹TRîu4fAØOì–Lž¹‡ÚIºcÒÏ4S)Eîôcêö‰[‰BˆVg²ØG™# %÷¹–·ºUKI“‡!™ÊRËdU7» Îr,s[«œJgˆSL9–¡ìive‡ôñ„Ú¢£×Ú­w¦ 6Ê6ÍR[ÚTÔÞSwkõ½lµ' e©«ç´ÌP{gìEtó²èVUTd*b±ÝÌ)FÏš{¤2)M ”H²¶2õÇI’<åZÝ­9 ÆÀÙ‰”AHl¯ÔLêu¶È”&€³Ysž äË삳¡52ÕÀôz¬—ÌÊÆÇ¢ÃsÌgÜõ̾áM¥·š3Üá`Æ1úçÅÿ_XqðñÄfyånœi°â _®âEÕ`Ö^}åF œ_zÈÍ{0cÞíË|!bx#±-ªjlñÉ\<&Þ6òŇváì—ÅãæË jþ4EùüŒ`ó±ð|þLÅ¡ZM“|ñ˜ú¡Yh¨–…Ìß—ÓBÎfR.gñMó… y·,LY6dõÅ®Z<iİxÜù‚° €l—/4`¾ŠÒ±£Ñ›a‰�à¾dz¤A¥‹oüÂ"+-t, ªñá6Ï+Š9j±ð¦o̱`¾?gà3N>´LtÃ'‰yÜJ,„°voLRƒ>Yèx,6~¡c}x[âÐíÌÿj‹·�ZÜP3Ä&ÃÌçÇÇ|É»ÞÈ|¥•ŸÍ ‰æ‡âBSòù­}±è3–ŽùÆãd0ʇ†Ê#,Ò˜ûs]i¬EþôÙÿ8ê F£}É#üãçG6ìÌ1OcÌ7]{€ó¿ö¥Q-_½ÿ¨Fa„~7qÜqÇ=êIü©Ë6.¡±†1RbŒ0Â#ÜQF3øîxÌF}0Â#Œp‡¤±ÑŽù—0Â#Ü‘il4hl„FáŽKc>â±0Â#Œ¤±;8lc#Œ0Â#iìŽÌc£>a„F¸cJc#)Ga„îÀ4öËNàzÓÿøä>úËçŸ~H~ÿÛ½­Û×’ð{~Ýo­Q?Œð{Hc{S*úöswÏg}gèÊŠ'{ñK;åÑ8rŒ†Â³ý:µr¾ýœÇpÆÔ/ÿàý&—º=÷>_÷êžóø5¼Çl·§%#ÛØ¿ßxû¿¿ýïÿí­/~Ê‹_ú´3G½1Â’4æ€S8á5Ÿ>ëî��+îÔšî¼äM÷–ž÷úëkàPèÓÝ‘Ôm²Ø¯TçHá÷_ºèKgÿÛ[&N(?ðßïÉS_:êþ¤1¸2uðÑÇ3±pMoüàÃú¡?ùâ7N?$`1¶¸è¯;çì×¾ñc¯ëbÙ?ãûì{MɯÀ)Ãe.^Á^kÊ•®y×)§~æ!/>éÿvî•›æÚwyêß¾ã¬S×ÆÛ¬s„~ïðãë~|Æ[Ÿ7yßÖØ‘ÅÝ~üG£¡>Âï¥4æ·5¹û’4CGç-yo;.xõS_ô£“ßøÑ×ÜgŸúÊÏüÝÿë…«¾ñ/OÜ—[RéÐÝC-«‡[å@úÙ¿ðˆÿìNßøŸ¯=õ¹9}èçÎ<ªIc#ü^â¦[nû¬X³ËõnîYo~É“÷ÛrÎÜSžö”ÑPá÷‘Æn‹Uª¯=ãð}ÉW¾ù¼önÓ馯¿íœÖ_óÊ'Q�8àŒ¿}Þ¹þÈ…›Ÿø¤Õ¿|#—T:Àñ{«åñßµˆ±‡žùܧØï”¾ì®~Ó¿^uæß3lc#Ü!1Ûù«·<çüKÏ?`ͼ÷›­bq­¦¦§ŸýÜëú׬>m¼MZ5»ïîvÿÑPá÷Æ|¯Ò˜ƒÂ ýÉ¿ilcÔÙwñÍ §æùÐ zÕõß»º·î»§ÜåC|ãv÷U¿¬4¶´R�½¾å¯œÜû{¨%ùØp«ÜÃþÇÐnî'ï|̲­?ºÎý¸‘46ÂïÞöñw|{î¢ýžµlçnùüŸÒÉO\ÒgþÙ_»ìk«ÿt†mçw_úÔ×Ñh¨ð(A¦9f‰mlOT`.ǽóþ㉫ùö·ri¥Ý™é€™½Ö¢ëwi&]x^-ÙmSç#ÜñƒŸ|ÿ1ö¨V«ýÕÎ?yÑ<ñ!OhÆóY|ý'¾ñÉ•ËeÛ×»ò„?~4ÎGøC”ÆšK-?Çï‹ýï~¾rη·>îÔ·‹ÇvSé¢Ì·ÇZ–¶ Ðu—\µí9‡¬b ßüÝïoŸ¾ç{¹ÓÑã=­²}ç±£ŽX}ô×ÖéªòGW]wÕÚUûù/ÿÒ%_Zñð±Ö¡ûÓº{y:ûoßCóþ@¥±_T~ZóЗ>îÝO}Ùóßì/{òÝWú–«/þÊÛigþù‹ßD-‡îš2}û­ý¯«_uÊôµŸzÝÛ~rÐ3ßqÔ^¹sd0á‰c½Ë»ÿ{gEÓðÙ½¦ŽîéD;»°±»[ã»»ƒ×yìNTì@¤¤¥înwÞ?î€nœïgŸcngg~1óÛ™»²MÉ•�Prb [5¬´„_Pš¯á£¨`Ãä§ ²nÍ4ËÃÎ99¢é†1é£1Xyé;¨¼^ü3¦ÒáŸ3G´ÖlX6dO�§vªàµ^à+¡P±•ЏÔR*jŰ™<ÅäÖ¼vÿ Ôüþ=0Ç– Ðh Ñäðiå}hËAaÃ9ß¾ˆ÷•§ÕV‰eH'òÉôË…íÛÏò‰<Ñ”Àƒ^Sb¤%ÅFöµåæ•sMMD~ìNï~×ünÜm ã[k Š\äˆFʘµãÂŒÞp,*½Iä‘içòtή>ö B4vÚwöî½êð…д¤¨·‘AµØÅÃÐÜ®zbâ·ˆ_Z]‰…Ö®ôÚïèîU—™g Ù1”¡‹Ó˜8FD>‰1ðôÿ ôÙûìe1XȽMŒZìâ‘ð-\RŒøµMBb¡µ,]Ç`-&4Q;G4Vš[»ô²íõ0â6C‡�£)àÙ—òMX¦'ÿÐÕÐF¾hzà:ð&vÐÍfÞýpÛÏ€&{¢1³fâ*Ó´fD.€ù0óbA‡¾ëÎUßÔhš£1Ô‹#EŽÒ¹ÕgÎÝ=O’D«Õ­¬›! þ 0†~ýh°èL¿#‘äh E1@ Ñ@ h4†@ D­ÂŠch¼a ½‰@ ˆFÆ~¤$ ¥ % Dc cîm{"¥ BŽùKZhR@ w4†Ü#¢‡14C Dc¡(†@ ˆFÆÐ¤"@ oCÃ1@4æÑ cÑà¤&'D~zŸŸ— !ùŠa¸¢²Še3{cS Ã~n4†&¢Ác؇·/ìœÜ M 樒$ÒR’Þ¿~FsKëß6+ÈÍDîˆ@ QâjP}ù郓»©¹øS§Ä0 ×Õ7rkÙöã»—ºúFç'Fc?©A ËÏ͉‰ ÍËÎ I9.øcÁq\EMÓÒÆY™« ”Ò»æç壥 š:y%Å%6û'Fc?7©˜Ÿ›ýéý s[7 {U Ç‘#ˆ?’ rsÒ?¼~âÒ¢­² WJï !¤3h¡8NÃ!I¤ Vª¨ç%1QÍmÝõÌTTTjû˜@ šæº::áïC\=ÚÕл¢åuba¨V‘¨ž63/;Þ‹b@ÑÒ5ÌËΨ±wE«Ä+…¡Ú(£žGc$Ib8Žb@¡ÑèÂ…Ò{WÆêo4V B›™�àjèÐht¤YøéQF¿%I’$‰ò?qœ†7åŵŽQŽÆx¥%E…ù��Ž—ÍQüÙZñ¢Ö:9_˜ýf¦) ‰5Œh³‚ý}‡¯»Ÿ$àô»zÖ,p€¹'?凭1ïæY0~{ýñ{ZXïú1tq3Ư˂@4ÅA†Ôo)¿zrÿÁÛ=; &çû g÷&ª¨ÚMq‰�2LŽ¢2GQ™Á`–'ÖpHîÂbw6×èv!ý7 ˜ë·hÁ·NlÇm_ùu®Éù¨smqNßÛyÒ»ü“³×E÷¾ô5=+åT'ðdùü ÍuïS2³C¦›5x ’Ž·£c˜ÕߟJ+\FѦ÷È~Ž*h*Q‡î™²ó¤þöÑã[m¼Ú·ñêкU»VžmZ¶lå`ïtãv`RòwY;g23°³"›Sv(›¶µ=$S kö†<¤+JR¬¡\pÓhjšºUëÒ¦>8k;ÑK#¹Á}¦¼èß÷¤Žäñ�“‰WÔdWYø?¢Óèͼ½Ì5U “¿Çëût°ÕUgÕªÄzºH¸´ç•ª“a‰cŸ–lu¾ˆkv^}¸ó¯.hzQ ÔñÙÇ'Á·Ø¨ò5SóCGw‚²4 @È`2:wôñòì(i¬‡ÑÛîx¸£µ"Yšu}ÍÔåýç:DëÌÅä® ƒUÝGcð'Ø«f>=e1´£6� s_ïðµSÁ0LÝmÒ™XžðŒœWÿŽpÕÄ1 S0ï¶èÒw��ð¢ÖÚ°œVŸZÛÇRÃX¦½6¾ÌÎy»s¨Ã0vÝÏ(›&.Ž9?¯‹…†a˜ºãàMO2‰jEéü}Ì9†i¶˜´ooQ @ÑËézìÎWrE§çßéÏÕ÷´PX´Ãòƒù4Scb4QUónô±™Vúi¾%Ã01O )ŠæE­µaÙ/Ú>«½±"FwZÉ«¬„ ªg‡™çÛ*xîM)yÐO Ã0 £Œ]ãïÀÆ0ÛõÑ<™J\÷æý‘ñ-õ†a »»£KkÐs5aË"ê·óûÃm—ÜÖ-÷ì¡w…3„®l»ŸùÕ‹öÿïo–ÝüÍSÛšj*³Øº­gœãUu‰’ð]£Z[p1 Ãè:î~{ßçÃjBib1?“(�’MOŽ@üÒIE)§”Ñ!‰à´Üç!Ñ7o„ܼùôkLF|\ŽðHøž«¬¬adhxëÎUª! ]Ÿ™µS«s–ÔÈ û!€½ÁE£ù²ÝóºÛj(ª¶ØUœûf÷8/%eŽ¢¶mïåWJ! ³®ö×¶ZðºB@¤œîª ¨7âAæ\ï§c1íE„…'¦µ5Wã(*s¸Æ®ÃD—B ,þ¸¤·¶2GQY¯Å¨­ÏjʆdT¬ã`°êÕr^œ ÕØÕ€�à…mYñÎkûãð×ãˆãã§¥‘€H>7ªËœ§ökG~yzhþîþÝÿùP,º Û¶&²ÛçaÁ;Ü_.éݧïÔ­>…óþ¶ÞÏÿM�€Ìº3£Ã¸Ö+nFÄ~}|`úZŸa'‰JEc‰'Gô^ó½ç±·ßbï-V>ö×­üã</|ç Öâ'?J‹¢¶ê_˜8%(MÉçJÔvG–ÃÖ„0óx[uÑ€ño�û¯,‚÷v~3F%%”÷»’²'©ú>)|>E—ÝùJ„BAâ!w–•x)„‘K­ d)ñå€'ã¦Þ°\ü%1)ö}o¤ë¹š°ÂíWJ£OŽuîëÖmF^оs¡•…¼È§ÔÖ¼IËÏÿ²Ïæò¨žk?–T´áöö>øñ`Ë˹½‡�êšH1qŸ›B:‚ÂôD\øm“Š‘‘™^PPXPPøõkêÉ€ÓçÏV9NœŽˆˆÍ/È+..’ „a±0öþÙGY:­ÜuéÂÒy‘{O³ÜMÊËx6]ñòøÞ Clüo¿ 9<¸àà>?e'oó¬'O“y�„_Ä8¼ww¿–@Xu':y7c bOŒ›}ÇbåͰÏQ‘!'—÷0dˆ¬ûó|¦<²\ò߫Ȱ§‡úelê?öL¢ ¦8RËXãèè˜ÏÏ}÷á„££c^NºðÈÉL ‹ ËÉL-O”~d¦%ßW4sï ѶØ*Ø'�� �IDATZú¡–F®±Ü!·²I!„Ù×z+«x˜ÏÝÝWy7G˜Ìû²ÅÓ÷¤@tþÐÛÂÞ¼$ô/s ÐûR):Ëi·1š‰G[+X®+Ç‹ZgËiy$‰+š»Ë•®?óE¡ð”¢×óŒ€êÈGù°ðÅ4]V§Ë9¢¼y·û©h-+Z{âÓQúÝÁª#æCþ׊0©‹Ö|ØÝÜêJ 3εÁØ}nåJɩ˜¬%¿™kÌñ:’ ¿y‘®g ÂB‹ÞÌ5Qév6•€°àÉ$}µþW3I!äÇívaÙnˆæA«[¹Æ( ¼™ ËtÔŠ©;åy¡x–ÊäÜè«j4ûU¤ª‰4×$•é)]ø5ßž™– ¥ó¼pò@a~Õ1uúðÏ\¼tââ¥!¼sÿF•B8xÈÀÅK'Nž6TÂEò¾´ªÔó³šÏ¿›˜U˜ŸS˜ùêo+ 2øRj~Na~Nnøf\mè•ïù9…ù99¡kì1 ¿;É…éÁsL8íŽ})H4ËÌdøÒŽš.óÓCW[³œ7GfçdO3âxî‹Ê/7/z§‚ù’—i¢”¬×þÖì{£¤{áäØoÑÒc££ã__Z­¼¢àû·££cõјèàóJKŠ JŠ ø¼ÒòÄŽj~<÷”ݽ_3ás†±§•’p–©a¨TšYH–&¼ŽÃ¬½T„É }//íìQ9„ðü––Â%’t®—iØ¢™2VöV˜QH€’Ø'ÑE1ÿ8²1!L›¿"‹3ã³øbE—~[wl¦ ¬Dzƒ-»Æ‡eL]{}ÑÃ(š²§$³°êþRŠ€aänÆ‘¬Y²KFÆÙ¶£'9½ofÖzà4ÿÃwc �@ªž% [øîà¹üÎ3»jã�(ºMªr÷½tI»dV�†IK ÑÂVšº«zƇ/ù•²?¬ä¢ÃÄ0 ÃT}.çd~ÏPª]EQIWDaú:¹QÏ|¤užÔƒB@dfdäçäç‰f.Ü]=ª¢g#y„€ Á`ô6Û¿zñöåÓÇÿmQ¼ÛwâùD¾p”Æ0t5fC ,MxYv³W„kýt[¶ÒÊùC°Ìº¸±>ÝŒÌK}\à0 _?ó„Û¡ÙYïnÇëtðЦA¶õ°qöï§:8u1oÝñ_ H�aI\Èç¢oZê(*«**«*ª·ø;º$ë{VMÓÚÅÊ÷t:S¸ÎžNgÖõ½¼âÈÀûdÇãv�x�� §•GM «xˆ'¡Á@åó1 `8ûV$- i-'„ŒÖ«‹ÃÊ‹¦•ÞÒ†“ñ*sÕ<’¢h^�Aê+ÊQ·ÙJTp^ö4¥ßýÿ®Ü¼}ue·U«'Þþ°ßKšž% ›÷|ß…ä¬ìÞeÑvßH8Æ Ú5Ä„�@‚O@±ÏUb¥_×÷Ÿô9?Þí`¥©P<ʤw”¢vJEI¥¦$â·>«Û@€šxÊ›÷¯Ä_#�tîÐÃ�! ‰B z6ÖL�`kg³9äb¯mçâúÏ3†`4.¶æ›¹+›åÛ6Åk¼š`>ÀÙ´y'7ß½-‰`»/2c9ö ïDöz|ýúû7×X»Ñïò³m­ in"oÐÅkµÚ¥~Üã8®ª®£ª®ƒãxŸ•Æ\¾Yè5ÔE‰ºx–±‡)Œ¾–/ZSüìÙ5'UʰM½¬@عàj£±¢YFnÆDôÃÏ¢ðPüõQd ��\QC”³YŸ¿Hß’§á�–mÛOY´lJ5{ݲÐÕì»[ºãÜÓg:þ8wä}Qmõ ³ï¹Fö<ü<´Œ7—g½Þ{9APSÙ‚o?d «ÈO yž©áb©,V ïû³PžÛÜÙ=l´h˜ =4,Kð³RSIÇ¡0=¥K ¿ïÙ˜”9I "bÑhxÐ¥ÿ=|xõÑ£kÂãáë^]þ÷ S55euuUêu‘��PœUHTù†aØÜÆÜͱó’_<OWµ·RÁ ¦êÒÅ(õz@@„V§æêlãön0øxÀÓo[Ž(3kÓiøü Gî<=Ô.ý¿¡ELc qñYQ«¥‚µŒ5xõ;‚:U.Å¿y)ÃmX iý­a¿>¼€ 3?ûü-ôò*¿aÖSfºÉú¶5Í` ÿhîÍñƒþ:ûâs|\ôëû—ÎÞQ*^4ݨßìŽ9û&,9÷>.>4hå´# ��,ÓÎíU?î;Vaaôé¥>@©·ït®©!ýûýGáI?2² EÑ2*&[ö:d)þ°cñÆ3?Å%'Ǽ¸t)œ¯ï Ç¬¥žÉô{»ïÀÎÓz:•áÖ}ÜP½÷û.|«ñµ9^ðâ{ŸÄ|¼µ~ªOV'»*ˆOAê:™áQÿ=LâXybþ?¡ÒMÔR—|Xëã5< ^@éET¦§t â×Î)Jí<©;WŽ"›Áf ]=Åü¼ìn}zù èÙ£¿w?Ÿîýztëëݵw·>]:ö())¥*DûýsTTTdø»û'–-¸˜«ÓÑÛŒYe ]¯Ç¬n¼Ó3ŸxvcÝäuáVc¦¸p�„LÃÖ­•¿œ{,pooÄ„l›n–)×n¥uvSÅ�„Å÷­Ø~ñiD|JÊ·××nDòuít4Ý^ˆ©Ü™>fUàë˜ïñ_ÞÞ=²j顨Ò—xÔ*ÖÔóžŠâwåÉ÷.$:Ìn­&½—Òò¿»?¦M^ÜÆ: °M;Ï:³ÂE4 )Ë`R½ûÞÿtgþ5µÕÆ� ܺ[­“ÿ+šn4êô•¸QF7ßUªÖ|Â?«;…¯eÑ1�½Öýoî1*+ÙºŽƒ-êz}­ÔÂT;ú¯l3p¦«á$ >:øûqIEÓ¤*’`À(kN€¨¥°´ªg±™É—–õ]› ۨ͘£Aóm™�«ž‰”»bí=¹âCëAýõ6<=mœT-1-3j33™Ðô˜zúÆr6ˆ‡¥¡‡÷=òlÁÄÕ0é8eé€`²ö&¦Pš÷ùEÈ;¯b�&…t€Âô”.@ü¾IE)ï•ò†Á 3H’„$YTR”‘•&àó �$Iáä; „ê:ÅE%.Pðl~‡–¢gÆ^£÷ý»•"„¼òÐ!��×°?0}þüÝ[f–qû §ÏwdA`Yvwfìèmņ¨8wµO~´ò2d@Æb¤\[3Äÿ{lƒ–#vŸiE‡˜jç-7Ok/ñŸç½=�ŽžKçá˹Xª¨U$ƒ^Sb¤%ÅFöµ%øÁmÑ 9Aäåf�T¸8&˵H’xx3нC@&Ÿho·gÄÇçSŒi ì,R‹æ…û;¸Mz;ÛœÞÐ5áÙìÚlKëg±[+4Éf*ß[ŽQ™¾A]ñGrñÄŽŽ=á8e_xïöÕn=ûS};iê˜3gæc�B€A’„�`„B’$I$’N£9sæà¾ãWWw®ÿ×¼Euu5)ç´ëÔ½÷ªÃBÓ’¢ÞZDQîâÁç—–��ø JL§Öuð”úø¯é«Okx5T-æ¾>˜îÚÅM$=Þ=eC¼ÛæÞFô†­ ‘óùí‹;Û·‡+z®µæ fÝP·¿¦ÿ}.ø³'¥Ö(;¾ *⃚šºh½.† ÿîLA$) âÇ|¯ú¥¸ê:TÏÍJ“ÏÙWÙϧS©’Î`°„+ŒºüžÓtàÂÙ¿GÕŠ&óCM˜6!¥�%«ó‚M6g4lM`æñžCžëxÍ Øã£f¯ndNaúßæˆ?:ŽÕñ‘ÍÁÃÏž-**ªñL…!ƒG4ŠXUƒ¢`}ìpa¸Šªf•ÄÆ ¦ÖiNj俵 ¾OHß&ßJ™6Ë¢J—5ÓËK þÄ(&­#Å0ÊÚÞÝ{zwïùG)ê'oì§Àqœ ä¯!„ ²ü6†£mµëH=‡15Íüœ �Ì‘f�‘–¤¢¦YsÃÐÓùc–6Î^?ÑÑÑÖÖ5’q}#@4IH‚HOK|rÏÎÅÆMS檺´hþ>äyvI’H¿âÇq5M;Oe®*¨áÁIˆnýI‚òŒ°Â€PY…ëêÑy0@”wŒÒ¿ç((ff¤éèüázÊLOWRVÛ}÷·„1@Ôc³Ð·/]=ZkjéHyKº)ÃH"#=íÃÛ—FÆfl«VyQC ˆßŒž¾¡@@„½{]TTÐÈ_pª#†+))›qÕÔÙl6 cѸ:qÌØÄTKG·´´”$þÐU8 g³Xµa(Œ!„¼Àa³9µïÄh‰'@ PC …1@ PC ÄŸBÕ%_£> ¥ ¢±†1 ¹­ëÇïo®LÊŠ'È&»‰> §¨›ôtäd쎼@ jÆä–°ïo/¾ Ðf¤‘žim·*iD™wñi�ŽáFÍ‘ƒ"D­ÃXvæ¤ø˜¢Â<9y™Ã0E•Û ×·mlhÖ´íÓp3CËÁmFßzu¤—ÈšB¿20±�È•Ã7êª"U4¤Ô4´QC–Ʋ3Óâb" Œ-˜ „¤|Ø çñK3#Ò uŒ1ðGü$ŽQf~º¶ž¡üX¡)ö8_úís�ÀÈÔJžU݈ªŠTÑ`Jˆ‹‰�� H&!Œ%}ÿj`dA£ÑR /u„$F£ÉüC¬Â`²h€&_Vhz@’F£©pU óóå]Õ¨ªH ¥#ó¤ï1(ŒIcEy4}”¿Ÿ cà ìOz=€3 úÁ¶_²²Zvfz£Pu#ª*RE@£ÑŠ ò3HcBù\HÇèøŸÆèDOÅ~=8!lªnDUEªh1œKc��ù¼ÇaàŒ?äÁý†¡ñ¨yR¢Ñ†1ŒQ‡·®„ éxçnÇ\»?ÛŒ.þù'kV—ª,/j¥¨CD}7R¢æÑyõ$’2‚”Óûô>Ï“ñüŸ;8x•Cð`ðvšVúêVÆæzŽÞ’ ªŸV~`��ág\ÉÊ»_;ÀqAÒá6öö&’ԥ◢:j_g4€VI^Üþ]œMæ7ˆëó¨?÷«…ÏÿîCÞª*È}¿kÊ�G÷öö^ËžÖ‡)e6k½«¢~dip@È6ƒy·'÷_*ú‹¥eë3~΢~–Š$ �Bá‡_]QŒ^uR±4rÛ€É{™C×ÛìaÀ,øþô^tf1 ž{ÄÊþÅ0\½ÝÒ í*}€ÕeÖ²ò¥€´²kQ£W2De+�šªM'ߥ »r©G¨DÊI¿±A=ž®O9L$I� €dñ^aš¶íÒÉ‚ƒÕGÍ¥©� Ö3àÒ<—Ÿù¨Ê×Ä•´­[õ1|°›&£–Æ-¯*̹?ºû:I{Çi:qb¡ ë×›€H¾¾ûpB›]ÿvVa+²ëÚ¯VêIÄÌZ“K±ZE7…5¬,9 cUœBFs}b‘#›—õéòÞÕAãÿ­r†PÔþ"‹“|>`0pªIEAÊ‹Û_¹ý¯­ã¥���¶öÝ��ð¾noã}±Û‚Vo®„ý(Tt¹aç?ý Ž€ÃpLt´SÇ£n?œ£õxx—°¼ƒár�Ô]y7õy7IÙ sC/XºõbD6dwýÏÎ=  âRf Þ×ím¼ƒúø{‡:þ86_ÑaÄ–}ªU-"lµZЪÙkƒÞ¥ �]µ™÷Üã‡G[²ªN*V2„˜ ?76dÿÚƒÓùÍÕîÊT  �K5¬0"VÆjTZLœß�Pî'AÕÎÓ͵ãˆ"¦š)ŠEËÚ +ÞˆøÅ9)1!×Ïmœv÷ñâ}ÿö7`ÖÆ¸UUòX°·�”~Ú»dmڀݫÚj`�à,MFƒ,àgÄgьݜõT”~ÆP¼'3kMLÕ@*uSÍdóÒ:ÈÒð>yRQÂà�º’¶©‰‘…•sß³¨ç†<Œ/!IèFž,‰9·Þo@Ï..­ [u9²€€$?ñì÷¾û"ŠE×!sžÏëÒgnp.I’°8ñöŽ…½:vqñìÒn¸ÿ±÷9IB^ü!_ï»7NæéÙ}ðñøò:Ü‹t]Vnèýðl^å+ ð?¸¬¶üzdbÔ«­–·¦ŒÝÎ/[¯ Ï)û¬ÒõÌ£5vLÛ5O’³¿§ÛÖJ";‘~yòˆå/¬—]ø*x×€ü£î /Á«\üèYs.F¦}~¾Fçʬe×(U)¢Eú…ióš- |ñú]ðÁÅÞFl¬ªÂ%­`fjîÒqð”ÎÜ‚˜¯Y|*å<Y0vóW~Ì¿~îž]\ºm|WD’ʼn·ÿ]ܧSÏ.-zN_sÿ‡�BÌ:ù×8/Ï..]§¬¾Ì«R./þ¯wÿÏ­™<¢}GoŸYëï¦ð$«4/òÔÊÉí[uqñìÙsÖ)¢™! åR9�QsyóÈžÝ]<»¸xõï¿ø¿ØRŠD~ÊÙQ=ú|ç—Õdàþk;çŽnÛ¦Ks1)ˆ¬wûçŽléÙÅ¥û´Õ/OëÔÙÛÂ*Š•àó�ÐUô›5³´¦l~UayëO%—x#²læÖÖgæú½‡+=ß¾ëA†@ªq©«Š)Y khn¢BÃ8:–VfʶZx#„U[•¥TXì «[–ȹ=¹ç¨‹Y¥¯W¶ñìÒrá«ñ,M&¥å=I…Y%8pÍV«ÞMñd0œDYdë xÔ§ItÈŸm ÕüAÆ Yå�@Ebt|èVH”Nð1ãþ 6^ºpq×Xëð}³÷|*„˜n‡ÞÙÿû\$<'ûõåxËÁ.Š€Ì}¾uþª7·¼va‡œÃóÖ]û!€@ðíü]¦ßöGO¯¦W^:FÇ&~Ð4:¯_ß³xû`kýæmzNZ°áü‹d0� �EŸ¥³¼4€iÔcáR縀#¥"i…ÙÅ? 'úʯ,9{aÒí=wé¾»ÖŽieiáè½äÀB»/'(®|)€ 9pùL/-Ʊì;¡#ìîç’*EÀœÄlšiûÎ.zº&¶­úèjÂĪHGÇèÔV Š’ßÜx“§áh­A£R>Ûkã¡ Ë™Ç^=»õîæ|fγMs_>+v]¾x4`Y/k¶pz]ðåôñHÇɇOíÜÜ‹¼²îßû™DÕ¢ öü}•‰»îß»ty¡á£ÕËÇ”T5ÖÖ=ÿE›CMfì9tùøâî…—çÍù_T IIåR8€ ùæòͯŒ&m¹|éÔµã+§xi1�)1Vr?�Á×ów#¶Üt9h¦ÆÝ ÿÞÏ$ ñãÚß+¥z¬:vüÚ¿ƒ® )‚Ü»šÏWrx1%ˆ «ôZ¢Kqì*×'ßþ–¼ÐkR[CUËÓ…#jÊGeDê WDú­ê–-Uêº÷ò‰~jL÷UÁÏn=ßÐ\A, …ɨIܔ埫90«6V«è¦d0\ºBUYd젨܀Ê!º-H°;Bòê”'ór¯þïÒ¦­».ƒ,»#"I’dXõÜ»……¡¶¦‰S×9³Ü‹Ÿ+&z _—¢{—¢ H’$2Ÿ}d·ïáÈ!é!ûï±F¬œØÓÑPW×¬í¨™c´?]x‘I$@©ý¸q-Ôéc±ðò*Ta@¡Ù؃ïžß>±t„7îÜâÞÎ6(�€näf¦(<¦n㤖_H …ÅÅFc>cÙ³B0‹Îö*8À1€3õ<ZjåF|. «^Š¡c£ËåUÖd—faUŠ`[ûŽvåÜÚÛoÙ¦€§±…X5ÑpΨfÈ{º¬­—ws¯^ƒü/s}7NµeS+Ÿ$! ˆ¤==p‡×eù¢ñm, ´u­Ztî Þròâ®VÆ–ýüZÓ>ÇU) Ðvì(g%@âZ­GM¶N¾STÙXôÜÿ{N÷Y2µŸ£…ç¤~–߯Ÿ‰,’X. p€ÒÜÔš^‹Vjº¦ö{xèâ$_R"YÉýH€zçq#¹8d¶ïÓ’ö%8¶ˆŸúìô;¥AKÆvµÔÖµðš:¯›€åYĽ›ZÕÞͽ¼û‹/­,,£ðÕIõçQ;6Y­ma\S?5!—/͸5Uµ\~�!IÙ⨌X ¥ÂeðSŸH²l™ `õêP™ŒÊ‘ÄM)ö¹’Ë`5ÉÝ”,†#*Ë"c%åjòçÛ‚‰’—xT{6�ä=]Ѿ­ðoŽMÿ…K[«�ø£ü dö» v_ ŽÉmÃn•'€©Òr€«`ÝÐG‚—>©t›jņ°8éS|IòG¿¾‡ÅÊ1JÍçCtkfµ÷ú¨ÜÓ•M=|L=|†Ï\<Îß³û¿›^N;a‚@ À„K1R@� ý‰á˜ð¨øŒa�� «H””Ã0�Dç‹&�ŽW»,†ÓÊ.… Š®-^„‚Â[{=¾qóÞ£›ë‡mÜ4òâÓÔð*òÂÊSÿ�`4—éGæÙ+@¢(=úòžýóÖž^ÓI‡F¡|Zù-„�”¤D$@#_kÅJ†�º®>G˜JWÖæð“ŠÉÊE躶ºla*¦df¥œó9©h&n¬Ò´èd`0Â\t%š†­³ZAD|A”Pn …à;÷·¸¶zðØÿ¼<Zy¶òîìbÄÁ&èb"ñ  k˜©‹T†sTY¼¤b²4õs n0ÁPäMLG3æÝ2}Pû¼PÕN“÷Í´å���ÆÖÖ¡Á4qa©ê_HéØj"MŠ—DVÈ@mÜššgYEºÀ$·8HaĬDª «3Ê—RQX–pT°¼¨ÜZ%›ŒÂ‘H51SªŸ%L²Õ$vSy²ŽÅe)‘­ƒ’~Zu‡”ØkÕPĪóJE!Fsžr`¶ÎRÕÑÑäà�¨˜Ñ&sBü—žÍ´ôôGc.«ôã¶ÞK‹…+B•zµÅ×¾Ë2H½¥Õi©]4±‹[ÿ}asOʆ$pª-?«ùõg–n3MP’S(€�‚¸'á¹s­´q�ø©¯^e«·2SF�0€ /Uö™FÃ$!Vš$f×4.4†wFú¶W�ðS^¿Lç6oÆ¥¬*—†/ñXW­�誶‡Ûv>gžO_‡…'?úwn¯XEÞÊ ± „€¦¨ebl¨�011›voîù[ImF)½¢P>)z@N’BC•=NÀ*­T„�Àèd 7r©T4II¾@tÓ‚O ו‰ ’�� ²ë C!$¤r)�€±»Ú¿{üòÝ“#Ëï¾ëÈô–Ê&ÄÍ’ l8Ë–_BH”M¶•­:#˺Åj·±T­¢gee^aAa%׿ø#…\d>êW̱‰¬Øøb¦Ž¾"N’TÆõ3¤×Ð<Ën4Ê -±ÅI1"E…+êImYa–´V™!Édê:ˆ™²Òg1®i¥"E7%›á�Y*.‹Œ”ôÓ$9äÏ·ÉdœT¬¶Æ@SÔ13367ÑQgñt! ÉÒ´ð/‹¡]¹ �ø™1qyDÙi«íÙ¯ož¿ôÝÀ§½$!Éб1qwB³‰ª’+ì\õ½1¬ê{c0)pL¿™î¼øø%úãó‹ëg/{Kóèß\Ã0�x!k~—ó`Ûüõ‘æcÆ:+Š¿7&þ™Î55 '>~’•]LÉÙ¹ú>³»ñÏÌ\ö¿—±ß?ÝÙ8ec„Õ˜).J•.% `ÕÞT«\DQØ¡U;.…D&¥¥Æ¿½~+Нk§Ë®úÞƨn�ËÛ7I@@in‘€Zù�Ç�$ ‘ul ±ïÁQy„…—÷KUÏ!’ÞÍ>ú秇†çq-uØ R^º¶¥H|ñµPø'/=<4GÉ҈ÔT.¥@’ÄLÝ;ûM_xðзì'—?S%–»•t-s]"ñM‚h‰QqÒÇX„2¼D¡„Š"¨ê/E®ª×$ >^Ža9ö°fK1®¬/KPÑ÷KjqTFäêR¢&ËŠnª(JŠ¥:,»ŽØçJ,‹Õ$tS²ެ,‹Œ”¬ýX™C2ê¥- ÷Æê¸RRE7QÛ¡©šèc‰ÞeðI¢8îþ¿±¢;’„$Ãʧ½êûÓgŒúµ×¶)LÝsbw…ç›6콟’ù:èà¡ÀØRÑ.i’Ú§WyzDSuêj[pgË Ÿvm[¶ë?ót~×ÕAgÇ™1ަÝìy¦W'¹9´p°tøás‹9e#!avñÏjí—.l½´­Y󥯋(²Óô¸¸Ñ#be÷VNm&^àŒ?}q¡3»Ê¥p¬ÒªEᘯjoVêõõC[»YÛ´ì½9µÏž³›±ª®ÃÄéÕ­@¦ÆÅÆûñêÖÎÁùê.­õè”ÊÇØºZ´Ô·aß~dçä‘ê-ÇufÜ_·õØÓ˜ÄÔäèW÷ÿ{‘ί¢p(i !�üÐ[.}JHýþüÔîñú}{š²*çÅ5<Fxnl> Öª�� �IDATxùcbÒ—‡ÖújÔ}°%“T.Aá�%Ÿ/ï>ýøÝ×Ôôô¤°'/¾ ÔÌÕp‰‰âî)¤À5=|] /n>q÷sjÊ—ƒÛï¦ dÍ+%8|¥"¨˜Ú±ÅÌóùÝ“[ûVÎTÐrêøv\(Ÿ5Wµ¢ÂÒZ•9R*LÖ`YH ÇeêCe2*G7eÅçÊ,¨‹Õd5\Ydì díÇÊòçÛZ©X÷gcPü5¤*¯%A!Ä4Ú,ýiùö)]¶)puûóüPñ€aÒ¡·QÐA%ï:¸( Sô˜µ~ƒÚáý;ÿ¯��–ºM‹Î•0ÄfÆ+׊†Ñ°Ê¯cJö£7œ½¡š�< �@Óê¸êÚè5•&:Œ'?M™\ý3À”\g}šU–ýË3‰Ù ©ºO?òxú‘*ó'b—b5[ô&eQùW îÛ£E/ùˆ@§{㥆†Ñ`Õ×b ºü8Ñã/=§îË–û9q Æ¡R¾Bs¿ÁÎþ‡ü†ìÊ÷™é9{­¿Òþýkæ, u«^3@…Wþ_Åœ ›¨ÿdë]Y$×jÀ_ËÇX0  r^L­ó’¿³vîß3{z`è¹ú¬_6Ø’ !P’P.…`ôŒ§§N+€€©eÛsáâ¡F4,AB¢hQ[ù£1‰RàÞ-MÙ°wõäë|eó>c†¹Å2pPã³1I_EX ¦J¯l>\AÓÒÑ}ÎæAý]Õée"H4nõ‡BŸÊ‘$´8*#U…ÅZ…eËž]U¯Æd2‚¢„˜)¡¸Y«:°3»¶V“ÙpUd‘±ƒ’ñ´òÿa?ÛÐ^ÀÁƒ^Sb¤%ÅFöµeãÊ™ªjšõ\HIä¿ÕI“öîì¢Vç™ÝÔ”„n}FÊt*ï˦Öíþ›øòÉdãºlrø“Ùë‰;WNêêÉ…’NLœû ïî£ý´iÙ×qçFLy1ðØ_½JrädgÔ¿Ïÿd­jõ'F¬×:4"«ýRhÙ®Ç(x‡.>½W¾š–õÖ"2èwÔ(ÊËŽ½{ê.¯¹¿‡*z:‰hX`aôÃ9f-š©ƒŒðÀA©V£ÛhÑš´Ä¨Å!ФbýR¶zøê`B¯ÛüYž* Õ¦˜V•fö8;Bž ‹â®l=°>‹�ÛÈ£ÏúyÝõéMZàßÒ∦Æ\6\BZnä>b0úØùѲ꘲ë¸CçÇýAÆ¢jqò`ÄFìH¹ík‰@ Æ@a @ ˆZQõÙGQ%5%éE@†@ªF^T!ÇwÐâƒja,;3MÖ׳¿d¨Î+'kcBUÔ‘²!WæeÕ<‚¶<A D£�-ñ@  c@ 0†@  c@a @ Æ@a @ ù c‚ø=Í9ö?ó‘5êFþ\M¿ÇM¹’TÙyQkmÙ®»âÈ Æ*ëç€çÛá8Ž;nŠæ—%œ›CTq7˜õª�p›Þ#ú9*ãu¸¾àëgŽÓ¶~}U¸öGiüåe}4é8ŽãL KÏA«d [‡z2Ì8ߎ¦Ðïv^EbþÃáª4Ïc)äo¯dYv à÷Yè@Çïèîz4†å/ÇÎD—Šz¢Ì‡{ïðµ™ßkvö?´ÖG·Qþ¶|Iè?ÝûoŽk½æÚóаw–õÒËÿQD¢û#Ù y<¤+ñ+Fcõ;qÕ¶S:eü_x €�?îî ÑóbE+;¿§¹‚ýÆÏ|@iÔZ[ŽãòCË|lÔY4ºF‹Égby€Â—3ôº\ÉeÉ»;@Uwü“”}ìæ…•~ZÐŒ…ÓpͱO �(Š9?¯«¥2 ÇiN¾›‚3 �Y~d‚§> Çi8SË~Àžè’ú‘Nøðêgµa;·NéîáhçÜÚgÌò[†Ñ¤¨ °(æüok. ÇilƒVS“Ù¯þá¦E£á¸’E·Å—ây@Š6 3‚×ö²RÀi¸VË)§¾–MöóbêDÉ&(¬u%K£ÖÚrí˜ÝÁT g:¯äQ(JRö< €Ì}³Ã׋ÓðòÒ™ÅÑtÈÙ`¬Ažajm¦t/:wôC�DÊÍ}oÍ'úZ0)Oç…ï `.zœV\¹E朗AiT7ì*>—#¶9²¶|.%2ýX[NÖ™Æ?´^~ýÓ·/o ÈX×køÉDB{ÔoÚMË}þžðímàªÞ&, �ÀÿºÝ繟_wÑh\#=Vö›;ï2ª<œ!%×™·¦µzŒ8ñêó·èçG§º(AH$Ÿóë6÷™Ýš‡áŸßžZ°g@5Š©µA$Ÿñë½òs§/¿|½5—¾oÑ­|�øubÖD-*)<?bçÿØKŸfòKÞÌÑ|(QQ’³W³¸"�€¶uå{¯mÂ^^KŸ05(ü}ª@  ½! Á”[NêC9ôz½»É•ýŸì'óORŸ®=dÂö: �¬Îî:Øõ¨¢¡-d*‡H¹²úgÞó­cX��Ó¿ö-¾à¶ÿnÚ`§¸LºE§n–4` oê ál—Öž¦ÜŸÐ¦é³cÇÀS;joÕ±kÕªM‡^ÃÇkkÈ&)j2¼ËÕ§Kÿwz…:�0±t@·wëMÆÈ[»'µåbÀfÕ‰Õ×l6î~»ø°‡dm 2¹´ý®Âø{[F¹+`¾qOpP»s��AöÏ‹ K®öP­2½ëQs6Ù+)„;`Ó²n†,�èù7ÿ‘¤¨a¥e¯·ûŽ=3»©bÀuÙïC£¯GõSúUG dR±¾ã˜’ë_ÖÁï/Ši>¥§¾´~„©k¯Ï v”´8%™…²>>)‰}]ó³N£á4ζ[YœŸE³õ›èôf‚……× éþGîŇ4ßOoû»s~F4ŽÍ¤ó191Ï.¬ÓJõÛÉÉ,Ú­~[XLQ“ü¸h×ÛM »DiÂë8̺»£Š0‘¡ßÚK;ûctA¡Ò„×ñ¸m7ea²¢]w{�`׃˜½Í¿^½z-:ííÂÁjÎU‹J E4r7åH5Y´ìU`{Z* ¿dª*•f’ì_hqÑÂXý¯¢ã8ø W½±`ÎŽ„VÓºéà•K/�€á˜øú9@ˆ€‰]BJZ�IHky,‘Oˆ½Ê©àüWpÒÇ«÷2ʼów÷fSîd‘õ(#®læÙ{ìüuGn‡>_lôvÓ?Á¹T5¡Ð0� ˜–  �Nc–¯ìÄtáçŸ�@WkæìæÖ\t¸Zk0D“j‚ZT��0ƒ¤›LZö*΃á4¼ìO KÿÅG:Ð!7Æî½1–õˆ1†Ñ/ :Nï¨Õ>Ú*j(‚²q™ ësBð#NÃ$EÃ5¶©—;÷$]Âð®fßmì’ígƒßîðãü‘E¿DJ¶¾µ(Îɧ™H® Û´µ%qåm¶¸=XƦ0úÎ'Ñ~rHÈ5GkU*Û°ŒÝaÜËŸ¥‰¯¿Ã_.&¥ j_ÉJ ‘¬(êì•,.u¾¼A,Ž@ þŒIE��`ZÏ{žžÐMµöQ °L;µSý¸ÿTX!„…ÑgþÚøb��@çšпßžô##«� Xåǽ5ÁwÙ¹Ÿãã¢_ß<ðל}¥Åþ]²éìãOqÉÉ1/._Šàë;è2 ’ÎnÛýï7ÅuŠHøŸo·ÑþG®>yþþñ™Uc¼¢µì®n(¹&4ƒþ+†±GXwõÝ×ï_ßß 8x+ö߃÷¿‰³Ž<ûü-ôŠÿ˜•aÖ“g¸)RöÏFýætHß·ôDd„Åѧ–íŠ��ðëÄ”f‚ZV² 4 “Qf¯lqª·ž­*ÄŸÆ�`(©kª²ëV¢’×Ú€9Š;=UÕmü{.ì¢,ìCU;¬Zá5ËÍXOÇzæóbõn{žÍâ^æekna×iò‘h®© g3“//ïïbaddÝumrÿ#ól™�%IB^Dåýĸš‹·}Þ­u£;¹;9¹wš×}ãÝ Éæ \rM�®á½ïñ©‘¼£ÃZ43kæ5v߇" £éûÜÞîùqI;[«æÃÎp¦]¼±ÜEÊóšÁ°ÿ]š6yj©éX¹Õ|^E�ðëÄ”j‚ÚU²š)E™½²Å )ìòkU@ äÌÑÑ1øá5%FZRldïQ[üMèÖg$G‰‹Tƒ@ ¹¢¸ ÷Ε“o:Ü{Õá ¡iIQo-"ƒÐÒch ˆ„þÕ«¥/^òÂÂH’¤ÙØ0=[rúöe˜›#åÔ´Ã=!ßäß ª-a[dªt„¼RzêT‘¯oñÝÛ›FëãÍèÛ(³‹îÜJéÞ=wß>�aS^¿×MÑaÓg~•Ï(Œ!rÂÑmfœo3ãüѵº;O:ÑI£[¯ /mÂÚ™ÚÓi4ÑÁÔvê³üZïÏòœqã‹â;;@6›Œ‰%.ß\¹ ¿ÆÑ¹\…ömòJìÓ—2’!J¥&s2Rš°‚T5õšŒìMI–_ªŠ:päú§¹C=‚ÜyáÍ8;™oQ.ï}­êd˜püÓâÍnMù½lŒÞ~Ï“ÝmyÙ_nmœ¼lŸE̽±†´?ÃߊNœàGGâædhÝÐXqñº£#�@Vtô˜ 4Œmk]ú1kÏõ3ë)ŒÕvt‹aù¹91Q¡yÙ$)×{–«jeggJWRV63·ÔÔÒ‘I¿Oö¦$‹Ü©¢¶S&ɑ߳)ûÅù_/·YrécŸy‡ß­rk-zË‚Ì|²aìøµ7¾•h¸M\=¶�%��¤L—ûÑ�ÐULmlmU�°·YóæðõC!ßKÇ*Ç\X1í¯C¾5û‹÷ì×FƒÆ‹ZçÚüüÐþoý×]ûJ˜øøŸ91‰~rêØ¿Ï‡çi·Yr*п“& �@æ¼Þ=sÊš³¡™cÖeúÖƒ«ûc_¶º;ìõy¾Þ… ��0çÖËa%Gb.÷ÕÀ$÷‹¥ÄÇç¬ßÀ²³Æ¢>sfÏžƒÓi†�hººŒN‹vï* à˜›¥ÿ³F©‡³ús²Æ¤À’ðÝ“'ï¼úü[ i» [q`×We¬vï37üh �Ÿ›ýéý s[7 {U —ë‰Ê×Oo:NÊ $I¤§¥¾{õ�LSK[žeoJ²È›*jÝQC˜WXš‘](àË>á_}úh¬Ë‚ÁÍ»:zóFí¹±u'��‘|vtï•1C¿¼å…¿Ú:vòí|æ)é ¢ öÞ‰ X¦ý2c™uwVçñoûìºþo{}^ØÉ¹~½Fè|ºî§ �à…íXç¸zß³µÌçþƒ¦÷íwÓÄ ÏæËUB7?úŸ>Ñÿz(ÉçGw›Ö{ßÃS”£M9À‡õöµ¿}¿±öËw‰úÛÅ… �Ì 9rèp¢­:FUÜ/ÒÑ”•°¼ÜÔŒ5kööÛbÖÌÙ$InÞ²QM]}Æôü—¯°Ô¦–FV@€îªUY$·¿{ö1k Á÷ûÛ&Ïè»Ô9bwk%9ŸT�ÄD}4·u×72SQQÞeÈq'Ü(IÚm»¶®~s6aï_ÉÒßýFÙ›’,ò¦ Y8|ýÓ‘ka|!TUfçä—dä±h˜³ßa! Ç&öu6À2qø±ÿ¥µ^ßË€ÎUŸÚŸÑoŽ=Õ1AÂ¥íwÆÝÛ<ÒM�ó{Ÿü'Üú™"½a ·ƒ’¢ÿjÀ’«>j¢þ†ÓzÙ•3# AÊñÕç8sŸomÏ�˜.Ý·ø‚ûþ»i#G���×{ûîé¸�ج˜¸Õõ_•Asºi`À~ùìmçŽ?Nä{˜']Úz“1âæ®‰m„{jû_·Ý´ûÝ¢Ã-ûŒµ_ºíL¤¿‹+f‡¹;ý¯F$_‘XœßXý_;£øìÎd99¬ùóŽefeÅÅÅú¯^IB˜˜˜èàà�0Àž0>oÁ›Søøq£Sàȱúb÷¼ ®Ó» ?šŒÛ²íZÐÔÀÈÍ­[0ä>ŒåegXØsKßeX¤®©“ŸŸ'ÿ²7%YäJ²pðòûnž–L$I‚€±™é9EŽÆ,&$aAQé¾ /¥ôì…ïÏï´¿‹6€bó‰CTºì¾ŸÞc°viâ›xÜf‰}ٶȶÝìXç�Té ƒ¸°$„$„$)ú·FaÀèmw>ÜéÅÌüxfñ”½·Þ¤/í¢÷4º(&ÄYqØy–ß³ù€�ÃØÃB8ÇJWÑç2 [X)‹vî1àb…™…(M|‡5›[±§¶Wkíì·Q9„—qﱎ‹¶ž‰ðwu-zvè!Öå”—*Š(Šà׆±’MŒ@Vno!\0oášµ«¿'$�� ¦M™!Ä@A!Í@/74´Ñ)Êv��âÇÃMÓçïºúñ‡h^B¡_®�€ßÆj7gI’$†ã¥ï«ÒßEEE�lllÄq‡”E¿Wö¦$‹\©B|~v~éÛèx�0ÇpÇqìÃ× áIŸG]PÞ‹ýÉYÙ}´+Ú7mÏÍ”~ª�œÎÄË2ât�€€*½AŽIÇ0Ù„…��ºª¹ƒ££ pt9WøÊvþ¼ÀQ¦$¤y‹{â§Wy›-Üñ¹lóg `½lÿg ��Éò]©+ï �€ öë´pÓ©ˆ¿M<»žkÅÅ�¢¸_¬@‚ H‚$ !I’$�§‰*€c�~!(êÓhH¦_ßmÆìón··ÒT(~2Ƭo”¼ |½i¾v¸oŒ^ù‘”˜è7z´ßèÑI‰‰âéå+_å]ö¦$‹Ü¨BÆc|/ǧ¯¢ò23s3~”äe·u6â*+äüHýþõkÜç/‰_¿MìA•—Ì Þsô9øôýûwÂãÕ3ŒÞ컜 `¹ÁØ— ¥Â3K’Þ·E¦Jo˜ÅÅ…ÍJKMOJJýž'‹°U~Zœfâ»bçþúcßõ[[‚O瞤uês˜F-Làç;Ÿò…‰¼äg?ÔmT1�h†>ãœÓÿ÷äöáGônãZª�ˤŽÅýäÁ´·äæ&ƒÿ1Œ$ÉÝ{v%''ëéééêè$$&îØ¹ƒ$IþÇÉàçæ±µKB>òšÏžém­¥€c‚¡aYÉ?/êo‡û?qDkð222ùúîÚõ/�`¯ï•Ëÿijj"YYedÚ@÷iÝ…Ÿ­úmSWUTQ)ÉÏ/Œ¹² Æ¼é÷÷Þ…Î hé¨Z–Ôlì½ýûc'Ìí;§Ãò9K†ŸŸ`ƒ}9µlw �- INoÄ…ýY0Õ¶óÇ›ºïÝ•ð|•×gâåpãO]˜ñè¿;äÈ S-d›J2ì3¿Ç_#'Íi°´£Rä±i²ž{¢¹"��Ð zŒw³`ö¢¦÷õ–½õhýWùùK(ΖõKUÇjݺðèQš¦zñ±ã´íitº™™Ùì™sH’Üw`¯¢‡$‰â#G1E~z¦r¿~Z 'Süä¥GIð"ÿ·píG€™ýjçü5«Ñˆôÿôn¦„aCßkÚ©/òµ£8,c”ߘµkþiáîÞÂÝ}íšFùb4 Ù›’,r­ŠK'IEWYAÆóoîy„µÕR|ïRV³ýô"Ÿþ,04lj¥­¡k3ä¶ë\ѶÈ4ŠôFÛaÒ·ŒÓ[^¹ì|rq–êÕémì,,í;M=Í5U•yÝ Mß÷Ä­mž¡KÛÙ5k>âŒÂÔÀëËœ9eßyOp+üš¢ì3ÎC¥¬·Sï¶û'Š«+ÜÁƒ ³³ œF„*Úµ{öŒ™Kÿ¥¨¨ ¬¬´pþ¢©S¦íÛÏÿž 3JòòTGŽjÔ ¤øÜÓ3zªµº¦ýˆ»Í÷×øõc%É[³Ud¿DnfêÛîú›˜˜gÑãuµ™š6.àø û¬Ë ‡,ý:ñåÇ-ŠrÑ~Oì5`¸ðsVV–ººzùWUþ¼tºSW®†®ÜÊÞ”d‘+UÔÛÛ§ïý%9ïÎÍÇ‘As!>øÞ¾#cÛVs325fgÇž0žæè� >}*>z\ú®§›§>s–΢…H]R()Ìk­yŸOl~¤:ñÙ¦áŠ�XÚd±xkÈÊs]UäDå·äjjjâ·çUþl²7%YäW20}h«=G® ?È4ŸC§\¹%ð›X×C%lÓ“” ­9³ónÜÈŽV05&’“ æ/€…E�LQWQ:Úyqßæ: æ#ÅÖÅÁê¿7Éýxÿ+«ù6{ÑZOÝÖ]MòÏÇ—vudɉпnf©áeoJ²È«*da†¯ç _OÙÏÿ£:š?­W•�†Yܹýãß©þþ ÚZ¸’"Ý@@“ËËÎ)ÉÌÒ^²DgÁ|PË=b¥†±Ÿè¹‰™k£^v›@W3QÙß³�ÈI÷W¶äZƳåZö¦$‹Üª¨—P¦={6·wïìãÇóƒƒ ß…�ØŽŽÊ=zÅnÖ ¹¥ÆäØ„~BäøHˆFËÜ\wõj]¤ˆ cuïè\C ,71«l´+ÈŽÏjÆjò0kÙßAy–½)É"·ª@ òLý/ØÅ¸N-JßÝ/ö~©!wã•ÝÛšÈÑLT•÷a©ŽF!{S’E^U@ þ¬0˜ÍütÈ98qñ™×Qoo´äµñÄù^r´¼ ÊF£½)É"¿ª@ r̯˜"¢›Ž?w-uÜ” {ŠpÏIÿ»ý\½lTÞ—eee«««•§Wù³QÈÞ”d‘cU ˆ?j4� iw^yíK!„H}¾o¤•¼ý¨­hƒ®±ã'?~~2vüÄzØe°¡eoJ²È±*ÄŸ4“wÊwp?zøÀ@ßa[7m��¬ôÿçâù3ns÷¦$ R@aL¶þ®ìC-m­3§† �8wî”–¶’™@4…0Ö´g^0¬b*ÕÐÀðè‘CÂQMI¤ ñÛFc8ŽÑXdÆ+ïøbkkSý’$Ä»E¹•½)É"Wª@ VSQÓÌÏÉ�À¼qܶ˰qYVÆeeeù—½)É"Wª@ =ŒÕnÒÅÒÆùÃë'::ÚÚºF8&ç2K¿'I23=-ôíËfÖv²¨â÷ÊÞ”d‘+U ˆFÆjÙÆ•¹ª.-Ú†¿yžA’¤|K¬põâ)齡’²r3k;M-mYTñ;eoJ²È™*DcÕ•U¸®íþD6%Ùÿd;"ˆ?6Œ©¨iÿ±êkJ²ÿÉvD ´j @ (Œ!Â@ (Œ!…1@ äžúyý@ ¹ cÒ Ñ™Hqhp e cÒÇb’H—h¬£±ò_‹G B.ØÔ8I4C Éï_‡¸¶h\Ñ<êw-‡¨±·k9©£PcÝÂX“A�ÑÓ>DÓð¨ßU´6¢ÆÞ®å¤þBh4�„èi¢‰xÔï*ZQco×rRÿÆ F¼Nr‘Mê�°©I$ñàÇík©î²å3¯ÊgtȉGÕ‹Q~—37p¹yw}µ Çç7šv]µÁYÍco¿ÞUú«ÛòÏ«±^{žz cu…Ì ì¢¢6ø^žðOAú½ÅÊjmÿÎ"àoÀ&™ØE™£ vÏ|^¢ÐÌgHo{%¬âî "È£Ê,Ò|Û^yZÎ:Ê«¹¯‹!„7P}:sIüµ•[è+)s”•õÛ[÷0ƒh‘Å;„<­¯Ðî)?_8�Âÿ~ª]K¨aýÁÝÕBÓíßo¼ºö4@Æ ÿŒÛTî(Ô,;M9šGÖ»G‰õ6âµ­¢"*C5.¬Ó.ucB hºRo,è9䔯_7{¨à¿qÜ B"yŽ�£·ÚxcSKE���KËŠ­®¸|WGÑ·ˆ@üj‚@(+|=qþËÔ¥v,��Ìz|èž@‹YnL½c¹ê±è’Oë{ÛνíâÞV†¬üøîD¦@ûõ"—5öŠç,e)ð§=T¹8�€¬t_^c»–PÃzmƒâ5”\áŸW)ø)·vm¶?ØÑJ¡äÇëãKfÌê¬>ìk«\Ÿ%Þۈ׶ºŠj¬L}N*’dÝ��$aiâ3»>£»úvàbw%Œ$aQLàâ>öÚ\%®¾‡ß¶§áùÓK¢7ºj¹.Ù1««ƒ¡Ž–šy—¹q¥u®$J"ù<� «™;9;¹8;¹8;9Ûè)â÷·ÖvÝú™WvB…àÔJvó?º²s=5®’a»éçcKI’Åû&vt0TPâ*p-½&úGÀ²ó[¬;·q°‹†WÕvðÖWY9ïöùµ0TPâšt[õ0/­¸¦tHô(€s½Æ·Ï>{2²’$¤Ý?øBwø� Âóyb¢R>Qq|z; %®‚ª©ë°Ÿ‹k(šŸôèzŒêà-kÇwvµ³¶kÙmøâ-ÿ 2À¥‚,Š \ÚßI—« ÄUµì43(‰_ûr+»XŠè¦œ$aá«9Ú=®åˆ¾Ê»7DÏbò³j¯#‰Œ S¡‡�� �IDAT§:«+qŒ;Ì8ó­DØ•DotÕj¾l÷üîvšJêµn×ÕjXûæ@ ~<ZÛßIX±éõÕ5œ|k°û¢ðÒˆ¥.\%®‚Ñ”§�@æ¼Ù=ª…¶WA,{-½¨Z…+ܦôËOÛ•¡E¢¯Èì;# ^É ¥4:�è*†Íš5³ujã·vÛ팻—£ëèQRºåòÞ¦¢¶¹ÕT$CeHy˜TFÝÒø³SºŒ¼b¹éÞÙYΊ�BHdÝ›ßkêcËÅ_„‡>>Ð'cãÀñg’”éBÀ‹ÞAuùƒØäï¡Ûš]›ä»éSÉOLP4¹y-I–°"±â³T%Gî;Üs#.=ùýZÝ s/§¥˜Íèm—C?…¾½ºÂéÍ_ƒV¼,]”¾{sT§mž_ßäúv…ï°Ás^º­½úúîî®qÛ'¬_(½¸&¤}‰ÁT[NèRtñÄÇB©w¼3×ß”)v²¸$*Ÿ0~îóå×?FE„? XîmÈ�5+è²rÞÝûÁ¯üe£Ë¼3ÇÛï$ràÁÇOoîçôöî;.Š£øìuz—Ž¢¢"‚½ÄcoÄ{ÔD£±DcŒML^c4v‰±ÅXbØ{¯QAé *½^¿Ûyÿ8ÐïŽâqpøû~î8nwž™Ýggv¹µbe/WO',Ú‹}VÅ©êÅÞñC~ŠêøëÅ»ÿÌÝôÙ|úêó‘þÎ8•”•RÖýZG„eÝTÉ»?¶ôY÷ß/ß{2ÍzÇOgò)¡ÖÝÿ¹µ4@ØðçЬœÌüøõm-(%ŠGk¾×zÑ©[çwŽRïøB³7•¹é߯y>}Gú¿<¸ç‰¬`ÒúÆösꟶµ'ú+Ud…D`Å'*¹ªœ=JÿaYבGG•Œž§éoñ ²s3¾Úg÷ÝÑ¿&ú‹e)eU/-Ú/šòç‚ß«ëS3 ÷Œ•3¼nþy.E¡ç}5e !V½øª‡ò<{Íù¾IÜ–Maå¼fH«å-Tv|»£µ£µc“¥‘rÊRB‰Ö•[ïid—æMkçÄ#‚Úý>ïÌ;ñDL©0hÜ—£:Õöò¬×vÄ¢Å]Ä'ÿ”\}µí¶hÕøü[œ=ºVz˜íÌ¥_tnÔ åG³'ûg\¾š¬Ð[\uj|==ŠƺŘ^ì‘m¡ùŠgG·<öÿ$Ø‹§™ß(¶Q¨žÆWf%fr};uiâëVÃÇÿ½þw÷á—P4qìºlɇÒU}kºÕoÑkÔÔÅ_M–²vºçGí•ø}ãì>A¾^µ‚:ÛÅ”½Ü7;¡µwïy¯n „RôV¢¿âÏŽüzÞbôºŸ†5ñ©4`áª!®…‹Bl?üñ›În†SöýZ«ñ˵;(ŸýíŠÝ¸_ÿ÷Q·O£¾?¬éUØ«ðzƒÚv]ôË„NAõƒ>œ9·+÷þ‰'âòô"]wahÞäyõåÿòÀÞ)e)›y㯋ôýQmí¨J½^¡"ýîßKþJ5û VùzÕsX–è9ò¼ÙD%£ïÓÞpO % ©Ó¹é‹s–¼yDm!!„ÈâoDIãn½ç±Të³µ³òô¼¯ \Jø>ÍkYhBáØ×´Ï‹¡´y¹—ÕìÚ % ¯Í¢#‹[ZBÇÒ£&¦9ÿ-üYf¨‘® Üølå,’ʼnՔªÒ.ÿúõÜ?Ž?LWj>mÑ'[I©€RÂ÷nî«Ù(\7;G³:Ö„RJ¸6î6Œ8C¬Ö[¥®Õë~{úÆ!„« Q„Ã6_}Ðx[\“/»»r½¾§Y{¬B©ÎÆ6úi£Í“ƒšmëÕ½K×ÞC?z¿¶SRgú}º9lPbè•«7oß<÷Ï×=WlùöLÈ—2=;]­XZB;íý\X¯ìåï„„ièOƒ¿ÎÕúðë´×¢£âòg÷9õ¾n`¥yÛ¢Þþ ŠïÕÄGøFµKÞ¯©V±¯®û”qw'ÝOäÔý¦ŽHó¶È·m=Ñ®b,ج„ïÝ¢¶¥¦YùöžVòx±Ú@„z{QÑ€‹t®Gï‘ ¿_»?rn`äæÖËLçÍ­l •ê­”+%Tvbˆ‡½æ=«Æã6üÒÓ±ØêKÙ£æ4¤:˹ê:<o4)1BÃ0¥Nc%\-ïÃQ–"ª÷Ùî?[ÒkZÉ‚szó eYÊm¶áá±®EF‡’ºß'ŠhB©Z©b)K !D­RªIùÿM¯Úýû3e !<ßÀƯ/ª4µà<èõϬ¡F& ¥šF.8ЪÕiÇ&X‘>iËõƒíê8YÈ®0\ÌjÖI Ã!šÏSB(Ãá1…çݯγôW½6Á=ªàW– ë<Ø®ûÜo¯f´\ñGJ)!£Ztéj|*òŸyüaŸËÇNœ½xbÑàÅËFº¼¼³§ÄÎ̱òjÙsX˞æÎócÛî«—]ýdоNsµ¥TëxQŽrutBq®Ÿäž’ÎëB«f zˆžŠ³”p¸|†-h$†Çc^}žpx )8”e¿~µQ´–-ëî 5žÐº ƒ¾Z'ûêóÚ{GጪÚ`„ú{‘veµ» á¸÷ðý¯ÿ<þÆëùß—9þjiC ìã4‹†×vññ¥­­¹NÞ>nV\BØ¢‰£´=jòÖZzËzŽ<Å›ˆ-E0ºgËw‹Ç[̸B(c4eß¿3<ŽNêñÕÑç *ðjY‡D¼–®.úa}ïSJ)QÅ_ ÏRQÊR*~ë¿,ÇFµÊ;ýVç ÑñÿÚ#øÂŸ 6r‘•hº´"év¸²ñäÏ;û9Š8T™‘¥"º>_4�ZÐsôW­&tõmBY~AÃ<£Có;Œé`_ä¸Tdéi|ÊRʱmÐiøô…œ¼ô{‡´ÃÛÃ$eëÌ|W?'"ÍÊçxêÛéZÔfž¿›Í[°å¾Ù _Ĉ…£%gˆ5¥+3b’Äl‘³õ¢ç{4ö¢‰wåš7eÏîÅÊ(Ñõù²í×o,[ÖÝï䥎¹UÐÒØkOäšyS†Ã!¬Zmxñrõ"Cû5×­ÛèF©‡þ¹qö¯k¼Î#ZÚÐv:Bx¶5ýýýÖ«åjÁ)O3ö(«û°¬™yóÈS¼‰J [¶î+j4öj€mÓbú½Òà>ë-Ü~rQï9C—úò³ŸØÿ}ÜÂ…¦?½zì";ø‡Ïüô¼_›%„(n,˜µÙõ=ãþ™½8Âwòoå L³¡ªÙhìu/z*÷ªW¾ú™ãf¨‘µÏ•4«äº4¨Éì=zåyð‡nʧ{æ®xDo­ië‚Ïüú:¡t^½ÅÕT§±Ø›çÑ”4¿Î„³O‡«,ím «.ØšÑXñ ôfãKÃÿXrÞ¥[÷æuìÕ‰§ODª\Ç×ài—õfÑêä}ŸM»Ò ß÷×t þ:÷.·åâ {w;=;]¯o>Z2dòÄ€µß~ÔÈ&/úv¨ºÃ ×£+ËX®®N¨uðæ{vlk·fëþGý&Ø} Ö†S&HŹ='·[4û§ÝC¶Žôcb÷,ü3–Ðo~¾Lû5e)%ª¬˜÷, ÞâÚúô(ÛîàÞcbû…Ó¾ZÐjý„–œð?gíJ& ¥”r­}ÜyÏ.]‹`í!²°³Ö½¸õ5iñ€½­_wB§F·‘A³øö{9¿ë?Mm(K Ñ»ÓÕÓu () }=ʆ(u–E4Mç‘§xÙ—Œ>å{ÞØ[üßXÁ—tQJû¶síVôöi°pױŇÿ®ñý‚Y}WçbáÖäƒaßÚ1”±ë¼L×û”RÂ÷ŸòeÍc[}›¢vl:ö÷3å ¬^Ónçb›íiiC\dæZóÇ­ßÚå×ÇÌhãóµ­£WÛ1Óz__Á’â·¡½Ø¡=¯¿8R½ò˜Î¡”Rµ´wкÂA‹\#oÞÓ÷ºñ‰€ÿâø’ s)z¶±fÓ~¼"e½Q4cרKýãÛVM]ž”Çbáٴϼ=‹>ñá1D÷†`ì»,?ô§Ýìã{ü,#Bצ#wRöruuBí Z¶š»vÒø¯ºø.Öðï7er§3k‰þŠSŽëG¶Æ1£³ß¡£Wû‘;\þCÇçË´_SJUÝú¾O××ïµþ#üxYvÊuòû¶ÄÉ3'wÞ"·5gfÇȵ.¡Ô¦ý7ÓÛŒ™Û1hq|ìÖÝ‹ˆPw“¾ðo'ù4ǵóˆ&3fܶ4²™uÁ{w:j¸¥Jߣh´îòJÏ‘‡m¢»óJF&00ðò…£Öü”丈àQ+æ3®û‡#ùBKËäç¤WòaB½ªS÷Ãc.ŸçÅ{ë•=|p·QP3`$•Ø£*«è*¸UJHŠ'¿´ërbܵjr«G“–! £–õŠ,O‡ì˜·lSð›ö…¥$G†Ö‰8X®oñ Le·-cÔH˜*P#¨N*±GUVÑUp'2MH4÷þÞôFï7v%/nnšµþYÐ÷=<xÕ¨IK†qËo=©h‡Ã©ä†åpMÆ…a˜Ê¯T§$Vy=ª²Š®‚;‘©B¢Dñ÷×ßMK‘bU§Ë„¿ù¤¶Smš´ aõ°\áiŒ©ôÆÖ›y+i¦ñ¶ƒ4FÝó™ÊKcL%¥1¦ê¥1Ó„äðþ³V×&-CF=,¿i¬ºï€…4öŽï׿—Æ*O¹&™juÐoܬ5޼P=zTe]w"s߯«HüfÑŒ�€™Ðu7>Ò��˜IS«“Æ…^Ak�€‰5lÒ¶ÔiÌ࿵ìØ­ ��&&ÎÍ,ýh ϶��3€«\dýúõh¨=ª²Š®‚;‘¹ï×U$~³hF¤1òÅ_  zô¨Ê*º îDæ¾_W‘øÍ¢Ëó ÷����� ½5cNþ*"n lòk¼ ÍŠõ.kcU$þÛ¡7bb£X–­ôf4z$æ‘ÆönYiøUAåŸü¥{;p,úÊÅñŒÒ£!ê´ó ‚ëY3 Ã÷h7yg”ÔTE‹¯sa´Ø ¿¯‰(õü¢Ákð†alêtùjw””š¢ÜÊk eÒ™ýÛÖwá1 ÓhE´²,[G_uÄw7ñ¶a†a,½ÛŽ];ûÍöêåÙ…9r†±®ÛëûÏU%4‘¾^T 99ÙB¡ðÆí«©i)Õ™+)xUjÿoÝe¾?Ý:·ÇG0Oª„-CúÌO»ýÖá€Ìó†Žìié÷`E++Ó”ÎÚ¬>³®½•ægçz–„öå¾Ñ}ç†÷[wfgI蟓Fv ›×HX±åVfSP…˜ñþ`ÂÂàs³¿K(ûÖÑYÂuj=fɄƵ]ø¹!‹¦Né–ë»/ØIë[Чk‚{þ(ù|ËÕ}ïYÆíÿvTÿ¾6÷oÎöè]ç[rwótvr‰OŒMLŠ÷¯`ee]YýÞt‘f¥'(snÇßÿ+00ðàßkòs2dR±­{6¯ˆ7ðWjlúžöŒèÓ9”RñÍÉn·³ þ”{ª¿­Ë˜+ùT±°¾ `îßöò³çŽC³ñ»bå”jÞo¼6NI)U¥žšÞÈÂuàæ§R ï2ù£ù~Ämâµ|J)¥Êø -¹¶CN瘤ìü«Ÿ¹Xö:V¼0Éé^L½åš_³Bºóy]C²+¼ÜÊlŠÂªßšâÎ,R”%$=Õ)Jvÿ[_¦ÖœûEöweôª@â8úb^Á¯qks\'^—rerì \.K~ž˜ž‘š•yíÆåðGaJ¥Òô½¾‚"ÉÏÉ8ø÷šÀÀÀïÜòû_ˆåyú&©Á®dBÖþ%œ}%U.‰\é±oüă)¬ö<ÂÑ/;ô߸ñÆî±~"ŒGÞ)ÅzÍyp.FجO€æüžçÖ¶[ͼ;—ä&êÌTr¢¿=Ã0¼M‡.½˜ª"„Qݾ=Ü÷ï¼öRAÕ¹÷m udUÑåVvSè:Òé I³*±r.O3jOçFŸÚöo²g÷ž¾B¢µ,UÉ”D`Uø MŽÀZȦ\½ñBYÒ:Ëw\‹Å,ËJåÒ—i/Ò³Ò:9:Ÿ9*6>Æ´‡GãGb�nñ(ÿäoaËf¾ïÊg,üMëÆ=!y= ?¡Ýãm¶]ÿk¤¯�-üŽ÷(Uγ jçåÈ/œÈw¨é@²³T¦èÌ<×.³Vï<rùÆÕ›>s>7§K¯å„0v=½Ô}Cgw!‡g8)nô=ckò*ºÜJm =¾zCâˆ<›¶}¯O3BÉ=Þ[Ä0<;¿~Û}–\ý¾-C´–å{wéîõrçüÍw³TT–plÉâÛ„d&dª ®³ÜÇ%±X¬fÕ2¹ŒÇãñ¸\‰TlccÓ­s÷»wÿ{™ò”‡G£Gb@y¾S!„Ü< ®$pm\,d±bÍhLñ`a÷aœàîoâÅC3A¥ÖþÍ4ÍmÚµ÷Ë©×~ýŸáÓ~i&95­Ï7ÝWŸÑÙ]|û¬Iƒ†Õ»{bb~…–»ÌÞŒšŽë9tûµ¡›±…!ĺÆаÌüÔÇÇWÍøºÇ~÷7õvÖ^¶ÅO‡V& þª¹ã—„ïžãû¹E…rÃë,7͈Çã B ‘¥µ•MNNΑ+‡6usu7eó™2ŒÆ bÃhgwÊj%x†SôoÉŸëù~/¿Ü³ÛÅÊЀ@ÏÎˉÉy–Yxkœ*+!‹8ø8˜þǪA§:LjTš’¦ŸZ´5­Çºß¦õjØäýQ‹ÿüÒéüò-ò .·ê4ÅÛlWÕ)8†ÚÔ jÚºëÇ?îØØ;óïåç3‹Ž8v-¾þ7N–ó<>1M·£—,“¸ù» ®³Ü$b Ã0"¡ÈÑÞ‰Ï=ñx`ÿÁ ýLܰ¦ŒiÌàä/ÇÊÉŠägŒ³T™OóKü7®SçeçöôxÊûŸìLP }ßùÅØu©#¿{ü‘XÓ‹^^?“`Ó¢CM¡‰;3!âÈ‹1Ô¥®3ŸªdR•öyê(Ø .·ê4ÅÛlWÕ)þµBÁR–Õ9—Å·u¯éí,xqtý%EÐÐܸ%­³Üׯ„‘ƒÓõk×BBuîÔµKçnB°¢›Ñ‘:ÁAÇÐ䯰V—÷í—mØ>dVyºëÛ%÷)Ó´­êþáo—¶ç·Ýi²õõßû¹£•ßé%¨7zf§Å“ÇÏî°mJ@æáYsþó¿®­)Šß^øÍ—.=E¹GWÍÜð²ÉÏãƒ,8œöCšIgMýêËY]ÝÅw·}õKœëÈþõ-*¸ÜÊl BÔ9ÑáÑ9’ˆ9'=¼škéR/ÀÇZ_Hêä=c†l®µæðO-X=Õß^4÷dNízX*_†^9û4·Ûßíe-±ÿ¬úWÝ´umQêÍ-sgsŸzq\]¾Þ&*ÍqÉ`ò¸vïì¹Ó}û|سgŸŠ=<š6Ctßp/É7ðªî7ܧínÇXô;™K)¥T•rúÛNŽÐ֣Ũի»Ù¼¾á¾àÆzÍ}ùî–=Žf}_útc°“Àÿ«3ijÜtþŽS¥œß§®%!„ãÚfâßO%&*Wú`yÿ wͱQàÞbøÒ )}VžòmïškU"ï¶ãÿ ËeMQn¥5¥™û;=øÙÔܯ;$EôÊFÄzðÙ\ýÕ‘>\3¢¯& 3ö~'m ÍV[–*b6 ñ·#„â8pÁ©çŠ’šè-ü²zù±ãG E¥wù ŠDç ÷L``àå G­ù)ÉqÁ£VÌÿf\÷Gòø††~B‹ ùgÅ¿§cÈØ¦8—VF-oZoEÛkqÛZ��¨*Ĺ™§CvÌ[¶)øÇMûÂR’#CëD¬BÓ]&ÊRº& Îêì§¡7OÿòË#«6?×·@—·íQïJÑ•Xe3 Éã7‹făZ´&iöéÏÚ ½áÚîËíë{kŸ @¹zÔ;S4ž7V]ã7ãç½£ÿ8Æ8 ¹ÂÁa�À|à†{��@3gæþ\"@ªô¢ñ¼±ê¿Y4#Ò˜ÙÏ¡zT¥kcÕ5~s¾6†ïT��s€Ñ�� �� U ÜâÕ¦Gáj³_㤱2À-Pmznñ¨6û5nñ(=üû3��˜1sÉU,6��˜e{ô\’-QWÄšK5ù«JXßTÔpéSåÛ—§ˆü¹°É¯ñªR~¾hÑlæ¥ÿuöä1 c9àt^©VPÚEʼMª^EãÚX‰ÿvè˜Ø(–e+½‰y¤±½[Vê{­ß¼m÷±‹®¶üŠ(·øä/ÍØÛ)¢Æç×eV ‚Gö´-m{©bW‰WÅ(¬*aÇWK¢„Ħe¾ØÙÙæí©¨ +CUªË—”Iföo[ß…Ç0L£ÑÊ’Þ7bÑâkã\´û²Ýð ù„å³£ Fvôsà0 Ãs øÓ©çJ£–[H¼»¿Ã0ïÈ2)¶‚øÎ‚à&Þ6 Ã0Œ¥wÛ±ëogbÕiç׳f†ïÑnòÎ(©Þ•¯N©–U§ž_4¸q Ã0ŒM._펒RBÄW>u*zœa½Žæ”ܤåäd …·¯¦¦¥TL3VZ$T­o¸oÝeЛo¦‰é¹;òªÓ& „áµ_snu[ÍsÕaú–ÎV?mê¢k¨£PÀdgÊÔ')ÜzÝÛù:ÛUà"f‡U(ªò„3Uˆï&, >7û»„R¼oäÎ,h³ú̺öVšŸëYBdOÿ=ÝxºïZ×½<¿jê÷=û#nÍn 0òÉEÒŽ sbZÖ!çKˆÇ$¸N­Ç,™Ð¸¶ ?7"dÑÔ)Ýr}b÷;©¶ é3?eìö[‡2Ï:²§¥ßƒ­¬JSUÉ˲/÷î;7¼ßº3;{xHBÿœ4jD°C`ؼ†Í\ *×kÙ”CŸöYáõiK›·¯¦»›§³“K|blbR¼ý�++ëÊê÷¦‹DçÓŸ%â\/S>ýY®d¿Üs<<Ó„ONßÓž}x2GûMeüº&Bÿ%O”jñÜpÖª©½- SÞ­»›Æ¶rãBÏÑÀ¯‘²œc½´ŽŽŸ\Ö~b¶<ba}Aà‚½ËûÛBšß+×<JvíÈ÷jÛB·FóQëïjÇûªh6}Oû×k-!¥ê¬[«G4qb!¾ÝfJSC‹¼d¦¾À(•Dí™Þ¥¶!„84´ôrºêÍf“Dí™ÑÝφBî­&ì{¦ÔRa ÌýãÛ^~ö|ÂÑ*HçJt—^d+U¬Á« É­)îLÀò(E)ß7ÊÃr¯~æbÙëXŽÁŸñooi±1Ieܲ±»y¶[yë`oÓqf©ã1Ùýo}™ZsîK©üÑ|?â6ñZ~Á޾¡%×vÈéœRU§4ËJîL÷bê-x\°+e…tçóº†dÓ¢‡—ß[smÉxëp‡;(—Ë’Ÿ'¦g¤feg^»q9üQ˜R©4} WP$:Ÿþ\Õ¯¸›Îå0ÝÚW±9hÅã5ÛEß]ÏT+n ¼2vÒñº /G=KŽ»wp~pM!cÛ;$ò—@a£•Ñ JiƶÅÏìá+~¸Ûî—KþÛ?V½í³‰SXBX'`ÜoçŸÆÇ?>¿¨É­éÁ³¯™oaœ†\ߘè&ê’M©ôpÛ"3Ï÷ŒêúÕÕ€Ÿ/EDÝÛ5,oÝ€ îË ,¢3H]±™§§t{¾þ'ÇÅÜÛöQÚϽ‡ïxVô:%›qrRû¡[ÉÈíw¢â£nnÜÔšR!Lº(­ýK8ûJª\¹ÒcßxMAºVb¨ôW[A™Ÿ¹ÊPƒ¿Ëׯ¨äD{†ax5š]z1õÍKŸT)‘±"gKŽ1ËUDoû£tæ–) DeŒ§Â·‚:7úÔ¶“=»÷ôÒœçb„Íúhº Ï­m·šyw.'ȉ2fU c3ä\žÞê”jYQݾ=Ü÷ï¼öRAÕ¹÷m uT¤ƒ*ãö®¿m×JGGæm{‘X,fYV*—¾L{‘ž•Ð0ÐÉÑùÌùS±ñ1&îÌF¤ì£±ü\¯Š)Õç$/sÃ7FÞ‰ÏÓüÕ„£±"MTï§Çòâ£1b7üŒæ¤KzgºE»ÍÅÎd•1¯3DñfÄÂúÄnèÉ,M-³ŽÛ8~|!¯Ø§²÷³÷žv[Rt H_ç¤b”qëšqGžÉÖ¬Uµ"q{%ßÀ"ŃÔ˜êÙ–¶–u—ž”F.ò·h½9Y­µ&UâÆÖ<»ÁG‹œMê I±°>©1þjÁ)÷Ì`{§/äé\‰ÞÒ‹nC þNÆdQ»–®ÞyòÊ«'¶ÎéêD8Í?’Ägœ™äÃñ™r9‡5f¹‘«ÚºuXóTNiÎq­ÑXÉñT¨œc½„Cö«J(¥Š¨åLϯ‰_uå?š3£/åSÕ³FµíöýÕ)ݲ”J®ééX8³8ýtšºh[=ø¾qŸ|Cl„ nÚú{¾8ïadXdô£¸Äèç/Ÿååç*•Š}v¿xùÜ”½½‚"Ñ9ãUµá×øü]·Óæ{ÛYðö…¦û:‹š×4ýÜ®öµ1Ž•Wm>yYô|レ™:ÿO>úí3_ßMöíÑkÀÇúֵ.ñÁÑ|Ÿ6~Ÿ8yYËãÄ,!êÔóK'½&$,µàj»å€l!¥»¯Ežô_<Sÿë [ÍZùíÚÕȺ™­nïP–s;ä�� �IDATŠëLwå‰$úz hÖçê&d*‰‡°ðWYüõhÚpJ ¦4!µ"„Ü çÚ¸XÈbŬΕè/§½@aÝáßLÓüئ]{¿œzí×ÿ>í—ÍFóï¯0`»Ïâ«KÚÛïyçŠÈ5£—ðæ^›è' DV†x*šu‡ ¡a™ù©¯šñu/üîoê¦ÿRšçÐí׆®NÉË6ãÔ´>ßDt_}|Fgwñýí³& Vïu wléƒÍ[cjßÄ 5c '-D–ÖV6999G®nØÔÍÕÝ”=Ï”‘T­V¨ÉÖ›)iyÊG“&tt»•3«‡W¥DÂs¬×¤yó×SpÅg>.Ÿ[°×[6ž{õEÿs‡BNœ:ò¿î?þ4þÔý߻ۖ&9ÜW8 C(%”Mûwl¿i_xp¦“Ÿ³¥ôò¨šÁùeÜ L©Þ*c`„²”Ûz[ÒõOÜË1é¤7$†£ý'Jõu9}¥+"‹l(«ê0›£Ò”„XB¨øÁšþæIgœ=3³‰•1RüèØíÔË·ý„S_½5È‘iµ1éúx/®ÞxL€cS3 ¨&!M[5³¹ëõÑòóËz~àåÄä<Ë,¼QS••E|x¥¨Nâá’—¥é§mMëqè·i½!þFüÛtù–ˆ1?iNãònoØ™ì?ýÓ†"cTP"–0 #ŠìU*öè±g'—ý Bw6SFRµ® ¸da¿šõ]-3å?Iä0L g…_å0• žC@±ß®ÞsõþîR÷l¾'!„ÃåZ–ÿ™P$^ S4Ÿ>­WK.£J Ï,ËU¡O«ZôÉéð‚ÿ S>¿v-Õ!¨½Á \ª EµÚù‘ð=—ÓXCŸi[—yr'‹¾EH:WRšÒK_—wòÚ˜Öá8òb u©ëÌ'„PqøÚþç¤O:~òïÙqŒ[®m·máa…®­kÇ!MW\ß5È«7SoµBÁR–¥Œ]P—:ò»Ç‰5™èåõ3 6-:Ô–¢:îŽ%/KU2©Jû¤aUH ﬥYWÖÈl6iX]Qz‘X, DvNׯ] 9Ô¹S×.»½Mæx›kcƤ£±Jã`Åû_°ÏÖk)g#²ëÖ x~¶ý–_&½¿úÇS®½û¼ç稊?úï#¥ÇwáÙÕòâ%ž»øh¸—…¥½£u‰ Íw òål?t!ù£ÁžŠˆ¿f,#Œo6¤Wÿ™½çŒ7µÃ޹­#6Oú!¼þŒíÍ­‘è_¦hÖúæG>šÿɼžŸ úŽ.ûžM}|áà)vÔ²É …ZŸø¿ß÷="hë¢áMìr#¯ÞVwÛ]_Hú Òµ’zJ¯k°.¥hpSö(uNtxtŽ$"ENÅIï†æZºÔ ð±æè{ßhE‹o/üæˆK—Nž¢Üˆ£«fnxÙäçñADþtÃGí¿ºÝzÉÞÖq÷BãáXzù7p1F)—këÛ(¨ð—Üd;íըQ½ñ˜`+ˆo/š{²F§ö =,•/ïœ}šÛíÀaôÌN‹'ŸÝaÛ”€Ìóæüç3~];[BÔÉ{Æ Ù\kÍáŸZ諱)yY—öCšIgMýêËY]ÝÅw·}õKœëÈþõ5ufÓÎþzLÚvýÀš<ã—Äbñý°{gÏîÛçÞ=ûTâáÑè‘¢ç/ÓÜpæqÖŽ›©Ú­R7Ü7^§¹uT±~d_;†BDÞí'n{,f)¥lÞ¥½4§eºn¸µ8ßœìnÙãh6¥Ò'[?iì °°wñj<dáÊN¶ýOå–öJ©:ëæêá5c˜.3Æknñ5°HÑ 3õF©,îÐw}ý5·‹Zz6ðñçÊ7n¸²kÚµ,!DèÞjâ~Í ÷ºBÒÛºW¢»ôb+1ÐàU@æþŽEw;û‘ó ¼o4ÒËû¹k™÷×^HQRJÙÔm‹ üæ?’WÌmZ·xè‰Ç¤׌hã«™ígìý:OÚš]p«…*åìü>u- !×6ÿ~ª¹1C½²±|6WuJ·¬<1äÛÞ 4ýWäÝvüŸa¹ì«˜:ðE=ö¤¨UË_V/?vüˆBQù·:UP$:oñ`/_8jÍOIŽ‹µbþ7ãº8’Ã5t.kae[ uï–•o\ c­K&CÆÎÀå �€w–87ótÈŽyË6ÿ¸i_XJrdhˆƒUhR±²²Ôúõëñ¬¨=ª²Š®‚;‘¹ï×U$~³hF<o σêÓ£ð¼±j³_ãycHc��ðN@��¤1sfîÏ%ô¨J/Ï«®ñ›E3"áÚTŸ…kcÕf¿Æµ±ÒÓó¼1J ���Fc���Hc���Hcºà¨6= ·xT›ý·x •nñ€jÓ£p‹GµÙ¯q‹Ò��¼Ì)ÉU,6��˜e{ô\’-QWÄš«âäoÞé¶N£.åySùsa“_ãKû4MUÂú¦¢†KŸjžMËf^ú_gOÃ0–Nç•j¥]¤¬Uw¸6öŽo…JŒÿvè˜Ø(ÖxÏ-w3=óHc{·¬Ô÷Z¿yÛîc]m+ä)±oNþÊàÄe†á;ÖiýÑçÓÍ} ¨JØñÕ’è!±i™/vv¶y»ET±«ƒD«b”Õ çT@]ô^NP'ïîoÇ0Ìû²!Dùìè‚‘ý8 Ãð\‚þtê¹ÒØE‹ï,nâmÃ0 ÃXz·»þv6kèý .·ª\ê”Iföo[ß…Ç0L£х劯|êÄ%èu4§T[¢N;¿ ¸ž5Ã0|v“wFIßXF|mœ‹öÚí†_МŸª^ž]8°‘#‡a뺽¾?ñ\Uª^dPNN¶P(¼qûjjZJÅvf“Gb€¾µTο?·î2èÍ7ÓÄôÜyÕi! û©{ÿå‚ñ¿ÛÚÎ[˜÷ü‰‡©Ö̯#*SŸ¤pëuoçëlW‹˜V¡0Ù Š*iÇ„91-ëó…=íé¿§³OX÷]ëÚ¢—çWMý¾gaÄ­Ù Æ,•ëÔzÌ’ k»ðs#BMÒ-×'v_°“¾÷™Š-W`Š*ë;¦)ÄŒ÷Ÿ›ý]Âë·-š-¸:U®9â±)‡>í³ÂëÓ–6¥Ú‚D•°eHŸù)c·ß:yxÖБ=-ý¬hUü 猠Íê3ëÚ[i~v®gIQ<]ÜóGÉç[®î{Ï2nÿ·£ú÷µ¹s¶ÿ[7…»›§³“K|blbR¼ý�++ëÊÚ»L‰Î§?‹ó² ¼Lóôç‚G%+Ù/wÇÏ4ÙÓŸ•Ñ«‰Ã(á•Dí™Þ¥¶!„84´ôrºªàÁÇQ{ft÷³!„{« û4>¾µzD'†báÛmÖ¡„×>˜ûÇ·½üìù„ãÐlü®XÍ3wÕé—ö©-"„8µø|Ão=m‹?X±°¾ pÁÞåƒým!¯—•>\;ò½Ú¶„­Ñ|Ôú»š‡Ë¾zl4›¾§ýë-^üÁÖ:C5´Hα^ZÃâÂÇFë Lo‹}l´ZOçJt—.XX_ÐpÖª©½-‹í ùØhEìÆnžíVÞ:XäÙÁZÍñooi±1IUq}[vÿ[_¦ÖœûÒR¾_Á嚢Ê:vâ[SÜ™€åQºžJ¬Œÿ½5×fÀ‘ ¶t[Pþh¾q›x-¿`é -¹¶CNÛ½ò¯~æbÙëXŽŽãŒãèÂ}\·¶1Çuâuñ[Ö.äØA¹\–ü<1=#5+;óÚËá”J¥éŸþ\A‘è|ú3Gï`ÌÀË„ÜMçr˜î íM6͵óvfÝ9u7]UüJÑé)Æž¯ÿÉÇq1÷¶}”ösïá;ž© ›qrRû¡[ÉÈíw¢â£nnÜÔšRõó=£º~u5àçKQ÷v Ë[7 Ç‚ûó ŠGkÿξ’*—D®ôØ7~âÁ–¨ŸïÕç‡']6þ{úkÞo³NæélhEøŠî¶ûåÒ£ÿöUoûlâÁ–VÁ ÷Ûù§ññÏ/jrkzðìëE®ª1NC®ˆoLtu ɦTz¸G‘§wë Uf`ÛÞ!‘¿ ­ŒVPJ3¶u°Ò˜¾+ÒªÆh=+1Tºâñší¢ï®gª•ùY‘«Š×¥.'(¢7ŽýQ:sË”"}c¥DÆŠœ],9F.úÕvÎ>µíßdÏî=}…¥y¿¢Ë5V•xQG·wým»þS::2„e̪@Æfȹ<½[æ<8#lÖ'@Ókxnm»ÕÌ»s9A^lYB%'úÛ3 ëÑtèÒ‹©*BUÉ”D`%,¨;G`-dS®Þx¡|»‹Rb±˜eY©\ú2íEzVZ@Ã@'Gç3çOÅÆÇ˜øÚ˜Ñ#)ûh,7ËÀ«¢GcJuÁ¹ÐËÅð‘wâó45ÙéZÄïƒjBø® ;ø|ÞæKIR–RÕ³-m-ëþ.+<7‹\äoÑzs²"qckžÝà£ENà”qëšqGžÉÖ¼©ˆZÈ8½’Oå ë“㯜ôçžlïôñ…<eܺfÜã.åž¿Mt#öºFcÄnèÉ,ÍJ³ŽÛ8~|¡ø¨1ûx?{ïi·%Z£1J)}“ŠŸ€ê Uÿ"Tó:éL_‹©µÖ¤2Fëé\‰ÞÒ5Ñ?“£³.3‰\Õ֭Ú§rJsŽë©3ÎLòáøL¹œÃ¿øœc½ ˆcÕ%%¾_Ñåš ÊåÉ|_‡¸O¾!.ìAÿŒjÛí‡ÿ$z· "jy�SãókâW½ùæŒÃèKùE—ÚµtõΓWn\=±uNW'Âi¶ø‘ŒRñ­/½ˆmϵ¡™JV2Õâñåí·Ü ›¶þž/Î{ý(.1úùËgyù¹J¥bßÝ/^>7e;WP$eUž;ñùßìÏ‘ª!ûBÓ}EÍkšxn×¢Á„}1¹±×÷/ÓÖ>öïÏß÷m??T,»òD½ PTx¸ÁwÒŒ„̼øëÑ´á‡-´¯*È“þ‹gê÷ ²Õ¼É÷h×®FÖƒÈl5!„Ü< vo®‹…,CÌÊ“þKàø÷hT0#oÕ°G€PçU ¾O?kÍ_N^Öò 1Kˆ:õü¢AM\ Ã0Œ}ïÃى٥¾kÐ`¨¥§#0™žÓ¾¦/3Fëé\‰ÁÒùÞ-|-LÕŸ‘kF/áÍÝ2ÑOÏešÕ€Û}^ÒÞ–1~�Ö6„†Ý½yfÇÿZßÿºÇÇ ïWÒ÷~E—k‚*—‡ôÁæ­1µFoR0×ÌõºýÚéŸZX”¼ß¼2øjYB„u‡3mDömÚõütñ¡Ã“\ï®ÿ3\J,[üthå‘_5wäs,j}Õ©ŸápÞ¶-4c '-D–¶6v¹¹¹ûîièèæênÊæ4e$œ*5§¨P“­×SžeÉMŠJ‘^ÊØÌ©Rº4ׯ÷½ÇÎ\¼åLø­9Þ¡Ë~º”KYÊm½í¹öX‚FÍo¤"†Ñ÷S¤³RJ(¡„px‚W[ƒÃçëÞ2 ‡ûê C(%”Mûwl¿IÁ[¤ŠU,Í»8Ò‘[Ö'0¥zËàÞ Œ”¹ÅÊÛzº;±Ò.Ÿk²ƒ§øÑ±Û©—§ú †aìzWÐ˃™Öj&8©øÁšþæIgœ9:³‰U…ű©Ô´u×ܱ±wæßËÏgRƒïWt¹&¨r9äÝÞ°3Ùü§ E¥Þ‚/­½œ˜œg¯NÌTY YÄÁǧ¿«ê0©QiJB8v-¾þ7N–ó<>1M·£—,“¸ù»¾å±„a‘PähïÄç  ‰ˆx<°ÿà†þ&nOSFRµFc.Yدf}W‹ÄLùG9 èiUÑ…–0ù+ò¨ïB¤YyÜšíüHøžËiÅNYEµÚÖe‡ÜÉÒ>}ZÕ¢ON‡L+Ÿ_»–êÔÀ^_s }ZøÐ¸[‰ò‚áȳÿ¢¥¥=¤(¯…)šOŸÖ«‹%—Q¥……g–å¸Êª¦Ûp9„–ô!¢Zº[Ìè­§s%¥)½ôuy›eÛm[xX¡këÚqHÓ—Ãw rã*_Û¿ãœôIÇOþï=;N…wfµBÁR–¥¥}¿Ê5z•sQ‡f]Yw ³Ù¤auuä}[ÐÝ1¨KùÝãÄš,öòú™›j8QG^Œ¡.u_Ý$Å·u¯éí,xqtý%EÐÐܸo}mL(9Ø9]¿v-$äPçN]»tî&MÔŒ‰¼ª6©è`Åû_°ÏÖk)g#²ëÖ x~²Vì#ÔIÛ‡=0tP—æuIZØÁÅ3nsßûµ¥£—ýüOæõülÐwtùØ÷Ühêã O±£–Mn0ð#¾ï3zDÐÖEÛØåF^½­î2¶{ÿ™½çŒ7µÃ޹­#6Oú!¼þŒíÍõ¦dž÷€é|÷åœm#÷Þ€yºã»µÑ„´)åtž[/gû¡ É öTDü5cAa|Ëмô…*Ñ¿Œ]-/^⹋†ÛyYXÚ[ë›XùHw‹5j}Æ­§{%=ô”^×`]­yÆîQ\[ßFA…¿ä&Ûñn­Fê8ùÓß>jÿÕíÖKö°Ž»GÇÒË¿«ˆ1VÑD|{ÑÜ“5:µoèa©|vxåìÓÜnwpdô½_ÑåV@•K!êœèðèIDŠœŠ“Þ Íµt©àcÍ!„°ig=&m»~`Í×›_¼gÌ͵Öþ©…¾-HlFÏì´xòøÙ¶M È<<kÎ>ã×µ³-²,{{á7G\ºt ôåF]5sÃË&?² DûϪÕM[×¥ÞÜ2wÖ9÷©ÇÕ刿”Éã~ؽ³çN÷íóaÏž}*¢++CtÞ⑟›eàešîÏ<ÎÚq3Uû¯¦¹2Éæ=Ø4­_«Z'Š–Þ­G,»¢¹MTw軾þš»&-=›øáØs%¥”•<Ù5íƒZ„"to5q¿æ–ñ›«‡7vÔ ºÌ<ÿú–ñÆkã n;ßœìnÙãh6¥T•v~~/_k‘“gà ~`¥û†{]ËJŸlý¤±ƒÀÂÞÅ«ñ…+:Ùö?•[Ú[<¨¾P -ÂæÝYÚKsÒYxýÎJék±¢7Ü¡õt®DwéÅVR¬.ùܽ´n`Sw¶-¾;úÍ$7fqÒ‡kF´ñÕÜfÊØûuž´14[màý .×UÖ/sÇ¢E¿º‹JõlK¾¨Çží6PD¯lD¬ŸÍÕ»)¥T•rv~Ÿº–„Žk›‰?•_Vú`yÿ wÍ•X{‹áK &Š˜MCü5ÿ’é8pÁ©çƸËè—ÕË?¢P(he« HtÞâÁ^¾pÔšŸ’<jÅüoÆuÿp$a YÙ8TDBÝ»eå—èFëÊDZ3��¼«Ä¹™§CvÌ[¶)øÇMûÂR’#CëD¬B“Š••¥Ö¯_gµ@õèQ•Ut܉Ì}¿®"ñ›E3âA-xÞTŸ…çU›ýÏC�€wÒ��T¿4Ve¾SÑÌý¹D€UéEãycÕ5~³hFŒÆpm ªOµ±j³_ãÚÒ��¼ÊsÃýŒ»ï£á��ÀÄ~ª{¨ôiÌÐ0W´&��˜ëhŒÒju›ÇÍ¿cÚŒªƒ®�Õ GUVÑUp'2÷ýºŠÄoÍÈ+óX¬Ú¥±Ö#kW³Á;Û£*«è*¸™û~]Eâ7‹fÄh ��ÌXù¾Si ��0«níŒmýqm㬋ñlï³Ú?ç‹ÍÙ©,:׻ʘ=ÊLŠ®Ä*›QH&ˆ?0í£lAR²í]–QUn3=óHcõ¯v0ü'í¯TD¹­Fø­‘MCïíýÔ?­z~O^¾ªæÁ8¥J{vµ§öqháÈQçKÏœMÙ®P ˜»7z!„»t­1´±… Èr¤G$ïHfßÞ(škk=º§cKo‘‡%I<7ý†RM!Däá4³¯]#WžˆE®ìÊõÔ-wdbj¼*sxÛÕø¬µˆÈ²ÄGN¦ü­RëÇ4[ÁÜ{QÉ,eNM}Ú=IhôÔú|¦E\%6£Ñ#1v«°IÅÖ]é=)8·Ÿšh2“$kRŽ­W¦e¹v¶³†;Ùß1ó…M}—Yý=e [“1Ž«v¸ü^C½?³Îßq8#"›Z:¬d”R“t�‡æJN^ÈoÜÕÙ…Z¸QµúÉýô“)Ê5Ç»¾ãç=½,²ã–=Uic<ZyÌ{Ÿs*$iiëÚÐùë!žÒ?¤S}ñ€ÑxºûÔpvóHðŽJ‹²;/ågWûHx†ŽÆ¦iÔ¬YSw3Ýd&-ÌE”rêõö]ìœ2j{¾„B8M‡ÖùZölüa™s‡Zkóþx"ÐÂÒCÈÆÜK]r<7E]°,¥”RÆ®ŽËÂa¶Ï'®¼§ó›qoìÐH–=ûLîS!/ÿò¯ýIÑ?ûÅìŠÕ‹µ¯óHOÙºu/ÏçRBy&1YPfæl9N_äú¾³‹ÖÎ+}‘µçEá4Çs¥GÃZ½¸¼'*ãLpx-‹Ä’¶Þ—ÈIº–²+ öVÂ#Ǥr=ñ€qÈd2µZ•™•îæâééæãôØ;šÞNv¸£æ(ªq$ætm¬‚ÊýoW|˵ÞHcZ3ƒ´°hª=eÈsqèüèÙìeI{»9Ÿ»NŽÏ{¨.ü�±÷sY<Ø&&$þ—J=SÜZ¾å‹Ô9¥„µòqŒÒ¢‘… '?^ÝÑœïQœš–´l‡NÞ[D6JÅý;i¿]ÊÏ`+ ¼Ñ™ °„R=³Ý ǽ¶mkÕÝh…¢Ü»X±r)ásˆJÁ²š²¬TEì}DŒä[R<¶_›y/*±X̲¬T.ÍÊÍ EAÍjKêýw¿NœÝ•‡ørÜWîf4z$åHcÔàÄY%¥±Š)·ÅˆšE×ü*e½š|=C^ÿ‰ˆs·^•d© ÉÈ;ã:»ž@.¥”Â8û»MïoùèP¯”z/or¸NDœ¦V®</[MD<+†àÕ¼ïQ'.ÏÃ)8;uÍÖ™‹Ý¤þ^ hÜ´KÔøàÎ\l.2‰'´þñ¯<Bˆúî‰Äq,k¬*«U÷£U£›:w }~üëTÏi°'!yü×UÓOï×fÞ‹J<Ô¬Z&—ñx<—+‘ŠílìúvíÿoˆZÊË‘Ûd˜¬ FceN˜…gŠ´p0Fµ©æWU¾<]U𠉘å;0šy®N “Û{ãÖ<4xùšjú´Ž5y‚ •¡„¢Ìÿ-$㎄dù/nÖkšÙÕ¼–eº@_~^¯[.^ÿ{¬€çSÏq\OïI±kŒvmLýô|Ò&{¯Ï'úM „ä䟌TyxhOpèŠçÝda³x¶W‡Bž_Œ|^®|›µiÆ@<O(Zˆ,­­l²r²Î^:™\ã¶Ü:ÔgȦŒiLW9¯r}=¨9Ì0…¿Ù )%„a .X³y’;Jë&M¬\#²’ ÜjªV§Kˆ•-—[X/+;‘)óÔØ³«ªÎÊ£ÄZöR¦Ù²ê´ç*ÒJ`MLÙ^_ï¥Z¥¤¨S‰N’JÜëÍmg¹ùIn®±Ê“JîŒ òE4;—´]¯gž<KU4cãœ"Í_ùkŒC! ±Bù– "K† EvŽJ•úߣ¸w¥ c Omâ¡©)#á”k ñª¬rÿÛðÆ›…3‡T&a‰€+ÔüÊp=ì8Œö£ö"…µ`%âÍ[ž]uq[6ÐÎ…c hulŒ‚ïaíÃ׬œç_W }&IQUL5ñ2Ù«x¢‰Q2j)tÑlhÊ8ºòˆD‘«ª€ «3¿¾oVï‚ —K†!Æ.W)S¥d«•Ö6}k1qáâL¶”ñTÔ~]_,›š&OH•'¤Ê_ˆ)û–ñ‹Åb¡@ä`çtùêÅõ{Gø’ø?¥<•é›Ñè‘H‘æÃ¼‹®YëD‘¾Œçwpø FÎþ—Ä3¨ÆwBžŽÂ´§µ!”ªrs×mJ¶˜è¹,X=ýp^¦îkôÙ½ôï{Lë.^qSnãï:ÆSq"D,ÆXÌÜïQ4õaÚ•n>_ôuÈ¿(–×pø²-?ñRVœ‚U½¼Ñ™ ÃõpXñö<"²ÖñàÈÅòølR¯Sù’G©J—WÛßù³ºôî>qn¹w±7Êå9Ú}äO¢Ÿ)V=º»5ÉËœõŸ\IõÅÃҊ߯ͼ•v $½ÿßÑÓ‡TÍâ¸ò_ÏLÞŒF“Šå™X¤”R"‰OYvÕ{ædÿÑ*U\xÚ¾h›á¤È á¬c‘J©2+{ÅFÎÜIÞKä 3ççè ]•™õó_¼ý=Ö¶áÐ|Éñ½ñ%©‘Īá´b~î/›_LXcù4.Q(B¯$¬º •SBLÐD–Ó§øj~~Ï{õ{$ÿ~ÜȽR©œ×¢“ç(!$?C|áPÜ–û #–M)S§…Û˜Þ\BÔqR¾ I ¥úãKÑKŒ‚ë,?±ž×7ƒÃ­ä$nÊH˜ÀÀÀËŽZóS’ã"‚G­˜ÿ͸îŽd »8iDE„Òävwøßê´)šŸñìPwKÉôåÉ•Ø-��ªŒ¹>»O‡ì˜·lSð›ö…¥$G†Ö‰8XžÑC˜Šˆ/¬Õ™J)7ôŸÄæÃ|!„pDB?oëí…²¤”daôx«õ®]‰U6£Ì’Y��IDAT1~³hÆr¥±êuxo1üÕ÷†Øøy®f™¹âH~ž±ªÉžRwlbïÊ·­‰Ù“FßêÃPå{Ô»Rt%VÙŒB2ÇøÍ¢ËóïÏLµ¥ä=Šïóƒ±kIû}¼¿” Y¦�@Éß©¨Ë!¡Hë€ÊAÃ�@U½ÎaYé/!Îî¯2Y5˜ûw¯zT¥]w¢wó;ßÍf,ϵ1NõJc­?öÅ‘ªGª¬¢«àNdîûu‰ß,š±„4&ŠœÝIÑIÅ\qU��`£1í¦±²Ù%4��˜˜87óÍ7q³��˜±’Ó˜B.Óܬ��`fiLs§bVú d2��¨‚Jü÷gJ^?ø_#��æ‘Æ è¼S�� J§1ía_("ˆ�@•„;� Z§1Ü©��UV _ ¬Ë²3^BìÜqy ��Ìo4��`n£±B¡ÈÞ w*�€y¦1$0��¨Ê0©��Hc���•¡Ä/£��Àh ���i ���i ��Æ���*[ _F��€Ñ��€ GcŒ��Fc���•1Ãx ��0��@��@��¤1���¤1���¤1��@��0WøNE��¨~i y ��Ì&��i �� 2àî��£1���¤1���¤1��@��@��@��Ðßâ����T¡Ñc��€Ñ���Ò���Ò�� �� ��Ô��Õ.!‘�€YÀ¤"�� �� ��” ¾Œ ��0��@��@��¤1��€*ÿþ ���� �� �À»ßp���� �� �À»_ ����T¡Ñ†c��€Ñ���Ò���Ò�� �� �� ��Ò���Ò���Ò���Ò�� �� �� �� ��Ò���Ò���Ò�� �� �� �� ��Ò���Ò���Ò���Ò�� �� �� ��Ò���Ò���Ò���Ò�� �� �� �� ��Ò���Ò���Ò�� �� �� �� ��Ò���Ò���Ò�� �� �� �� ��Ò���Ò���Ò���Ò�� �� �� ��Ò���Ò���Ò���Ò�� �� �� �� ��Ò���Ò���Ò�� �� �� �� ��Ò���Ò��€qðʱLfê34��˜˜Pd‰Ñ��T+Hc��€4��€4��€4��Hc���Hc���‡‡&�€ê$=-%6:J,Σ”¢5ÌÃ0–V>5}Ý=¼†A€w.‡=‰xÔ°qK/ŸZ|¾� bvXVò"ùîí«*ëS³&Ò�¼[b££6nY«¶!£1óqÜ<¼[´éxÿÎuWW ‘i �Þ!bqž§—A3sNή±X.—#À»…RÊãó)A3o.‡R–U³¥ù0Ò�T·T†6x§ @u¡Æ��Æ�i � 2šà‚oñ�€j6+ÃkÛÉ'¦î4ýð¶“OÊ´`ñ—2qCkÇÆ+¢Å~®¬Wî¹Á.^Ÿ^›¢¬Š©/Ò� •üÚz2ò«¡­¦j±õdd)‘'ùßÀæVV" +k÷F†ý|1]MËú½‡}`Í)ø©¼ ¦• üUûk Çækb•åXs±e‹×ÝÔy “Š�PͲXŽ€*5«T©#³Tj¶T ʶŠÿ骃¿¿ç%ÈO»xúqªXM;}¿®“¦xZ˜C*ó2]A*Õ%¤H´e[w‘e­ºWFU1€ê•ÆÊtÎOi®Xžž%V)•¥š?{~éX”ýU‹ÇukàߨuÏg¯úy7—ªϹéª(ÅëqDáRÒ˜ýs‚Ö°±°²qo9jåµ ¡TñdI§fó·üo@7{+Ïö“÷ÅË ¥„²Ò˜ýßõ tµ±°²±«ÓiÊ¡d¥¾•}©3¯.ù(ÐÁÊÆÂ»ãÿÄJ_Å cÙÜ“ƒ›Íz$ôm­•…ׄ«b½E¼OäÑbËæjתsî¬ÛÎÓÚÆÂª†ð÷!Irj°¾ú^Hc�ðîÇ ¿¶ŒìôÕávS¶ýâ€/;O–ž-r™Vãwµ·³Íç»6Ó·,×ÖÓ]˜}÷ì½ ¥ÁI¼W?«3Ï}Ý{âźsÝŽ¿úgÿôeÆì~¦"”¢ˆøm—à듉™)÷»übÚá5Qgœ™Ö}Ôv2ìÏKáï]ú}\+J ¬äÕKõ|ïgƒ~zúþºËaC¦ð6~&Ÿ¢/�‹{ï, 6\|?'?G’´¡HO:â±î^lY ­úªžïÿ,xÖõóOý~}ÓàüC?\ú@BõÖ“Š��od±Ž€›=êÞ¦®€ÏcYV­¦ã2Ò²%­}„.ËÒ|‰|ã¡{ãƒu/ìØ}ù²~ý¦õö^S£A«Vm;öúÉàvžB†RªNµi~V½8öó~ÑÔ ?l($„øÌüeÆžK>”B\ý4­ :ý'v™3öx¤d€oÈÏ{dÿÙ<§‡Cñö "Dý|§î•Œr{5Q=;²öœå'Ç~ÞÔšš W_;Ü퀡�†Sª51¨Öó±!œz3¢Š×^–hÕWùìÈêSüaÿ®óž-Cüæþ9÷x“_~»7}CsÝõäbõö[i �ªÝhÌ •R™•'}’@Ãá0‡ÃaîǤk~ ”U)úW"¬7fÛÃÁ w._¹yûæ™ÝÓz,ßôÝùcß5Ò=“Å_*‰½ÙÚu‰Ö*ê$f*)«¿«PóaŽ•³…,N¬–%ÜŠ¡õ'6±c´пWaá¯ò¤»‰œz3ý­4¥[Õïì/<h0�‹×S°ú‹È×OaãhÕ´°¾ò¤» LÝ/¬5Ÿç»µ~Ï%ûî“lu3¢³¾Fùʤ1�¨^Y¬¤Ë*Ÿô¨¿åH¸R¥¦”µñ{¼ßôa|fRll¾XF(år˜ 57¼޵O«Þ·êýñ—³?›×ªó/K®NÙÑ€¼>´ÓבP–r›ÿqêc·¢WpQ”†ó*h~`I‘üðªJzV¢ý1J‡Çç¾Ãáñ9š5éYVO^'^½EH®ëŠçÕ=…¬hË3ZŸ/¬¡:ëk”o¿Äµ1�¨fƒ±Œntcãð;[F†n›+v´·²µµÌË“<Ø9îÁ®ñ÷vŒ›8 )-%›Ÿ3‘fç)Xª5I÷úgO«:äñkéê7-«æWOËÚÌ“cw³XíBô¯ä¾Wošð_’\ó«ìÙÝ)%†–e8 ¡jÖp:ã)¶¬v}ù^ÍjÒèsò4ï*žß¼‘fàgË詯Hc�ðîæ±2ܨȲV–B;ËR.¨~öϨ~“ýuâzXDDØÕ½‹¾ø6”ÛªS[B‹Ü#Yø3×­ïÜá¶§¿øôÇýÿE'&D…žÙüã·FÊuü_!„R®[Ÿo Mø|ùñ°¸¤¸°s»·œNf ¬¤ðÅóèýE‡ô?çíz"a©4jÏü±„¢?�®MMOnÒ¥«ÏÓ22ó©žéŒGYtY•V}yî½¾ì®Ø5eö_7£ãÃ/š°è‘ß§›X諯Qnñ@€wk4VdÃãªYÂãrø<ni>ÏØvmwzÅä^Û·êØoê®Ü®óìãÃÓ=£”±ï²âÄ®‰¶Ç¿îÙ4°Y³>Ó·EÙøØ1¯†¯— „J‡®«ŽnªøkLç F-ºLÚò@Bˆ•¼ÂqüÇß_Ð5ïûúÖj:æLãÉ-9°í0gæ{Of·óoP«Ùì[R=ÓO±eÅZõå¸ü}ÿÒ–èÑ:°ý¸½ŸíÜ?#PHõÖ×£1&00ðò…£Öü”丈àQ+æ3®û‡#å2 v�0;çÏïÞg@é?ÿÇ¿aºG? é„þÑ€UÇéc‡š4ÏÑÑAûM¡ÈòtÈŽyË6ÿ¸i_XJrdhˆƒ¸Å�ªÛp¬ôŸÐ/hB¿ Ò/hçèªóýœÌ4|eA�(-¤+¤1�€ŠÅ0¸ä4�`¾iŒƒ4†4�`Æ£1€4�€Ñ �˜|(FYÊárÑfU«Ki �ª K«ŒôWwO4…YËHK³¶±ápK•ÉÆ� úð©éz«i«¶Î.®Ædf8cÕéi)÷CoyûøŠ„B¤1�x·¸{x©Têð»ÿI$ùÔc޵µ·¯ƒ£H$B€wí ÈøÔ¬åâê&—ËY5‹1G.G$–2‡!@5d!Y”ú fŸöÐ��€4��€4��€4��Hc���Uî;c"ï£i�� JiؤmiÓ˜Î��˜ÁhìtÈ´ ��˜e{¿û@4 ��T]Ë6iÿ†[<��ÀŒ!�€ÓûЉ±Ož'Åâ+¢�ª †a<|jûøÖGSèMcÏ“bÝkqñ8p�€*xìæó’ãŸêKcùyÙ™©/ä2©YE†Š,k¸[ÛØ—'QJ9 Ù—ºáÕ;\†ÇeŒöºÑu¦¡#�”ËêNQù¹Ùi/’<kùYÙØ1ŒE(eÅy9É Q a¬lìÊœÆ%š,Þ¼UKBˆåÿÛ»ó踪ûà¿·Í›™7‹4Úe­¶d[B²-mà@Üœš6…¤M…šÀ)œ.@ 4@B ôSH€ô@Z)' ®¤%4B›C 6Ʋ%cËÚ¬u6Íö–»ôyƒÈmV$ø~þ²FOwfîÜû¾ïwß{ã`È †ëŽøü R`¹�`ñ%ÆGj[¦öûR®ìÿtÍ GkZF‡úæcDSÕ(“Ü X¦ßdÂ[´Œ=Þ8��,`W: ÇÎCáÍ>6h…;?ÃúŒI#ˆÈ4MŸécÜ[ÜÞ_éÇ��Ë4ܤ$R><¥‚Rä½è3v…TÍô\.n†—Õ�À™L²Š™…FÚb×aT° BpTc��g.Çc'ó|O‰‘mÛ¶] œ�@5vÆcLHI’ ¶XOæ8ŽmÛ'ÇP�X@XÍcÅ—»Ûv=ðt×q¤”¦ßÿá¨ÆÉE«ÆÇqçxçã8ó¼þïüÉ5/üÑ“?ülµ†Þ€RŽI*R'ŒŽŒöî’ZÖµ–——x<—ËíÛ»„¬©«­o¨_ñ1F‹·¨è:Žã¸Ùš0O'rí§¿Ýñ³[­9ÿ­<6Ôf9ÚDêOì¼ûÉ7ú ZņKþú«×]Ro―9qäÌuX_ooMuuemÍ;»÷(Dee1"Êfsû÷uµ·µeÒ©Á¡ÒÒÒPhúi'ÝɾáÑ´Ã$)šÏŠ”64UF5ox_÷Xùº Õ>eYÄØñ4_xŒ¹®ë¾?Ãc0Ç("9#Oɱâ[óáÿ¼û/¾›¼ôÎo=Ôœyéá¿»í³á©k;üø `¥ÕbÅv°œs!d.3™Ï†7lܸg÷nEiÑt½gwGg'ç,L1Î\ב28]ëvÿ#Ãj庳WW†}¼žMVTwƉH±jJ‚©TŽ-Y?[T$ÉvnÌs=×õNÓ8@Ñ™:uUH)¤}`ÇÞÔû¥§¿óÛQþ­/~êÞÈýß¿«}ü±+¯ýŸ‹þòÂîgž~s(h¹ô–¯Þ¶­ÚòXþI!Eúõ‡o¹ñ…ºÛ½õÒzßt#µÿ?þyOø¾yã¶µ¢ÏÝvÍO?óØ÷ö\qß9A|°ÿfŠ1 °¶mÝ}û…ª©«ïèܰ÷=šªvtn`ž7p¤71™n^½º¤¤dÚv¤“I:ZÕ9›[b…ìd–+ZŪjÃ'Çßí>R :ðÒóˆ´’ö u!YíJØŒT3klª*õ)$¡®÷âѪp.ž(0®*ëêcƼ ¸"÷I"¾€jÌs™7]†Mí\0Ô`nÕ)ÿ>eÙDJ’’Ø¡§_ضóþ¿<úß_»rǃçlþÚ'#RNmÎ/ãæ¿y¥õŽïÞ|I>ýÌÌÞ5d¬¿¾Á/¥$RcíçU~òöˆ³µÙ‡O>\1FDÑHdýYmÝ]”Áº¦¦öövM×sIf2­k×–——¶Õð)<“Hf”|ÁDDžãÚl^·úàÁñ† ?¾:¨|½«/_²vË–ËÚûvÏáàæõ]J"YË×lÜÔQY*ãû_{p<º¦Bå‹crê{'p‰‡ç1æž¶’¸Rf9%IIBH!¤”$…'*4:ö£$Š}âê+7–¨’ê.¸ôÜw¼Ü[ØÖ)%ycÿ{ïýwþ²ã®GoØV©nà±Éñ´´šÂÇ7P¬ê0MŽd<!u| °òæMñå®H8Ô²¶å½ž:r¸¦¾ÁóœáÁÁädfíúu±XéL-hÁ†úÒƒïízù°ü¡p¸¼,2"Θ\²t2ë 79˜V*ÏþØÚJw2™-«¯~gd\_Uç$‘VÕÖZu'Žfy`•ULúËc™E¯Æ´¨È<Æ<¶À^xߢâÔ¹�)Ž yêzYS©1µ±ê/5Ý¡ÂÔ-öìà÷n¿M=÷žÇ¯ÿD…:è;öUØ'Ç+?pÁŠÌ±Yn¦)ª4ÐÛK’4MUˆtM-öçŠ?V½©v éd|thhÿHºa}}•)OOÒ-ØXS®Ùɱ‚-ˆTËðÒ«ŸˆÈ j…‰¼ÍˆÈ4U7íPé<§Zñ۟籨È<Î=^ü`–³Q¿ÞP¡SűÇI‘rüSõÛÔm¤VlÚb¾þö_¾àS«fXTƒåQ%7šö¤ô±Ìp†Â•–†‘ ËwvÙ{Ïl|b¢¿·/ zÜ㌑$=íÛÛÕÞщDf~nVH’jDËk*ª+ûßúe"ÐXÏNÙÁOMGU%Ïq¹”ÇWV„¦« ‘"¥`Ž+ä±ß˜(èE£f®‹ŠÜ¬H†áîaõx4I©˜Q?åÓ¶A…ˆ§G "zòHžˆ1:y™½Ýü…~÷Ù?»ãKë¿ÿ®m•ÆéžÈjÜZëýè¾üo´ˆx|ÿ®‘@Û† #V`޶ñ#}¡@Àó<ÎyÖqtU5¥4¤^ èê>«£=h»¾‰»nÞu% qWñGLE9yÔI†ß¤äø$ MÍE·eZIÈPHJ’v|Ò«˜š½ÞdNè1KJûÌTcs<7Æ™àÞlV U,*Âìæé)‹ŠzÅÇ6YOþû‹/¼¬…Ž>ÿígz¤²NŠ©Â‹äñÀ“©6õ¸Rö›×>z{þê{nýûÀÎ[Ï/þVh­fûw>ñ‡î¼ñ³Í™—y¼«êwnéðc ÂÊ\Ř)ÆÉdoo(`1qγ®ÝÖÖæ:N_I2H{ßÝ·yóÙº®MWˆMöÑP8`hÄ “‰Á¼n(ñiqCWìx<áªfUEâ½{†MÛCñ‚¿æìRòÆIÉ&ÊÇNŒ Û¾º¦R™™Xü#)‰äìcL0ÁÙ,d}8Æ…YƘ8±”H憫¿xùÝ~~ûS¾ÒÆ‹.ÿô9o<s"¼NÞæ,Ž—c'ת.ºþ‘ü}×ÜùåàŽ7l‰Lwi¯Z½ý–Ý»ó¦gm%ÖþÉ;ﻢÍÄ8…X‹Q‘scÜõ|ºÎ¸Ç9ÏÚvûYí‘H˜(,…ì ’>ÃP„œ‘6Í­¨f4à$ã£#6—Dª/XÖ´iãš —W–E†ö½ú¦ -º¾­ª¤¶¾9™8t`È#Å®èز!&Rã'R¬æÖàDϾ¸-õ@ÕúÍgÅØèä¢/*ÊcÇÁ³Œ1Á¤`³>œ8‡Ya™Ñ¬ 6ú!%‘ÝxÝýÿt݉ß^ö{D$iÕUO<{Õ‰�óµÞüôåq£nû—ŸßNtb³iD¶\ù•g®ü•R`åUc3­"”W”¥R©\&ë¸n[ûúpØšÚ¾¢²œ >40ä2+†~švôXum}[E0hùt•ˆ$+ØÉ¾ø¤Cþps{ó–Ê ¿®HM -©¨¯k« [~•$/$#cî±yZ¾¦Í¨÷W„ü:ñBn¼Þ+3Þ7F‚ˆ„,~-¿àR²Åìe�"‘<ôîÿý׎ø;¾Pƒ€¹ì`‹L—5-«ãñ„?à·‚ÁS7®ªª ªª†BÖLðBv¢?ûþÇvwõÑá©7µ7Q>3z(3m¥È³é£‰Ô‚ßì"Ü# Ža‹>s»¾~ë]Ñ —]Ó9áÅúŠ66ðoW}þû½x´ñŠ|û3ú‚6XY¦¾GqšE‰Hx~ njo®[}Ö© Þ·od¡sQ0)¹œë.‡ÕPœ¾ø›?ºxÑG|ýeOýô²3±1À2š=ŠúkyÞ¡ÞýÅ_†bV·¶µ® (“Ê¢¼ÎŘàRòùD’‚Q�pcl™ïeÝìPwv‘^èücLp)Ê*�€åcªúÑy³óŒ1Á¥`(«��P­Àœ$'�°L3LùÐ$™”ræ÷2ç\ ¾ÐµD$ �ÀbúN!°BŽ·cçs¦?°°뉞Ì0)$ „�À²«¬;:PQ]†VtM&¥,ä³ã£CUµ óŠ1Eñúïû/ǘ��Xn„êi"*.¡ZJŒ Ø…ýujŠ¢˜þ@UmƒŽÎ'ÆêšZ†úe'S.��Ën¯ª«šZN÷ÛP¸$.ùˆtÅic¬qõúÆÕë1V��`9SÑ��€��ø5øà¢â¡»Ñ)��PÔšõ›–cŒ-“—��0XT��Ä���b ���1��ˆ1���Ä��À™££ ��`i)'âñx*å2Æ9Ó5Íðe‘’ò²2u¾_Æ�€%É0!ºÞ;EZÖ¬5}¦ªª¶SÈçr£ccÉDûšUÏ!�`) ŽŒ”—U´·u0ÏËeSùlЏ ˜Mu `pdÕ��,_©ÌäÆúj7ù/A_“9O3 Î<–{K“oóòÎ÷úb ��–/ÆXÀó—}ŽøQÁº…ÔÇ©"ýÏ£âq×[5¿f±¨��KÁôùÆ''õ¤”L57龘j¶’Vç¥Iæ[ü¦Õ��,_±hÉHÜÑôóûÞú‡­›cš¯EŠÄ`w´òOi·$ª¡�€å«"VêºNÁfyyÑ{·¦sm¯ínî›ØîxQÛv*b1Ä��,_ºnTÄbÉtª±¡áèÈØ›ïÆ×¶¶&Ò©’hÄÐç¹:ˆ�€%R‰QÁ±KËc_¸­$VšÍå<•„#ón1��KUiº”²h0Žþøùçòù|×ÁÇuu}þj Æ��`ét< Z;Ïnjl ƒŒñý=Ý i1��K'hú±ëÍ\.'…t]·§»Ç2ˆ1��Xݰ±Ó²,EU|>_ccÃÀÑ¡…4ˆûÆ��`élݼùµ]o¾³gïÔš¦Þ¹ˆ1��XÖµ´4¬ªû«[n?ÔÛ·¦¹ñá÷þ…4ˆ�€%øûÖ‹ÕÎ�À †��Ä���b ���1��ˆ1���Ä��À™sì¾1)emSÛ[¯üã–ßÚŽN�€cDÊTšýü¥çÐ)E½–fè„E÷êî t�Ì;ÆäTM ÁåûZuMJ$I!•N¤Bœ©$„ª’ʘ««>ƒlWÑ ¡:ª49gºÆ<®j,Wàž&LÃ2ܬ­*.ù‚¹|Æà… óôŒšp³¨g§"V¹B9—©~+lJi¸®›c¥`(1Î<Ë6´œÐƒZEä…6™ãÊùĸtó¶;Fþx&2§)Z>e8¾acÒO<'K…ªJÇëq+ÉZªç(<dD¥ázÌâZ™Y¤4£ ½‚ð*<3ás]7Ȳ“)IyKš.1¡3•‘á™R÷ˆHѤç˜Äò>Ueš®zB˜ÄUåLsÏÐtM«êÒU¸Á U•yÍõIáׄÏŒW¸.…å)Š/Zªfl®*LA"OØ$Dž¹–rŒide¥OQ!(UG•†¢‘'tlF~REÕ‰û4a“ª RU!„ꨤ0"ŒTMj¦&=©h’s… Õ%&]AŒJ»’˜�0WJggçÏ_z.=ø3ôÅlø«/˜ëŸ|üéWÑo³1øJ:�ædÍþU:;;Ñ��°Bý?IC•¬ìpï����IEND®B`‚������mp3splt-gtk-0.7.2/help/C/figures/SplitType.png������������������������������������������������������0000644�0001750�0001750�00000226550�11753562422�016070� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������‰PNG  ��� IHDR��B��I���ÉÏ”���sRGB�®Îé��� pHYs��Ä��Ä•+���tIMEÚ ïòÝŠ���tEXtComment�Created with GIMPW�� �IDATxÚì}wœdGuîwΩº·»'ìÌFI«ŒPDH&K# ˆhÀÏÏ`0DÉ€Æa¢m‚y&Ù“A"Ø€–d‚�=BÒ*ìjW›g¦»ï­:ç¼?nÏLÏjwˆúûõo¦ûv¥[]·¾:¡NѱÇ‹Fa„F¸c"�øäÇ?Àá£îø¥@��à4xÀ݉àpôèB·:N˜¿êÔäN°˜Úݽ©Ä|ÀpfÀÅ/šCœæ Zh©ÃAÀ|ŸÏrë*†Æ‚Ïçó7æXrkƒÛY:‚ÜlpÓNN¡iÑ|5ÉæKtPó¼¹¹Å[ú×4hô Õ’.Z蚯»Ü5Ö\¦ÅrMÅ’¢æ[¸Øš…â»rÐZò‹øÒfûü ±¡î„æ»bþ—j•ïR×n~÷…ÜK~È[B» ,¹Á…oÈÝ}ø›1DÍ,ô/Íß-\õ¥ChøÞwMN w,Ž¡Å>¹øøP0ÂnqÞ;_~ò“Ÿì³ÏêN¸e0dï ä±ôÝo‹Ó¥ ]"�sp6/È3Á!ê0p0sb‚)ÀÆ™,eS %raÉäÈ"øœe‹-ÔÆu ¢9uKîÌÔ=Õ qU3;û©H³È­`î¨÷£ Y.¸ÔŠ¢ÏuªéÎ8I×ÇÆŠØ' ^×.d¡¶zS¶9t{·ôÂt/Íõ©œ17qïi7ÔA[9ø¬«±¬péY4ZËJå1)-f3㤡SÄffR±M‰æÈke)¼×7DÏ]ÛòX?ô:€½~.,'1ÑP ¹;Ñ`6MVrñà^ yVª&'íXN$ŒwŠq3Î;”3ª¥tæ´˜B­"u\f=ŸhµÞC‘%µêØT͹žK›Êb¦®¶÷s7õçº¦Ë ê'óĤ`höä£åLD ‚ ÆÐ¯L�w«Ëvö‰™#›ÀÜ¡�Àf`j˜ ‡;LAÜ 8ƒàÌ!¸1))\\�õLJæFpo؈¼!?&÷†¥ÙÝÙÝä4Ìʃwæí]mž_äâ´H)¾ëÈ÷aÖÞu)s›Ì’eÆžžë[ç1Ù{ÀÆŸ_¾ t�‚ݱï‡~©¸=ÏÅ|=ÖÌXó‚�#�ä‚dp!u g(¹‚�rr#"#®2w €fHG¦�·,VA]eâÂsvµhHI5;ƒIÒX‹EÕ­{ª1´a}›MÄfY¹¨MžÀ!ÛNï¬(¬µM ßg SÒÍÚnÇ#ך0–ÐaC9Þ‡p•Z¹×­¢mósÓl¬YBd«µ=fsˆ­¼èz·d´¼œÕJ²z» —•µJ™gˆÔꚊ>÷ÜiÎg‰8%­yªkMu º6˜d˜ [Š•™(S€{σÈÕ\ûÞWVIô™§­î 昭¶³ÇÈI{T[ÚA=Þ-¤Å±HŤ´fJi³ôôæ‚U}¼Të{·UΊUI»ª ’áìNÎeŠ¥)¼kQV3UHun3T™sÖÔ ¦ÙIÔ w l•Äšœù€EA¤.ì 1c"h.Ü\]‚HrŽ€Á=‘«:“»«5…4D¢ êp9+|0 Á#°y³Ê"v74Ë­&5 dïEj‰o ¢"vÕì"ïöQº}tC£Yy„_;»½U@hµZ�Ôw,âúÕ*Ú-±ùmÞ’^¢áäî 26v1d‚¸‘ �7x àrs&8¹\À®Ùˆ˜<±DÖœYÔ¬Î4+sQj¹y‘+K ÏI•(‚shµ–‰¥ºçíööÎm/ëLׄ=YQ©E1%´«žIÙl[7.ç\‹‚T½mÄEni™eÛ>ÖÚLRå¹q ÎE»Ý›ëµŠñÔ걃SIa&r§†‘wZ@H‹K4'ŽÔáNɵ—¨w–e;í˜õ 6Z&Á;Î}JÁÇýfãRTÆÁ…èîJn™8@-HŠì OÁ µS‘Ý™¹ö<±õº$‘ÛlL…Y^“•”ÁËqVA*”­‚¨ñvdI½ãœAåöªZU …�.ÇH«äÛŠn¸©kRÕCÆb`*Y%‰U‘ƒòÎà,¥srEÜŒk ¸‘™âygw! 7i�ƒ‰‰H@dwT ‰Y$gu!r#°7tEÆ\µ’Тað%�"÷†”�wçÁã1`*(j7PóÐ/êxžŒj?b–y 7p+棥ï%2Øï,>þŒûî3ÙúERÎVùQï¹à7–eWÛØ‚Ùd/£Éݴ꣞ 1¢=õkTÍýºŠØcy½+žüÓß·G¾îS—¾ðÀøK6h)áùnz÷ÊÜýïTq�Ù¼½‚ˆÜš‰dÙ LæÎnälLäcÀ™Å`¦17{ #…‚AC°\ H©Ïbv8Ä\Ê2e�41©½^€ÍÔRºx)®n^CZYR‘Rm™#KÚ‘¶UZhªY5×0)Ä'¤l×Eò¹œ³¶'='‡z=íi«-­+«£ÅÌ  §�g«”CÄ5›a¬Õî0—…0H‰"›õ‹UÑ·H,L{š ËZ†eÉs‹9z­…T2ˆà&•ˆ�lZæ•×%¸oCºC(ÀJE€F"vuêQ®&Ü +¢SaDH¦¤Éë–Œõúa²h;sò™’±cÌYÚÁ»UÝ¢’Û’¨Ô8–¨ïöR±½*v† Î]ç¨E†µ¹ìPl‡jκNEðÉŒ,–k¡ˆ¾™°1qì{%BdlêD$ê2@˜DÉdNsfÀ`Ä\¬6#E5¥@™I F\ˆÀ®(Nêr9\@†y]€ƒ@îFDw@0P£q4Ê Ô¨>yɈZLœhwB-%³]Ø‹~é§ÛG¬ö»Š}&[¯üð—~º~ËÞ“í;=ñ¡ç?nÓuW­>ø¨ßL–=ÐØ@c¿{ØÜÎtý•ÜßAk£0Æ1îa8úíã.zß}Ë«Oÿ×^qÓœ(§Ž<éÁg¼îô§7Î{-Œöôô,šþׄÙ/œzò.?àïoþÂ-ûH•f¿ðÈSžxøo½ùó4¹D÷b€7s‰dÑŽ`NDpEžý·ßý²wwÉ}Œ­}ÀSžñ÷¯|Ä]§„Xç-äÈæl¦ý¿õw¯ýȇ¿þ³5Ð^yדŸô‘|ä1#C\³»¤¿ü//|×…ßúÞ [ ÀÚ—õ]gDÔOnlÔu+µÖXÆAµZ¯.ŠÒRÏ„-yôhŽRIœû”"cãH4Ì=·¤ã"Z‰…ÈC»Hjµ„m4Ör­-tX(°«IYšrá3ã43C$SHy»-ñze ºöc)¶[í„1ö�«Á`€…@ýZI0 Furî}3aÊÐÁeANÙA Ò9·RyY6/\c[ræ¬]‡tód§*T¬‘$sÍ“%Ò &B1´ ¯r{9s»ôéDsÂIªú˜ŽRE¦ÝN1ç,æ;¬5&H¡JýˆR¥#’­€›» g+\,€ˆÙDLHÔ¬q ††B.Lj.ÙA„Õˆ‰Èä¤ !Ï`‚sC24ðØYp¾ ‚Àm 2ljh4‚c¾ÆõŒ|A´³†ì] é Vr>H7,· ³Í­ÉŒn×RuAÙ9â³ßütý–ë{!¶:{I#> õ»¿É,»ÒØÞ×OÚ›ë­ûéìO/Kekblu§ÝeoI(G~pxµî›—üß ­Uû¬¢Ù[6Ínÿñ7?ûÜ'Ëq?xÉ ­_¯|ç·[$¤Ý]!çýÒîFä¦@p7ýé{_ò ×^ž85nÛoºà¯ÀÏÒ>ñ˜ƒ¨Qê‘8ô®ýôãôÎ û@˜>ìèåqö–Ÿ\rùÆêQwŽ”(8’2Ýüíó¾ðMS+Kl®�âØoå.€lB…R¨­¦Ò ve(g#¹Å²,«~Ÿ„•¨�kÇÔákb aL¸js Á•œiœÄ¢zƒæ~e^(“ .Ð*‰¥Í¡b h·!%¨Î0—PR–9Ô]AÁ°À¬”"%ÀJ‘Œjx )3A "u²LNepÏ!™ûa+3e¡Hpçìpw6Kµ“ ‡Væš,d×®p«²’çJk¡²Éçnm0ÒVLur³BÑj'+¤Ìä…Zí\Ä*“…$–;X&6 ª3—L1‘©y©ô\J—º­Ùæ 9ÔdA8[Öà…R怎»9±rŠ`õde‘“9)“©±¸k�™93¢½ØÙ=¢ˆ7A2�æÍSèóJÆ»§9ù !*Èæ{ž7×qóÀR´8®èÈ©ñ1Í{c²]®Ð¯®z¹•+É¿4[²3±—dE»½Ë¬[³N;ñ¨}—Ý:ñº-s¯>ç²½dùçoýì[WßÒ|{÷—¿è!G^sóÖç}à‹Å~Çîv@ñ­´ÚƒWoÇöÙ›®é_y½î;õuçÙ†ó­·®ªº³Û¶õg·æªšdšWïÿ>ç°{—S'{ÖWÞú´'LM8u·—½ã{Ûoú¯zøÑTNÝÿð'|èâí õ®|Á'•Ó'óªO¿öÉO\>}RyÀSžú¾ï´†–ú‰oÌmùÆW{Ãõÿõ™SÛ�PÍõ ðîeú»Þååô‰åôI+ŽzÊÃ_qᆠô®xÁ‘'Ó'ýªO½æÉO˜ž>±8àOŸòÞ«v¨7XtÁîÿì5ÇŸü„‹�À.8sõÔIåÔÓ?x“¡1ƒ½ò†K^óèÇLL4väs^òo_zò'•S'ðþ ¹õk;剃^ºzú¤Öò§hƒ-þæV_÷ñ—ï·üÄrùCó¡ëúóŽf °íҳξ<û=ãŸn¼ú«ë>vòÐýæûÞüݸÃÌ`î fØæ/¾ê=öѹßó¿÷³Ï}ÿü|ïâOmøîóîQöÍä€6óâÎõöëoøêÏ>rʪæGe‰íöX»Å­V‹Úe«ˆ¡$&K £X°Hò,A³˜RÁ <#õ[¦úãÚLGŸfæ²c\’´%LP^Ë©X¬*ŠƒZÅÚ"¬ŽÞ ²’iªÀtðåe˜l·ZEÙ.ÆL&b1]N¬Œ´¼ÕÚ¿3½o»\xuiEXÁ´<ÅqU'¶™—…Ø¢zÌÙ©“½la̸ˆ$¥D‚G#V̵‡ä¥:;ZŠ\‰[ªPíHy‡[/c¶Î;¬Ú¦:“m³áæéº~÷K7VÝ›ûº)ÕÛçêÍjµyϨ/B𘸩Y‹‰v\QðŠ‚§Ë¸ß˜Œ•qMÀŠV€WwŠ0©0F˜Šq’x…´' ™`.Ú Èá‚॓D)˜.D &ˆ‰&0awÏÌfàäJ’¤1¶.ì6`"gÙ` É Œ®ù‡˜‰�'n)4¦X¢Ææ8¡ñºl²0›9Í/ˆÀó MM`€‡2ÒR#-]×Ý:ÁoËø0Âo Gí»ìÞ¯¸õ먕­­ë¯ÛK–Ÿ|Ôƒ_àÞ‡¬|åÃŽ¾÷Á+ŽÙg¢êÍî©¢0?Îää¬Û6mÊ›®Ó-Öz‘›:ÓŽœÓÖzGÚR®:pꀣ‹±ÉÝH ï8ëÕÍ»k/|Å©?}kÿæFß¹îkïÿ³³O¼âGµçS^ýÞ·ýËñ'Þç¸_»ìÚO¿ò Ýÿ“?u9ƒÚ“ÅÍç¾å/ÞóóÛnúÁOz|À‰gþýé÷é ¾â_Ÿüâs¯A8ä^÷>¼5{íåWžÿõŸn?ëþû-)ðÞ'·óë—]ûéW¡ûâß9ÍCû‰Å~G²zݵ›�Ðò;Ýi\:­înKþÝú’³è�¦íçïyÞlQ?Y¬Ýµ„ƒW„…g4oüêÛzú[ÐyÈ›ÿùc~` x³•Œ‰@s?»à¿gL>ø´£¦ˆq߇ݻüúUÛ¾ñµ›z'Ú2¡àf "ßvÙG¾UXa<é˜wÿ¼Ë+޾ÿ ßôìçÝ-�ÔoÔS,îÈ®qÅÊi§Äƒ;•‰B‹-•(zÖHLub‚‰±ìÆ]· ónÏ<‹shk«rYZ‹n«_«fÏ‚° Z%€X2B‹“ÇP9ÕNîe`ѺU´K@µ¤@T´tŽÐG˜ vöº”È-–äÜ5ÇF%±IRH¹¹îKŒAQ“ÕΉÍÙ³…@Ý ö"Š*™4s1™ •ˆKbOj TQ»¦AK.ˆÙ,[® ±ªC.0G(Kçf/jj€¨G·ÀÚlF�q%B ‡’Ó¸Ä9© H¬¬Ë…Š·jcH‡)aF½US-T]F¡,sPÊäâÈ.‘çŠóò€ÌÜe"†µ„zW'2!Rv&'ru0¥ ;-læÒFF"!¨¢¡r§4fÌî r”ö)6„Çä6Ì,äóf°F[I»¨æ>’sÈÐŽÄÁzøÖ^‹¿>MãwD¼ç+ßþᵆ¯±ßÊSŽ?¬?·}·éßö…ÿ~Õ£îuü¡û>÷‡?ìè}Z1vÜþÓ?¹ió?wÑÔšo‹Æ|aë�åøO,ß¾aÃÌV]5žÇÇ¢¹“ÎXÿ†jnkv¸½üà£B,v]5ôäó.xî¡çœ~èóäý›Ë¿x׆·ÜékO|ìÿúfºñ›?ÜŽ<ta³å=ϼä+§„õï}Øã^ðýÙϽý›7=ü±�í^ÙyÿsÍ Ào¸~s?»W~¶ÀÚÓ>ð/¼ßió ;;ѽ?o¸ç™ù´ƒ°þ}{Ü ~0û¹w|ó¦‡?vÿá^ñ€¿ú×÷íó'{ÒÅàû½ââÏÞw�ËUßwO¡,¸Ågÿá‡Äû¿ýã_þó5›¿ðÚ»=ýümáù€¿úØû÷yÔCŸxø~¯¸øó÷[ wÅy�€ßý—SßpÞ:”÷ýû>ùÌC:<Ø@ƒÍº¨·Þ¸�&XÁ bríPaó5Û¡Åäf &Góµ×g�¸á¢Ë¦îtØa·\}õ•ß|Íã6µÏÃ3ïÄšs¤ nìên@p[ÜíJLÐ,±(-s(¢¨ R‚˜9ˆÉ3ÀB‰‚¨u™…RW:Á©5.¯ÇB»t)¤µ³‡Ì3NµHÉ^³HpæY›Z5,jÅE›ú‹ò,B‡½²vé¤ê1´Ô3­Py,OªÎi݉Q)˜öK)Sr-[ž¹ˆ±guß{í=³¼&0±;²›FTîNæ"Pa^G*Ì¡¦ ¤Þco«rF ˜{VäÂJuÔFN5åR"8)ŒàË®@‹M2&à=ÎZ¼¤FP5'ÇœS‡`Ò'јŒ‰âTæPƒk–DºM 5+9[‘Ås ª“ «%ƒ(¼lˆ�"VÓH08{aR‚g¦2C…@LpS¢ÂÙÙ 2rŠ„ÔHí�;ŒÀ,æÎ0¢Á1"n¶$;ѼÆÐAà†éL‹W‡Ñ€×v56æÍnó›Ìh‰ã­5Š»õ`¼šÆîp¸àòkÏû鯢5¶peKާ¿Çô—¬Ûqö9—¼øÔ{ßó°µw];àòë7ž}Î%­›í,[¾§\óJEó]¼3Š"®ØwíŠCŽh-_“uzvûÚÛÖö«Uh­éìsdkÅÚln¦óïÄ ûþã{N†©Ã] �+ýÔ».ãGÜe9�t·Ïfw¤=ôAÇ­aw^yŸF ºîG×ö- òœ«6_¸ñ{o{å="ü¦¿èì/ÜbÃÿè„ÜôÉ“½ÏÄŸx¿§½ûëÈ‚JúàãÖ÷°ò¤6^~]½‹ ë7]Ìì·^»ïÚM­}ÐÔ~šºï‡\cöê«ÖÀŸúð}#…}ò'÷)wÑž,°ÿüÝ�6|ù¼+û?óŸ~îÇi°#€ˆwñ5/ȇ¬N¡ßˆ ä†”´Ñßç—~óŸpáKNd _ùþsn®˜¢³8 žR³¹Í+OUA Ö²¹ˆ‘BYÑ¥Ón…$Šƒ9f0ˆ´¢(LØÄ+Y¬Yjñªâd”ñV{‚¬åE êP&N$ c‚pA(„ǃb(XLc±5Ñ“èí¢3U”Ó!®lñDÉËÛå>­±5eX]ÈŠVg:ЪNk™èŠ¢£0Ö ã;Î�Z®!xXd+`¥9»‰2;™�ÄⱤÈð¤I)A“Y KjY‘«Ü5Ÿitº9åøŒë\•»Yû ³JÛS½½N;ru³æI·ºuº9÷9W€‘W–¨‚+‰H)¶Œ0VÊ2 Ó&‰V™.xŸ(k"íe¼,:‚1ŽDQlvn$ÿAË áÆIÐÈ=Ü)»ªBÙ3`æF 85ŽdäænÄ&ó1Uˆ4„"(ÿs«4ƒ•Ä`£ãÀj¶{ ›ŽwÕÎKƒt»´…#ü>ÙÏö²&)Ç&Ç—¯i^cË×´'¦÷²ŒiOL_xÝΫoÙ¹p冭s_ÿé–ö²å{©%,ΰ·ŽE˃ϕ>ÓßTM˜¡SøäøªÉCîY®Ø×ÍC,`ó ·ùIº3] ÜC�è¬êÜ|w'sjæ]×ÁŒ½‹·D˜:䤾踳Ÿö=­¯¹äúú wÔ§¾Zþãÿùúy?¸æÇ?¾á;_¾á;_¾—¾ïô5óÖêî€iwcgÞeÅH <³;7yÞ»u££Ù£3|íÆO|ì³§ßå/óµ;ˆ›šÊû¯Ä÷6aæÆí™=ÍÜ´�Vº¼p&rBpÔ ËöY\ ìsÜAË"Åå· ÿ³;6ÔY‹VÅ© ¢¶„3„‚l1 SÍ<f¦1Í*"²fâ2d£@¨¼&TBNnÂÁÜT(g÷©²:åX,A“VöRÅí ×¹³8“ch"9K®µä¹Í­Z»QϦ5¨H…‹›„)ò*D/¨H?e Ò6ÎDË]ON±¥y£7ÞJš•ÙL©`«- Í9 NînBÜ <Ct''et@=qRô‚‹qdU"¸%«Ž‚>{è¦N»HE5€ÖÚ#gÀ°4d׺«-+ˆœÅÙÄ“i©A� e*ÝÙ;ΙՉǜ�Ðvµ.%[Ǫ̀KöŠªÂ€ì^’g#æ¶£Ž°š± f‡’D­ ,¦žŒX"™fÀœ�2†ÓÀ|¢`n ™™‰³öäÁÈàó΋˜›†ÍlÁAd1î†|ŸŒ…ÀQ»~Xº±Ò÷ìˆ?Ò1þù‰ü‚BøƒŽ?âÎk×,|<pÍŠGœpÌ‚ÇÇ^¥1še6ôên½eóµ?[ËÎ:>3¶zvlõ¶ÜéUjÕLcÙnC“»ÝÆšlÏß­;÷W̹Ï]ý™/o€ƒîrP ÝrÙG?{ù†Ú ÞøõÏ^­�0¾ï$ëÎõ›×>øÕï:ûü ?½þÇozhຠ¯­tݹ߸bÖ|öêÏ~y�t̥~·vwøøß´uëÅýæõ½gUbüð£ö€«?~Þ͵çõç{QµÀîiJ¨zyÞ‘¹!ÄÃ_ø×Ï?ØùßÏ~ôÛÿóíÚ¥í#îŸ1�;ÏûÜUÛÝ7_ü_ß®L=ø”ý ê]zöËö˜ç>öu?ÜnFÓwùãÃ�`ã•7Ítû Wl€ý]S úþÛÿúQyÉig]>KAHਓª.Ž3ƒ3Ì p e`æ¤BCÀ1„`$"°-«™„ÄêZ[fÓn±u ê4(°°»I2583؉Ë…Vh«2æÉ=ÂR@ÌuÅ©)0ŽÔ&)–I«E!ÀË ¥´Æ"O–²2+[ãË[|àTû@‘ŠrõX¸ód{²Œ+Ë8&¡ÄÀäÙ££ˆVÂ{„ 1&¦@(…£8*³¾yß­'Ôä°nÒ^²-®½”6÷ë[ª¼µö­•n³´ÍÓL²ó-Fs ªjKö Z¯ïÖ{¶¾_oHØÒ×ä;a=Ïš0k®É™‘àîNLE`Ò±#¼Œ¥$Y¤ˆa™RdD#8»1{#!È.B,ìzD#(YRµ>‘±¨»k£Žd'6"röÆ/ï &bFãüÁD,DÒTä &b/œàÃͦ‡‘Æõc`ZãE§At."'vÆbv4e΋k<4 ìÝd„?xÜýÀå/=ùÈ{¸üòë7žûÝÿðš Çì»ìå;æ„§û³;nÃ6FDî¾ •SšÝ¶e–X'VONM¬\UõªÍë®ÛÑëÏÌÕ]):Zõ©Õ&vjh÷аfÀÏ?|ŸÃ¿° Ûné{ô ¸6í¼òÏü‡g"._3é[¶lË�Ð~À“Ÿtp¬ÿï'N9å³zÄÑÇ0®7]~a `¿ö/ËþùGî{Ä9‹>ÿkåÖ²o\{Üj\p3¾ýºãïùáµGüÉG>ô¤#‹¥‚íQ§qü§^ùÃúü3NÛÿ¬±›ç|¸kï:_ ^{Ä£?úÞ(OÿúOŸuýýþæó×îqO^ý­sÿ÷=ÆhH(tš:áu/=úܳ®\ÿžsÀg&ò¶ÚxÖËïÙbîÝré%\”QŸZ;xæ«òOÿû¼­¼áÞýü¾7_~™+úêG¯.‹z㥗|ë⌴¹ò@¡ýÇ^ýÈ7ý¬[íØ�7½éÔ§¼/¶ïÿÎ÷ýûÃ'BˆîFÄ"NCŠ"Ș‰´æà@Zq(=I¼oýè%¼™Ø§�� �IDAT¢“e·ÊŽÄ‘[  LfgcUŽT–‘Hzž2[´–‘9“X¨B? E!²öc™É£ˆ¢å©†•ÂY­Â뺒’Ña"ä1‘ž…-ÎÌu¯¦’]ióœ+u8’;ZŽÄ F1¡0ˆkÅu2ˆÕ¤¨U¸ëÚQ¦¬3壓’)ïôzg"k7Ñd€jèG¯ûý"£õûÈPÇ^æneáÖ‚E)¢ZtK„NÒÜs-9ÔµÁsÙ–BÊsÚ…öLÜr̤� j'hÄ…b65fw Bnæ`ubω$ !ÙÀ§¾Ù/¦Âd6pæ`"Äa 4ž­Ãc£C¡…¸ ‹›Å`D4^µèмlmHü¼ëˆSCrg’EÉnhx—é`·²‘ÁìwGî39ÙÚÍván´~sô«µ]•c‹n÷Gí3¹—Z^ô#ŸŽ³Ï¹äÜK~Êñ‡½áO|øê‰—?ä°/œw>ößg¯.ͲËöRU…ÉÉ}'Žˆe»56ËvNõØøø¦u×ukê÷ú%G)[̛߂³ßKÙÞÆæá/zý3oøÈ>½ cöÊ×¾÷QË…@ÓG<ö‘GÍ}ë'ë6n0¶öÈ“ŸðÔ׿ä!EJkŽ{ìƒ.;÷Ò+Ïÿ‰4}ؽþì/yîa½ÁCpø ÏúË>úwŸÙ†±ƒN{Å«ßsêrÙ`XÜåÙ/:ý¢7½÷Ò훯½vsÜݪeÅgüûßo}öÙï¼pã,úìw=âÚWœýŸ=È�¨¸Ë³_xúÅo*aá°Šû?샟½qÝÉøÁ÷ßÿˆg¬úöGN=¸ìWˆG¿àçwÞõ²w}íÖÏ ³ßýŸüço{í£‰ŽaoI& aÕ#_qÁ¿¬xÑß}éë—_¾ Gžò˜³Þò¬G¬[ˆ^?XÌn¾aË¢çOÞ±ýl_?‡lŒCáÙB d”ˆƒI&ÄÄ‚±Y«ô.˜ F¬½_2©DK¹vÍT´LÀýÚK’‰;5NΪavsÁÖ«sYHreÆìDäKƒÜÅ”UZЍ¸Ç !'+ÂÄLšE!ÓŽ).ªlPn \Ìä²´™Ì(}VA4$áPëL0grA¬¡¬†q¶:pŽ$5*¦:8©WcrcÓÚRÐí¤$^'gAGe³9§¤¹vãsÎîTk&Ñþ•1ÖÀÜ MÆØö¤È3u1,7¤ª.Ä¥Wå â݉ì=± áÌ<. qåœL9SfWG6¸QÈШ+…\Œ“¹ˆf𤠡À0c µºXà R‚P&˜-S h v°ÑÙ™æ Ø`ÃXÃ6Ìdóï›ìó>MHcÄõ˜ºð愦쮦Fö–¿x²Â<™Í×r[šFŒXíwO»×!G­líêÔ \³yæE×Þ ´w£oÛ2wÚIwyì­²ütýæ=ÕrÍÍ[ÛHoüÜE­›]uàá?ÜŠ³Î½ìå9l/Y�бÇ{áù_“ î6,5aÛ†w7;¼Ný™Û½_w¦Æ$ÆVkö8i÷F)zW¼ànù¾8òo>ñ½]¢CÝf$ì[" wå îñÌ÷o‘¯ýï>ÿ€¸ç6 ÆnC—;sãÍyŸ}§�ßú7ÿø/nŠg}õSï¾çâl"2¬Y}agØ.Ò„Nîœå¬Mà YãG­b!Gn&€„›˜ÃìD¦î¤¬®D&¨Z6òäPP‘(—\Â)ˆ©Ç�O‚Ò¬ÊIXÌ4Ã*%˜¸ÎGN5‚1,‘K.û­`ý@±,Äv¯Ÿ„àÎ\’'B()Ds+ЖÈÉrJAÉjÕ P3„6çžqŒ‘%gc˜e°;Œ=({†Ô–ˆ»·¡ÝÊÜýÀ©N}Ø–ªÛ›• Ø9—d[¯g9Ζúj1x­Ûƒ—•Ï™§À5Ôk2çÆO5hHž¨Oîˆ}ï'0EdUé°ªŠXVÎ…›2Bå^8KŒYçȉ˜,“ääðÂcF(1ˆˆb¢E‡å‘‘uºJ涇©›à š=÷g¼ßá«S—6ªVVõ5Ô’¡N @L¦Ìš³˜83¢R&‡e'IuÖ”YJ·˜5–1ö“ ˆØ2ˆ]•…2�2XF ·H’�7ƒhàåan0m»Á¡4"<¢¾pVƒ^Ÿ"3`½EÝDsXKÃY†ywÈáXø·“Å3ivCT¿È•~S8ÿEyü?ºÁ'ËÎÄÖõ×íÖQž9Üý'|þY´öéoÞïÈ{Üž,³[7V½Ù©5v&—7¿|vǶ ×Þ:KSÎú_z§«>;ïâq«ÈÀ þuCĦB¼|z5 ƒho”@{·óýò1±ýW䇦ÐÞÂn5²èÏßÿÜû|4ÜóîûOôÖû;×Ï­ûýÅ‹Žkï&Âââ ó'Œ ¯3CŠcqÁKn ¸Qþ¸‚ºC„È\1ÆÙšU3jxA=7~Žu6#¨+3³°«±$WG” Dì‰)dM™ ‰ªHØ !ÌŒØÍB(Œ‰äìœÝ9³Ps%0yh›ÔF˜Ëš“(!Zì;µÅ•É¥Ý Õ•œÍØÙ;$,ÞwUF46’dý ë…n#´‚ƉM-¸WLÊ¢_õÌ©£¸¹–m"Žß”u\âLò©¨[‹ÊçB.(CÙÀ¤f„LÑÔu'5cr+ˆSȱ…Õ]Ïn-ŸMÈ‹:k,æÔ8²ds¤œ=¯—R›‰„53êš’“#M%!×-¶~r¼U§d+²Ms¡žQtRFqj‚z¦‘%³Ç­9å¾)¤ò,‚ìÆ^0 eC (9™‘¸—(êSi‰‰+†Xê— A]©»5žôðÂ-SH®ÌÊ(’#°ª‰8!À‰Äœ<(åÁ™eä ÏŸd6çjÁ‰‹·‹ iæe¼y_ùÃÜv'paØ­l‰+þžŒ#ãÙoûNOˆíöÚ©£ö4qï3Ùþ±~õ,û»ë;Õ^Ð%î’e¡Ä0äÑwa_˜ǰZmô qÓ°óÒmr6†{÷Ãy(lÁ@>bþuŒy^yü½N8ç¼ï\p£í}ÿ“'=íoÏ<ùÐ¥ša'‡6QO*Ób(¸¡£&[îsk‘r7IàfýÛCÆ"`%eYÊ cÈ!›“z&ç•™ÝMBh¶@&r˜+iVFeàÆ*ÑS !P¦³Òì'«)H‡¡JQsŠÂ‘2Ä9Ǥ–QJîj)¥XmÚAs¢@ ¬Œå~,I­(Ø+€[ÐÉ‘ƒ(q I°v;XeH’¬œH$+¬ðBâj eìs6i«ÕîKÕñv®R—»íâ²~è·«~ˆ- Û§žEÍI™“5 .Ç`ŠPPps•½ÅUOФÖ"cp éŠ:Õ¥º9™f6°8U0Ó­hŠY%C¥îk$ÒÈF`£Ê-¤n&ñsÛ)¡ìZ¨³Nµ¬žcõLQÆ(ö–×ÒnÍh¨WƘ6õrFäʼÍ9f€ ×ÈDLÍY.1H†G£I![†ªË攳0z !u±¤P'I¤ d†¾§L!äd.±Ñú™Cd `jÎŒ�׿Çй¡ s0‘/Á ¢ÅsM‡Ou':ø”ƃx‹Ö±%,åK&€ùcÔh·³;´gÞ³UþÐó÷‹¤ÜÙíÿ&³,Q®5Jů¿íqó[:¼Îÿ¿š_€F÷Üóæ¨ ËÀóZØæ´ ¨*1•à 5Áî˜iá”4H�'”šyÒÚ„L‰Ø‘]I™KÊ5¢Êpee·�J0a¤”É# ž…ä™2k@$Ü3Dæ)T‚3AˆT“›Á½®$tz JIˆÁÈÊ$;'e$­@Z3¼l‘&!n¯LÒî÷¬–V`¶œZ¡_PA\I,û˜HØ«LÌ¢îѬÊÎ%¸¶:D((¨(;åÙÙû5…וĜRRM†YódÖ5ìHÉØ»µRWW½Ù*ÝB9%©I«~RpP‡:ƒÜÌœ‚ºÃÅà‰¤ s®¦ âu"c Á£qÊj•»¶‹¢›xÜ»}k{à–”³V—êDœ½ B žsíRLpžË: JÂkâØt§Xi[Ê5XÂØX^6[bBê¹<SØ-³¶Ãõºœv¦*Tè[35æ…«,°¥”KG©O“¹J°8hŠ=µBQú"™�5)Aܬr/(¦LQ,[�3³3bvb‚Ü\È šÝÍ nNziVV A‰hñÈp ˆ,è}x\]:¯zpâ¥ïdH¿b·ñ Óèüç_}öúõà–k®ºu4Þ=a¿£ïñË`ý•CJÅùãÂý×À¾wÞóÛOe~{4{´;%)íµt¢Á^V‚ c"€˜á€ª§:‰È0]5Gö6¡Ë›Æ/ßpu�¡ÙÇ oüÈ Ð:‹EDd­Y¬N\#™[† ®2K ÆJf &xU;„ìZ€*ä’(y…LÙbišAžAE³öΑ'. 3õÚAÐÔ ®ÕBª\„{ A2LR¿w­"¡®6A¦Ô[Ô­µ7ŸÑŒÔ1™C.+«à³!¤ 6•¾ym$=#ÅÊstðLšaÉ4yP…¨fV/X4R»2×¹TRîu4fAØOì–Lž¹‡ÚIºcÒÏ4S)Eîôcêö‰[‰BˆVg²ØG™# %÷¹–·ºUKI“‡!™ÊRËdU7» Îr,s[«œJgˆSL9–¡ìive‡ôñ„Ú¢£×Ú­w¦ 6Ê6ÍR[ÚTÔÞSwkõ½lµ' e©«ç´ÌP{gìEtó²èVUTd*b±ÝÌ)FÏš{¤2)M ”H²¶2õÇI’<åZÝ­9 ÆÀÙ‰”AHl¯ÔLêu¶È”&€³Ysž äË삳¡52ÕÀôz¬—ÌÊÆÇ¢ÃsÌgÜõ̾áM¥·š3Üá`Æ1úçÅÿ_XqðñÄfyånœi°â _®âEÕ`Ö^}åF œ_zÈÍ{0cÞíË|!bx#±-ªjlñÉ\<&Þ6òŇváì—ÅãæË jþ4EùüŒ`ó±ð|þLÅ¡ZM“|ñ˜ú¡Yh¨–…Ìß—ÓBÎfR.gñMó… y·,LY6dõÅ®Z<iİxÜù‚° €l—/4`¾ŠÒ±£Ñ›a‰�à¾dz¤A¥‹oüÂ"+-t, ªñá6Ï+Š9j±ð¦o̱`¾?gà3N>´LtÃ'‰yÜJ,„°voLRƒ>Yèx,6~¡c}x[âÐíÌÿj‹·�ZÜP3Ä&ÃÌçÇÇ|É»ÞÈ|¥•ŸÍ ‰æ‡âBSòù­}±è3–ŽùÆãd0ʇ†Ê#,Ò˜ûs]i¬EþôÙÿ8ê F£}É#üãçG6ìÌ1OcÌ7]{€ó¿ö¥Q-_½ÿ¨Fa„~7qÜqÇ=êIü©Ë6.¡±†1RbŒ0Â#ÜQF3øîxÌF}0Â#Œp‡¤±ÑŽù—0Â#Ü‘il4hl„FáŽKc>â±0Â#Œ¤±;8lc#Œ0Â#iìŽÌc£>a„F¸cJc#)Ga„îÀ4öËNàzÓÿøä>úËçŸ~H~ÿÛ½­Û×’ð{~Ýo­Q?Œð{Hc{S*úöswÏg}gèÊŠ'{ñK;åÑ8rŒ†Â³ý:µr¾ýœÇpÆÔ/ÿàý&—º=÷>_÷êžóø5¼Çl·§%#ÛØ¿ßxû¿¿ýïÿí­/~Ê‹_ú´3G½1Â’4æ€S8á5Ÿ>ëî��+îÔšî¼äM÷–ž÷úëkàPèÓÝ‘Ôm²Ø¯TçHá÷_ºèKgÿÛ[&N(?ðßïÉS_:êþ¤1¸2uðÑÇ3±pMoüàÃú¡?ùâ7N?$`1¶¸è¯;çì×¾ñc¯ëbÙ?ãûì{MɯÀ)Ãe.^Á^kÊ•®y×)§~æ!/>éÿvî•›æÚwyêß¾ã¬S×ÆÛ¬s„~ïðãë~|Æ[Ÿ7yßÖØ‘ÅÝ~üG£¡>Âï¥4æ·5¹û’4CGç-yo;.xõS_ô£“ßøÑ×ÜgŸúÊÏüÝÿë…«¾ñ/OÜ—[RéÐÝC-«‡[å@úÙ¿ðˆÿìNßøŸ¯=õ¹9}èçÎ<ªIc#ü^â¦[nû¬X³ËõnîYo~É“÷ÛrÎÜSžö”ÑPá÷‘Æn‹Uª¯=ãð}ÉW¾ù¼önÓ馯¿íœÖ_óÊ'Q�8àŒ¿}Þ¹þÈ…›Ÿø¤Õ¿|#—T:Àñ{«åñßµˆ±‡žùܧØï”¾ì®~Ó¿^uæß3lc#Ü!1Ûù«·<çüKÏ?`ͼ÷›­bq­¦¦§ŸýÜëú׬>m¼MZ5»ïîvÿÑPá÷Æ|¯Ò˜ƒÂ ýÉ¿ilcÔÙwñÍ §æùÐ zÕõß»º·î»§ÜåC|ãv÷U¿¬4¶´R�½¾å¯œÜû{¨%ùØp«ÜÃþÇÐnî'ï|̲­?ºÎý¸‘46ÂïÞöñw|{î¢ýžµlçnùüŸÒÉO\ÒgþÙ_»ìk«ÿt†mçw_úÔ×Ñh¨ð(A¦9f‰mlOT`.ǽóþ㉫ùö·ri¥Ý™é€™½Ö¢ëwi&]x^-ÙmSç#ÜñƒŸ|ÿ1ö¨V«ýÕÎ?yÑ<ñ!OhÆóY|ý'¾ñÉ•ËeÛ×»ò„?~4ÎGøC”ÆšK-?Çï‹ýï~¾rη·>îÔ·‹ÇvSé¢Ì·ÇZ–¶ Ðu—\µí9‡¬b ßüÝïoŸ¾ç{¹ÓÑã=­²}ç±£ŽX}ô×ÖéªòGW]wÕÚUûù/ÿÒ%_Zñð±Ö¡ûÓº{y:ûoßCóþ@¥±_T~ZóЗ>îÝO}Ùóßì/{òÝWú–«/þÊÛigþù‹ßD-‡îš2}û­ý¯«_uÊôµŸzÝÛ~rÐ3ßqÔ^¹sd0á‰c½Ë»ÿ{çÅÑÆñgö:åh"½wT»bÅhì5–Ø»±ÇhŒ&öžØb‹å5kÔØ½a•¦( ]z‡+;ïwÀw56žïg?º»ìÌ3óÌìüvÊîX£ã-��OÁ€Š ¥¹E9FÚZ®|i²,ýlþw½'ûº7ÂJŽ|¹2VyoŒ–]úe×ëîqë_öï0^´ln¿Ù�"Ï–=gŠ™/ðUcTe¥"S©•ÒTñ\ÇŒµ9;­åOo䆞C~Ýò°7†|qúwÚ¶j«BÆ‘ÖË—¼”·ÐXrå9lÊñ¼V­&÷„5ù’ ×.ŸÔá%ÇG…u¼ể_Z¥Q¿uê~rÈé3C-ªùÖš–¶Ö ä3eØâáO­î‹ʼ)Ïf“äxšzþõó>üò¹Ó* S×Û'LJ?p;Zƒ¯xXÚ»W<÷*ô?M®Z£5³^ó/zà³*òù2©×Ä~ëúóLŸ!\簄Ǥük.´Ø<c“€'Àê|aÔà+±¯BÔiÄ{K¨5ZCëJ£5ÐÄûù\ñqñúÊí«Ë¡çx¦ ÂÑb2ŽåØl÷þ´ÇÔ¨.Ömä˃QÓ€a×nÒ…Çç†XpªA>gZ`›ì,ÏšCÓŽäv«ÿõá%*~ÔA¾ÌÞ¶âò¹£-Ò9ðóþ²¬Üÿgkgô R‹d ýA¾�\þÎß ZÙCCA°7† ‚ ØCAÉê‚ òùʾ‰ ‚|Æ2ö&1‚N@ù\e¬Q‹.èA俇Êd pPAù|{c¸àAùŒe {c‚ ÈçÜCCA>cÃAEAäó•1ìŽ!‚ Ÿso e A䃓”öìQNv¥l-Ì>!Œ¶®ØÑ¹žµ­!äÝzc8¨ˆ òÁ5ìñƒ wÏF–Ö¶<¿z€eåɉñîÝ”ËeöŽ.­7–›•†ÕAD-:zFšþöì±»g#[{'¨­Cb„0¦æV ›´xòðŽ©¹•H$z‡ÞØ;zœ¬ÌÈðàìŒT–e±â"RkaFlPÇѵ®ž>PZIëš“iaiKŒê˜äæfŠ„Âwè½Û bNVƳGAön êé†ÁzŒ H­…•˳2Sß»îÕ¸…®X¯’Ö•RÊåñp¡8Ãa(ËÊYY\ñž—xD†?±wkdne'‹k:M‡ òÅaojbòè–·oË*ZW\^§"C5R¢÷ü³™Ù©õôPÃA›Zfg¤VÙºâ*ñ22Tg¼çÞ˲„aPÃAp8\ÅBÊ[W”±÷×+A¹\–•– �zF&=‹ òνŒ·ü+˲,+/9dó%/>¨YwLcoLRT˜Ÿ—�"=¡Hû]S% _ìÙàЄˆû“lQ«èѦ_[Øwà’‹ñ2Q÷sIÙÙsêÞgÙPuäÃi¼ž>YÌÆÆ.û? žíÌûï‚ È—ØÉ¨ô¯ÿtýÖÅK—Ï”¶ìx|^`ÇÞ^ }¡ŽªYß”QPÊãñEÚº"m]_r²ŠM}õ›Q‡C)¡Ãü~MË^­óz¬y)}ë” ?Ђ}}.»ò&ï”%]½LIOü³-\Ÿ7ýh%Ó2nM°ûà ßÕ’KˆÓOÏŠJ«Œ¶k×oº{ˆq*‚¼Eó¬±ñÔü×+WÏ6oÖªy³ÖMý[úû5oÒÄ¿~=ÏÓçÇ'¼®nã̦ЊŠ7]Û&ƒ×ÞJ“U7ø‡Ü*w”:­Ñ¸àžáp ꘖ;ù6 aÒ¥¿¢ÜF53Jøàu¦ÄôÇ›©c%àó™Ò”¬¯2ˆôMD2×¹S3û:ú�lÂë¨óÀÖn¦†‚Y|OϱÇ6ÞÕ÷´ŒÝ½óÙ÷«*ÞGdêü¼=à¿6 _žŠÁ[ÎI$R¹\ö**¼äŒXl`kc¿íu2™¬øJy|^@›Àf~mÔõõ·ÅºËëšj³Eá§›×cjýˆzä“»‹bõö½1ú¨mUÓnì wèߦ.�lÖ½u}Ýńƣ÷GIWdÞýuw†¢eßaÖ±×��IøbWçÏ.îæ¨EˆÀö«åw22üÖ¿¾!ĤåS‹‡‰ "Nkç C!†}V\O“W0-O¹´0Ð^D©ÓxôæMÅFƒ¯æBþ f€YÊËsÎ÷Ы;üFžÂtýy[t6àŽ2©Ù§»¹N}Zôlº#Ÿb4ìzžÓ’ðÅ®‚z³ÖNne­M¸žKÃ$ePJÅà4í` -¿M‰…—ºBáXŒ¸W¹°¾·¥’jY\rÿÑŽMÌx„Â3rï¹!¢¨ ?WÈl±¢¾:ø{ˆÛœ­k:dýµía^é¡·Ð}ùsiEÓ ÿþÉUà>}帶utBÓ¦FKÊW‰Âõƒ›:èBפÑMrh)ÑXÄ*õLmî�Ô½æóòŸ*VÒxVÒûËdùùÊðMrÖí[gNß:sæÆËÈÔ˜èLÅû:KW×ÈÊÒòìù4ua¸bkgWWwOÿžßÍëe”õô饒ˆe^F>s7Lëèf¤­ßxUxAÖý ÛYè芴ëºuw"¶ˆ›þOºN3îP òÄ}íµ´Í]ʦ@iæ©î&ãƒò)Í Ý=¾…½H[W¤gí=`KD¥@iÁËÃßwu¯«+ÒÖ5k<xõÍ*ú€Õ‘¡ê*¾eg°|l™A›÷joÁ�ÉÓU?>l¶öjȽÃÃå»FŒ=šÌ‚<áÀàvßݨ·øjØ‹GûúçlèÑñ—ÇÊG§k…uØrûéµuî|ßµÛ×ãnù®¾òìÖÎN¯–Yx?�Øôó[¿äòã™Ð¨—võJY8`oœ¼Œi·wP×E¯»ì|ð*êßÙº;8›S¥ÎKB~Û-˜}ýMQ~øjóC£ÆMÖ <¾ÖCPu¤„Rš¶«…H³i„þºGøÃ­t¹äÁtg^'”´»ê‚Çë÷½žw{¬©0àD&¥”RYܶF§…!E”†ÍqÊ­ŽÅ;=¯wÚqѵqñQŽ.ìj# P¹Ÿ+dVñù•¢ˆ½Û£¼'ômØabgÉÑÍAÆBËf$a¿ýi°è~rN΋ͮÇwYü¤°|§©7rÓ¥çÑÑ¡—–xÝ™Úuö­\М’JЏ´ß­!wr E/‹* mPQ&“§¦¥äææåææ½|™´wϾƒ.·íݳ/44*'7»  ¿PÈb^ÔÅ¿®¤›ø72å*¬KÂ6íθŸzs‚öñ]gÞr]xîÞÓ[Ûûäní×mù“|ÐõìdŸ~ýF‚hnÈ©0"’<¼ð²ÒüðóÁÔ³“³@µ{ø”óóÏ<}vkï¼Î–  O¿8-pìÇïÿ¾öôƶî©+z|»?NV•ŽÔPk<<<2Rc¤Yw£ïöððÈÎLQl™iI1‘Oc"Ÿf¦%•œ¬|KKŽ=¼kmttt©hfïWוøh^�� �IDATiÎãBZ¶ÈôúÍ`)¥”fœìªk8èrŽ4jƒcøÍ…LÅiÉ‹U¤Îðë¹ÊëûŸS´æ…Á?؃V×c©¬òªú|÷å*‹û£©–ãO •æ$áKÜDMvÄËULK£Ö{sÍ'å).É¿7Í ô¿¹’Có‚Æ› ÚÏT†Í>×]lüm±éº£nä*Ï_è£o4èr•¾,•1ªÙ´"å.dUt›z 9v;›UIpªIƪk±àþTkQ³±2Õ‡—Êý¬&³”ÒüûSmÄþJ’Sš{}´¹AÒXJ)•Foð¸-‹PJËe¶(l‘ èô:“A‹}äÏ7{;O5HY2O­o5ån>Õ”’ÊŠ¸ªÜi*zUAþïZ›–[Iãyhï–¼œLMÛ¸ üiÒì9£fÏÕ§_/Jéù‹§Ëm”Ò>ýzÍž3jÌøþj"É~µÇ¿LË/ð™~!.=/'3/íîON îs,)'3/'3+d¥cÐÿÄëܜ̼œÌÌàEõˆÑó y)×¾³µÜù"7åÊd;›sÚÔñZ’‘ü³‹ ÁʰŒÌ´kã­D~›ÃÓTífGlôÓ²ÿþN²òLú½….ÂÆ›Â+É졽[¢^ET®5?¹ã4ÿ„Vߟ<<<*öÆ”›TRT˜Ÿ[˜Ÿ+••œ¬b«@Þ“7„»;+æuxÖ~N:ŠqX¾‘¥NQZ[{/š¸tò+NóÌ›5«›ñ$<S®¸¾‰£b‰$WÏBoÙØY—‘¼Ô<9F]ÈüÅCHð]+H‹I—ª˜.z}?†qi㬥H’ȱµ›°ÊÉ2¾i=sådG×XT˜–Wþû•˜àY5²©wBu‚«§š…nCG{Þag×´×ø…Û/DæR�¨ÔÏê3›÷p뜀Iíë2�Ú G÷_ÜðoŠº¯d–É,�Ϧ‰ƒra+ÇÐÝÛ0õñ‹œ2Áäo.-éíeÂ'„¢x<3íu¦L£Û«ã(M¹Ë×PôoU%ä=ÌùTÖxjî|Èeò´ÔÔœìÜœlåÈE#oßr›rn$;W.“kèÁnó5Wï=¸sãêßklè;ê`œTÑKãYz[ )J‹bÆÇõtˆb­ŸiãÌg™r]»†‚gg²“‚®åÖïÙ½»}ì¹àŒô‡çbLZûÖåP¡Ë€áõ«ïÙvд%».½ÌeÒÂè[Ïó_-kb¢­«¯­«¯mØø§ˆÂô×éUuLk¦5Üs¹|Å:{.—ÿ¶ï儾ȶÙå.��a8%ªIHé$žš„@Ùë Âp•¿*sËRN“]±·†š•Óã‚§%¦5A Ì[Ú”²*¹$ )7P¡Fj0-  ‡Tt­FpÈ×|TÏ¢Vƒ¹7»_üûÄ™sÿÌï°àçQçÿÞ¬2?«Ílöí͇Ò3º•Úâl8Øk˜E…8T2 �T.•S•ýò“X)džýKÊwGž\híTG«àÚ`›®¹´·kt”Ú¬Tu A>êÜØÛ-�‘Éd8ªgî?º«ú�´îHÈe¬L¦öƒ„”scκ�àæîºòÖ‘¯Öˆî1ÍšR £²æŸ¨ŒÜòÈ­³kÁâKîÇÚ÷l`ëÓÖhù™‡ C…fÙ €RQ½™çþºzêÔù‹g÷\¼|Èñ›kü)K9 ·„dÊÔhµËûYpÏ0Œ¾¡‰¾¡ Ã0o97VyüL^³þ^:šÍ ¬}miÄù§9Ê5 7o¾1ðtÕ¯æB¡m3'xzàZ…^‚ŠiUCkyÄåçJy(xy%¬�0ÚFÚ[ÜÏ’¥?[ù'ù´ø³ýMWÏ Õ þvA¸õ:Ÿ³îÀÇûÛ¼9°ãQ~MýLÓ¯n<ÉvÙ~;¸˜ûÇ'[ÝÛt<VV•mÙ«Ë3I”Æßºfä娫bFòúf°¤áÔ)]µ8D–ü4]ö®¹Ö”;‘†¢×X%äãÍU2&)“•*‡Ã=ö¿Ë—ÿ¹rå¤b»|ùŸË—ÿ™÷ÓD[±®¡¡¾æu¥G,�@Azž¼Ü_x–>64òbˆrŒ]’t;E¿ž“˜P¢ïÕÎ*éÔž=¡Æm} …Ö­Òk»öÜ(tíä&Ræè¹¶8}ÙŽó7¶µLù{wp>ßÚ×BÜL•×h©` µ†©øDðÖ[¹¨¤1gŽ¥6ÐX\Y{kÙ}F dÏÈIÛo>||ÁŸºŒÔ°ºo[s,z-ªwfDïþ zqïôïs¦l -R5͵ê>¥Mææ‘ßx|tþø±@�lZé?Ù¼÷i¥yûæ,{L+}|çêÙZr__¼ÿ&5=—j0]M'pªü-‚<^7{ùþ«Ï¢"ƒŽ ‘š×7ã×ÐÏlÊ¿ÎÓ€ñ½ü<‹iØqx³G›½ªòµ9ɵÙ7]|vvéÈÏœFñÖR‚4õ´cÂÿ¾/š¶{ú/Á•wš4çºðñâÀf÷ÄÈ4Ö"ME¯±J È;¦Xi㩹qi yB¾b35ÓÎÉÎèøU`Ï.{vêر{ç_wjß­S‡níÚt.,,ÒdD–õúyxxxXÈË»çÎ8’eÒ¦“¿Ü®YçÉ$û&ÎÞýôô’1KBœ†õ¥|˦Mu_¸*kÔÊŠO…®OžM´ h¨O€Ò‚'›\{äFhLbâ«{'O‡IMÝMxӯ柟0lÁá{‘¯c^<¸°cÁœmáEU.ñ¨‘Ö¼ço*ª>•'ü{(®þ”¦•·RæýþwáÍø1³›»¤ƒÐ6`âÑý?z)!«Ó™4ì¸éÖߦ“~ç¿<@Ë¢aÇá?Є¿ULs­ï;=xäPŸõE>#ù¹mÈb—�h7[ò¿©ý†ùŠç M=zÏšÕþÔâJé·Y8¿y¯IÞ–£Ápèµ×»Ô™æTêÊR ˆÆ”s�ä5Ì,§üUB~±¹_ωʢ ´j>ì£ÓÝø@jâgyâé —IËÃ~zª]—Þ=Ì–oý3büðJ½Ä¯?k®ýÑþ®“äu|Çí;=ÏK2UYê¿}ó•¾côFëÙ´;§çµ…lÍ‹˜P”ý<èÖÃf,�_Cî@CÑk¬òñ+yo¬HÒ¿ß —Dz,eÙüÂüÔôd™TBX–Åà;KRC#“‚üB5QQ @e7§·n¢œ{°n6tÓ?ùkS*)‘J€1éùûá”éÓìØ$Ö­Fþ¹}º‡€R pìØ€¿ëªG''!¥ nÐÞ®¿ñofÉ£”ðO.ê·ðu6¡E“AvMrâR¢°ê̾ºß/œÖim€ÈÌ+`à<=R¥+j¤DÄÃÃãÚå“:¼äø¨°®ƒW]»tNù@.—gg¥€XψápªËÊ/Ÿ9ܨu`v·rß8èÉí±Öœ\Y*5- YXßûè„ðSì¹:%Ò+½W5½µµ©Öy›~ÚŸÓTô´J µ’#»×µéÜ›a4¶…ÿžû§C—šþ:zܰ‰“&çåå eY @(È)K)¥,˲”•ËY.‡³ÿþ­›w}¾¾:êoŸÆÍ *¹¦eÛŽ]l?œþÀ!ì¨Æ¯xH¥EE¹� ÕÒásD5N‹L¢Óm᢯Í9Þ åMÓ¬{»§x·khñW7Œ]ÓpeW+î‡M‰<óùƒ ók׆hû-vámý¡5ýÇ«HíT¬¼³¦±!‘ÊÂC*×ëFñ¯â{Ár¹\.gYV&—Ëß¼y#•H*F¥gh¢)ò¬ôäOsôµú×s5¹’Ëã +y¼·ù=7¾m¯™S>Ž*˜fs‚·?2±@Ç©ó´£ÛÆØó>lJhÚù~ýn›4›¼gc Ž^}¸ž¹†¢ÿhU©Õ:ö–S6ýú <xø¯üüü*¯ÔÒÒê×gÐg¡UU8о/܈õë”;ùyB Ú® JX÷Q“`Ô÷:Û÷‹¿Kù®sËæ~Eÿ T ¤6ªXe )!hwêØ¥SÇ.µÊQïø{cïÃ0r¹ë+‚ ˆ¹\Vß# ~Vû-yÏ2&6¨““™ `žE€Ôäx±AªeŒàlç!cŽ® ß»nbR·®©U5×7"‚|‘°ryJrÜÃ[ÿº{ùao쳑1]=}¯Æ-Bݺ‘ʲ,úAZ Ã0bƒ:î^~ºzúPÅÄ¡,ÅGV.¯dŽðÉPª+Öóöm‰5A¤¤a¬üï"-í´Ôd3‹Zî§´”]]•¯ï~CAjˆµ]ðƒ;Þ¾Më›Tò–ô—Ücå©)Éܱ²¶ 5 ‹2† ò‘13·”ÉäOÞËÏÏýÌ_pzKattt­¬íô …B!Ê‚ ÈçÕˆkÓ¢¢"V^KW0F(ÔTÃPÆA>DB¡¨æ8‚K<A”1AACA”1A¤¶P~‰ÇËðÇèAäs•1W/t ‚|š<y}ÿÔãÃñé1r¶–þއáXÚtñêíiÝë¢^Æù4yúúÁ‘;{z6ÿÆÊ̶¦_ëùb`ållbô‘{ÂÔ·òÁZ¨—±Œ´7ñ1‘ùyÙŸÈËä„-m±…#�|R ÃÌ¢«?dRÏÅžêÓ|¨µ¥]m.5†ÃØY:öi>ôìÝ#RX;o’ªk`Tod52–‘–jaíÀç (e?2c$Ò¢WÏŸ€•­Ó§“0Ì,ºúC&5-4ÅÒÄš�þ*X˜X¥å¤Ô5³¬7ˆ¢>DG†�*™‹ýÒÂÊÃáÈYÙ§’FÊr8±ž~^NΧ•0Ì,ºú&•.Ÿå�<¾€œÚ{ƒP–ÃáXXÙÇ¿ŽDS#cù¹Ùsýô~*LW× #-…ÖŽß0«U™EWW·ífxßQñF-¿A8N~n6Ö52F)ý4A1\.¥”­ãàµ*³èêêÞ«„Ë Œ©x£¶ß TŽçêe �>ågœZõü…½1tu…ÞNŒao AöùLeŒðÞâ÷ÝÿSØŒ»«‡Mýíú¹°ýþç›Zé¼U,²ø]vö<yqŠWu¿*oà ‚h”1¶š+äÉ ¼¿ÃŽ#C­>ØÛg컬JRMð{Lüæö,Á’¾Þ:`äù>{ô3ýÌ~qö½º¥ŸGoLuP‘¦žèæ<õžš MÇ\º¸ÐëüÞ‡<îàâ ¯:îy4¥‘P[‡y[e��Ã�Ã0:Nºwvs€ad±[[wØ7ðܿ㭹ê¼ñ~KÍÞ<û—­÷ÓXAó-çiª…êð%õÆhö¹1=f+Æn#¾›ÕÝQ›e)�PJ;ã©Y’tó÷•;ÝŠÉb£kæÞ¨ý”ïûêk¸›Ê$˜oÛ¢][aY*OÜ;äÛ£]þ88Ðü­D•¨4Þïoc¢LfË–pô]Ûö3³·žæ¦£:FY€e?d!¾'ªáö÷âj�0è²çØ´wÒ…²q2:u]ø=h`Ÿ†uxÕ.\.áª*ý6¿]=‘#€‚Ç?÷íŸ[:�Fhâ,ü ò´ÈTƱ…¯¡øâ!Åÿ¶œ³¬e™?�R13\­¤ÔJ›©êºAžpjÃöØæëÿÚ@,Ô²øžËçÞ+Û,PJp¼§ìžå!”¤?;¾éçe³¨õÿ4 TÙþG%ÎJ¥Àã1Ó&yùû¤ù;y߯™éU——ŸøâîíèÔB–¥j.UM°¸ñ¨é€R–*&Jß:#*QilÅÞÆD™Ìª”‚•fEÝú}ñÖ `æçFºäŒªø„¼ïÂú©†ÛßÅÕ &l›ê.R*¦-Ÿª¨eÍ3«zI 2#o:°|ü…«³7ÿÚÂ_½Â-?¨ÈÓwðÔ�€ü\#.É´ª× žt[·¦üOߟgF��hÆÅo½¦Ð-7vµM[×¼Ó‘3üì9ñôMž¶Ç7Ë~û¥‡%� £ÿ2wÑ®›1ù ï8yõâqþåºælVðösV Í Bë6CùmFg‹ÜãÞ£‚�`´“!:ï Ý×R·4¿ù{LY|ôa² ¸úΦîÚ>Ô‘¼\«6 „!�B"‹ÿ£m›?zž»üñÕí~ •Á¼Ö–ó� zŸx¶ÊO«Œ74Ý eš)­êÕRijL:Ǻa3±Nu+Õ‡¯óˆ†î¼Ú'Óò�W§®­•ƒSƒ¯'Néi˜uërL!ËR Êy¶0òÀÒ!=»yùµójÚ{À‚ãa¹rÊJãþÛèëÍ¡ÊxØÌÛÓÚu›z-‹eYZwnÝ̯ڴóòk×ràÂ2å,K%1Ûúvê¹þðò±üü:öÙ£šŒri“%?ºúZ§ó´1½}mí<ý;Œœ6º£1QDÒã×‹Æ jÕ¦“oàä¥%ŠP% –&þ5¸s=¯¥lîõß®|)üuH#¿v^–?ÌÒœÍûsþ˜Vþí¼üºt™¼åR¢¤lTÊô÷úýäoS‡¶hÞΧýØŸÏ%H*šÈË<¾ò›.½üÚy5ëÑcößQEå}®¦ ŠKÁÎÖÞ«MŸ±z¹‘/Ó¥šœ_Áh>ËÄûuv·¶í¼üÚ5î2aÑÅ72J)š¾÷‡áÍüÚy)\Ö®&V(¬"µþaÕÙÕTäê<£ödÕng)ËÊÓþ>õ›&~í¼:ŽÿùÈññm{Ì}W-W‹Í]›­‘PZ>³µé×”/Õ›Èѹa‹ÀIK7mï£s{íúK©²J ·tS,¸W·):+ žU·¡Þi'ö=-$À€Œ«ÿ»Êi7¼©! éó-Ç æ ‹ ¿»ÚñìØo׆H ›}ufÿ)×f¾ôðÑÙõÝÒ×ö™|8–‰_žr|Ì yA.sO]¾{m}ÏœÝC{­)2ê~&âÌ·Æ‚V¼Ìx·¯µX%ˆ<æÐøé—íæ¾zïáµ­³;Y ‰âOêÒ l…ˆ"lñ¾¸ýþ+‹Üùn‹®'d¼NyµÆ_«L®K<ªn¦$Õ(8yæ¹1]I/º7¿¹_»&3ïæV»’h¾Lm…|×{¡BÕE4ÈeËm@Rª<$\äR™òQHy^.%Ö=f,?vdÏ‘õߺ„lž²ñY%¦­»Öϸü÷ó|Å5÷Ž1Múxi›u{õô÷-F­ÞzòÐÆ…­3·O[ròŒR@öêàþµWnœüs€Y™d”MÑ6ªÃË ¹ó<CV!Á ‹:xQ<jýÅŸiyåç¹Û# i™—ì ›-ß6Ãç8içÝ›gž™î%Ô\žrvᬕÁ67n;¾kvǼãÓ¾û_x![6Z@öòàyÞ U¯?:Éè²_/¦ Ê™ðH?3oå]«Ñ«Žûóä®ùc›ó b@s)ÈóŸmäábÄÑäü ùâgÞ\1uö)üqýñ#ì™û•‹e) {±oW˜Ç˜íþ¶ò+öÄ’_/¦É«çϲ…ÕOð¯Zÿ°êìj¨�²5žQ{²n—Sù›“?ý¸-ÉwÁÎ]'í£uò[ùTMõ®ÌÕeœ ’Y{j+p%»\œ òìÛÃQ|24·ÒÂ-ݸ„Ë�Ѱ)nfÂ3m?ºiî?»žäaØ´Ë;‚´ºn"& �М3¹™øVgÎi½gGh~ò…•G„ã·þ4ÐßÉÆ¶^àôeßYÜÛu) T"gãÏm¼Àí»~ñ0GNßo™éþbïöÇÅvÕ¤‡fÆepl[x9˜™Ú¸ùwÔÞ†¯1 EÊfH™Õ8‰†ø \­^3U‚KÑj¿éøîîüF ®Ý<{{™V5(MÕ@S…|ç{¡bÕE4 *–ŸS³,˲²ì°þwì ¿A#S[¤|ŽeYxN=ú8)®¯Ûþ»É·/®¼öj‚›»aã¾^›W Ÿäî©EÓo}"lµÈCÄÊRnýþ¯`ÐÖQ]ìx�`:xÒ°‹¥vd)€N«áÃr)p¤\bÊê6ž>¥ù¤U3ÛîÓ·¯çîåãÛ¹kk/c¾b²D«Å·ƒè� ÆMqùvãÑÈ!ß–&˜eUö)KÒâ“‚¹ç67põ¸îÚ,Fÿ8äÚ€ƒûÃú̯§K †Ó@¡`Ùª[“ß–_‹ÊoïYÆ„4+)“cÖ¸±“…F¦¶j¼^þeY ’s[4+žrí·iœ›°çsËeßÜØr^Òné¬þº�êš:€,–è43»—·.§!Cš_}-*¿½¾¨Üœ¢NÑV-,’ô?uþ™gªÆ.›rAmpTã‰ZwÉ«v{[³›ûêôÞôm{G@ÝqÓB/Œ:¯R#W[Ür`¨f–É»»E]ú;6y¨¾bòJo¢’‰=[‘4:6KÊjk.Ü2‹4¼þÌO 1„1n3º•tÜÞ{ÙÍZeÿ»ãžA¯…^: P®UC;mÅz Ž¡«§AzpLZÔÝÈ‚è»MV©Dg›-3AÉp[|p,q˜POÌ��¾™oã%Ÿç²~z¤ÄnÙ ]ú­¿{rƒ¦ÿëÜ®m»Î}zµ°×&šÒÇš/ô(éUÜW·Ä£|©©m¦²«Sp]t”3Š›%µZ ”ÆØ:ª¯’w½°Ví%æÆ�¨äÆ­Z(ŽE®=fÎi*ú¦d†›ñðв '®Ef*?#ôÏ–QÊ7éé-[r:8×Ã7÷Ρgâ㜄”Ä?‹)Lx2äëí*v¬’r¤”CkâbÂ×ð^_ÙÓ<›ns޵Kyü,ôö¹ßFí99ê÷壀×ÔÍT¨¸šèØ9éf>Ïc J¬ŒGe¿dªž‘‘�ƒìEŠDpŒÜ䆯äÊÝU£ \#;Cž",#ÒHâ Ør&x6=NþÜçÛ¿›ùúûùw ð²‘*2K)�áxMØ1­ž•ç§Dßøû´E–ûµ5áhp>§ŒÑÂÄÐXjÕ×E»L¼ŠÌº›+sÅÕ­+’–&XõšŠþ”;«VQ²zÿäS5v 5T�&@gÔ»‹Víö¢¤ç‰ŒÅHKemâ[xØñ/¨”~¥®ö³y’›�€ëšph²jf5¥?OcÅ6PzRÕ[šÍ…«ynLEÆ”ƒŠ„! › ïÄñÇ­4»˜ÿ=1ë»®¾!�„!�¬Œ*v�+“!(åøl ýg€‰Æ9BHqäD9à�„aC „T­ú3Î>ùêêé3ÿ^9³tÀòß¹±¼­¶ú4(‰Â„ê>! óDŒ^…RSÛLeW§à¤ThIkVÉeœêÅÆQ[!ÕÞƒ5ºP±ª-cå{c”RÂi0vËw-F obRGÄ�°T^:ÕÄfÞZ8ç¯ÌÞsö­ò°Ö=YÓuNeYÊ‚®çW-˜%‡¦[$ 7n;ÇŽ«Øe\~:´²‹QÙ‚‘ņC@Ãò³ŠÃÁDh\ß¿]}ÿvƒ†n6uÏ®'š¥¬TÆ*#‘Ë¥¬rbéd^Ù}€ÒÕz,«>8�B)KY¢lƒ(�e¡lTÊ›¡$* ”ÊË›àÙ|»~O«‡·¯Ýyx}Ǽ­»:®ß1¡I…¥ebQJ£mlcm© �66v“Ÿþ;õàÙøæƒuîjp~£TyTœþ’•ŠâÓ’—½F½?U ‹²šü£Æ®Æ � Î3êÜ¥U·—Ìõ*eCéÉ µH«ÅfNNöÚ¥5³\fÕ§¿à‰†|±9Tá_•Š-OŠ)à›˜k3,«©p‡XrËöƈz¡Q®ë#�tì®ÝcÓÞíIvƒwâõ~²èë!YSê2�Ò¤»w3 ýíŒm‹àŸ¿o¦÷ïi¬IÇ–>ÖôÂåм¾­t@šxïNŠž³§x…!Q·’¸únÝ~7-ðëú3÷>Yà¯> b…r)Ó¯ºÏá0@Yª6þò¯?kj¦ªWpÀQ•*TͪòËÔUÈw¿Pɪ77VaK8Ú&vvÖö6&†BP=O)e)[”òBæÐ¿—·µ@š-/¾LäÔ³•ðÞá3½¶leÅeYÊòL\­ ú|p†¼œ-¶´œ+njÓVºq ¬õ ('_²äñ^f)æÖ¥)Á!ÙzŽ&B(M°jâY ÊÊUÒ &¸ØÄÑ â‚^æ).“¤„gê8Z‰¨jTåÒÏßåLP–e´l ™0së¶ 3®^Pef‹£RÊ)(ÊÊ—iv~£<WKòúZx¶¼‡—&¸Ü5ýY–[W½øêìj¬�š<£îd•nçÛ›ÊãîÇ*}[ÿ$J¢xœ©™«+šÐ”þJòU>N6÷ñáã‘Î.ÂJ ·Lä„Ç(^®ª°÷’‡Ú †ö6º¾bó —o{Ú •' ÜZ4kûÝè¸ÈKk¦/ ³öm±Y·¹Ä&ŽüåÈ£W±ñ/^Ú¹ðÇ2ÕÈùæS:H÷Ošû¿;Q¯Ÿ_>vy¨Ó°±^: 0ÅóXåÓ#yºmÁºc·Ââ““bœ:.5u7jJƒ¶ê{cªû\=[ nÜÕÛ‰élY<«V3U½‚+^êC«¸¬š±i¨¼÷r/”­ºHµW*RMê¦|æèÛ˜“¸+S¥¬¼ úâ¯{¢”O",KYžS`+ýGûþеêÞʄ˲”e‰¡ß¨ŽZ·W,Ût1<&1)&ìÞÑ­ÛG)¿mGÕëÅG�� �IDATT¹´É“.þ0}í¶“AŸG¿zþäÜÎu¿†3­´YJ¤Á»W{›ôúöŸ¶G™ÝÅV ’`ÕÄS"45æ$=xúêMFfV¾LCp-#ßA¾²Ó+·ÿ"hÛ’?_Zuìãȧe£-“~Zœæ²&òžß°ïê×I))ñO¯½’Ø0U/Ÿ£ ÏKŠŽŠyõ**ôîÙß~»–cèÕÔŒ«Ñùe²†M†ð..Y½óFd\RBÄÝ‹¥H5%¸lAkò§jXFƒˆ:»r  Pg Õ»«j·3u|ûzåY¹ûÂó¤Ä·¶®½ X¶:®®(mª&4U`Í[¥ø"Ÿ?¼~vóü©ãæ67¢¥­¤pË<§1\ +‹‹7‘Ë€¡N@øÚš¯r ß}Ê4ÛF7¬ß¼çÖ¢ÛÌòưÝê3ûÇéžÖÙÇ£aÃ.Ó÷¼Ð³Õ/kˆcÞkˑ御ó;ú{6uH4bß‘™ „jì–lŒ@tjiÿ¦ ]\›t]™Ômãî)Îi(]iÉ”Ý7h5gfÓˆ9ÍÝÜí|æÜË/c‚Ëp«ÙLU§à(«=¨ò²jƦ¾B¾û½€+ß~nŒª¾†Tîµ$J)¥Ä¨ùœ)Ïæ­Ûn–ž‰G~÷”ÎðlZwµ:ºU§SkFyŠhûN^ºÌ`ûïëfÿ/@`èÚ8`”¡ 2áQåܘŽ]Û ãþº3)Ÿ;·½`ÊWu94€k߯—ùõÕýÖ§³zN=˜7̧ü&-¡dbEËgHŸ · é· tÛlÞÓS}p0øþ§ôß~ß8eB6ð̼—Îíãȧe¢-—þÒÿʘøu¹Sê?gmOÎ¥À7vë2sv+N•6¨<ø÷ÕÓ_fžçÎâ)¢D¤Éùeóµ’ߔŠu~ÿ}Ñô­EÀ3túj’'hL°jb¨z‡Èʆ%ü:jìj¨�$—[Ñ3$VÍIåjÓÊÝÎuúaNâ²M?9%Õµï6l@ÃèÃ<ªáꊾ\f5T`MçË£UÇÑ£Ñw+{÷ð6ägAm᪦€C8„¨SÒiõGtŽê yFl¶¨ÅÌŽÜâ�„��Ǹ͂“C• -´é:×ù•5ýFv\°£ü ˜ïÚ°Tu× ]Flÿw„Ú±O5iàY¹‘8¦â>ïÉGŸMVŸ$©F©U»àŠg¯¡ò˪›¦ IÞõ^Ào«Ÿ¾õðð¸vù¤/9>*¬ëàUËçOÒ7¨óž†-òsüèM¿µ3x—‘ÝÌŒÔj¥M¿{ÔÔK_oø£{Ý·ùÀÒ;OT7³€OÃ!ï!Ñ êµsU_3Î'êêJIJŒíÐí›*.¢ÒÜô7aûÇ~µÂhçã†Å7œäÅŠ¦-ÿuçúkîÇÊÀ{MÃù{Mͬjyó™‘Ú¤eçZ˜ñÖí».Ø~(89>üCØÑÿ¸JSy~vFÔ…?/H|úêãì$òa¡y—/eÚ5v6„ÔÃëŽ&9 mnÌù’sœwcT½ÞÿÈìúnØØÞo8¤¶*¾O žþ<ðçkr³Ó'û‰ñ¦B>4l~ô‰Õ[–¦K„V¾Ý–NëhÎý¢3¬ÓfRššó|§Y÷g}Ü´} i@PÆjŒ–ײSG?xž,†î<8ôcÿëÈçë¢ë=|ÛÁáX†òƒßµDAPÆAe AAjDù¹1‘¶8)1ö“Mî§œ6Ì,ºÁRûÀ\=P^Æ2Ò’«~7A䣂ÍT­åü‰½UÈX Oï ;˜-gå_°G8 Ç\lÛÉ­¯‡Yc¬‚ Ÿ}oLÁ³Äû?þÃÝÂÇÎÄ¥øk._*äôïÇ0ÀÔ3kˆAäK±KáÇë[4¶5q´0°eÈ—¼ „¥l\z8çž*ŠÉÊËÉú’~S•F[WÏÆÁÍÈØ ë:‚ µHÆR³¬M- ì¾l �áXÚǦEeä¾1q±âZÙÓ/h•0™\ö�PÉ©E2FXÂe8†[\À! —Ãe€!äré•79K�,m_¿ CC¤É—pÂ!µæ­2†p¸„û¥þ~Ãprs²°®#R›d x\ÂcjŒq <ö ý-V.£øC±‚Ô2ã2 —@mù&=Ãp¹ÀÅ_SEùüpM½1á¼ý&OÜÝÚ£õo1òrûlË»5ÂÆwò­Âê\Ì#<.ð*üüù—³aEG¤–Éár¹<ÕM{iÙ€ÎîuœÌ ¬íÛvºþV”»Fu#Š~0 £ãÔ©{gw1F¿½y½¶›âXÍßÓFR½‹¹\—p«VYâ¾íºîŠ‘”Ûÿð[ÞÝI-¿šý ¯š×cEGäK…«¹7Æ/3¨X¶¦ç˜MüþK¬ôµàç¾¹ñoDZhx$Åÿ¶œ³¬e™?�òY*P¡Qá+zc¥§hö¹1=f«\dÐeÏß#l[´kë " u��J•;ER±§… öÆ4È—Ï᫻ɃνÔë±rþ°vÞînõ|;ö¶òÇV<"Z×Ä¥ÅÛf¶pµr±rí=çX‚L €€r€qg+׿ÆÈHþÅí~ •„Ïkmihoâ0ëNÊàž4j]—Ö+O¬ØÆÆÐÞªÁÈ r²ƒwiêibh_¯ËªéTq%Í~ºmôW®Fö&†î{-?/WžÏ¸¿®kkC{Çî3Ç€"æ¢×'æ öµ´71´wi6qcP[vP‘ÏásËRªºQ œÿصi¿bÛø“@ÜxÔô‰þ ¼�(Ðr¡>ØV#ëXÑ©•2LÉÆ[˜ ²‚/†dÈÕóÒç[ŽÌ;~wµãٱ߮ ‘/Ö'ŠkŠ÷Åí÷_YäÎw[t=!ãuÊ«5þZå£ Û¸þEÛego^äýø—#‡Lè³èÐõó«¢7MXþ¬"O9>fм —¹§.ß½¶¾gÎև2Džò÷˜o—E6_séÆƒ££¸Û—\Ê¥a³¯Îì?åšÃŒÃ—>:»¾[úÚ>“'PU» +?À›;;;º*6[#¡,ñ¯Á{ìy-U\@hñÅqçÖÍüªM;/¿v-.Üù(S^.6I̶¾úlÿwÛŒ!MüÚ5î>÷§ÙÙaGgèæå×®í˜íw2dŠ+Ùì°?çiåßÎ˯K—É[.%*‡-ÙŒàmÓ7ñkçÕqü/g⋊{cU›Æ‚ µOÆx\®€R²qŒ–.íR°¶‹¹Oó.£g,;” !@� 8gr3#ð­:ÏœÓ zÏŽÐ"eÔŠàªûбD¨ـ�ˆÛÿ¼rTs·&ƒg ²M}¦7}ñø€úî{Îï’~íN’”°ñç6^àö]¿x˜¿£ƒG§ï·Ìt±wûã6þÜæË¢oÖÏïïmcÛ ûÂ5½ê%@hò…•G„ã·þ4ÐßÉÆ¶^àôeßYÜÛu)M5 \®€ ¼r} @)­ÐPžTÙg³n¯ž¾à¾Å¨Õ[OÚ¸°uæöiKN¾‘•d/þú3Êwòîÿ­šáöÛÌ¿[RoÒÊC[¦7MøkÞŽðÊRyÊÙ…³VÛLÜ¸íø®ÙóŽOûîá…,•§œY8oÓk¯y;vþ³®'çè¶[ù52 R«dŒpùŒ l?IËùÛ­coŸÛ=g¯^ôÙ]ô\ù¸€àZ5´ÓV\Æ1tõ4H“Ç*bfTzcjöËm�\ˆöÚÊþŸ™˜oæí(f€!À›‹I~F>ËHãƒc‰C@=Åy†oæÛÄ8+ôyna|pãফˆJÛ¥µ›€�0’˜»‘Ñ«š:XXÕmýËóÂŒØl™joŒp —-Pɹ-šuòiÖɧY§î;cŠX–�Zrr_–rë÷ƒæêâaijj×bð¤auŸ J“—è43«‡§£­{·a-2#u†ŒÐØÎνՈ¾6™÷Ÿ$IXiÒÍ=·¹ßëîaaáà7úÇ!ޝOíË—&Ýüß]Á×ßììlbæØrÒô¶F@V×4VtA¾TÔ/ñàOÀ‘ TäêÚúÚúœ4{øB¿Ž¿®¸3~· `eˆbi"aer DyX2ÿTºO�¢<© a†ÃQΫ1 †Ç0„0�”� Š�˜â(éÝ1@€áò9Œré‡Ï#Š8)åøl ýg€‰Æ·¹<xTu‰R�Âñ³y’›�€ëšphwÁŠ/¦”ÒÂøg1… O†|½]%N«¤)5ä•F¸¦îfBJ)�£m¤Ã«ãn)J)0Úu´IaV¾œ%G$€Å {Åyà¹50È É- ‰ŒÕ0[EhÚøØó®U×4‚ Hm“1.pAekü¦Îu 03OF €,úzHÖT§º €4éîÝ C;±B¹�HñZÁâ}‡ÊR¢f¥béÚBÅÅ%‡ <$ˆÀÒÇš^¸š×·•.�HïÝIÑóqÖ™{YÒ;â¤z|�(J~UF@„Ö¾ðÏß7Óû÷4Ö¤cŽ üëÏ”R ±™““½vÉIyÙù0Õ}Æå§C+»•Í“ê"F– „€bÖR @PL\Q ´8*� ”²”%��ʵ,ÈÃ…’Åó —)^'Y¥iAZ7¨\G¤úf?<¬û¤å{Î=yñäö‘¥Sæ>àøöðÑ'„�Hn-šµýnt\ä¥5Ó—†Ùû¶¶ê{cªû\=[ nÜÕÛ‰éleoz•;T$—á›Né Ý?iîÿîD½~v~ùØå¡NÃÆzéð-ºLl‘¶}ÁÁ„¾:´pû+��†gÖmî�ñ…‰#9òèUlüˇ—v.üqG„L5wŽˆ åßS¬§¯x’Ÿ,Ù癸ZAôùà y%/o)è—R @UדP ”åÖu4ƒ¸ —ÊÂ$)!Á™:ŽV"^]H~–T¤8_ôæyl¥Õ4sc‚Ô>ã xBÕY+޾g{·Üó«&¶lѤeIûrÚÿ|ô¯áv|`ðݧL³ýgtÃúÍ{n-¸ýÀ,QqgK\uß Õœ™M#æ4ws·ó™s/¿Üô”,n,î„1*‡€!ó^[Ž,÷ ßÑß³ù¨C¢ûŽÌl dÇ¢ïÖ½a}k;;ï‘ÿ6ßR± ’1l·úÌþqz§§uöñhذËô=/ôlõ¹ªv<¡š¯xP�P#m@ËïC¿Qµn¯X¶ébxLbRLؽ£[·Ž**–‚jOŽP(YIH)JY–1òä+;½rëñ'qñ/‚¶-ùó¥UÇ>Ž|¦Žï�¯¬Ã[ÿ*³±g¶Œ€êšFC¤– *2„á2eæVˆN½¡Ëö]VáR �Žq›'‡.R=ϳs#qLÅ} :Þ“>›¬nhÏyÖýÄY%)³~óÍðûuzŸNë­<àè7š°ãê„2S§ÅœÃç”Ï™®ÜÚt¿¿ë|Í^ <†0忯Jç¾ÊŽ4O©ìmßÉK—lÿ}Ýìÿå ]ŒÒ!e"„ÒøŠV<"ßÿ”þÛï§LÈž™wàÒ¹}ù”‚aûïçÄ/ß8¼ûn¾¸®O`·†O�TÓ4‚ H-“1ˆnÀº#åNrŒ{m9Ыâ>�ðê¶þCËá•xÚbè΃CKêvÚu¦S‰1½6K®¶)Ñyç¾?¬éûC…g ½ú×l.µ0¤wuM#‚|¹0èA¤÷ÆøNª#‚ ‚½1AACAPÆAe AAÞ?ê—x™ÔB_$%Æ~Á¹;b/VwA>;ÃèŠõœ=M-k ciɵÍSº}ƒÕAäSƒeٌԤà;� VɸøüŽ ‚|â4ôxö¸Æ2†}Aä£sþÄ^£º9ÙjÿŠK<AO†áhúÊ9Ê‚ ò9+º�AACA”1AACAPÆAe AAPÆAe AACAOî»fYylÔó¨ÈˆÌŒ4�Ð70²st±²sa˜O[e±[[7ÙÒûzÐw<¬‚ µ³7VXåüñS×6_ hóÕ�—gWÏ+,È׌¦íd¤£gÑóp²\y*÷ò`kƒng³±4A#c,+¿}å,OK¿s÷ }›š›[š›[6òmÖ¹û ¾¶Áƒ[Y ßp��Px~áÆÇoi\"a±äA·—±Ø¨çR¶yëN<¡ÖŽÉ#w¿¹ûÅŽÉ<¡VûÀž"mݸèçšCsÄ£Zgìøñp¼¼¢Fe=Ü4²µµ¾‘ŽžEýî þ‰“��H^¬hdÖhþæžuõê6Yvjq#³&Ë­èßÈXÏȰþ€5÷3³oêg«£gd×ù—+iŠˆ‹Â¶Œ h`«£g¤cèÒbÌÁ¹‹Ae ¢"#ìëëèèì J9’‘](Ï.”Ÿ ÉØ”Bq®ç“U™UãŽ?M¶¹¹ä×»¹eÿ O:2ºÇ¬Û®?zrc[ïÜmz¬zR¨ø›$|óáô³±I7'9pA²auDÛ5—nŸ\áý`~¿A}§Þm´øÄ½ ÚG¯µìq¾¢ßƸ ]s<øÙãÿüèynŸùwó°ÌAPÆ22ÒÌ,¬ànTŽêyÅ¡‘±™¦ß7SBn#ô(Ø;ﯙÊiYü©_Ïóúo\1¼©“½GàÜ­?Ô{±ë÷GÊ™6q·…³Ì WK›G�Äí—®ÝÒÃÝð÷CìRƒõf¬˜àéæÛûûñni×n&H@Ô`ÔwC8XY¹4ûfé²€¼³Çà ±ÐAj½Œ‘ª/¨âưͼi.—­º‘U:Ð'‰{CÛ×ÓUæ™5ñ7Î|ö"K�À³ô¶–FÀ³jd§��\±¹˜oîã¨CŠH^zž�ä)×Öjæb g¤£gdÞûLVz\– A¤Ö˘QB| �øÚ骞W¦¥$êˆõ«Šƒç0ta?84wÏ+IUI��‡Ç¨ü0¦ôτ᪥�À¦ž×e|ç w^Æee¦%ŸêkÀ¡89† ‚2¶Ž.QÏŸåææ~ãgܱžXÈ 9ë|ãg �ÏC˜[ÙUÝ¥Ókúýl¯ðÕË.e(Wò­ÚÐÈ‹¡Ê3iâÛ)úõôÞ.•’¸;O¥^ǵs®#âYʳР9–8‚ Ê€•³Ï¹~錴0Ds“íC¶uÑÜDÀeBÝ,,ȳ´u®F4\Û  Ïo¼^ Ð1®yà”’}gï zõìÌ’1KBœ†õÖz»DòLêÙ0/N\O”Íøë‡ϰ¼APÆ��†Ó´U'¶(ûæÅcIñÑ2I‘LR”}íÜ‘„×/}üÚV÷C:fÌmÎPŽõqL{m=ºÂ7äÇŽ¾ÍFÜt†§ð-óÆ1ë¹iM‡Sš[»z¿ì5í+C.–8‚ ÈÅÛ·ëB‘VËö_ÇF=yx3'+�tõ Ì­ì,m+Ó0bØólrO•X>ž1XE õŽßquü޲¡øN³î'ÎÒpȱ~óÍðF½N§õRì m¼=hcI¸Y•ÉÑ7Fcá#‚Ôf�†al\m\Ñ‚ ÈG¿p ‚ Œ!‚ Ê‚ ‚ Œ!‚ (c‚ ‚2† ‚ (c‚ ‚2† ‚ Œ!‚ Ê‚ ‚ Œ!‚ (c‚ ò9òNŸfYylÔó¨ÈˆÌŒ4�Ð70²st±²s©î¯´¨"‹ÝںɖÞ׃¾sàa± ‚ ÿµŒäߺz¶PÂÚ;×÷nf � q1!!Ï^½óoÕI(Rÿ[—íôŒ‚Ôœ6Ÿxùl§Î}ººëb÷AùÏeŒeå·¯œåië· ì¤£££Ô"sKW÷·®ž{p뢛.jûd[n\Ê–@þý§Ä=²µ[]€š:››ùüÚ A© oÙù‰z^ e›·.Õ0:::í{Š´u㢟« èàÑÀÛ«·—§“!h[×oÐÀÛ«·§‹7nksó†ë^J@òbE#³&Ë­èßÈXÏȰþ€5÷3³oêg«£gd×ù—+iòâ.aÔÑzx˜éèYú»öVº‹Ae¬J¢"#ìë—Ó0„çz> ±Qï–0IȆÕm×\º}r…÷ƒùýõz·Ñâ÷.lh½nÔ²Çù�Àf\œÑuÜU§ÙGn‡_ÙÒ-mEïQ% !‚ ŒUEFFš™…µ¦¿›ådg¼cÊÄí—®ÝÒÃÝð÷CìRƒõf¬˜àéæÛûûñni×n&HAž|féaá¤m‹¾iêlcëÑeÆšé–AÛ/¦`¡"‚ÔÞrnŒT}y·„ñ¬Ù)V‰pÅæb¾¹£)>"yéyr(оý¼ *Èßl™J0ûØ �S,WA”±Ê000Jˆ1·°Tû×´”D±þ»%Œ0¦T3 ÃU9J�(K9 ·„ždŠËAj)o)�¶Ž.QÏŸåææªýëóæVvÿuÒ6M!ôÈ­4‹Ae¬FXÙ9 ùœë—ÎTT²G7 ò,mÿë¤s̺Î(>?aØ‚#÷#c_¿xxaÇ‚9ÛÂ%X¨‚ (cUc8M[ub‹²o^<–-“É$EIñÑ×ÎIxýÒǯíÛ|ȣƉ0h·úìþqz§¦vôªïí8uW¤ØZAjoÿ¡H«eû¯c£ž‡<¼™“•�ºzæVv–¶ÎÕÐ0í–Dç”IˆÕè £û|§Y÷g•ôº,‡ß|3¼øˆõ:Ö«øH`Ýuþ¾®ó±APÆÞ¦OÆØ8¸Ú8¸¢AÁ!‚ (c‚ ‚2† ‚ (c‚ Ê‚ ‚ Œ!‚ Ê‚ ‚¨‹.@>4=%13ýT* Ò0'ÌËɪäBˆP¤]×ÜZ¬o„å„ (c¢†ô”Ä´ÔD±ØÇB>¤é¸èÈz>Í*XÊæåd'¼Ž b}C,,ùŒÀAEä‘™þF,6ä „XÃJ„ª’ �´uÅæÖöoc°¤{c¢©TÊã >–uJ«ÆiëæçaI!Ê‚¨—’Ò+驿€–Høj‡ Ê‚|ÌÞ˜D"}þ"Šáp]]ìyWGÏ›Ïÿ¦Eñ‚îÄÒrûÈ{GžùìæÝÐÌÏò×¶)Ë*6‰Dñ²¾‡‡£ƒmÄóW2©¬äO”ÅGì½Ø¢ôèȘøôÂêêÛ;Yð*"<=‘@VXÈh›‰………yq'˜x7¶O,ƒò¼7‘‘±ÉYEr`„zfõ<lÄ �•eÄFF¼N/` _lâèbk"ú28ZzNn‘ü=<*°…¹ Iéù2_KÏÖÆ@‹�P6'íM\jA \‘®……‘ÿ=`IoìydŒ›»;ŸC —ØX™GFÇ»8X—rDeì]Ú¶¼è'á¯3·†Þu´¹ò‚¬Ô7Ù„/â@aÕ-'áØ:Ö�[|)è‰øÒB‰üƒ<îÃTÝà²IOEKêÚÕw©«Ëeós%:Z"¦(??)âIŒÄ¢žŸ}þ 4D ÓÈR¾ØŽ%•d¿ŠN—‰ ¬…|ÂJ$,‡d%¿J‘™›Û ØÌä711ŒÀÑPë…¬D¨Ü\ø<FRT��ZBž³£ ‡ÃH%2l eì}µnY©\³& ìä’Â"¹–ØÊÞá2´° ú~p²¡•ANÒ›\©œ£mæàìh,(Óa¡EñÅ™xùZòÒC½È£véL�רÇÏI)ÓxýòUBV \m#G{+=na\ðxƒFmtWÊ2žÝ}N}<êðÔ]Ï#lAôÃàd#kƒìĤ¬"–ËPŽi£Æ¶ºÊàéÏî¼�׆õT,ˈz£çÚÒÇ^$Ï—Jeaå,[˜›Åµð«okÀä™;Ú%EÅÚ¹‰$,UQø¤WáÑ)Ù „«edíéj*b@}Ú”y|õ*1³@ _ÇÌÑÕ©d¹ñ‘/£ßäI˜98[ ` ¢¿©cW'7>>£PÎÑ6srq22�Tš“^Èò´ÍmMØÒ”¼T“’š<­ä¼ÉÈÕq3ÓQt³µ´”ÅŸžZÈÑ77×0�&æ†Y‘é)yúÅEòzc —ÉKE‹Ê$(a‚2ö>!€‘e§e勘ÿ³wÞñqçÝfëíõ‚Ãá½A°‹V¡dI–,;®‘—Øq‰b¹Æ‘ÛqIâ&'Š’Øy-KrbDZ;¶eG]V)RI$Htê¡^¿Û>óþÀ»#@RbÑ|?÷!q»Sž™Ù›ß>ÏÎî’…)›¦€�g'bÁŽ­»ý6}¦{ï¡‹sc…pªKæ’D÷nSã¡C“W^^cE�@T%YtÒˆ8Ò“.jêh Ø™ÔD÷¡î!ikcQQ±mx: NP0€‘œŽw[Y±EŸ›ìË‘ÞÏ,˜-iß¼Ûïd•ñýÏõÍš.VÅ„èñÆwð�� �IDATé(òm*ó[ô¸bóÿLÜ´Vš{Ÿ˜LhŒÕSZ]S呉)Œ³ÄÍhU7ku‹Æl ³v„ç%ÊôÑþ˜½yK{ÐÉ™x\—¬FNÏåj‹ŸÕçûwÏÛkZw”{-$‹»ÈeÇ»»ûӾ歛yüð¡#G„훂҂e“ÑÐÆŽÝE6-Ò¹çȨ¿¨Ñ êLï±aÙ¿~gS1›zµkÒD!�"Oå°DQÖ˜#Z<ƒE¯g1#J¾@QÐÎÖS:²Ú…EÕâD‡c²IìÌYúct "…r©rá]}á=õµ~sàŧž}ygOïÈL\;9qæº;()b T;äñ)̲(o”�!€•D&ͤ2'b’D†gØŠ¶ ÕE Ĭ®ããi“¼A›29©2,0âS ðVñ†&ÏçL¿°Æ+ii:-¥š–ÛˆŒËÀ Æüd‚-®òrº¾4jh²ARƒ#zqó¶Ë¶­óë#GŽ)ˆšAXIDØ0 � Ξ5˜%ë舡Œµ8ä“@ĺ<VÎ4qž¶°z4<ƒ‹7ln)uŠ`ò’£ØŽLe~4ŠJ6´×I<+U4VÙ3º° |°¥.à�5‹ì~JÎéVŽÅ˜ÒÖ¶*7Ïr¶Êú€¡Ü–¬M%LC5AžMa‡¿¾¦$dÓgF#…€i˜„áOž\1 ¦ŽÏ^‚–®ã(ð¡3…B½±s ¬Ö`ÃŽÒ&%“ŒÇæ§'N×lZ_)�²¸­¬žULˆ³Ú8-!·æ;j‰œÌb9±çÑá%­YÌù¥¢ÛàDD®)ãÕh$¾~ÞTÔ|é} �²¸¬ŒžU ˆ÷ݤo4ÕPoÓ¦&“\I‹—3²ú’9˜��¶xý††bFÉHõS'fIU`AŒñJŸAèøó«?h›êzò™ŸËãõ–»% 8mˆOË`¯ñ †×E§g’2Øj=œ¡Ä “�gu z2ËrÀX"Ò³†‰1<c¨&‡Ì´özkÈiÃ$ŒÅief€±m]+,Yó(�0v_™Oâ�¤âb%5k×ì9PÔ£P¨Œ½ž‚MÑê:¼e¥ƒûö‡Çµê&´0aóø¹9&�É}?„ WÛ5»Ê—¯aÄjBôÛ†"“reY|:†¼›|¼©eò¦—3�1ˆ7‰s—ø w4ÑPŸJ ÁV7cÈËÜÄò" ºÓÊYEÓ p6´ŒÉI™ŠF@Xô¼8‰GK—x0¶ªÛ‚r6:73=r4<lï¨ræ±MŸ^ôzr¹IË6‚˜!‚—ù=ˆ� ÄÀñ.GˆA„��›Ã7»–°Ãò èŽ]üÊIÌêXŽEX?y± k&°<ƒÎÅ!Eí •±×YË06TL0Ï‚©Vdy.©—Û��ˆ–H¼×Æ¡|gÙ OŒÈ±YœVGæ³~ÇÊuãHðmáÑÉŒ=™@¾^^7T’7ýÉÔñ­¬#TÌv OZdY*«p‚º²FòZQ4%¦…��VÒ*ð^žáí žœÉ`ÇBØ3SY—Wbpf…¢d/­ö–Wù<{tÚhòJ¹m#Œ]‚ùé„î—–6Ü!ÁØ\Òð‹��DMÅ5ÎmÏ{+#ÙEˆÄeÓ`Áج bK|ÜZá#Þ!¢”j`X� ºl�'1À°žÌ¥5ì�0Ô”ÁØ$ö\ÈõÆ(”K“ îÚQgtõ‡§b‰L6“INô¤«ÄÍ#�8vìèdZVåèèÀpF*«t3fž³lÄŠ"(³ó)U×åN†à«°3CóYUåTlrxx"K÷mÚXwoù+Š8CŤ`úSúÓQRÄÏ÷…³Öò2'èÚJãà//b¦wO¦d9=W­åeN,%å.}´³o.+gâc}#I1TãcÍ%­33‘Áñ¹xF‘3‰èÄdŠ6ÉÂKE9mC‚·*€"‡ºÂ±Œ¢ªéØìDTÁ[áÅã=‘”*g¢Ã½£kiµ›Áyô‰¾r·6ÒQ¬L‡#ò‚%éÉS-áXH;Ø3»ª›ÏçöÛPjn<¦*ªŸ™ŸÕyŸ[`à+²˜ñÙɤª(òtd>Ë;ü¶sp”~4ðÒgS(ꈷùìñÈXX6�kq×o^_m%r‚�c¯©·NÛT!¼£¬uK“›é|÷„qžª ÷±#/<+Þ´£ÞuÂoCœ·nC›ut°·sH`‡7Xo³òHÑ1ˆÞ€£o Á—Vø8S3HôDÍåÁ—X'†ÅšR62fŽöùj66Œöö¿ºOÖâ©lokt#ƒ-Æ6c¸¯ûPØD‚+غu©KC’!u~ìðl�0g¨¥½Ö8Íæk‹¯nC«8<ÐÝÙo#8‚ ~ŽgüëÃýÇu`,žÒöMÍn¤Èù–P !ÐØ¢ î{AE¼è.)õÄ'�brZ‚ 9•Èøx‹ªzú#Ïî«+™™ì1á¥âò@‰�ï Ôè3ã““sqVGe…ÇzNn_?î&æ–¢W|¥P(TÆÎÞ?´k›Ê[$žãï&Ɔ¡¦ �ý ›|u¬Äs C—SJ;vVÙlÈH�Oþ ÀÚC¶×ˆ’•e–/¸�Fð–5økÛg�ÁØT5™��Š7]Y.Ùm QOÞq;½¥jóeõv iKgm]5OCÀ‚çví%5[*ZEQ`�ÖõlJ3 Î]Ö¸£vÓBÄTÕì2}a¬%-íU¢daY-t‹œÖqþ¶0bQÕº’F« ð�ˆa(i“³…ê7V¶ÚxžE@ˆ¡ªY#iYC{ÃŽ]‚ï¨lÙR'ÙxÁfC8’ 沄q7n»Fr[X%£®j¤%¯¿Ñë?¥‡¿¤Ù®½üã26:1[ ,€tF™¥šê*U%Kç …ÊØ9œrLCIç½'•èZVÕ–mÂz&ªçøˆ©(i%OAØTSrÎ «rR]]zSOŸ¨Ž˜º–™ÆÞ6¿€T1O°––µµ˜´¸_Q3ÊÚBLCI+rC—º\ !�ÄÐR±®gã'w© 9sZBL9va¾éäÄÃõ«ÊÃs!¿¦)‘Ùø–-[RÑÈy|ô>…B¹eì"ÅL{éè,–JZ6]MÓ -”Œ-FYªÊŠÃcÓ&67oÞœŽÏBNì¥P(TÆ^3)WïB‚u¯ßu…Åá`Á4ä”IWÆ]P2Æœ*žªò€ÓS¬¤£„ॻ( •±×ÖßYøº�!º’ŒÒ£*Ÿ”rÞÞœ¹¢^g•ôüŠíçÑ< …ò‘1ÊE Ïóº¦ ¢å<ÉØé].EN[$) å₆S(¯no •Œjªr^îDF Sà)rf~f²8TIGŠB¡Þ…’¯¿�âÑi]×áuÚPOWA_ Y$[¨¢ÞéöÒ‘¢P¨ŒQ(¹ÅÂëzýAÚ åBƒŠ …B¡2F¡P( •1 …B¡P¨ŒQ( …Ê…B¡P(TÆ( …B¹@e csdðØ3=ðÀý÷=pÿ}Ï<öÀÈà1ŒÏë#q±í uÜ5¨Ÿ“dç­ÿŽÍÁwô ¥P(”×BÆ9ûÌã¿ëîî.©lºê­·\õÖ[•ÝÝGž}üEÎÿö&ýÍõ>»kÙçõ#üƒ¡­ß/VÄXÞòž›ZÌkZ …B¡P^cÎðögŒÍŸy”·¹¯ºáz»Ý¾°1*kjiÛûìcö>¹ãª™¼GÜŽo?ô­Öã_m¥å¯÷mØŒïÊ/ÿË•¯k•XÓ@h—B¡P.�oll¸OÖñ®+OjØv»ýÍ7¼S²9ÆÃ}…ÄÓS»ac[ûâgCƒ_@�8º÷Ž÷v¹|öê«?õã¿£´î#/d@>ðÙ†Ð's¦Ÿ¾¥¬ñÖ³�ê±»o½º­ÊîòÙ½oúø;Óžo”zìæí_èV~¹ÃãòÙ«>±7¹$¨¨õß±9¸í»¿ºãæÍ~—Ï»þ–;_‰'^ýÑ·WÙ]¾ê·üý3óæqtø7_zGkÐgwùÊv|èŸ÷F͵ÄûïØÜüÕÿ÷ù6»Š·Ýy¸3ÍDþÍWÞÝVê³»|ÞÆ7úw‘e±DsþÉ/íò×ð§ƒ*챟~êʆ€Ýå³ûê:Þwo¿Jc …Bel ôÖ4¬_¡a‹¾B ë6MŽ ¯­DsêW»ù›ÃWýû3Ž<ð áÇßx"MNãÜ0¼ówG^=ð»á•/¿ç«/åï°ãºû÷}wØòͱÄ|:üƒÖ ´îïÿSïî;ŸzñÁ;Ú|õÿô½Ÿ}ió7ÿòßsø®~çÕ,�àØ“Ÿ¿éÖgë¿ðë»;Ÿ¹ûmów¼û£÷Oš§«Eëùÿcù«GÇbS{>YMrÚŒ£O|ö-øÜ|÷S]G^yúßÿ|ƒmÉÓs™Gn¿áæß¶üÛîù@­hŒüì#Ÿ{¢æ+võtw?ÿ“¯\_&ÐW‹P(”70gÌ‹ÅæÛwVäÛëóSÉXþÜDyø=A׉¯®›:üʇþíiû‡þ»÷¶[ªþî®—~õ/ š µ}ô3m –¿ïÛßyôOÿ®ç[Û:Î4:é|ó·ÿùc—;¾øÙùC׿þ×mW{4ñ/ð¿?Û3©wTÏ=òíÿµ|ò©x_‹��•Ÿ¿ó¯~{ŽOÎÞòþ’Âçη}ã W‡D�°97~ô3O±yãüƒßþ¥úŽŸßóÅë<�Ê«Û�@ë�Ð'~÷™ÛþâÙíwÿá®w–ò�`ÄG£\õ•×lª ²,©l¡Ç0…B¡2¶vÐéH²üÚâ‹ê$­óà(Sÿ…ÆÅmÖú+›,¿*ì¾Í>÷¯Ÿù›>|dnq=…tcÂ8ãñ囫êæœ!§ÚTgGÇ¿¡L4c‚~±OÞ·#ø%ÙjÆb:”ˆK.k¯´´Yyi4~¼Ý}J—iG¾÷®2×ÿdÏ¿¼3´Ø0KãÍZ÷ã¿lmÿÉ ×]ýæo~×56êŽQ(”7.gTôx|“#ùöÎÏFìNw!ñ\zm¬­¥ÜÆ�ÉóêËÞÇK&��xîá[oþÞÄ[¾¿p<ŸŸ~è½öl^c…–9)шá–|ƒ…‚ &lÇݽ³éÄü‰O×—šÅÓ•ÌòÌB Ön3ÚuMmêÙŸ?6¢œôB×ßþØÑ—ù…·”FŸüæ»6lùÜ“1Lc …BelmTÕ5÷I§Ó9÷öu•W¯©@¡¼½Âì²wq¥~¶ÿÙ…�� «Ï ™hvaª6bƒc �ÚøþÃúÆÛn½¦¡Hb‘1{ähÌ<MKYä,îi+·ÕÁÑ_ïÇgZK>›ÅÊ­µ¨÷¡CñS$õ^þ‡~zSÏçßú±_Ži'ÏÜÍWÿéç¿sß/ÜsùÜoÒ%Óã˜B¡P[åÕ }þ©GNU²îC{9SVÕP »ìzµóÐâ§ëèD–)½ñ¶+SÿqÛ×~Õ9:rø·_ûÌÏ'Â’bÅ•»œGîûew–ìÀ/¿~WA�ÀÖU2ý¿>¢ÉöÞÿ¥;ŽœÆbÎYQÊŽ=û±ÈÜ|,s÷³Á›¾ü'ÎÇ?ñg_ÿõ+c£ýŸ¸ïësO¶úZòÙÌßúÅ÷¿ýøÇîx¸kx<ÜùÔý÷=1yüÎ3¶ä†ï=z÷®½·¾í³M�òáþí]¿~áèh$2üòCÓKZ<=Ž) •±5fcØW\Õäž'˜ššjhêÔDø¹Ç~=9:¸iûîü7�1^üâuWì~Óâ窷|ç°Âß{Ï/¾Xù‡¿¸¼}ÝÿšùàW¯Y¸8¶í_ýám¶»¯(- múø [>µÛŽ�€ ¾óßï¼¶ÿӡЦö?½ñsoõžæª˜ëŠ/ýõÎÞ/îlj¬l¿ý¥ì´ÙsÍ?=ú‹[]}öºëÛÛoøì8+ÜÌêkÉk3ã½ö®‡ÿãfí§¾ªu]Çî[ï;,/¤òåïþþcw¶üߟýÑ—Ÿ™Qˆ<øÍ÷îl¯oÚ|ã‘·ÿà§ŸjèqL¡PÞ° ÖÖÖçž~ÐÎOO »éýÿøÛ?ríÛÞ÷øïvâß™1ÆcÃ}‘ñáT"�—'T^]VÕPPÃVGúé[?jûŸÎ{wÙè Q(Ê™¥’ôøïöµ;î½éë÷þªsz¢ç@í±ßœÕÓ3†©¬mª¬m¢½L¡P(”ó}6…B¡P.b¸ Ô.ûU¿˜ ÃC¡P(êQ( …Ê…B¡P(TÆ( …B¡2F¡P( •1 …B¡\äp´ (—"$:‰Ggt] ¯gÅ<oɤ „,’­8Tátûè8Q(TÆ(”Dg#ós§ÓË "B¯ë‹lÆÃë6]VH` Τ’“£�ÈéöÒÁ¢PÎT¤\‚Ä£3N§W-¯³†ª�°9œ¡Šš™È) …zcJt]çñ|ÕNVñæ;ÉæP²:R •1 %·”œ?ì„7¶ôkVV�À*YÎ@í( •1 å|zcš¦÷õ3,×ÔXó4†O¡œ{.þßQ'ìÛ?®¯2Ë¥Ôü‹ºÉX¿²ïåIõ‚ñÂGÓ´c½ƒë[[ëj«zû† Ý8±ël^DN¡P.to «ÑðÀÈDT6 ÎâpûkêË<|¡â]’h( cõù^Ÿ$*Š’?øêd }K™xJÎ%ÉTs5ó’2720§Xë¶´•KÇ‹$Fll w4*c$8uUé<œ,6i[ˆ²¼ùkmò*'l%'ŸQCD·$¨Švާx=ŸÏfÝ B¨®´X8)8©ù™ñ9YÅÀIŽÒRŸG8í8áõ Œ4·´,Aª, „'k+V„)Ê%'c8îêe‚ÍíE6Δs3I$H,(æiOÔ頻+OŠD—$èŠfNvÚy L$z+Jb½}Š`wñ$©c� Êto׈Vºn{µ‡Ìô8Ú-Ú7—ÙàBñ(N6ÍM>£ZVú$À0èèBâmއ29c,Ý¡%¦‡fM_(T#âøôÌÈ#Öy­èìë[ªæ¦Zg4U�«…o¨«dYF× :ïP(—²Œ-1'sÁmm5>SSTÓê,¯ñ2C9üJç´·Ü“ššIë&k Ö6ÔùÅe¾Q'lÜZÆG»õg{ê‘c�œÓözsj2 Ârø`çLQuQzb"¦˜¬-XßXï·,w©K ²‘·¢T¶ä“:€•ÈX‚+ݾ¾ÊƒåL¨®:²ox\©n–4¼T,°2šLÈ8›¯²®¦ÜÅ#�¢'GzF¢ æm¡ª€:4Ê­ÛÜâÌö½t$S¿¥ÝÇ�˜ñ#ûú¹õM.”™è&ç(®hª+±³ùzÑœ_ÑüméW—7Ù_[œWˆè©n©¡ÙÞÞÑ™ŒÉ»J×µT,ú¾y,Ï[ËֲثӾ O22•PÅʶuüd_N›±2ŠÄeÁ¬kª_z1¢ÃGŽÌXêÛƒÉL õ„g“ÄY}šJÖèñ"Áå)À²1ÆÒC-:§°îPÈ%2�71͸+ígëOŸ¼6fªi,i–F%ŒB¹ôe ±¢ÈÉùDVbÈ‚`Ó4�0�àìD,رu·ß¦Ïtï=Ôcqn¬rGØ|ë65:4Yqåå5V�DUÒ™¥®Èb N�œ™Œ†6vì.²i‘Î=GFýE^´ÒkÁzÖÔ—OBf&¦0Î7£eTÝ ¬Õ-³1ÌÚ6ÈÉyàHOº¨©£5`gR݇º‡¤­~V›é=VŠ×ïlô³É¡Î®IBV—ÈÈ�ÀJ —RŽÂZÝ"›Hƒ5Ô\»ÑmEêü`çáãîm5&·sÅ®l>Nô£åMžˆ¨u[›¥ôàÁÃÝýQ ë«ëh°*áC]=“¡U<à<–sùk1£ ÀÙ‰hIûæÝ~'$Næ°ëóý‡»çí5­;ʽ’‰Åˆ]äSÇ{LŸ<|tÎÞ¼mS•“(óýGûcöæ-íA'gdâq]²ZE99¬§tdµ ‹ªÅ‰Çd“ØÏÖ…¤K)”ד o‰﩯õ›/>õìËû;{zGfâÚÉI 4וØAIk Ú!Oa–Í7çL€ÀJ"“ŒfR™á4>ØRp€šEv¿%çt ·Š™ŒšAXIDØ0 � Ξ5˜% Òˆ ϰmª‹$ˆ#X]%ÆÇÓcDÇbL醶J7ÏrÖÊú€…—ˆ3öPYÈgÁ ŽÚZŸ93¸f®h~vÅÔÊù×m¨ ¹,bQi@Ò’Bý†úÛ*9ËËlÚ|š\>Ë—¯¶[Q‹Œ¸’–† “ÑRJ6)B§Ú Z4<ƒ‹7ln)uŠ`ò’£ØŽýW,Oë<:ïhÙÞQå j&­kªÁX‹C> 4@¬ËcåÌs5 “0üIUfLŸ}áK×qøÐÙ‡B¹4½1�ÆlØQÚ¤d’ñØüôäà¡ÑéšMë+%�@·•Õ³ŠI�qV§%dàÎþ.WÆâ‘ž5L ˆáC59–E†±Ê ¯<ùf:þ ?"'³XNìytxÉ~k3|ZA¶£Ë)Ã$Œè´1Ó…çF=>Ñ;81—9á£!,èÌn¡E1²Š¦–gÑåAMêay ³“ÇrÎϘ…¦`dqY=«€h±6ójJ{O0ä¸n,:Üc�œØw¼­—uTZ 5›100VÐ6Õõä3#>—Çë-)vKüüO½1 å .c�@6E«#èð–U”îÛת›ÐÂÍãç˘�tNîÅAˆàe§á« +!Nà©h„EïL1€“x´l‰!ÈÕvÍ®òåKùô) €�Ì¥ÕæœüÈq¯îX÷¨^Þ¶k{À)ñæü¡'_6:ãðB‘%n ‚“ý €˜|–c5qš’DLLNo³yŠ[…Do173?=—*.‹ZÉØª6n ÊÙèÜÌôÈÑðh°½£ÊÍž‹•#,Ç"¼$NŒ5Xþ,J¡k)”×Õõ¹€Ïi16T]Ç< ¦NX‘E@乤¾¸WK¤ ÞaËV[ѽ–çŬÍcÁÉ™ ^¨IOÅTÖ啘%î²8­ŽÌg•T4“<ùQY»…dæÒ‹«ûL9žY˜úó`h‹î 1Å� J2M5õ¥FQRÑøL\'…Ã_gÛ|&åò²õúùjY¸‹/•ÓfÆâ 3ÐOµY(jÞÖHu¿|tÎÀKåM²—V7mÞ¹Á«ÍN–s¢bÀðždÓÇW÷jÊ`l{.dlUÐÙ‡B¹4eŒ¨³GºúÃS±D&›É$§GúRÈUâæ�;vt2-«rtt`8#•Uº3Ï™/bE”Ùù”ªëÆÙ^ð ¦’Ng2Yƒ¡¤’ÉTVÁK°Ü¥vöÍeåL|¬o$)†j|¬¹Ä$$øªìLgçÐ|FVU9›žÈ$xË=æhgßLFS2sC}3ê‚ ÈX<..5:‘ư2=4ž�H°Z@ž‰f4M723ƒ£(|-í¬›ŸÏòÕ×’Ïf$x«(r¨+Ë(ªšŽÍNDO\ÿdDoUû:O´ûð@Ü$�f&28>Ï(r&˜LÁ&Y8Ò£ÇöÌ®òvn‚uYÑdÍ$€uU•]#�HðYÌøìdRUy:2Ÿå~Û9øE~4ðÒgS(”³çÂ[©ÈÛ|öxd¬?,€µ8Šë7¯¯¶9A€±×Ô[§í?ªÞQÖº¥ÉMŒt¾›y9OU…ûØ‘žÇÀoÚQïBg®eflàå£É…¿‡_Ù; \Iû¶'±ÛŒá¾îCa ®`ëÖu^¤ÊËDrÞº mÖÑÁÞÎ!€Þ`½ÍÊ#%ÐØ¢ ~es¶`MMÑPxawU×Wôî}¶—$y¹/6†�XÜÜîîzîiÂr¢«´¢(1‚ úZË›¿½bí#‘×ò%Ë –ײ­l¹ŒùsÛŒx_݆Vqx »³ßFpü§žÈ(z«Û›éæÚÖU²H;<$�ŒÅji¯µNcCN%2>Þ"‚ªž¶)8=×;®,ü=;69 Œ§²¢Ò†xW FŸŸœœÃˆ³:*+<Ösâç÷´ sK‚Þ+¾R(”KSÆ€±k›Ê[$žãožÅ†¡¦žì€DÃ&_+ñÄÐ唆…ÒŽU62€Ä“°öІí5¢de™å î—&c¤ªÍ—ÕÛ%¤©��Œ½aÇ.Áμ¼›ŠÖï¾Úi•–v12q•pî²Æµ›gSU³òJ¯„¼e þÚö…4@06UM&ˆwT¶l­“lÇ€>ýòÐbœ ñ®êÖmVÏ2„fU%Y’ERqíÖÒVÑ"2@Öëªç@]Þäe!ÏÍß¼³Êš£ÉH,Ùry¥dgŒ4��ïo½2ä´2†œßòµx·\Vo;Þ™Çf�`Ä¢ªu%VAà�ÃPÒK¬B’¿áM¥v‹…1²\K{•(YX–A ƒœÖ1ãnÜvä¶°Jæô*¬3¸±%§T3I³ÿ\GŽËØèÄli( °�Òe6–jª«T•,w(”KZÆ�€˜†’Î{Ÿ(ѵ¬ª-?ÛÖ3Q=Çß@LEI+9OЗ$3õôÉ,@ -ËUm2£ç>×7Õ”|šÉ4O¢ë·Ú�� �IDATÙ¸�f`—¶1?ÙFM9a´¬Ÿ\š¨k9š¼"º´ùf¾&cUNªyZzúÖ­¬eiÉ@òؼ0Ê)cùà,±Š`-•]L¬¨%GµrìÂ|ÓɉhoUY`xb®"ä×4%2ß²eK*9Þ§P¨ŒQ(”ÕÈØbäe¡ª¬8<6mbsóæÍéø !äÄ^ …ò“±Ñ¿K Ö½~×e;GhÀé1æ¤Pñ T•œžb%%/ÝE¡PÞ€ÞØòPØ%Ñ•\ÁLÊ™I !çíÍ™+êxVIϯØ~Í£P¨ŒQ(:<Ïëš*ˆ–ó$c§w¹9m‘lt¤(”³‡†8(— no •Œjªr^î2F Sà)rf~f²8TIGŠB¡Þ…’¯¿�âÑi]×áuýÛPOWA_ Y$[¨¢ÞéöÒ‘¢P¨ŒQ(¹ÅÂëzýAÚÊ% *R( …Ê…B¡P(TÆ( …B¡2F¡P(*c …B¡P£P( å•1ŒÍ‘ÁcÏ<öÀ÷ß÷Àý÷=óØ#ƒÇŽ¿|~c?Úê¸kP_ñ÷EÇkÑåhýwlî¸{Ô¸Ø;<ýô-¥uy!óz…ByÃʘ"gŸyüwÝÝÝ%•MW½õ–«ÞzK ²±»ûȳ? È…p«Ž=òõ?ÞYîñÙ]>weÇ•ïÿî³ókÃ[ÞsS‹ã’r—6Êÿ`ghë÷Ãúy,'_™ÇùÁY4|EÞKò`£PÞ¨œáíÏ›/>ó(os_uÃõv»}ac(TÖÔÒ¶÷ÙÇì}rÇU729æ­ùνï.áÿô«ïo/Ò£]Ï<qlVÆàó]ùå¹òR;I8Gb^ƒÎa.ŧm§P¨7¶JƆûdïºò¤†-`·Ûß|Ã;%›c<Ü—û´8òüÃî÷|ïþüšMëš×o»îO¾ðÿî2®PœGþÍ—ÞÑôÙ]¾²úç½Qƒi[þþ'_÷–Ò"Ÿ³òªOþïÈÂK‰2ü›¯¼»­Ôgwù¼oþôï"F¾BV Éûé§®lØ]>»¯®ã}÷ö«‹t|ùß>sýÆŠPÐWýç~;ª­lí‰F¥»yûºÕ£_îð¸|öªOì=鯒؃ï-iþÂ+ �à©_ÜàpU¾ÿé�@üÑw•6}r¿|ÚrpòÐ>¸£Äå³/é‡ÓØt8Žî½ã½E.Ÿ½úêOýrX)d@®†ç©â{úZ‘7¹¬í8qðß?re…Ûgw•®ÿ£¯ÿ߸ÛK¡P.è­iX¿BÃ@5¬Û496œ3#ë,-ãŸìœ_åÅ{òó7Ýúlý~ýbwç3w¿mþŽwôþÉ…ùJ;öÃû…Ï<ž8ôÍào>ùW¿ŸÁ€£O|ö-øÜ|÷S]G^yúßÿ|ƒB…¬""5ò³|¯<ØÕÓÝýüO¾r}™°ø† ­÷‡ÿëþʓÓ#wÖ?ô±›¿×ï]hŽëîß÷ÝubË7ÄóéðvZOv˜£íºÚèž=“:@¦û‘$i‡žV�²}è$®m°œ®­û_¿õêöo>¶ÿÉÿ~?þÙmõû¼:ûÏk‡›S¿úØÍßù¿=sàÈÉÞûµ'Ò$¿Ö• ·ä©"‡=ökóv>€9õë½ãö›¾öð¾®îywúž[Þñ]‹Šš«½ åÒ±Xl>XZ‘o¯ÏL%s¿: ù®ýÞwß&ßySeIÓæ>ð©oÿ÷žIµÀ£[ÍéG¾ý¿–OÞóïÛÙPYÕzãçïü«²}÷>9»0øßõõÏìòóÈRûGßÍw>Ò'›‘¿ýKõwßóÅ·¶Õ”W·]}óŸ_b rz‹F¹ê+¯ÙT,©l¹ì﻾RXÜe»á«ŸÝåcA(»áK_Ù8üã{ŸÁk/9ÿ–«ŠÃJeè]î›?½3ýÜþ)CŸÜ»'V{]›ãôo¥r^óí»þbw[ÓÆ·ÿõ—ß̾úHŸ¼JûÏc‡ýÛSÒ¿ÿ÷·´WUµ½ë›wþq�Èi 8­z.{øƒ;ñп<Îßüƒ;>¼³¾¦õ†/ÿèKëúÿ󇇇ñÔöÒ)ƒB¹Ð8Ãkcèô ò%±4|è?¿gä•ç^Ø÷Ò¾?ÜÿÙëþñ¾/=ùà߬ÏZ ¿Ø'ïÛüÎ’5c18�!Ð\²8!³ö"I g°:òÒ iüx»­ªñø×øÿ½½ò}/˜��5_|qÏWZNÎô–Æ›?´îÇÙÚþ“®»úÍ7Þü®+jl Åó›«ÏìYOÓ÷|çPÖÜ›–š«;ÄŸ>Ú“Ü|ôùôº/ÿѵ÷ü®+þvåñÑÀU[Š9€Óx®|ù–ã Þ]É,›óóÛ>;\?8Ê4~¾eÑ¡·6ín[0¯´;Ó¹ì)€6~pÕ}rÝâÉܶÃ?ØŸ0; g{é”A¡\"2æñø&'FB¥e9÷ÎÏFìNw쬽rÛ •ÛnøÓOá#_Û¶ûŸ¿»ç¶ÿjÊ”`ÂvÜ}ôÑ?-Yî8jý�€˜¥“!ù^É‘¯¥Íî¼¼?ƒ�‰þªå§ïÒúÛ;zÓ³=ôÄS|ó]ßúÎ~·çŸ®¶�1 “œ¨C?ã9ÎÚò–&ù[O¿úRçXÍ;7VµïöÝñÈÁƒÊQËæÛkVñæGİÌɘî©ýÓ~œßÀ°ü‰ý ·øw¾¼Fx5Ud÷ž›³2´Ø³«k/…B¹è‚ŠUuÃ}GÒétν}ÝBåÕ«*H,©/9žÖóÌbå¶:8úë½ó«”±rk-ê}èPœ¬±ÆVÖÐÔØÔÔØÔXåO™×8wóÕúùïÜ÷Ä ÷\>÷ÛŸtÉ‹3ës‡ã …ê‘}/G½­Õö¼=ʰHî›êOû5åSýô¿ŽúwoòI•Wvçò_/(Moi¶®¥œ§+9í?Ÿ.”·—“ÑWÆ—M¨‡eR0ﲆçK–Óž&”wT’'.Ézdÿ‹³îõõ.ºŸB¹Äe¬¼ºÁ"°Ï?õÈ©JÖ}h"gʪrf4'þç}o¿õ[?}toWϱ®=¿üÖ'þæ�»ííÎ<1 6xÓ—ÿÄùø'þìë¿~e`l´ÿà÷}ýoîéÉ»dŒ ¾õ‹ï~ûñÝñp×ðx¸ó©ûï{b¯±ȇø·wýú…££‘ÈðË=|L/i ,ºkÚÞo|îÞ‡Æûž¸óÓß:Zó¡o°ægE);öì Ç"s󱌱r2½ì2Gÿÿ<kl¹¢B�©éººÉ”_ÓáaÖTÎZí?ΕÞxÛ›æ~ôµŸ÷Ê„(÷ÿ݆ °¼á$O²œöèù; ÝðékµŸßö…ÿÜ78|ä‘o}ü[ÝõöíV:5P(—¸Œ1 »óŠë±šÜóäSaCS Mš?÷د'G7mßû¦1�ÆÝúææÔãß»õú7]¶åMo»íçÉ7ÿÝoïÿpUÞi•ñ\óOþâV×CŸ½nãúöö>ûŸÎ w~³ïµw=ü7k?ýðU­ë:vßzßa¡µ²¢HQˆ<øÍ÷îl¯oÚ|ã‘·ÿà§Ÿj\¸b"´|úsÕ¿ÿHûºï¸[¹å¾ÿ¹½UÌ_ŒëŠ/ýõÎÞ/îlj¬l¿ý¥KA,õ×mo}K£€\¯­(ÚqY™°ÆrÖfÿyíp6øÞ{þû6ø×Ë«ª*Û?ôDÛ'.·2 XÞp%O²œöè4¶ä]?úÍ[»ÿöº­­—ýù/¥üâ7Ÿß`¡3…rÑ€Z[[Ÿ{úA;?=1|ì¦÷ÿã7nÿȵo{ßã¿ÿÙ‰ dÆ ÷EƇS‰�8\žPyuYUC> »¤ÐúïØyùo?ºÿùWÐWhS(ÊkÇRIzü÷?ûÚ÷Þôõ{Õ9=Ñs öØoÎjf¦²¶©²¶‰ö2…B¡PÎ ôJ6…B¡P.bh<ìLêo%r;í …B¡Þ…B¡P(TÆ( …BeŒB¡P(*c …B¡P£P( ¥t¥"eõèl$Ñu.ì‡äò¼%“JH€²H¶âP…Óí£ãJ¡P£¼!ˆÎFæç"N§—D„Ð…lêxx`Ý¦Ë 2Á™Trrt��9Ý^:¸ÊÅ *RVK<:ãtzÑrkØ ¡*ð�›Ãª¨™‰ŒÐ‘¥P¨7FyC ë:/ˆ‹µ„œ>ì)ÙJ6CG–B¡2Fyƒ@. ?ì„7¶ôkVV�À*YÎ@í( •1 å|zcš¦÷õ3,×ÔXó4N¡\R\?i,‡_Ù÷ò¤JÎc™D8°oÿ¸’#½?²ç¥£q¼Úôg>*§Âû_JâÕ™·²dmêð+‡"ê%쉌>š¦ë\ßÚZW[ÕÛ7dèÆ‰]k~‰6…B¡ÞØR>·7ךh¡|c€D·$¨Šv.'šµ–‰x—$Šjžº‹µºD6­šd•éÏÜæœemzh–-ßZì”ôLÖ$9Í‹|©ûD#Î^TÚPrñà¯ð ÷Í*¥ҹʉŸ'±­¬²ÞÉ��1å™Ht6¥XÞâ <sŠæ¤ægÆçd'9JK}Ú¾o¬o`¤¹¥E` âPeyh <ÑX[±"äH¡P¨Œ ͬÕÊ€ïÙX®Þº1("�ÄŠVî[ÍÙ60 zc–gÇR–ªvÒ’fA— y[/ÛàãÖÒS}}]Þ]VD€u“£Ã©šV»fž;§LOÎNª¢�ò ß011Q­e•ÅËñùðø4[[Z".8-1=4kúB¡ǧgFF±ÎkEy·¯NÆ…ª¹©VàM•Àjáê*Y–Ñ5ƒþø)*cg‹d³0,`xÀHN‡�ŠN�9ƒˆw훑MΪo¬÷[,‡vNû*<ÉÈTB+7n)gæÂƒC“ góUÖÕ”»x835ÔžMjgõUlh*‘¦¶SË Fzb`0<“Ñ‘<ÁÚ†r¿xŠ· 'GzF¢ æm¡ªÀéÏä±2³Ò0NïÜ?áÙ¼¥Ò¾P¼;òRiØÔZÄçJÏ矮‰‘¥2¿ëY\Ø<ÄYíÒe"9üUÅï$U]HÑ #¹¡k, ëE0ΑŽi©‘iì/w§Âò¢óˆÍ¬BD¯Çgå€XävÌOg4�q™gSXw(ä€@È›ˆÎfÜ•6#÷vûª"á'¯™†jž-bhTÂ(*cç,…M�/N8cÓ �€1œêMÔÖomp¨“‡õú‹½��8;-iß¼ÛïäÀ˜ïz¶'YÔÔѰ3©‰îCÝCÒÖÆ"cúhÌÞ¼¥=èäŒL<®KV “•!w™êlowÚ×¼uSÀ">t䈰}SPZÁ›é=6,û×ïl*fC¯vMš(T¨YFtàHOúÊŠmÃÓQht‚‚Œät”¸ÛÊŠ-úÜd_Žô~6_F*ª².Ÿš†WaÁ¦›œ×¿Û±:èÉmÁáY™­ }‰Že¼óÅiãöF»¦ÁÔç"qR,µÔ‰ ï°s³ÉtÆí¶³DI¥dÆ´,h¬§tdµ ‹êĉÇd“Hy¶ÛWåƒÓ%ˆÊ„ wÕç_×ZWê²pžPEJÌ�p%- A'£¥äøpï4[Ѷ¡ºHb8‚ÕUb|<-0¦j0ÖâO ëòX9s1lvj™¬¢’ íµEÏJUöÌÄ„.,)‰‹1¥­mUnžål•õ ­<'z4<“Ã0NòmÊä¤Ê°ÀˆO%À[QÄš<Ÿ3}Þ%uXϨD°[À4ÈéÌÃ3û}ôÙ§ž{ñÙ—z¦„ŠÍ^ÖXt¾XÑ‚´´ŠømA¢Íåö8vv ![¢Fg§ˆ«Âí(ÌQ±É¾ð«ÇFz"º·¬ØÇ/Ïj&aø“'TŒÀ‚©cœgû*Õié:Ž:P(Ô{@5²Š¦@<cªÇŠ�Y\VFÏ*&r2kʉ=/ÉfÍb¡,´uv=ù̈ÏåñzKŠÝÎ[&2Ó2Øj=œ¡Ä “�gu z2ËrK<¢¤°×{XCN&a,N+3[h•“YœÃ0Î/•Ø'"rM¯F#1ðmô󦢿K_”OLj‰áÀ&9y'®J|ôè‘CömMîã:‚bÀ2�x©Šùë;B6 ˜jþ6š©È‘±…%”| ¶´’#ó¨¤Ê!¢O[Ä©ééIM*­p;8œMDÇÇg…š’"áµ÷ô©7F¡P;¿2†"‹^Ô¢·€þf1NÉ A®¶kv•/_/€URµq[PÎFçf¦GކGƒíUnT L�0Í%ëAÌRO„� Ä�^¬!ž#ó–}Ŷ¡È¤\YŸŽ!ï&oj™¼é%Oß° †f.ÎÔÍ;qmŒ•\ÕõþÈÁѹ¦âh�°ŽÏ¢#zFÖ µµûkñ‚r<©lÖP²áñ)ÆG^•ŠÖ•£©˜é(/òÛ�°ˆEjjb&®ùŠ—¬8d9aýäõ*¬™Àò “gû*]Dº‘B¡2v!C��YœVGæ³~‡zÊZ;$JöÒjoy•ÿÀ³G§&Ÿ[‹]‚Ø\Òð‹ ¡±T\ãÜöeË+ä!—M7ZP—tÖ±#™×0$x‚¶ðèdÆžL ßF/¯*É›žäY¸x»•ÑS AªÌ#˜,øm&&`è rŒ¦c¢Ë*K$æŒÜÄY–ÔAìþ¦šãá>¢Œ‡çqq°Ò!p%'NNšää �Ã;x2—Ö°Cd�ÀPSc“X”o;õÆ(ÊÒiüâ5 ¾ê�;ÓÙ94Ÿ‘UUNÅ&‡‡'²ÄÌDÇçâEÎ$¢“)"Ø$ —göC¢¯Â‹Ç;{")UÎD‡{G3ÖÒj7ƒ—è ¼ånm¤'¢X™Gä32lq_Цu÷F‘¿¢ˆ3TL ¦Ï3jvŸ$粈A§3Ùt&›Íd“±éÁ9C(*¶²!�3S8O± Œå>QgûM­Å™A g±ÒÂGäX�†,ƒ8‹ÛB‘ù¹¬¦©j|vnVcŽ"ÏN÷O¤µ…>)²˜ñÙɤª(òtd>Ë;ü6&ïöU{c«ùÐ)€B¡ÞØyÔ1Î[·¡Í::ØÛ9¤°‚ì·Y©óc‡‡d€±8C-íµvÀI’OsüëÃýÇu`,žÒöMÍn¤ÈKW !ÐØ¢ î{AE¼è.)õÄ'ÑÚ ã‘¢c½Gß@‚/­ðq¦fé!_\ñž€s`bJ®¬@:)h‰~áùãž§'غi½ÕLÀHM%¹’cdWÌåDÍ$R k‘]ÆgëÒpþŠ€9„'Æ/zƒ%¥6€`]É("&�xW FŸŸœœÃˆ³:*+< 7‡åÛ¾J[øß01·dµÌН …ÊØ9ðÝÍÛ¯‘Ü”Í.nª6_Vo—¦.ø ;v väåÛ€¼e þÚvAà´°d_Õ ¤¥½J”,,Ë �À†!§uÈW& ΪßXÙjãy!†ªfe biÇÎ*›  �@¼£²eKdã9› uHàHv™[·4}nÃd�H(Þte¹d·1DUNø|¹Ó ËÊ\&¾Þªâ±ž1¹²ŠLò˜Ç·]²yDvÉÔnjj&k¢E#qKY³‡1dseL´lãÕ5.I4ýÌÆÓZÓ\½DÓ­Á kð%¶…*7.ñæþ’f//÷öµG'fKC%�Î(³±TS]¥ªdéŸB¡2v!¦[þ SOGõ%¡1-˱��›jJ^±¨Ž(jæÔ‹aùÊ †.'ô•±B¬g–¦×õlüäWõÔÈâòô9 [Ü£ÊÉSwäL¿¢Ì°®ŠjÿXLa‹lüæ™hŽ›}‰‘LñåMU¢(¹žáµDF»¸ì÷T•†'æ*B~MS"³ñ-[¶¤¢‘‹èQý å¢1ÊÚ§iÑS[/cÆšW3 ¾¨¶1`at%{©^Bh1rȲPUV›6±¹yóæt|†rb/…B¡2F9N¬¦Égœ›JƼtû1'…Šg ª<àô+é(!xé. …BeŒòò� ¹hÞœ¹ÂNg•ôüŠíQs( •1ÊÙÂ󼮩‚h¹Hdìô.—"§-’Ž,…rQC£+”ÕâöRɨ¦*Åňa |�!EÎÌÏL‡*éÈR(Ô£¼!ðúK� Öu}Å“/@†zº újÈ"ÙBõN·—Ž,…BeŒòyýA¯?H;‚B¡\8Р"…B¡P¨7F¡P( $:‰Gg.œè7Ï[2©D QîâP…Óí£ãGeŒB¡¼¡‰ÎFæç"N§—Ä ä†ŠñðÀºM—^‚3©ääè��¢×k× *R(”KŠxtÆéô ¢å‚º)ð´oZ°9œ¡Šš™ÈAêQ(”74º®ó‚x¡YµšÛT$›CÉfèR£P(op.㳬x¹]VV�À*YÎ@í(TÆ( å|zcš¦÷õ3,×ÔXÃÓ·ß5o°$êÄ}ûÇ•s~ÂCŒäp×+Ï<·÷é==Q“ÈSý/íÙûôs{_WÏa]8ÞÿÒP¿öÅrø•}/Oª¯wÞ×f°ˆ‘î<1:k©÷5;`^CÌø‘=/Ÿõ« ÎÕ8žMˆ6uø•CõðPÆ MÓŽõ®om­«­êí2tãÄ.‚éëÈ/NoÌ”££Ãc‘hFÅ�¬ÅåTU†¼bž˜�Qƾ:hßR&žQÔ€±úü¯OE5Ï]D™‘}íW¬óK<³¯ìŸêvl¯tòÇhIY3WYL¡ª‰6=4Ë–o-vJz&kb#66Ð;•1œºÆª€Ä¬¹±«F¢[TE;“ŸÖÙä=ûO3:ᵨýŠ¿Äsœ©¦Ò&Y]½ ��â]’hœ ¯7¬Õ%²iõd;‰2720§Xë¶´•Kèµ>ÎA¸´¿Â7Ü7«”VHg<ÅœšŸŸ“U œä(-õy„•m'¦<‰Î¦4ƒ�Ë[¼¢ “gV—w­ÞXßÀHsK‹ÀÄ¡ÊòÐ@x¢±¶bEÈ‘r1ycff¼ó@ϘæªnÛºëMoº¬£±EÆ`PÁ)Ò% ì™Ô‡xOU]­°IN7 ¯© ¢Ë²ý6d*Él<!cÑp 8«e⊶¶é/_ÕXžKY*J]HSLB”éÞ®¹¨eûåoÚZ#ÎíŽd�YcÏAǾ¬ÝþB£c ÛÀT’r*sšòÎY½–3�&½ õ~XÁî♋á�`ÅÅ$2œâØ3½Ú¥%¦‡f G0Ô\Sâg2##±ìÊ5Ó™/©,k® •;ÉìøôŒJV—wõ2¶¸(±¹©VM• ÁV ßPWÉrìÒ%‹”‹Ê#j¤w,a­}ÓeÍNPuU59WesG9æEnîðséú-í>v1Ȱ¯Ÿ[¿Ñ?v¨?CàØSàü›¶–Å^íœö–{RS3iÝdmÁÚ†:¿È�#=10žÉèÀHž`mC¹_d€¨6n-³ ,‡vÎU¥'&bŠÉÚ‚õõ~>Ö½¼Šíõ.fixêÔb͙Η»�pð±‡O¦L>÷È�H5›[‹’ážðlR#€8«¯bCS‰Ä�`e&<84™1p6_e]M¹‹‰ªš¨ÑY*ó[±žÅ€•ÈX‚+ݾ¾ÊƒåL¨®:²ox\©n–4L–ÇN4pfj(‡ÇÆóÝ+;�ˆw훑MΪo¬÷[Èi9rŒí\ß¡ž¡yxG¨nqPòå%z"Ü;8U0o UÔ¡QnÝæ—~ºÁ²0+ƒ‡FçÀ£ãkٵνd’ÎÕ-hi¿­8•ÈeÛ°2ŠÄeÁ¬kª/Ðé;d&zÇ£ ÅÄ9Š+šêJì,@þŠˆžé9Þ¹æBƨlä­(•í9×T|®5öUÞ&0R‘ºÆÒ°^cíB´èœÂºC!—È�BÞÄ@t6ã®´/9v°™Uˆèõø¬<‹ÜŽùéŒ ¬"ïÚ½10 Õ4–´šfP%ºheŒh±H|íµ.嬌—\UUL�XÉcáRÊñc—µúB:ÔWNV\yy€M�ÎNÄ‚[wûmúL÷ÞC=çÆ AííîOûš·n XäñÇŽ¶o J°$F$�ÎLFC;vÙ´Hçž#£þ¢FߺM‡¬‚¨Júøù;Ñr[ܶÃ>øJvõÛ�QF_xj°äò+êí É>w fkÞÒtrF&×%«…‘ÓsGzÒEM­;“šè>Ô=$mmô¨ŒTTe]> 4 ˜™˜Â8KÜŒ–Quƒ°V·hÌÆ0kGxùO}¡±r"r´?f_a†¢Ÿ,Ø•­6£ Àé¡ÞDmýÖ‡:yøPߨ¿¨Ñ z4§å+#œê³7´ìZïЦº[”<yYmºç؈lÝYïçRÃ]“&„¬.‘?í`yYz<­ftÀHe³:9mÌÑ-²z²^e™Hæ¶ŸÉchóý‡»çí5­;ʽ’‰Åˆ]䔩£§í@BÀj®Ýè¶"u~°óðáQ÷¶šÍÎY‘:Ó{lXö¯ßÙTÌ&†^íš4Q(×/ëYSÏ7ežÓc`Í}U  Œä¶àð¬ÌV‰†N–Å@;_‘6n”ïd�� �IDAToôð±žÒ‘Õ.,*':8“Mb_ðax‡›M¦3n·%J*%3– ­*ïÈåR *b%£‚èvp¦¦`²Ê!'˜�!€•D&ͤd ÀšëJì ¤ˆ5Píǧ0cDG£¨dC{m‘ijREc•=31¡ §}|°¥.à�5‹ì~JÎé­¨âd ŠhùŠ%†Ž0RÙd4“Î`ÀL-MÇ:c-ù$Ð�±.•3M¬GÃ3lEÛ†ê"‰âVW‰ññ´À2y«¬gT"Ø-`€šAXIDØ0 � Ξ5˜<«žˆ¡§˜ANÛ±þu­u¥. ç U¡ÄœaaóZ~ÊåmÙP´ñ`/©©udǧ0cæÎËѱ8W¶¡µÂÍ1¬T^´@îõÒ¹kÙi÷ªF'{r*\E·, Mjû©¶±z4<ƒ‹7ln)uŠ`ò’£ØŽLu~ÈØCe!ŸU@+8jk}æ\ÌàÛš³¢±SÚÚVåæYÎVYáÌœŸ³cà úª@XÑ‚´´ŠøB¢Íåö8öBñFÓ0 ß”XF`ÁÔWÌ7ÈQ±É¾ð«ÇFz"º·¬ØÇ¯2ïê;¯æC5éb *.A€ÏnìÅmeõ¬b@œÕÆi û32Øj=œ¡Ä “�gu z2Ër+£DŒÅ!"=k˜Ã3†jrlþßQR¹‹•òfa¬þ mªëÉgF|.×[Rì–0`9™ÅrbÏ£ÃKRZ³˜+*pVAL Ç,¿bƒWÊ=ƒP®§Èå4ãôë±±FVÑtˆgLÕà™Êm¹Ÿ1—"’|ÞÌÊšA€µÙy-!c:g^†K+ÈZìdtY6LÂ6+“s¢È=XÆqïó\NÞÈ7j>&§mÈLË`¯ñ †×ŒÄ&N'VÑDOôNÌeN"Î ù*Ràÿ³wÞñ‘åáæíïö¢UYõv’îNºÓUŸî6ÓBÀ$˜!H˜$@~†H 4 q1Á!ƸbÜí;_‘u§Þ{Yiû¾ûöw~¨­¤]iu¾¢³çûÙÏÝj÷™§Ì;Ï<óξ¯£ÞKrÊ01%¸lÔܹ:;Ï®œ…­6TQØ4€¦�¬Ì(¨ß´ `ª¯xFœÒÄÒ “±ÒñÈÄÄWS\pnŸH6öª c”`ça..àÊç õFýÃ2—¦HÀh1™™skŒµ>D!„­UÓ«<f±yT»¢¤½jïá9™ÍŽvŒ•´î¯rÆÈ½ç†+ËWoH´9÷xBs4š¹p2 †c©h¸Å´B1€Y”ËNÙÄðlrÑ!„𢪋ó`”Kr5ËmO­3-8²–Õg¬nfúç(g½Rïx¨Ü-«î²´¡læêosb=ÒÝ9¦—ï¹ò²"—Èšá¶'Ž›--%¬o/<ëzé$@ˆBçjÈ<ë>°E[m¬‚eXÃf[Éú$ëj@34²2VR-ÍzM]fz&j:Ë  �¾@MN†bšßŸGÙ-„1’i½Ãâ¼%ΡÉô>“¹�¦aš¡XRÚâlŠb‚°r.­äù„^n_XWŠ' ÖgçD—áù„à�°šŒiŒÇÁ¢<OÝ)œ"Œo½ZÄ‹ŽÒj_yUàäÓ]³F£OtÙ`d:œ8ÕÕCœ•«i@¬ÃFéI#�€¶{k:$YÎ…“9Ui·O¤, ç-†ŸÉl=§Ö«g. g‘|}êNêå¶§$ë³q¢ÛsëËbÊ!àɰdúvó(‰´ÂÙ$çÆ;~^ËQ¯åXL §áÙ¸ó¨$Óvj2…Mõ¥NH)ɤŠéؾ±)ÑÁÃtL6=ha2”J›pV÷b:g}`˶ÚH¬Ë*æ‹Eê¬b3Å:Y<ŸÒ,'O€¡& Ê.®žÚ`ÀËQzå\œOY’m.ê†{ÄwTº’Ý/¶NÍ'RR* wµŸIaZôº™äØdÊB`)³C©…ù-¢y”¹pRÕucqBgE»»¦R²*GƆ%±¬ÒC³ÞJŸ5ÑÞ3Te)2Ü;&ÙJ«=T^[¨³5±w}[¬Ö”¦'æc’"KñÈäTsvQ`Å‚ê":ÔÞ>–dU•“Ñ©ááÉ4Þ i�Êá·ãÄ|zaVN %ån}¬½o>-K±ñ¾Ñ¬ñÓ¦iå/ƪ-Ì5é1vÉ×§b‘®E§ŒIbY¥—fý5ÙÊ"Þ[æ1FÛûCiM‘"Ãý³ �‚-çÊ;¹vv#._Ý—lå«*BÓm§G¢’¢ª©èÜdDƒœ•`SšŸœ‰©g@E$MÓ )48&Á†×ºï/÷h£=Ó F`)³#ÓröUi%•’¤´n¡$‰dzíés×¶n« T0SQ…ñÚÁX°:×êÌXÒÚ¤[ø 367•PEž§YgÀN`yn¶2¥�#xŸϧ5MUcsósír2Tβg™åó"1éËÆ�€²—î=èœé™Xøù³§°lçŽR» SÕõ½ƒ/<ÝKqb ¼ÜG��Œ·ªÂÓÝñܳ0…û—PŽšzÛl÷±.³Î²æƒlHLAÃáÞS:P‚·´u_“)r^WgW7q¤Þ½¼q-V‹RÃãg†d€\Á­µ°R´¯®eml°·}H 9§¯¤Þnc‘’³i@¬·È509#WV ŠöÃ}m#&âÜ%͇vù*›x+bàœZ.Ë¡“KòÕW¾)GM½˜á”6$äÍ^–*nlÒûϵG°¦ÚŸ£Îb¬8WÞIâ­éŽs\šA¬¿®¥™èlï7âœ%; Kå0 ,G'úFî`@@¦©ÎÓÏ<‰i†w—VÄGÑF9âŠvªƒGŸSË{ŠK½±©õQÏŒïJ,¼>ñÂ00Å­‡wº2“„s×¶l«Ü*É™S¼ÃMikmÚ*Å“-ˆ”¾Ñ™Íº‹jôÐÄÔÔ¼…›³²Âk[ÈùtERx  &PQdNE¦G&'�ËûJŠKíÔeÏ.Ž-*dZLÆ~˜5Î&!jnn~æÉììäp÷mw|ýKŸºó¦7½û±î]þ÷BAq¬ 2 Ó`l™†¢«ªia@,g³³4…±aªâEœŽ©&F´À‹6š0#ÝO U_{eвh‘e(À†®¤4ÝZ8—XÁβ4Œ USÒ†�k÷0F\VM�šu¸-&k‹Çs'%Ç#£‰U»Þ!wµˆÜ"%-næ¦xÑ!©¸nP/ 4M!�° C•T}áÑÍÛ9Ž¥�¶,SÕdÙÄ»i3ÖßÞ÷^QE-] \©›ª&§×Í¡3”Í)Fæt<³i…²g7N.É3¯H°7£Kæz§ä*‹XN´³ e%zžzv¦òš«*!¡š(g­d7÷Îê5²lfÉì$™ïsÉŸ[6D3¼ãX�Ø0””ª[Ù*IÍužìb[¯Ûç5S)#еñOÆ–®ëÀò ¦R6IJ¢e`ËÔ4Ä 'ËêÀ겉«÷ÅKëŽ9g}à,lµ^…hrºë¥Iÿ‘«D9®­o€s‹¼©¤VÝ–¥·ã¥Ââòm5ÎNŒ ”UÕ-Î!ÆC¥Á"ŽÆ�’”¹h²±®RUÒËG6¸ŠD¦5d†¤Ç¸÷‹wßsÛ]÷ü¢}v²çdm÷ýÛâÖÀØÒ´´–åŠÖ5)¶ò¹¦,/()�À’­å#ÓêÚ°¡Ëq}í ‹¥K‘¥«Â¦žŠè™Wå’ѵMd‘*kµØRb+X°T9±4ñ´UÊZ•eªIYͲø“£iÚ]Q*t!g-m}ËVCvesŠ‘³i3‡qòhwٰ뜒­¬™ …t»×!ƒŸèTœ;Šl`I�çã¬-{g•8YÍ’ÙI2ßçÒ=·lØ4”¤¡lfK‰¤…Ê}Œ±i±¥K²¾"²®mÚ®§c+_©r¶ó)!ép¡úÀYØj XO$ÙòÆ*'V”l+ –—´K$cXZ®*+žœ¯4M™ž‹<x0™Þ†·ä'‹Š„ót1Ñ[[Ïq eÆ«é‚16¥©¾¡Í mþò½-µKI¿¦.Pöºû8Ö×狯éÏÔ6 ”~éw„WiªÊ GÆgMË<pà@*Â/Kxí…1J¬:pE½CDšúZñÖ4ùU× =Õ®Ü%ˆüÂÏÞ,CQdåµ7šZ*A†¤,)"™—¾(ãz/KAUy‘Ë[¨¤"[ˆ"1쵞­^£ \¢ÑÙHËÉ4±ᜄ Œ·Ý“3×Èñ´’ ¯ù|ŠMÂ@ \hX–Õ5•ã…m%U>Ë†ŠœD;ñàV!É,@xUáñ%MU¶Õ/ŽEmð„Y ‡¦ ƒ•ă$#¯i|b�ˆEfu]ßô¦$Œ¡žÓæjHíÁŠz—ÇG<HÂ@xƒ|_ „â5YT$ÉÆÂ+Gæ¦c‘Ð…_cYAJÆ7JmD{a°Âåñ?H#YˆÌM‡ç§].ËñxËõÄÈÀ®}Wl`±%%Sc�ˆ\¹!lCÈ¢"pñ‰EB.—ã…‹ò³¡Mï¹nwº‚5¡éQâ)ÉÆBt]g9þbµžÏÆtÑîTÒñ„1=”\ÄÛ7¬yÌUZV�À& gíÆÂÅÌÆ4Mïë¦h¦±¡†%ÏÁ"\ ¼z»©%œ8z|J=¯HlćÛO<õÌ O>ß1·£"VräØKC‰WÙÝâ±:yòè± ¯y¿úÖfΜh›V/¡Ì[ÖÂKÓ´îÞÁÝÍÍuµU½}C†n,…-ò`bÉÆ² ‡ÚwÆ)Óþæ�‹��Ìh׉v£þª}.@¼GäTE;Og VfGFÕ‚Ö×í ˆ,Øjréñ}X™8õòTQëÁ2]DE°6;4G—*t‰º”6-#:>Ð;‘-ĹŠêªŠÄKxƒX·ÈŠ’ñ^53sq\€¸@…¸oN)­ÏzèÇV2š˜—U ÑYZê÷rçqÉq9ëmÚ¹“£1bPeyp`d²¡¶bÍ’#@²±,sÝðHXË|Tí°ÙØ‹zŸglYùL¦±.kÈVRhSIÈIi̓ýï9úl+?'YÄÜxR¨(u#M11Vf{OÊ;/»úªC5ü|Wç´¯òÛi_ÐÎÂB<=œ\xœùÙ Åg‡æ gI°©¦8@I££Ñôùì2Ë››kEŽÒTcË&°;ê*i†ÎܲH l,Ë8ÃTzb£½‘à/¬º„l¥ú^êê¶úi��3Öq´ŸÙ½¿Ñ©Žœjj SãcaóÞêõA4×Û;’LÖ]ºkg…w)bu¾¯­g(¬ë Öí¨ ð�XJhdph*.[ÀØý•u5ånYòÈ©öY…71=Wùʽ+mË¡©ÉÁ‘¤%zKjw”x3Ô~¼3�'y(ÿÎ+wy–ÆK3ÜÙÖ/aèþÝÃÝ�L`ß¡²èË™•ïÙÅNõMD⊠ˆqV4Ö; [Jhdhh:&›@qŽ’ºÆúÌê`#2ÜÑê÷4”ˆXšê™KhcóW´4¯N®° ÉbYÀféi ,ez<Δ^¶»ÊkÉR°®zúèð„RÝ$j+Cº%çkÛ¬6,M ô®×k¡Ú‚ê‚ÔädT1i{I}C}@ ÀÚT…ìnÎEu%xàôx vó`l=þ`-2¯Ðž`ÐÍS�EA_| 2'y*çkÒ¹rmÌ4TÓÈÐUÓ 2HHÛ|¾\ÔP=÷BßDúp™k¯/Ñ¢W`’ÊÒX@Û<<°¤Éiµ®áP“˜<u¦³?"Ðþºý;lÊHÛéž©à‘*v1õ9vì¼r·S›é<ÙÝ#¸öVpzd £'Uи¿¹ÈA%';Û:‡ÄC  �¬ôd¤¸õÀu2òÂ"Öæz;ûSþ¦CûŠyâL[GwÙ¾’Â=Gì#§N¤[nº¬ˆ�#™^|t/íßµ¯¡­mªâš«kl�ÌH|Uå81’6ÕîõØl?sfÌs¸F ,=ܦ3ì¨i>Rî°bÏ&—s¿ùÁ3]óަÃûª\X ÷wõGM[K\Œ!Åbºh(Eɘ3ɈJ»ý"hš`JQ…r{(MRuÓ6oÌE-Ú¬UCm¶µŒì6d0[½ªŠ÷î¿®À®M·?ß1(h𪳛©£ÂÍCÃÅu%zkdN¦«x#óiÎX™hqTÜ{Yƒwƒ`léIÙÜbÔbx'cEe;¨ó”;“-ˆ²¨øJ×`e5…æXï<äš2]-µA·À”‰Z‚«o©zl¢«¼Ì®…S˜[ Ï”ogKm‰GqM­3=1cQfd$DWìi©.iÀÎ’ê*>6‘âöd1Å;w”¸(-©¤£Šf.OŽÇ"¨¸¥µ¶@di±¢¡Ê!MNê…°¡[`a0’éDDZõøylaÀ,%.%"RR¶VUžà‹‚A¿CÍ9kkýæ|Ô`Ð"#!«°åÀÎR&+: h1U²ä™îö®°sçeû«œX•Rº¦”­0èAD»½6Æ\½¨ié’Š9‡�¦°¡˜yd&�Ä èiƒZ·mSÛb=— )G°l½^ ^eKvÖ9AM#GÀ‹óº@››©�U¸ùÊðÅsÍ HK©ˆ]³‹ñv·Çët:6Zo4 SìÊ “âh0õó¸ š¹cƒ. $Ëqžš ÛÑþÑT ,Ï‚×NiEÓ1ÍÒïvò &tÓ,†jÑ �€D¿“5Ó²f` íV‹ËV •¶äøó gTgK[ŒŸ@‚ÛFéiŰ¥)tR{­—1”˜ab`lnNO¤iFÜÒä8³r¬E'{'ç¥å4é4ǪI5~ÎcúÂ7–iY€•8Ú¾æ+öWÚ 5-P¶@‰}æôOúÝ^Ÿ¯¸Ð#®g°iÅP`eÆkíÌ›BhÕ]ü6·-%'²Û0€”ÈÄz½�”à䑞6L ÅR†j2¬£°Ä~zcôØd¶ Ïîw¸ÒˆÂ¦4`eF±@ýþ ]�SÝN£�ÉÆ$Œƒ@&U–ŒuuÏkPÎ;£fµ!œ1sG`™Wx2³Lkå0 € ¹÷Üpeùêýk–, D!læšöš™©ƈÚÚü•ʱéîÓË÷\yY‘KdÍpÛÇM„–sQsmNˆ÷2¡ðì|²°ÀZœSöª½‡Kätd>4;Ú52VÒº¿Ê“)¢9 Í\¤Ã1ÈT4 Ü‚†b�#²h­¹ó±-ÎjC35¸‘^­ÙYèMTØÌP[îfΖaQ ›MR¬K²¾ñòC#K_¹(ei&Ð,uþvãí²¨xNâ©«¢Ò™Ž­\§¡X mñol(Ê–˜…åprq¥kÉ„Á:mœè¶Aj:œV’)±ò’U+K¸\œÃ;EHÏ'Ǭ&cãtl¼—ra1 gÅXM¦°³¦¾ÔI)J2 Åtla�JpŠ ÍÆõ,ùjAÓáÖ¢dçñ®ycÕì^t”V7¸¼Å§ÍͪÀŠX‡Ò“ ^…¶{+’¬ÉôdT¥Ý>‘²¶<§WV¦ñ¬zmZ6P!—¡ò ZÍX—UÌ»Eê¬ÒŠu²8ZÚÚo¨Iƒ²‹ôù cyA†K c›&d%Th$j-–^7“›LY,evh"°ÕýáV¤«k*%«rd|pHË*½4ë¯)¢CííCaIVU9žÜp;3â|>k¢½g:©ÊRd¸wL²•V{(ËÌ] Ñ<Ê\8©êº±väEœM�9‘4M7¤Ðà˜€ÄùªŠÐtÛ鑨¤¨j*:7Ñ–ÊR¼¯ªu—7Òyf fb�Sšœ˜IŠ,Å#“SIÌÙEaõoÊá·ãÄ|z!É „’r·>ÖÞ7Ÿ–¥Øxßh‚ÖøiÓÜòLqþêl6Ì¥W.ÌÔÔÆ*lµÂmã3Uo¡ŒÕƒ?VçúOKZ›Ù·@0csS UQäÙépšuìçñTÝøÖÀdÃ=,*æ í¬¨òLõƧÑ@¹«ë+z_xº—âÄ@y¹?:¾Å(F9jêÅÙîc] feÍ<Ø·®eml°·}H 9§¯¤Þnc±ºÁ°hØÝ02Ü{jBJð–¶îkò EÞ(1`¼UžîŽçžµ€)Üw¸lM}M;R§ŸyÓ ï.­(ˆ"À�ˆõ×µ4óÃíý&Pœ³dG€aVã}Õ­§::™=»*i¤†ÇÏ É�%¸‚;[k`¥V-Ú±Þ"×ÀäŒ\Yt H(jØc ÷u¶˜ˆs—4ÚåCªln}–_6r¨0»^¹ª¡6Q!§¡òëÛÍFr&ÁïpSFzÍØU)ž¤hA¤ôºë.ªÑCSSóblÎÊ ¯í¼þÀo)ئÅdlùYó'°=AÍÍÍÏ<ù ƒî¾íޝéSwÞô¦w?öÀ½Ëÿžo»—³²¼¸xˆX—MdV6¯#–³ÙYšÂØ0U ñ"NÇT“bnF‹É ë./:#×­¥xCN¥- Y‡›Ñ%“Y†lèJJÓ/kмãX `Ë2UM–ML¯ªv¤¬`gYƆª)iÃ�D n‘’Ò«¶).ç/Úh �«JJ¡ì™•#еñOÆ–®ëÀò ¦R&@4ÃÛ8ŽE�€ CI©:Ê QœC(#Ð,žš¦�X†¡Jª¾fáÕŒõ·÷ð­WTQK×·VǦªÉéu‰ ŸmsÙ0—^««E çpRrLÙ\…\R¬ÝÃqY52ß_tZ¨û¥Iÿ‘«D9®­›%Pœ[äM%•Êü¦·ã¥Ââò‹2LŒ ”UÕ-¼•‹8@JRæ¢ÉƺJUI/Ù|à*2h.<™!é±îýâÝ÷Üv×=¿hŸì9YÛ}ÿEÏÆ°!E2a‰õ„¤¯ú[“bÚòŸš²0:ë©ÈÊQ–*'Ôl5,¦jë–M5)¯MÀVW»NR]ŽëòÚO-%–kÛ6%¥d¬¡eVŽ-]’õ•¢º¶RÌP’†²ªª Á°¥%Ó‹+ª¤lœáº+ªãQ….䬥wYÏm„œ¶ÍUU.½VW‹ -ÍO…\Zº´\aæû‹íl$’lyc•+J¶L×Òâ’¶Í&³K µUeEÓóÁ€¦)Ós±ƒ&#ÓñÖûÂ¥¶¨H8#ï­­ç8†2 ƒ\¤¿ g jŠJWÒ—ÊÕ$„WiªÊ GÆgMË<pà@*Â/K 0F¸X¯¦ÉÄ ËT$óÒeÜÑ”¥ ª¼Èå-TRŒ­Ì¯ÆBÎP‚ñE{ræšv9–VRá5Ÿ_DñÆ„í˲º¦r¼p‘ÂØæ)—"§ÑN<E؆áâãñ%MU.ʯŒEmð„Y ‡¦ ƒ•ÄS’„,øÅ�‹Ìêºp¡#ÙPÏé s5$ˆö`E½Ëã#ž"0F ² _ Ä(!† ¶ YT$ÉÆ„×.827‹„.Êzà9e)ß(UDHí…Á —ÇOüM aŒ@xU™›ÏO»\>–ã/Ñ-é#»ö]±Q Æ–”LL � r…Œ°Ý ‹ŠÂ+" ¹\>Ž.éŸUmzo{»Ó¬¨ MH6F ¼ªÐuåøK]‹|6ú‹v§’–ˆÇ $Œ¯2^ ··Xó8±´¬�€MÎ"Ú$Œ„‹™išÞ×?LÑLcC Kž7FØölû>ŠÕÉ“GM(øsž(â]€F-yäÄÑãSê¦MXÉ‘c/ %¶ÃýÞÍXÇó/uÅrˆ‚µ™3'Ú¦Õ×`Æ-ká¥iZwïàîææºÚªÞ¾!C7–¿Ây�4dckÑCíÇ;ã`¯Ùw°LX\—1¢ǺçL¶´uÿ'@Ùü"Ÿ_äEÍuÓð|޹Ðóƒ‘��ĺEÞ¸ÀâãF±2qêå©¢Öƒeüò"â="§*Zîk³Cstù¡B—¨Kis„Úææé”º^Ä*üÃ}sJi…xÖC6¶’áÐļ¬ZÀˆÎÒR¿—Cù“OÙóœõ Œ6íÜÉÑ1¨²<802ÙP[±fÉ‘@ ÙØª‘F¥L–^Œl±Ù°P¬ÝÍÑë­ª«õ‚µÁø—Ï1Z­í'Ò¹ÒŒw‹½•œmn<)T”º‘¦lcÐÎÂB<=œdè³ Z|vhÎp–›jŠ”4:Mã|ɧìy c‹››kEŽÒTcË&°;ê*i†ÎܲH ll-¬¯Ò›˜RK«(ÓÂzt*Á—ÒS3K§—:yªm¢hï¡2YòÈ©öPAuAjr2ª˜´½¤¾¡> Pë Ô¦ÆÇ æ½Õ;ëƒh®·w,$™¬»t×Î /‹ÀJõ½Ô!ÕlõÓ‹kMGû™Ýûj^ÅWÔÒÌPÏÈ\BÀ›¿¢¥±XD"­וÐÈàÐT\¶€±û+ëjÊÝlNÕšŽÉ&Pœ£¤®±¾€CY+Ù(˜l­Q¬ÇGzÇ"ŠÅÚƒUEêгkoÑD[¿„¡ûww0}‡Ê��뱑Ó]}!ÙdìÁe™3†G5’:im�� �IDATŲ€ÍÒÓVv[Q9ÄË¡;©ÉÁ‘¤%zKjw”x 6Ò%1Ú;0º¤‹µâµÁ,’PbN§`7ÆÖcÖ"ó í Ý<PôÅ"s’§ÒAm~ŒÝؼìùÏÆÀ4TsåyìØÐ4ƒŒ“Æ6cñÎ ¥ºšÂrt"%”í°ÏL­Úµ¸8&€%ME‚{÷_W`צ۟ï 4øÖ39­Ö5jSƒ§ÎtöGÚ_·‡Mi;Ý3<RÅ.N½E¯À$•¥Ñжyx:”Wqœ¹Ò6ÛÕu4l-q1†‹é¢M duE¤ÌgÜc#2ÐÑ“*hÜß\ä ’“mC⡆�•K5-ܦ3ì¨i>Rî°bÏ(3]Ù*ÉåÌ-7ªÎötj%͗טäðéö)‚6°e¿zâÔTÅ5Wר�˜‘8X©¡Þxmý¡NuêL[ßX  Á‡2]g$#*íö‹ iV.[¥æ³ŠGëÙtOOtvö§üM‡ö òÄ™¶Žî²}%"äÔ%ÔÛ=,v_ÞXHLJ^>=e¢ �–g²H¢(P¢G°FædºŠ7ôU~žhqTÜ{Yƒwƒ\ÔÒ“:²9¸ÅÈÃðNÆŠÊ&vPhÓcÄ<Ê^€0F Eų¥ž²kf<…(u~F²•íhƒSŠ-ÙYWä5/JÌë³î,g»Zjƒn/(-µWßRôØDWy™] §0·IðÞRql¨e+ úEÐ�Ñn¯1s.ža=2¢+ö´Tˆ4`gIu›Hq ÛÁÖ«Fë‘‘UØr`g©‹“…dªá *9'ŽÇ˜²–æ CÑby]‰°ø�ElaÀ,%.%"RR¶�˜À®æºR·Àxƒ(>o¬v‡¥K*æ˜Îa++—xYuWÂcTÜÒZ[ ²´XÑPå&'una¤Ï®K”*mÞSåaiÆ^Y_ÄBh#¯Ñ¼€´”ŠØ5»èow{¼N§c£õFÓ01Å®tŠ£ÁÔ-œÇ1V>eÏ_ËØÇ±Á‹Œ˜’e1Îâ"tf,´Ï(Žª ˆ§rŸº”à䑞6L ÅR†j2ôÚq ^;e¤MÇ4KS¼ÛɃšÐ L³ªE3ì†òäQÜX>¡)[ Ä>sú‰§Fýn¯ÏW\è7Øî 'Ò–þ‘áŒmi‹ñSYUCfJGŸ3䘾5Z¦•Šg¯$@™Ùš-7j¤d+tQº,&¦8»ÂØŠ^° –2Uƒ¡Ed¬,ÇaÓŠ¡.fµ••C<ÄfÓ]JÈ`¯õ2†3L ŒÍÍé‰4ÍxQ.*à¨÷Ò†œ2LL .5�”­°Ä~:‡×…Mh ÀÊŒbúýA»�¦újH6F aì•AÛJ ™“Ýý´âj*²aeÃuakÕ­?!œ‘!°Ì•VÖŸuqÊ^µ÷p‰œŽÌ‡fG»FÆJZ÷Wy¨ÜÃrï¹áÊr~•Ô–,m¨š¹:ÁËQ‰?w"�3ócœË+¶ZÌ^VµhŽC3GÉl¶råOŸÍª{–1FÔÂTf½.xáÙÆKDˆB�Ík •X†E1l¶•<¬K²¾qOfhdé+“,ÍzM]9Ž¡ò){ÃÉ´$Œ½²µM±°U‹÷ †!]€3ŠbiHi‹Y6Å„Wð�yÄ‹ŽÒj_yUàäÓ]³F£Ÿ×r$/.ŒL‡ÓçêýÞ9–k(Á)Bx6®Ä<*É™1mµQ‡€'Ã’é[Øþ¢$ÒÖ‚qÕV¦íˆuØ(=©`Ä岕OÌ.¦ÙtwŠ0>Ÿ0<��V“1ñ8rno¡DÓ1Ùô,D(%•6Ïå5F51ÖeóÅ"uVé Å:Y<ŸÒ,'O€¡& Ê.®^.ÈuL>eI6F ¬?í¶‹bpÿ•W]»¯˜5.ȶlJðº™äØdÊB`)³C©li]>˜ÒôàÄ|LRd)™œJbÎ. ¹ök#Î_]D‡Úۇ’¬ªr2:5<<™{W5â}UEhºíôHTRT5›Œh°ÕJ¶z¼à+ó£íý¡´¦H‘áþY�Dó<(sᤪëFž×l(‡ßŽóiD¡¶bÅ‚¬â!.«î¾ Ÿ5ÑÞ3Te)2Ü;&ÙJ«=T®6 Þ_îÑF{¦ŒÀRfG¦å¯¥¦rxÍLEÆ[hcõÀŽÕ¹þSgÆ’O±ç/ÌØÜTBUyv:œf;€å¹ÙþÉ”¶Á19Ë^ l,Ÿ1 $Ûh� )Ó”bòšRîêúŠÞÁžî¥81P^ݴ!¤†ÇÏ É�%¸‚;[k`%s-Â1¾º–=¶±ÁÞö!€æœ¾’z»Åj®lÆ_×ÒÌt¶÷›@qÎ’†¥²W‚”ì¶Ü(_ÜØ¤÷ž9>j1Ž`Mµ?=FQ�Àx«*<ÝÏ=kS¸ïpY^阷È509#WV =»­Rt.u²êhØÝ02Ü{jBJð–¶îkò EÎUWÔ°S<úœŠXÞS\êM!�De•ƒ‘œI0Å;Ü”‘^3fcUŠ')Z)]Þ †³î¢=4155o!Ææ¬¬ðÚA]‘ÞÂ�(ç1¹>¿0qláô˜ŒÍBkþ$¶!¨¹¹ù™'t°³“ÃÝ·Ýñõ/}êΛÞôîǸwùßó-�c÷rVB–WÿH‡âE‡hJqÍÄ�k÷0F\VM�šu¸-&/Ü61œÃIÉ1Å@9¡xÑ!©¸¾P‚uÙxCN¥-�@,g³³4…±aªâEœŽ©&•oñŒÜŽš¦�X†¡Jªn®;ó=�P4oç8–B�زLU“eçR ¢ÞÆq,�lJJÕ­•¬^½zE²œhgÊJô<õìLå5WUBB51¢^´Ñ�V•”BÙsÏÈWcýí=|ëU”iá¶‚œêdÕ1¬`gYƆª)iÂÜ}bYÑÎ2°ej✎©˜_'‰¡…º_šô¹ªA”úÞê¹çySI¥2¿éíx©°¸ü’&FʪêÞ‡JƒE %)sÑdc]¥ª¤—l>p7 ˜ÌôØ÷~ñî{n»ëž_´ÏNöœ¬í¾ÿ¢gcØ"Y~^i©rb9W°t)²teÝÔS=£´–Œ.¼Ëy̪ª�ë I_ùC“b+W±4ekÅWŽQTIYÿi†H™ïÀ2Õ¤¼6Ê¥�6 %i¬m!k%¹ØZ£f2Òí^‡ Z|¢Pqî(²%a�À¦¢¤VD1sɼí®¨ŒGº³ œÝV¹Õɪ;6t9®ËùP×Ó±•¯Ô…’ë$ÁF"É–7V9±’uiÛÒâ’ö*Ï.ý¼ ª¬hxr¾"Ð4ez.vðàÁddúUp YT$¼¶À¦4Õ7Ô£Y�´Í_¾·¥Öa)é³½2‚xom=Ç1”aÛz'b jŠJ?{]/Ý0¶¸rHÓPUV82>kZæR±Æxù[„1Â%Ò-<Õ®Ü%ˆ<…�¶ E‘_ÙÍò±¦É—„ê–©HækÏãˆZ T,UåE.o¡’Š`le~E 0F¸t2#-'ÓÄù„�Œ/ù'g®‘Ÿci%^óù«@M ca-,ËêšÊñÂ%­E>Ë†ŠœD;ñ8a»A– „W„ÇW”LD4U¹¤AŒ(jƒ ¤ÈR84U¬$'lŒ@xUá @,2«ëúÖnq²ê9½a®†Ñ¬¨wy|ÄãÆ„WÈ(ñJˆ!„‹YT$ c@ 0F  c@ aŒp¾ÁêäÉ£Ç&¼æýÃ’GN=>¥¾FŸ4õWŸ@xµ°-v*öv¼´ñ »eûXµï\zâ1bEqe}¥O¸dB3eóŠ|~‘WeA·ÈŠzAï…„xÈ©Š–ÇM±2qêå©¢ÖƒeüE»—ù–a êƶ¨6rÈ×|E‹Ÿ¶t)4pº§·Çux¯ÿ‰cˆõVÕð`™—R>€x·ÈéŠfn?°eE‘»%$Œ]R Ææ‘.SÒÑÙÉÍ#]M‡F‡¦â²ŒÝ_YWSîf‘%œjj SãcaóÞêõA4×Û;’LÖ]ºkg…wñ±V©ÉÁ‘¤%zKjw”x$O´›ô8XéXˆ’F´ã¥>¼c_s –’¥¹UbZÒÌPÏÈ\BÀ›¿¢¥±XDêä©¶‰¢½‡Ê„µCoÖ ä/¨.HMNF“¶—Ô7Ôjñø¡¡é˜lÅ9Jêë 8´¹T��Xïkë «À:ƒu;ê<•]�*ÒÙÖ/aèþÝÃÝ�L`wÑ=Ìï=X㢰6Ûñ|o:Ð|`·—#zúØ�ß¼¿ÁEå´ÌV\Ä ¯–aß¡²èËí³þ obz&®ò•{v±S}‘¸bbœ…uÅzÙ¤«M”ùC^lD†;:BBýž†gqY}'H;Ÿ M6õtdzV¦^‘¡Ó³=©‚ÆýÍE*9ÙÙÖ9$jP�`I“Ój]á&15xêLgD ýuûwØ”‘¶Ó=SÁ#U,XÚ\ogÊßth_‘ Oœiëèà.ÛW"Ú‡g#ÐàÅ0³ìÙSV(èóS}Ùšc2WÂf»ú£Ž¦ƒ­%.Æb1]´ ”¬ÂòB¢²zHÝ@þ©Hpïþë ìÚtûóc‚háþ3aGMó‘rŸ€¥h;xF™éÚDª…Ñ=5ÔçØ±óÊÝNm¦ódwàÚ[ÁéÙص¯¡­mªâš«kl�§Fú&ÒŒèÁ©TXF4–$– `%M‚«²ÐÇká鬖¡·¨ ZÎViÿjÀŒÄÁJOFŠ[\p1€#‰`Sí^ ©áÁö3gÆ<‡kÊÒ³˜ˆM.\Ÿ<Ó5ïh:¼¯Ê…•pÿzg¢Á‚@Øž\ò“L+tì‘GžþݳGvΰU{ZË+=7¢+ö´Tˆ4`gIu›Hq bg»Zjƒn/(-µWßRôØDWy™] §0Ç`-2AÅ-­µ"K‹ UirRçhÁWbW¦¦TŠF�Fl&¾ŠÖÐäðÍ-&Õ l…A¿ Úíµ1fΕD¬G6¨-ÙYWä5/JÌë­GFBVaË¥.LVt:©n.Õbðíl©-±³à(®©u¦'f,ÊÌ%�¶0` –—‘´Æù89”�+‘S\í7Â1¦´DÜÆÔ•2[SAkæ,+2HIÙ`Šwî(qQZRI'ø¢`ÐoãAsÎÚZ¿95´,&²`É3Ýí]açÎËöW9±*¥t-‹³ÈHA lì¼-*zw_Þì£ôÄd×é‘hZS’F2ž¶äøó gfK[ŒŸ@‚×NiEÓ1ÍÒïvò &tÓ,†jÑ ¥$e°×zC‰&ÆææôDšfD¡ Ø>89-×”±jd: þ½ÖTT9‘½¹�eZ‹([ Ä>sú‰§Fýn¯ÏW\èso)À¹*ôS�”à䑞6L ÅR†j2ÈLÉà¨ñs†Ó �`™V*¾©T öýNÖLËš¶;X-.[Tö²«c %úœhfF²ª’1ÓQWR,N',V¹‚ëRE›Ü’‚4 cƒË‡HpÛ(=­�Ö¢“½ƒ“óÒRé4ǪÉ,&²,�+9p´ |ÍW쯴jZ2¬­9‹@ 0öŠÃkwÚCqVíª¼Øß=Ø0Fî=7\Y¾z/›%K�!„32!–i-ÿee¤§ff¾„1¢hŠ÷Ú‡¦§äʲØlùöùYS“�r4§Æ3F|{ÕÞÃ%r:2ší+iÝ_åÉ™ o ?�Bز2u”M༤Zþp¥$Àˆ†ìe•5¾¤ì~›9:Ÿ,ˆ*b±×}³‰´)Qž;2Ó¹dÐgÏNÁœ]�Q›Àz¤»sL/ßsåeE.‘5ÃmO7¢r˜�ï+dBáÙùdaµß³:‹&;GÆÎØ´L3îÊBª}(d¶¸m0<NœêªQËÊkRM NÆçF€�Àj2¦1‹@Aœ·Ä>26%9qäßëcuCÅHpÙ`$KsëF[^t”VûÊ«'Ÿîš5ý¼–#¹ÈQaù)Á)Bx6®Ä<*YŸû…“z¹ ��kÉ„Áúlœè¶Á\–²ØB‹¡n±ÆáåÕé‰IóûxÄxœ¸glc{½‹6 +— ˜rÚ |¶B«eX©uÁY)ìlª/uBJI&¥PLÇv¼h¢È-ÔÆ4,í±íx×®=;| •ÃYZ%ƒ°=y5mÀb<eEBjdÔ*ª-¢CííCaIVU9žL绩q¾ Ÿ5ÑÞ3Te)2Ü;&ÙJ«=”eb@œ¿Ä®wöFP ¢€1T âüÕ›5gJÓƒó1I‘¥xdr*‰9»(09&øùT¸&¡¨*BÓm§G¢’¢ª©èÜdDƒ¼+±"]]S)Y•#ãƒC’XVé¥YMÖ²ˆæyPæÂIU× P‚ËCK“að:aÙ}¢:R„Bg™&Î¥ÈV\­íZV›Î&€ŠHš¦Rhpl!ÿÄe1ÑRYŠ÷UµîòF:Ï ÄLœÃYd¤ H6vAb²­¨Â958$×5íÙcìmÒhÎé+©·ÛXœß„q†Ý #ý§&t oië¾&Rd  ÞWä숳¥~ÆÔ �ˆñյ챭m)úÒ0‹RÃãg†d€\Á­µ°’9î\æ’±þº–f~x ³½ßŠs–ì0,µ©T 6sÔÔ‹³ÝǺÌ:Ëš6x°!!oŽ²Þª OwÇsÏZÀî;Rï¦DŸ“šŠºKÜŒ¥[ŒÓ+B\÷Ú@×ðF–Ùš‚«{ì*—­q]ÓŽTçégžÄ4ûK+ â£p1+Íñ¾êÖÆSÌž]•tg© 2VÛÔÜÜüÌ“:ØÙÉáîÛîøú—>uçMoz÷cÜ»üïâlïâ�ˆ±{yœL§õåÉ5k÷p8•– гsK!�lY¦ªÉ²‰iÖáf´˜¼p׊‚‘ŠëÖB8pÙxCN¥-�@ +ØY–F€±¡jJÚX^ñ¢xÑa§°ª¤¤Œ51Šæ×7·j횦�X†¡Jªn.HËqY]ó>W…«åG çpRrL10 šám·øÃ7CI©ºµ¹T@³7£K&-² ØÐ•”¦[h„hm4°hDÛ¼£«É¤(AtØ–H+Æf–Ù¢‚«R²LÊžQÅÚx§�cK×u`yPS)C6¡ŒæÅ92Ò Íâ³9‹@ \2CÒcÜûÅ»ï¹í®{~Ñ>;Ùs²¶ûþm‘mp ÍÀ†1V/’éRD_XÊS“òÚù½©§¿�°T9±rÖ’¾R±.Çu9[›«K-š­¹ÌïUZÿÛ£iW¿ÏUájù±¡%£KïMCIÊ¥Z©PÕòӛВZõ373‘2Ô”J~2lQÁÜ2˜™E�[º$ë+él`¢Œæ°¥%Ó‹gu@Ø–ëpÄ@ aŒ@ Æ@ aŒ@ $Œ@Â@ $Œ@Â@ H#„1@ .f³,st°û©Gõ«ŸÿèW?ÿÑSþjt°Û²^4Æpepÿ7õ5ï7¶OìèWÞ´Ëíö;Šïx¬÷?®.<øÕ-ÿâ—©'ßUZwçsÒÙÛs ZÿÝJŽ|Ì gçYóÕb½ôÉ/´îýô1iÛ<æôÏÞ¶û–“n¼½Ã˜"§Ÿzìÿ:;;‹+¯}ã»®}㻊*:;;ž~ìWŠœÎUjè_®tÖ}òØÒ½ “O~ Øí?ð­¡ÅaÍÜ{c è»­ï'NÙv¼þ÷oÛé¤�ÀùÎåÁCßÉÖ¡±ûþúkƒo¸ïtßDß®)¬¹éí¯ßíÞÆéïFº\,ž¯AòÔÝp¤©Âáö;Ü¥ 7~ì'ãä ÏÛsêþ/þÌùáì·_²¾¦KÞôW7|í[Ç%âÎóÎYÞزÌŸz„µ{®½õ‡Ã±ða0XÖ¸sÏ O?zò…'Ž\ûŠÊ2d—\qUñß<ù̸vx ü¶û…±ÇÛ¢«)¤�RuÀ®¯ívd4¥iÀqÛiô§ü×|î[×äæzgéÚëŽTú]��W|þ_¯��¸@Ó³íg·³±áyd|ûïøÒ{›« ØdßoþñÓŸ|s²ìôoõ¡mfáííÄó&¶6xß·NÖ~ôåÌvñõÙ`o}ïÛè·þÓSŸ»ì >òìðí˜÷ɺuå5+1l‡Ãqã­oíΉ‘¾¬źÚ†=µ�À˜9úLâÐÇï¬ì{¤+ � üö„\}ÓÞð×”øÂwÿòÖ–BwááoœiÿþG®ßSåpû¾†«>üoí) Kë'û?÷/~ËÞŠ`‰¿þ–Oþ¿8ÝýïvÍŽ"‡Ûïð×í÷=ýj~u®,)$½ý²Owª]ŸÛïuûUúÂrŠ#÷ßRzí=³ÊÓtû‹¯ƒ_íY' 2|ÿgßÚ\âw¸ýeGÞÿO/DÌ\²­_¾ÿóoßSêw¸ý¾†?þÓ†Ö÷*»õiY+µ;‹=³é’½8X‘î~Çþ·ßQ}ýŸÝ7¼îVð8úà;Š›>}B�kæg·:Ý•w<™�ˆ=ò{¥;&ojC+Ñö÷)vû•×~ìF×ZMë¿û@Éáÿ÷‹»o?pû}»ßõ±øË?xïeU·¿úõ÷TØÜ°‡ØöÜùòŽ›¯:´ÿ²ëßõù»?X•j?6¥n.öZ ¿¢žiÅOýë×Txüwéî·Üõë m¹ì*'®”Èê¸lÉÌü3_~K‹×íwÕ-5-ŸüÄŽàZZæH=ù®²†¼˜ÎÏ’øÂZF{ø¾Áê7_]HŸ7_kùûâàßýô®·,-ð»²tEcø»×zwþM›²Üõýƒòªw=Å� ÔÝö:æÙ{ÇIœÙžalx ·fÇî51l„ÐŽ]û¦Æ‡³—tìºuîx¸KÀ‰ÓW¼ù–[ްm¿RŒ™Ÿ›ö_qm9 õ|÷¿…¿xd<:óüǪ1ÕðÞoü_{ÇË'ý7-'>÷û_xi)S×z¿÷?žÏ?1<5Úþúß|èö¯uæû°ycôÞ;?ùxÍç<ÝÓÙùìO?K‡¶Z§óæŸý»ø_>‡S#߹ܶlßÛ™øÝ …×ýçT<œŠ‡ã=ßÜǯÉ¢OüåmyºþÓ¿|±³ý©ï¿)|÷Û?øó)3·lË#âõï¹nÿþïNwœxò_ÿ¨ÅŽƉ»ý©ÿ™l•XZ{®ÓEÈ.˜3¿øÐí×õ¿<u²ãWBßóÅÇצȹçæÚÈóÏOé�RçÃ=HÔÚžV�Ò}¿mÇ-7í6³¡ÖùÏ_yù²/?zì‰ÿ¼Ãº÷£ñ@hý:Öùíì½î¿{ñÁ»[O~áøŽO¼tàËüÛ7Ž|óƒÿðr:¿b&‡ûŸM•\{c%ŸŸØç¨gš3¿üÐ[?õbã:zú¹¾=õÃw½õë§GÃÌ&jÙÌ,'gs«,Óõ­¯Üú½/üòCܾÿ››Z]PËàÄéÇGœ­{‹˜óçk._tïçÜŸ?427Ùöå’û?¶¦+2oþ£ýá_þôô‚Vøé=AßüÁ+¼�@¬½ªFmûÝ�yæÏö cÑh¸¤´"×·þ@I2ÍÑ ïàMÕÒñ'{ëñ¾îPeãMMñ§ŽÎ8ÞöÈ€°ïæ�Àõ¦/}úú O16»kïÿü=×ï©-/o¸âÝ_ý‡ë¥Gþ¯g©gØoýÂ'®ôÓÀ•ÝúÙÏïþ·{Τó c±±S}Í ûjJŠ+w^ñÖw߲ܷϺÎ-_˜}ø«ÿ#|ì‡ÿîËwTV5¿á/¿ñeGïybNË-ÛbÁé¿zŸúÖïÿð3oÜSS^½çúÛÿè†àÂx·l7>õø?d«ÜqOn{n.Ûäoþåwâ{¿ýwïj­ªÚó{_þÆ;‹`mNÀ^[8òH[+C¿=í¹ýã—§ž96cèS/<­½ysó%× _ýæ_·§qï›ÿês7Ò/?Ü—åÉo®¿úOººyç‘;>óžêùv÷_ÞýÑë[š½ý3Ò~æù)}o&{§ßíw—xçÏÊþþþ¯\éDyŠ}Nz¦1ù›o=ÆÞþ»?py}Mó­ŸûÁgwõÿä{méuM°ÆÊËq�À_ù¥oÜyymyßüç/ìÜ´ojÉ iÐBÝ“†¿6ÀœO_CÞ¾üÞ]~e€EBí[>|Û¾¦+ÒÅ7äòä¯~Ò–�kîñ{ž·¿é}‡]‹ó9{°B÷N“0¶=ÃÚü€\‡påW_^0ýÌ‹3éѧ­×Ô®–[ÊG9“z>m4ÝÚìD�À–µV.MÚ͹gþé¯hðºý·?øö‡ã‘‰øâ&¶â@õb D{[<á3C©ŒÙRì×ov/-èý}תõ�¡áö÷ïzùOš[¯¿ã¯¾òïO IËcñ&užCÔ‘ûäá8R²¸êXpø®^%<¥sʶTpô¥AÜð†VÏ:+¯Ø-WåúFöÜKYo�� �IDAT\6iâÔÕpÃÎÅDÜÖx]¿N ¡æúý|ç#=‰ÙcϦv½õ-o©™xôt,zê±±¢kn~Ń-?Xc_¨•ójD²²³ä&ÆtqÁ}u´ô’"’¹‰7í—ý¹ž|òÿ¾÷×Î|æmõhØÊOìsÓ3µ‰S£¨îÆ]‹*[røH ÖÑ7×6±jj‘ã�˜ª«vyÎl¦èÀAßf8K^@Ë�Ö%8¡Î«¯!O_pEMÅ‹sHÚQ *k»"Up݇¯ÕúñјSüð%ßÛß׺¼1±k)+¦'l«0æõú§&Gs}ž›v¸<¹¾µ5ܼOèèäà±'Bõ·4Ù€.<tµ·û‘ö®§ŽÆ+n< �ÍR ½Êšè#·mòõß>68…gó/—ú6 sù½¥¯=Y]×}çø±N{áÄK¿øHæò �ˆ»?õh×ñû>ýúÒÈ_þ½–ƒŸ|"jåSç¹[˜ÞÿýÞ¹T<¼ü:ýÙ&>§l›O0–í–«rv#{æ! hv¹ãP ›¥Ùv¾¾Q~éÉ—_zl¼æõ{«\çï}øÔ©‡»„×ÕyhAÑÔÊ*5` x£c�¢˜Œ¿`E¡œÞ¤åM»Z^óûŸýá7oŽÞ÷Íg¢8/±ÏMÏÌ5Dkœ˜¹œ§ãrÍ+3kÄØÂ[²ä´ m/p tT6ϯ¯óô jµáÖvEä½âƒ·ÒOÜóÜÜè¯ürÉ;ß³k¥ƒ[rTa=žìðØ–a¬ª®a¸¯#•Jeý¶¯ód°¼:gagó­ÆËÿó¿¿*¹±ÕC5×îÕþÏ/ó\v]·vå~âØ}ïG?rÃŽ‘FÆ\GWt¥ƒ#Ïœ‰-tW}úèñˆ¯¹Ú‘¡e/ÛÑØÐØØÐØPå_ß™OÓõø—ÿð£ÇŸûáÕóÿûÓÓr>u®1 �ŸíOåøÊÃuÐõËÂYÊg—m¹à¡ZÔû›¶Þzå¹í¹J—\ŹòÖr<vbb1µU'ÛåõRPÞÖÊg~óïÿѸnŸ_¬¼f?~ö§ÿñœÒøú&Û¹µá¦‹Ç›{ÓÔ4k¡ý-‰ýŠz&W¾¿<ѵxéÓÇ^œóì®ßè6·Zåg;›6fO,4MÛü6"éÅ£ƒãÒ– ~á,l ¹žŸíšÖί¯_‘/Vh>øûSÿúÓïÿ¨·ú=ïܱr Ü÷éÁ} 4Û2Œ•Wï8úÙß=¼>’u¶=¯ÈRYÕŽœ…éÀáë+býó“Ìá«ÊX��[ÓëëÆú½Nfï-Mâº%¢]•TÿÏNë€Ó½?ÿìÝ«N˜¾ôÉ{^šè{üÿJWÍû?ÐbËOùÌ÷þ替|®klzzøøoêÖ‹w±[®“qU”ÒãO?×==ŽJ[ÝKO—Üö¹?p=ö§ï»ë—'ÆÇúO=þ£»þú‡=Ú²-|ãg~Ÿûßèî‡NOŒ´ÿîç?z|Jϯòœö\­ ÎQœ)}ÃG¯šÿÁÿ«WÆXøùßþ`(ûÚñW8ûÿûiãàë*8o®›zð‘éòö{©skÃMÉâÍô©¯}æk?yðÙc'O<÷ÐOþú=‚ºæý—{ЖÄ~e=“ Þúñ›´ÿúè§rtp¸ãá¯|ø+õïûãÖ:ïÆÍ­Z~î‹ñoG‡&ú~ûOÿÛŽê÷ ÅÆW\s¥«ãG÷u¦1NÜw×7Oã­¥Ì2�Žæ7¶àÓÏ )ç×ׯÄ«[Þ÷Ž‚g¿úþ†¼­zeŽSOŒø®º¦’#f[†1Š¢/Ý-–šxþ‰_ÍLŽšjhêÌäÈ3þrjlpße×eýÑØòQ}í!`¾åÆÅ-N”gÿ •�ÐpëZ?Ö¿í_¿qSÿÇ÷+[?ðäÞO¾Ñ·rq…ÛùñOV?pgë®#oý¾ò®ý÷§šù|Uà¹é¿üŽË[ë¼áîé7çßÿ¬Ûzî×}ö¯.ïýÌå •­Ÿzi«[A(ï ÿøÈÏ>âþÍ'nÞ»»µõÖOüdÀUá¡r˶\ÐwÓ7úñíÚ¿àÚæ]û¯ûÈÎÈåWyn{®ÖEÉ^è’wüð?? ÿ|uUUeëûßó§WÛ²ùZ¨¿y/lóëD�äÞ{S@Á‘+ʸsmÃ͆ß,Þ¤lŽùß~ýßrýu7ßòû0ýöyôžw”Ð[û•õLºø÷~pÿ݇:ÿææCÍWüÑ}â?»ÿ/[„'=4·Zå?ûDå¯þ¨uב·|7½Ô´ý²/|ï£öï¿®´4¸ïÃÏü³ë[\éº`–ªðº÷Ž=ôë!íüúúøb­mnO= ƒxsÅŠž8q⿎»ßúžf‰3çÔÜÜüÌ“:ØÙÉáîÛîøú—>uçMoz÷cÜ»üï…-ËNÆ£�àt{ƒåÕeU;6ŒaçpšÝ÷åWÿï=ûá f;×I¸X\,o’^ôJ-“zþãW|½çÄ×Ú. ›§~lïÛÿîäƒï,Zû¬™ûÞqä»×?ñØGjXâøWJfHzì{¿x÷=·ÝuÏ/Úg'{NÖvßÿŠ<NQTemcem#±2@8w8.ûÌ—ßð¥úÒ÷nó\ë©H¨ûg_¾O¹áÇ7®ÌßÍù“m?þÚÕ$†Èd‘@ l;è’7~í{—‚ ÒsÜõö_Õïøöwn̼ç]ø†¯~÷ Ä‘$ŒmWÿ©ÓŸÚþu^M=„ô¢íi™‹esǵ?› Ç^\ÈóÆ@Â@ $Œ@ÂðÿÛ»ïð(ª5Àß´í%ɦ÷ I iRábô‚(‚…¢‚‚ V ˆ¢blQ,QšR…ÐB é$²)Û§œûG aSI0ï}x€=sæìÌüöœ™EaŒ!„Bc!„ÆB!„1†Bc !„ÂC!„þÕ“$1+ýìžß7oþîóÍß}¾ç÷ÍYég%Iº ÛÉ´{œ_ø¤}æÆ¿Â’ðz×./6·ÉÕrVõ÷íþ~:_Ï<bþúч¯Íp/AÝ”1f³Zöìø911Ñ;(rð=ãß3Î+¨cb♽;6Û¬uÿf)ùq¸A£¿êOÇÓöH¼ðãëµSŸî®¾þ²,Çâî¨Ñ4z¿ŽCŸ]•Pv#>)0>÷Í–¹tÅ3î&¡¶«™·–$ñàžíœÚeðˆá¦r¢¯¯dtܽ¿'ØÙgðÝuÿêÅöY²åí^—Rû\]Éá�™Œ®ãa•jÜl7‚#}Ê„°é«ZäÖËŒ[÷GLŒ vç*R¶¼ûÒ ÷WøŸZ;ÂjíµPw8šõÞžWn»»õ†B7²7–“‘bå¥þƒª3¬’F£:b´R­ÍÍL©/<]Ãb»Äu­úÛÁCF9Rã{øôxý“Y#b=õž½ßÞ²¨æÃå)¶²cOèbÐèý:œÿk®� Ö«–§Tÿ^¬#5¾‡Oïw6Æ?ÔÃCopë<nùÑÒ²«&Þ¬ÑBþ³pO±X•~NKJÄéî®7hBîxnCFõ/ªÛ2~|yTŒA£7ø÷yü½%bíõã³·mH¹ÿvO¦ 5q¤Æ÷ðéþʇ3‡w ôõ1D á§l�€*nÒ‹ÏŒ6 W÷Ûî÷jüä`ÓÉÃjÿ0®Twûô\øåü{ú¹tAƒŸý!ëêW Ÿ v~íøåÕ#Æß·ÍH�@~ï@öïoŽ”áŽ‚ºÉb,#í\h‡Îµ2¬ªoEQ:u»“ÑŒ>Lò'ß+^Üžc,Øÿl[óá3ê_¦Œšs0ò­‡Ní[ý iõ¸QËNÙœ¼êêߨs$~ôî¹!Ëwü-¾kÂëcóü?=ýrä†f¾?ùí� 69-Y,Ø8å¡…©·¸'áÌæg˜5oüa"��’qç¬{ŸÞñÒ¦ƒ‰'÷|v_qüƒ“¿»pu‘òSdj»vñb›R��ǹOpyugÆ…¬“Ë#¶Lyhi¢½fÁbEÆŸßn½à3xhÐÕ?_×Z��8Î~úlæÖ̼ã‹|~|öÅ_.Õ’dï²{ñ¦/OUVA*ÞûùNfØä~®�€2l@¨ýø®4î)¡›+ÆŒÆb¿Àºž5xøT”ë~5±mý¯Oõ¹±Ð+—Nèî[ðÒ¾ršU©9ªÆCYéŽvp­Œ¢oDḧWV½Ü)uݧÇ-N_U“nè’÷¦ÜÝçѹBŠNêgÅO¿#6ª×ƒsŸ‰*þkÿ„¼-+œ•,ämùp—râG Çu Ž{`Ñò±^@�@¼¸mÉŠgW¿5¾o‡ à˜»g-ÑÿК…W¬r\:›'Â<ئԤjoÄëÏ÷70 óñò«]2¾Xsºr%+vŒ5è zÿc×û¿õãâþÚ«V´®µ¨|Öãù3û{p”"läÔ!ÜÉm)Öš¯e¼‡=Ý·bóºã&� ÿX³_}ßc½uUŸIÔ¾Šâsùc¡¶ª™çn¨†g¨g–«ÏQœ{¸��8ÿ®AŠêÙª:reQáÏvª:xs>½ûx”K-»_ûªš¸€!•Kau¾:™o·p uùe.1‹u–l%Dz鎳¢«º›ªÈ!QòŸ�Àžy0Åšq¨ÏÛ5šcäÁ[^Ó¼Ù2K7¥&@�xy6`\#c]ŠOž7I=T4¨û.ÛwÀh*<·ã£×掞¶oÅ0Cuñõ¶Ì+Ê»ªïÆhÜ•¶LóÕˆÐîC¦æŸZ{¨¼ßàòí«ÿq{ðÍ®W.L¡8'Ù,<iÄ{ŽBí'Æ\] ò²|ýü>[\˜¯Ñ¹Ô·T×°Ø.qÚ«z0�@1]ã`YûaiZk¶«ž§ºzVŠfk<Bê+™�Ð w%)h¶êÿD"L÷Ï’¶?â]wG–Q»k(‹Ñ*V·o#kBDA¼ü€H|uÞК€¨N�±=â´'¢&¾ÿ×ü»F¨†>ZPUË®ù!@jÍåÚoòfš}…¡YkOøŒý Sõ§Éj´q..rÌ0„PÕÌAÅàðŽ)gL&“ÓgS|BZ°–²€îA$mgRÕâøüà ]:GèéV+YÐ5€d½|¹‡=ïxº•�€<¨w8$m:P\ß%ïœGL„übR¾£ÉÕ2ÿ:]*UUåБ·˜M­•‰ÔúnÞõ¶¶Çä‘ê=ùÙççB&ŒíPݯŠS³yßn ÜSB7WŒ„tPȘ¿wm»6Éï·YÍþÁê;ZÓO8y¼êÏ©¤<Ký_„b}G̸Ëñ¿é/­;”žqfÛâ©‹#{ª«ªz£u”ÌúÝ=}@Ѫ7þwÎJˆ-í»7W¯ìhùÜûÊúÓ›¿éhZNvê±?>Ÿ?our­ÀÒÄÜKNýu¾é§”¼°æàùÜ”?–ÏXœúø±*˱¥s—®ûíïà G÷m]7oÂŒô ÇûºP-Ù>ÊØÇÆ¸ÿ½dejÇ'F‡T_=BL‰;3Ý ªuA BµÍT¤i¦ïÀá‡þú}ÿÎÍq=ú»{ø�@Qa~Ê™»ÍÜí¶!ui �ˆppî°Õ ¶ž}×­¾å1Þ¬ú±ð…^ÖËò “×1+VQ9y}ê*|Ƭþ6sês·¿!w ¼}â´Û÷| �@»Þùîöõžsç??ly€Ò§ë¼êRkeiÏ!õžÿëù—㢛”�²è/„ü2©ëìÑÐmÒçßω‘ƒM¥)úsÙSogV�Pú°~øûkc|˜–mELJ&D¬XèòÄýÕ›)?ú¿#úQcT¸£ „Ú**&&æ¯Ý¿i¸‹ygï}tÙ‚9“îºoüŽ_¾¹òw=/–$)'#%?7£¢Ì�Z½«o@ˆp‡z3ìaÚ?£ßdnÍÑe=›ŽÔø¾·ÿ4ùðßSÙ__Ë¡g»<˜¾0á·±^—ß<©`Ø>ŸÜ±sÇÓ¡î)¡MÍHÚñË7oį¹wþš'/æ%'„ýñº˜4M…E…Eb+_CsÛÜEw/8béÙ¥÷eo*¹tvý¢ ¶;×õ¬þ�"%÷xjé£!˜a¡6ŒÅ&h%ŒÏ=K?m5ï›ÜéÁ_…1­ZóžSŒçÝK>¹ßH„ÆjYÄœ£ùsþ…~ãàõÅØü¡v Ob!„ÂC!„0ÆB!Œ1„Bc!„ÆB!„1†BaŒ!„ÂC!„ÚtŒQ4-I"¶B¡¶@’DªŽ›Î;¿•Vçj,¾�;~ù›!„пËX|I«smBŒ…uˆI<q¨ûmC\ݽñWWBý{ý0ÉXTxâPTLÏ&ʇ·?�¤&Ÿ¨(/%’„íˆBè_AÑ´VçÓ³2˜c•IV×kB¡6ÂIŒáù0„Bí5ÆÞ5!„PÛ¿¦æ#¼|!„P;†1†B¨«óìóç.äœ'„`!„P[CQ”o`h`HGlŠ:cìBÎywŸ`¿4†BmðØÍ±y™)uŘ©¢´äR¾Ýfm×]Š¢ä ¥›§FëÒœ#„Ðü\ôE=/‰(¡Å«ÎP,C1œyBØ Ü B· IrQ¦òÒÂü¿àµVOQí¸+Bˆd®(ËËJ¥€RkõMŽ1 P™âC†ßåôy³Åd±˜Z¼Þ*•F­Ò4ræ]Ûw ‡=B¨ZIaoPxåqŸö}ÿ µVï~1/«Y1@!�‚Ä_û”Åj6[Ì-_c¥Z®;]bQ xö!t«r~ô³Û,*ö¦96ªÔZ»ÍRÏ l½ !Aä¯É0‹µÞB›G©PÉä²k×@§“ིBèªÃ"�uó|ħX¶Î‘\•+V«µu2L)Wpµ–Õ˜Ï"ØC!gIv«¨PQ€šÝ#«ÍjµY[#Ã8×Ä~ØU•D!TóȈ1VçWÎTÙl6[+d˜B¡ädlãχÝÊ:BŒM‰1‰ ¢$�€Ýn·Ùl­arNÆV.¢9o¼R!t«†U=1Öð0•Ýfsð‚V[ûÊp‡ÝN‘+7GoL‚ÄÛív»ÝÞâË–Ëå Ç4»v%ÇpcFÎñÙ«ž´ã¿_}?Æ›ÁÖ@·RŽhàóýÅ‚‹Yç3$á#ÜÝ W¦›ÍæÄÓ‰ ߀À€vc•£««Énw´B†É޾® »õúηä~ZþûÔѯê—ìYÚSÝô£jiäV"•þ³né›_ʶ2±w¿ðúSwÈñ@ísÇ!õ÷ò22|¼½=}}N8I n�`2™Ï&&EGEU”•æä湺ºj4Îw;â(ÏÉÊ¿XfPŒL­s öÔ3|~â¹Kîc½eT›ˆ1@"¢¥®K”ÉetKdÆØ­²7 Íx§Ikxn1ÿ—7§­6ŽœÿÑ!»?\8o†<ðÛ©ø öÖkèÀ(Š¢$sE¹Å¤‹;yâE…3,›rö\ç˜QÊŒ¥‚(8vBTÎJ·e'gæÓž»†zje¢µ¬èb§Ö³öB� Ô>.ªÒR³pÃÚ¡AED±¥Gíd2ŽfiAj‘•ÄïÝô{jåÉO‰‰Ø’—<øbÆKV P�Xž¿ïmÝ»_/ˆ.\3~ê¶!ÓÛ¸áHžY>röëó†zs„T呈TvðÃÙ3wøÏûtîÈ�™“ñÙ?sR{ÿû3‡vPL˜7éÏÖ|yò‘ø^*|P;üøW_Œ)”ÊQ“ÏJ$ÏÇ? sLìéS'šî+ð|NfFIyYHh¨‹‹‹Órˆ½Âhg¼zu w³šÊM"Åxøys2Rxæ\¦ y÷öd�Æ%:Ö_C¬³óòJlÐr­[P°—«ŒbÏKJ+Ö{iÍÅ%VA¤•žþAn\³;p oL’Z2T9G³ ¶D? ð.·ÐîHHõØ`õ¿—ûk„€¾aÇÐ¥ïîZ¦º°uÑø%+zu[4LGHåìBÉÞ÷fÍÙñÚêYwû°Î÷LÓùÃy\äs B�í}›·õ÷ãöž!2|ÐÍc� ×é";EKJ¦rsüƒƒ£££–Gnf¦±¢"¢CwwC…МŒ+JŒ”ÅÊK��¼ÝaUHÇÐÔÔÂÀA·‡ª(�‹S&eY\:tïç>žr^Õ-RÇ@¬—,>q]:{º’â³çêÃ<h±…cŒ\¾ïd Þü—•±K„ʰÊZJx¥âM¿; $‰H!ˆD¤+=4¨zH�Üî|r|œ MÀàÈÞ+–ìͰ!�øK¼ýîüc|:c¨'S×#”–u°öò ”Ú[ å¼DX|PûÛo¦Òi5áÂÓRR ó¼O@ ÏÛósså";º¹¹ÖW£ pMM;¼7Sª­ÖÝ Óp€(D‰P–m4ñ’Ø[FyvíÑÁÓQn4|óO²~þ+`¼¢"üõŽ¢ &Qé§¶æîn-Þ«jˆ–Š1–c)Ihéƒ*ÞÜ»cAÅÊsDªzÓI͇¬!Ø•«œ™V¸ÊyV‘ @HýòåytïÅkŸ»Óƒ®gk©ºvuáÒåž~PBí2Ç9CÑD‚œŒ À04À2tC/§nÞ]|;R¢µÌX|1/ïlAY`d€—œÔÜŸˆÃje˜;c3^²Ú$�ZÍñeVE„�@¡W1Ö"‹M��¹œv”ÙÁµ™»Zƒ_&’$^“2C1DlÁ~TÛ$T¼%öFrùzC j*JUÓ��uù‰Êþ[å×öèÒ]~ðø–ùïó«gxV¹ë)óÅ2ž�€P‘_ZO5ƒ[j»{GýGïegdiU*^äEA�¬^«I<Ý9J§ÓÕ¿lÁjšÓ»ûxx{f'Ë.Q5Q*wGšÞî ¹<²"1,MP„H‚ÝQy'„€Dš½«5æ÷×Ûb9IZ¸Û$ò’"dnúõr4BÉõ °”Ù$¢¢�IJÜ«¤¯¾†‘\‰1¨¾ÌžÖw{bù~˜òÚKo(Þ]0Ô“«kAê ž¾ü¦CY–>QJ�±øìáeT¬‹[j‡9Öàf[TTœ“™¥Q*yžEÑd·³4-'„#¬‹N“œt®Sçh•º¡ë›D‡ÃâpQ¢@tP œ¢ª?u§ƒ±°\ÐTî‹«I`\4„�±—ó•{/_n–X75!ͼÃFÃ7£ºÎAE†£ BKté®j=Ay €ÆAÅ›}?­1¨Èzôè¢þjó®ÔA£ÂáÂöÏ6¦ª#‘*;^@.�V§ZåtÊÐwê§/[ž\<÷åÒ¹ý\šñ16fÝ{|3sLHÅÞOÖ&yÝ5»³70Ô>G1ꋱ£1;#C£T ¼ Š¢Éa‹ŠŠrØíÙYY@€V§Rž>“Ø­[W–eœuÄÊ3r¬J½F«ä­å%¹Jè"cŠ9–²›t"/H4£öÒgœLÕÉYÑV”WlUøtuþ’$crrQ ²ÛJ.åÛdþÁ®¤¢¨åc ªîpßücXŠÐ¤Å3L$Q¨V’ágå›>Ƥ+C‰ }òùqo®x|Ä·2× !ãF÷:´ñJxUÍYºÜ«žÎx yîKü¤ù¯¨–,™Ñ]çìÒ^Ú{Äìå%¼½ôÅl”[ô°ùñDÉqûBí°/ œ¼Œe‘EÑd³EwŠÖé´�Z"I¹Ù9�DÆq”D$Q�ÆÉGS´\¯´‹/ØD@ËT†à.qa*Þ˜¯õ4èò÷‘€ÑGFy¹ø„KÒ“óx dZÎÝcݤÒB»@©C"TE)‰Å6Â*½"»ur.–·ø "©úÜìÒ,%Ñ”ÔòF$áÊÚÊðüMN¨¸h"ª %@éãžz÷‹§®<;ê� à7qݯ˜,bֆﯙÎùxeû€+³9¡ë>þÕã¯é "Ôþzcõ"¸{JKKÍ&»Ã©Õª+ç÷ðt%1/'Ï!nînÇÖQëæíå¡R©e, �D°ÚŒYÅåvPhC¢Cº{z(X ¤Ò¢œ .þQ>Zµ‚"ZKJ .9ªöS÷°(.@á¡Q° ZÍ…ÙÍù¨÷{c @åßME1� ÕâI$µ:‡8æsó’L¹égŽþº>SÑù üÀ‚PSb¬Ý%,<´¸¸D¡T¨Uªš3{yy*•Jš¦5u}…ˆVSQ¶éêi'’2��à|åÃ.Ñ!��`©¸˜^á´§(šÊ.””^÷Ê6ü•˜f;hh¶åo©% ÐÒ];Ô–wDóáes_KÒÇŽzîÅ^Ú–Úž„œŸ&>þuF­©A¬ÿì öºfF¨}©¼¢“A ¶yv‰ñíTsJîùİ" ï‹TƒŒb¨ÖÉ0BDB]wÄ¢vƒÒÞñþ¦;Z|‹õퟣZcf„ÚÐÞCÑÿÊró2Î6\ Jî᧤ʩ©'ÛP†5±íXŠfZ!ÃDBDrýÕC¡[#ÆÚøÑÑaÊ;gj¡Š¶äÈH+f˜€ý.„jôј¦o•m ÆH£û<4 ­”a’€ý.„º™zc70ƨÆ%ÅPt+ü¼®$ÂC¡¦euÓ$!¤þuiÌ•Š èÑ­•aDIÃ)‹B¨’‹“�� iIDAT¹Bi·Z”jÍͱ:6‹Y®P^WŒQÚzƒ„¦[á’‰H$L)„j*7OŸKr<¼ý•*M»î“B¬SáÅ</ßÀfÅEÉ8v¤öQÜ&B¨­‘$‰®#¢4Zð…’Kù6k»¾EQr…ÒË7P­Õ7'ÆüƒÃó²ÒM奸¹ „P›;ÄÓ´_px]Ïj´.­Ë-ÒuÆXPhdPh$n+!„Ú2›�!„ÆB!ô/¨=¨˜ž|!„PƒÂ"»´Åk#ÕB!„BaŒ!„Bc!„ÆB!Œ1„Bc !„j=,6B¡C"¤¨¸¸¸´Ô!¢(° ÃÉ8ƒÎÅÝ` ›{3þFõƤÒCKF÷ðô 0MÚmjÑu2ýõhXÌÓÌÀ§-ï:pM®ÐZºMU¦5\iv„ºa&II©)VÖ¡kL×^ÝzGGvòóò+3›“ÒR%Ij½s~˜¿"sø·GN¦Ÿþp€ß „BM–[PànðˆŽê,ð¼ÙTj1•‚È«”ò`ÿ@¥B™[ß¼b3¨È¥Ò¡{ºé® W2®ýž`kíú·÷öA¡SZQàí0~§’«u·1' ¼`N`ÈqÑ=&-»™ã_ a‰qó}w­½dÿû‰¯�ß {+ø´åýBû¾¹zîÈÞþ^ÁV¤9l™›_×=$Àà6ð©ÅÊ×Ö1]2^>¾Ÿ¯W€!òî6eÙköûŠ÷½=¦··W€G§‘s~ÎuÔ®Œ%ù³†Æ„¼ ~1}_—æ¨gAöä53†÷Š2x|»™þÕ)¨0¬]ÿùô 0xøÄÞû⯕m)Uœøtò ¯�CÇÏÿ”S»2|Úò~¡}ÞøtÖ}}"BC};_®ð5åÛËN|öôðï�ƒWD·1‹¶æñUkãt¹N×ÅéŠ7­5êkv„ºAPÊ/i½'¸ÂYêqœgIšJç%7<£W¥9x¾ubŒrùKÊï=äÖf\̹ðÕ@-��nÕ&ÅŒÍçó3vOuÛ7ï¿Ïî µ~÷ñ¶¯¼§xùÃÓ6^A*ÝítºxqÓ´‰‹Óú¿¿cÿ± Sصoí4]ùqRþìG+Îûà@®ïžä¾›:ayÒU[!û»§çì ÷ÃÑGï\=÷.u.$ÝáÑw6I8xpÓK1Çæ?¼0áò¹ šõwÝ;gÔ“ëaÌG[&üýûŠ 1êÊ_Kå“>^vª×¿þ½eÝ8qý̹¿^;n˧¬ùI?wKòùsGâöM»RáåOQý:mܡ;¼²y÷Ñ2­{tìû§m�’qçµË­c]œ®xÓZ£¾fG¡A.“Ùí¥_"Ðò.¬Ì–G�ãÏ—~b´„+äŠæÛÌ+u÷¼úâ`�cÚµô'Å3Ûß)€À™oÏüyø{м7ÞÙôѶ¼G9~ÓëcâÔ�óãÿzïÏÕ+Ùï•øÇ{»Óúܲ—¸b]âŒønÊ+}µÒÜ&øöA]B|ðñ Œ�ów8]И‡½bŸ˜[ùJÿ‡.üã×Ù¿¥,èÑ•¹ºþ,Ýd¿ÿË•³ît¡�À?8�ø4�Ð Y°tÒ@=±ÏϹãë™;R­£=ÔµÚA=|Þs}Ý�¿a³çÅõ]¸.qÆ"]Íòé²+w²c¾_4ñ6-ásWÎÞÑgåê“ÓÞ ØÍrÅü N×åþNNVÜÞ”Ö¨¿ÙBèpÓ»Û¶_VÂÊžÝÜY8‘Jr³Ïé=+)s¸è™c¬_—€ÊÜ´gN³fþ30lY§CrKMuL7ç̥ߪÊUÇ‘²_®Ô7J_Ù?d=»ww-9“a’º)/÷åœýås=û~=ìÎ!w ÿïÈþ!jª® à^¾ïãY¯±=±¨ª§ª^&�0µê4ƒt˜§¿æJOÖ¿{ˆºrªÌÕWíȲ\Û}aº©*ÿ˸tŒq)9•a’âj–ïÈ;™C…=­©,‰óîÑÛ½ìxZ¹…8Yn]ëÂŒr²âMjz›!„n7×Ô¬,«M°!‡Ns#½Ïœ»@¤°Ž®z›-7ÈßÿFÆŰLÕñ—Ât]y|óC^WOZÕ1ý �ÅÊ®¼)¶ @(£_øõ؈¿·oß¹wû;¿óîÃ?ìZÒ»Ž HÅ[Ÿ°¢hʪ¿7ö uSÚΈ{ÔL®­ÝëHÓW ¤( œŒÂ‰‚xy*y œ—ïdQΗ^Ǻ�Àµ+>Ø¥ ­q]ÍŽB-e977cYiP`à±'­‚PZb¼½oß’²R½Žc›9:x½3y`PHþéP‰Ô¸é2ÿX’}4¯ê‚ GþÉó¶+ñ d8[Vù¡0!ÁèÚ9XS«‚¬>rðØ™o}¼u×Êþ…¿|sÚZׂøÜ£g±OOaP2”X””lœ×?„JÙv²¬YgŠ„¬}IUæ þ9ê¤Â2ÿ.$}÷Ùª³r|ÁÑÃEúNá:¥³åÖµ.NW¼I­Qo³#„Ð â¢Ó€Õnsuw»cÐP7W“ÙÌó‚‹V×ì2¯7ÆïsÇjÿœ9å­ÍÇÒssÓNìZ»è/RuMg}‡?ݿ䋷6¤X ±¥oXôEFÒìû½ô呌¼´]ÎZœ<aBgegmgÖ,øðçýɹ™G·mO¼£¼du.È3*ˆNÛ²¯€bIÝøÚ»IN{@Œ÷f–ÿ<múòßÏdæeÚ³qÝÎüÆ_.ã8¸xÎÚ2òÒv~0ûäZ�ÖgØô;øïŸíëÎg&îxgúÒ¤ðñ“ãTN—+Õ±.NW¼i­Qo³#„Ð ê1,!$;/W§ÕoÙþ›ÅbIJM±;,Ûü[J]÷ͨh—!ïüüµçk çÜ¿¢ @é7xì<=SçtÆû?Ïš>ëÎŽ‹änþýÇOíÿ÷ªËeqQÓ¦þútï¹E·.O|úÕ¬Îò«¥l{gü¢œrr¿ž¿¿zZ”ó1^÷­ˆ?øÄì~Á³tnþ}ŸñŸƒËœ}Eœv½sé¦UúyoMùÏbȽº<¼x@£ïˆÂEM6xË3½_®QáZÈxZù¿¢—æ.¸w äûê³™1 �p¶Ü:®p²âtzZ£ÞfG¡ç\jªŸŸ_\L×ÔôsóM&óÙ”s¡Í.Љ‰ùk÷oîb^ÆÙ{]¶çÏ­ØÊ§-t×Ïÿµs’?Þ˜!„iϾ}©éç'=1%ïBNN^ö™Ó‰¡¡ƒôo| ƒîqïü5O^ÌKN;û#žèG!tãä^¸£V«)š’ÉdAA9ò®§@ìH „ºqzvëvàð‘S'OW>d¦ßm½1Æþ \ø ûÏ¿€í€BMÑ1<<ÐÏÿÙÙ/§gd……}¸t±R©¸ž1ÆBÝPJ¥bÍGË[ª4<7†B¨ÃC!„1†BaŒ!„Bc!„0ÆB!Œ1„B¨õT}oŒâ•°ïóîýG`£ „jg1Võ;Ž„üµû7l”(°ZÜþEØ¡fÇ©ì“)!·íÖ•e P@%P@(Ð I4 ´ 8XZÆÍA1œDÛi"Ee^¤ÁlyF’sjÎa²Ñ”d*³¥‚­ÏVÐ%“RÏÛJujw ÌV¨µrB8‡Ãa””•£ÜDWÛ8Æ,±*¥/%Y$¹V.Øy¥»Ö\RH›ã(Š+ÊÊ$bf(ÆRÊÙeù\¹D3q•hšØùl¨®Ð™Ô4o§D §'œƒÔ"c[ 0V†³Þ*ñ¼¼Dæp8T‚©Ü”Qä9¹Ú"YÔDî�AbZ�Ž—–�Š!¼]‚EFÓÃÒ¼$ÉA hZÅs ËHà Yâ DNàhšX™^F$#Éd*=ˆ…”ÈIÍS”LïJWØDšIÀK6$‹àPËÀ, p�&b³”‚UEh;M8Š^bY°  �ÊNÑ,ˆ2F²ÍH@Ó’$Ñv(�$h†0r†ð„bˆ(RÀшC\“Œ¸C"„šªê‡ZÊr÷`[4†Â{`S_rû†ýØn‘»/!Ô$ag¤bbb°!BµSÿ]×$Ž˜�%s����IEND®B`‚��������������������������������������������������������������������������������������������������������������������������������������������������������mp3splt-gtk-0.7.2/help/C/mp3splt-gtk.xml������������������������������������������������������������0000644�0001750�0001750�00000030604�11753562422�014661� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ <!ENTITY legal SYSTEM "legal.xml"> <!ENTITY appversion "0.0.1"> <!ENTITY manrevision "0.1"> <!ENTITY date "November 2010"> <!ENTITY app "<application>&appname;</application>"> <!ENTITY appname "mp3splt-gtk"> ]> <article id="index" lang="en_GB"> <articleinfo> <title>&appname; Manual &appname;. A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means that the selected audio frames or packets are extracted without the need to re-encode the file - which would loose quality. 2010 Gunter Königsmann &legal; Gunter Königsmann &appname; Manual &manrevision; 2010-11-16 Introduction The &appname; application is a tool that allows to cut MP3 and Ogg Vorbis files without the need to re-encode them (which would loose them quality). Features include graphical selection of split points, automatic splitting of music recordings into tracks and automatic adjustment of split points to fall into pauses.
&appname; directly after startup Shows &appname; directly after startup.
Starting &appname; You can start &appname; in - at least - the following ways: Choose Sound and Video&appname; from the Applications menu. Run &appname; at the prompt in a terminal such as gnome-terminal, or from the Run Application dialogue. Closing &appname; To close the &appname; window there are many options, too: choose FileQuit press CtrlW press on the X-shaped button the window manager of your choise provides you with &appname; Features &appname; will allow you to manipulate audio files without loosing any quality. This program was designed with usability in Mind and contains the followning features The ability to use your favourite audio playback application for playback of the file that is to be cut. Automatic detection of the right places to split. Automatic adjustment of manually set split points to fall into a nearby pause - which allows the user to work with less than milisecond-accuracy when specifying the split points. Importing splitpoints for a known album from a database like freedb. Automatically split albums that have been joined by albumwrap or mp3wrap into the original files.
Basic Workflow Opening a file Just press the Choose button and select a file to open. Choose the right split points Choosing split points manually Press the Play button (a gray triangle pointing to the right) on the Player tab, listen to the music and press the add button (which is on the Player tab, too) every time a new audio track should begin. If you don't want to be made to press the button exactly at the right centisecond the add Preferences tab gives you the possibility to let the program fine-tune the split points you choose. Automatical setting of split points The Type of Split tab provides you with a wide choices of ways to select where to split a file into tracks. If you want to split a media into tracks others might have had access to before you can try searching for splitpoint readymades in the FreeDB tab instead. Tweaking split points and entering track information The Splitpoints tab now contains a list of points where tracks start or end. It also contains the information if this piece of the audio file is to be kept and how the corresponding track has to be named.
The split point tab Shows all split points and track names.
If you want to change the start or end position of a track or give it a name just do it at any time you want.
Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. &appname; will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of &appname; is to work completely lossless even if anything goes wrong not much is lost.
Batch processing of files Besides manual and automatic splitting of a single file &appname; also supports automatic batch-processing of multiple files at once. Enabling batch processing mode Go to the Type of split tab and there to the File mode tab. After selecting Batch processing here batch processing mode is enabled Adding files in batch processing mode Go to the Type of split tab and there to the Split mode tab and select after which criteria you want the files to be split. Adding files in batch processing mode Go to the Batch Processing tab and add all files you want to be automatically processed. Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. &appname; will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of &appname; is to work completely lossless even if anything goes wrong not much is lost. Saving and resuming your work &appname; contains an export feature that saves the current project's state as a cue file. This cue file can later be re-opened by &appname; or be used by any cd burner or other application that can read cue files. If the cue file is used in a different application than &appname; there is one feature that most probably won't work, though: The cue standard does provide commentary fields that allow applications to store private data (which we use for to remember which part of the file is not to be output). But since there is no standartized way to exclude parts of a file from the CD burning process other applications most probably won't know if you want to do so. To export the current split points as a cue file press FileExport Splitpoints Troubleshooting The player won't start If the player won't start even if the play button is pressed try starting the player independently from &appname; and pressing play thereafter. &appname; knows how to remote-control SnackAmp and Audacious to automatically switch to the file that is about to be split. Splitting doesn't work Try to make sure that the version of libmp3splt is installed correspondends to the version of &appname;. Even if (for newer versions of the program) the configure script makes sure that both versions match it might still be possible to have the wrong combination of these elements installed on the same system. If that is the case make sure that in the File mode tab of the Type of split tab Single file mode is selected. Splitting a certain Ogg file doesn't work Next to the lossy ogg vorbis format that gives good compression while keeping file sizes extremely low there are other file formats that can be kept inside an ogg container as well, notably ogg flac. Flac is a completely lossless codec which means that the output files are sonewhat larger than Ogg vorbis ones but these files can be cut on any information without loosing any quality. Since there is no direct need &appname; still does not support cutting flac files. Adding a file to the files view doesn't work Make sure that in the File mode tab of the Type of split tab Batch processing mode is selected. mp3splt-gtk-0.7.2/help/de/0000755000175000017500000000000011753562422012235 500000000000000mp3splt-gtk-0.7.2/help/de/de.po0000644000175000017500000005120611753562422013111 00000000000000# # Translators: # Peter Pall , 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: http://sourceforge.net/tracker/?atid=476061&group_id=55130&func=browse\n" "POT-Creation-Date: 2011-01-11 21:44+0100\n" "PO-Revision-Date: 2012-02-14 08:58+0000\n" "Last-Translator: Peter Pall \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml72(None) msgid "" "@@image: 'figures/mp3splt-gtk.png'; md5=377dbd4b902606dadf9d03cdd9c13ad9" msgstr "" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml228(None) msgid "@@image: 'figures/Tracklist.png'; md5=1f97eed40ca5d67989a5ddd384f481b5" msgstr "" #: C/mp3splt-gtk.xml14(title) msgid "mp3splt-gtk Manual" msgstr "Handbuch von mp3splt-gtk" #: C/mp3splt-gtk.xml16(para) msgid "mp3splt-gtk." msgstr "mp3splt-gtk." #: C/mp3splt-gtk.xml19(para) msgid "" "A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means " "that the selected audio frames or packets are extracted without the need to " "re-encode the file - which would loose quality." msgstr "Ein Hilfsprogramm, das das verlustfreie Schneiden von MP3 und Ogg Vorbis-Dateien ermöglicht, sprich: Das Extrahieren der gewünschten Datenpakete und Audio-Frames ohne dafür die Datei neu komprimieren zu müssen - da hierbei Qualität verloren gehen würde." #: C/mp3splt-gtk.xml26(year) msgid "2010" msgstr "2010" #: C/mp3splt-gtk.xml27(holder) msgid "Gunter Königsmann" msgstr "Gunter Königsmann" #: C/mp3splt-gtk.xml2(para) msgid "" "Permission is granted to copy, distribute and/or modify this document under " "the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " "later version published by the Free Software Foundation with no Invariant " "Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" " of the GFDL at this link or in the file " "COPYING-DOCS distributed with this manual." msgstr "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual." #: C/mp3splt-gtk.xml11(para) msgid "" "This manual is part of a collection of GNOME manuals distributed under the " "GFDL. If you want to distribute this manual separately from the collection, " "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license." #: C/mp3splt-gtk.xml17(para) msgid "" "Many of the names used by companies to distinguish their products and " "services are claimed as trademarks. Where those names appear in any GNOME " "documentation, and the members of the GNOME Documentation Project are made " "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters." #: C/mp3splt-gtk.xml30(para) msgid "" "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " "EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " "THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " "MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " "RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " "MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " "MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " "WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " "SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" #: C/mp3splt-gtk.xml47(para) msgid "" "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" " NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " "CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " "DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " "FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " "ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " "WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" " OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES." #: C/mp3splt-gtk.xml24(para) msgid "" "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "" msgstr "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " #: C/mp3splt-gtk.xml41(firstname) msgid "Gunter" msgstr "Gunter" #: C/mp3splt-gtk.xml44(surname) msgid "Königsmann" msgstr "Königsmann" #: C/mp3splt-gtk.xml50(revnumber) msgid "mp3splt-gtk Manual 0.1" msgstr "Handbuch von mp3splt-gtk V. 0.1" #: C/mp3splt-gtk.xml51(date) msgid "2010-11-16" msgstr "16.11.2010" #: C/mp3splt-gtk.xml57(title) msgid "Introduction" msgstr "Einführung" #: C/mp3splt-gtk.xml58(para) msgid "" "The mp3splt-gtk application is a tool that allows" " to cut MP3 and Ogg Vorbis files without the need to re-encode them (which " "would loose them quality)." msgstr "Einführung" #: C/mp3splt-gtk.xml62(para) msgid "" "Features include graphical selection of split points, automatic splitting of" " music recordings into tracks and automatic adjustment of split points to " "fall into pauses." msgstr "Die mp3splt-gtk Applikation erlaubt es, MP3 und Ogg Vorbis Dateien zu Schneiden und kommt dabei ohne ein erneutes Komprimieren der Dateien aus, bei dem jedes Mal Qualität verlorengeht." #: C/mp3splt-gtk.xml68(title) msgid "mp3splt-gtk directly after startup" msgstr "mp3splt-gtk direkt nach dem Start" #: C/mp3splt-gtk.xml75(application) msgid "mp3splt-gtk" msgstr "mp3splt-gtk" #: C/mp3splt-gtk.xml75(phrase) msgid "Shows directly after startup." msgstr "Zeigt direkt nach dem Start." #: C/mp3splt-gtk.xml82(title) msgid "Starting mp3splt-gtk" msgstr "Starten von mp3splt-gtk" #: C/mp3splt-gtk.xml83(para) msgid "" "You can start mp3splt-gtk in - at least - the " "following ways:" msgstr "mp3splt-gtk kann unter Anderem auf die folgenden Weisen aufgerufen werden:" #: C/mp3splt-gtk.xml89(para) msgid "" "Choose Sound and Videomp3splt-" "gtk from the Applications " "menu." msgstr "" #: C/mp3splt-gtk.xml96(para) msgid "" "Run mp3splt-gtk at the prompt in a terminal such as " "gnome-terminal, or from the Run " "Application dialogue." msgstr "" #: C/mp3splt-gtk.xml106(title) msgid "Closing mp3splt-gtk" msgstr "Beenden von mp3splt-gtk" #: C/mp3splt-gtk.xml107(para) msgid "" "To close the mp3splt-gtk window there are many " "options, too:" msgstr "Auch zum Schließen von mp3splt-gtk gibt es mehrere Optionen" #: C/mp3splt-gtk.xml111(para) msgid "" "choose " "FileQuit" msgstr "" #: C/mp3splt-gtk.xml117(para) msgid "press CtrlW" msgstr "Drücke StrgW" #: C/mp3splt-gtk.xml123(para) msgid "" "press on the X-shaped button the window manager of your choise provides you " "with" msgstr "Drücken des X-förmigen Knopfes in der Titelleiste des Fensters" #: C/mp3splt-gtk.xml131(title) msgid "mp3splt-gtk Features" msgstr "Funktionen von mp3splt-gtk" #: C/mp3splt-gtk.xml132(para) msgid "" "mp3splt-gtk will allow you to manipulate audio " "files without loosing any quality." msgstr "mp3splt-gtk erlaubt es, Audiodateien zu bearbeiten ohne, dass dabei qualität verlorengeht." #: C/mp3splt-gtk.xml141(para) msgid "" "The ability to use your favourite audio playback application for playback of" " the file that is to be cut." msgstr "Die Fähigkeit, diverse Abspielprogramme anzusteuern." #: C/mp3splt-gtk.xml147(para) msgid "Automatic detection of the right places to split." msgstr "Automatische Detektion der Punkte, an denen geschnitten werden muss." #: C/mp3splt-gtk.xml152(para) msgid "" "Automatic adjustment of manually set split points to fall into a nearby " "pause - which allows the user to work with less than milisecond-accuracy " "when specifying the split points." msgstr "Automatisches Feinabstimmen der Position von Schnittpunkten, dass sie in eine Stille fallen - so, dass der Benutzer nicht gezwungen ist, auf die Millisekunde genau zu arbeiten." #: C/mp3splt-gtk.xml160(para) msgid "Importing splitpoints for a known album from a database like freedb." msgstr "Der Import von Schnittpunkten eines bekannten Albums aus einer Internet-Datenbank wie freedb." #: C/mp3splt-gtk.xml166(para) msgid "" "Automatically split albums that have been joined by albumwrap or mp3wrap " "into the original files." msgstr "Automatisches Trennen von Alben, die von albumwrap order mp3wrap in eine Datei zusammengefasst worden sind." #: C/mp3splt-gtk.xml136(para) msgid "" "This program was designed with usability in Mind and contains the followning" " features " msgstr "Dieses Programm ist auf Benutzbarkeit ausgelegt und dient den Folgenden Funktionen " #: C/mp3splt-gtk.xml176(title) msgid "Basic Workflow" msgstr "Normale Verwendung" #: C/mp3splt-gtk.xml178(title) msgid "Opening a file" msgstr "Öffnen einer Datei" #: C/mp3splt-gtk.xml179(para) msgid "" "Just press the Choose button and select a file to " "open." msgstr "Den Wählen -Knopf drücken und die zu öffnende Datei auswählen." #: C/mp3splt-gtk.xml185(title) msgid "Choose the right split points" msgstr "Wähle die Teilungspunkte, an denen Tracks beginnen sollen." #: C/mp3splt-gtk.xml187(title) msgid "Choosing split points manually" msgstr "Manuelle Wahl der Teilungspunkte" #: C/mp3splt-gtk.xml188(para) msgid "" "Press the Play button (a gray triangle pointing to " "the right) on the Player tab, listen to the music and " "press the add button (which is on the " "Player tab, too) every time a new audio track should " "begin." msgstr "Den Play -Knopf (ein graues Dreieck, das nach rechts zeigt) im Player tab drücken der Musik zuhören und immer dann den add Knopf-drücken (ebenfalls im Player-tab), wann immer ein neuer Track beginnen soll." #: C/mp3splt-gtk.xml196(para) msgid "" "If you don't want to be made to press the button exactly at the right " "centisecond the add Preferences tab gives you the " "possibility to let the program fine-tune the split points you choose." msgstr "" #: C/mp3splt-gtk.xml204(title) msgid "Automatical setting of split points" msgstr "Automatisches Setzen von Teilungspunkten" #: C/mp3splt-gtk.xml205(para) msgid "" "The Type of Split tab provides you with a wide choices " "of ways to select where to split a file into tracks. If you want to split a " "media into tracks others might have had access to before you can try " "searching for splitpoint readymades in the FreeDB tab " "instead." msgstr "" #: C/mp3splt-gtk.xml216(title) msgid "Tweaking split points and entering track information" msgstr "Feinjustierung der Teilungspunkte und Informationen zu den Titeln" #: C/mp3splt-gtk.xml217(para) msgid "" "The Splitpoints tab now contains a list of points where" " tracks start or end. It also contains the information if this piece of the " "audio file is to be kept and how the corresponding track has to be named." msgstr "" #: C/mp3splt-gtk.xml224(title) msgid "The split point tab" msgstr "" #: C/mp3splt-gtk.xml231(phrase) msgid "Shows all split points and track names." msgstr "" #: C/mp3splt-gtk.xml236(para) msgid "" "If you want to change the start or end position of a track or give it a name" " just do it at any time you want." msgstr "" #: C/mp3splt-gtk.xml242(title) C/mp3splt-gtk.xml281(title) msgid "Exporting the tracks" msgstr "" #: C/mp3splt-gtk.xml243(para) C/mp3splt-gtk.xml282(para) msgid "" "Now press the button with the green check mark that " "is always visible in the menu line. mp3splt-gtk will output all tracks into " "single files. If anything goes wrong don't despair: Since one of the goals " "of mp3splt-gtk is to work completely lossless even if anything goes wrong " "not much is lost." msgstr "" #: C/mp3splt-gtk.xml254(title) msgid "Batch processing of files" msgstr "" #: C/mp3splt-gtk.xml255(para) msgid "" "Besides manual and automatic splitting of a single file mp3splt-gtk also " "supports automatic batch-processing of multiple files at once." msgstr "" #: C/mp3splt-gtk.xml261(title) msgid "Enabling batch processing mode" msgstr "" #: C/mp3splt-gtk.xml262(para) msgid "" "Go to the Type of split tab and there to the " "File mode tab. After selecting Batch " "processing here batch processing mode is enabled" msgstr "" #: C/mp3splt-gtk.xml268(title) C/mp3splt-gtk.xml276(title) msgid "Adding files in batch processing mode" msgstr "" #: C/mp3splt-gtk.xml269(para) msgid "" "Go to the Type of split tab and there to the " "Split mode tab and select after which criteria you want" " the files to be split." msgstr "" #: C/mp3splt-gtk.xml277(para) msgid "" "Go to the Batch Processing tab and add all files you " "want to be automatically processed." msgstr "" #: C/mp3splt-gtk.xml293(title) msgid "Saving and resuming your work" msgstr "" #: C/mp3splt-gtk.xml294(para) msgid "" "mp3splt-gtk contains an export feature that saves the current project's " "state as a cue file. This cue file can later be re-opened by mp3splt-gtk or " "be used by any cd burner or other application that can read cue files." msgstr "" #: C/mp3splt-gtk.xml300(para) msgid "" "If the cue file is used in a different application than mp3splt-gtk there is" " one feature that most probably won't work, though:" msgstr "" #: C/mp3splt-gtk.xml305(para) msgid "" "The cue standard does provide commentary fields that allow applications to " "store private data (which we use for to remember which part of the file is " "not to be output). But since there is no standartized way to exclude parts " "of a file from the CD burning process other applications most probably won't" " know if you want to do so." msgstr "" #: C/mp3splt-gtk.xml313(para) msgid "" "To export the current split points as a cue file press " "FileExport " "Splitpoints" msgstr "" #: C/mp3splt-gtk.xml320(title) msgid "Troubleshooting" msgstr "" #: C/mp3splt-gtk.xml322(title) msgid "The player won't start" msgstr "" #: C/mp3splt-gtk.xml323(para) msgid "" "If the player won't start even if the play button is pressed try starting " "the player independently from mp3splt-gtk and pressing play thereafter." msgstr "" #: C/mp3splt-gtk.xml328(para) msgid "" "mp3splt-gtk knows how to remote-control SnackAmp and Audacious to " "automatically switch to the file that is about to be split." msgstr "mp3splt-gtk weiß, wie SnackAmp und Audacious ferngesteuert werden, so, dass diese automatisch zu der Datei umschalten können, die geschnitten werden soll." #: C/mp3splt-gtk.xml334(title) msgid "Splitting doesn't work" msgstr "Das Schneiden funktioniert nicht" #: C/mp3splt-gtk.xml335(para) msgid "" "Try to make sure that the version of libmp3splt is installed correspondends " "to the version of mp3splt-gtk. Even if (for newer versions of the program) " "the configure script makes sure that both versions match it might still be " "possible to have the wrong combination of these elements installed on the " "same system." msgstr "Überprüfen Sie, ob die installierte Version von libmp3splt dieselbe Versionsnummer besitzt, wie mp3splt-gtk. Auch wenn (zumindest bei neueren Programmversionen) das configure-script sicherstellen, dass das Compilieren der falschen Version des Programms nicht möglich ist, gibt es sichereinen Weg, trotzdem falsche Kombinationen von Dateien in einem System zu installieren." #: C/mp3splt-gtk.xml343(para) msgid "" "If that is the case make sure that in the File mode tab" " of the Type of split tab Single " "file mode is selected." msgstr "" #: C/mp3splt-gtk.xml350(title) msgid "Splitting a certain Ogg file doesn't work" msgstr "" #: C/mp3splt-gtk.xml351(para) msgid "" "Next to the lossy ogg vorbis format that gives good compression while " "keeping file sizes extremely low there are other file formats that can be " "kept inside an ogg container as well, notably ogg flac." msgstr "" #: C/mp3splt-gtk.xml357(para) msgid "" "Flac is a completely lossless codec which means that the output files are " "sonewhat larger than Ogg vorbis ones but these files can be cut on any " "information without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml363(para) msgid "" "Since there is no direct need mp3splt-gtk still does not support cutting " "flac files." msgstr "" #: C/mp3splt-gtk.xml369(title) msgid "Adding a file to the files view doesn't work" msgstr "" #: C/mp3splt-gtk.xml370(para) msgid "" "Make sure that in the File mode tab of the " "Type of split tab Batch processing" " mode is selected." msgstr "" #. Put one translator per line, in the form of NAME , YEAR1, YEAR2 #: C/mp3splt-gtk.xml0(None) msgid "translator-credits" msgstr "Danksagungen an die Übersetzer" mp3splt-gtk-0.7.2/help/de/mp3splt-gtk.xml0000644000175000017500000003601011753562422015064 00000000000000 &appname;"> ]>
Handbuch von mp3splt-gtk mp3splt-gtk. Ein Hilfsprogramm, das das verlustfreie Schneiden von MP3 und Ogg Vorbis-Dateien ermöglicht, sprich: Das Extrahieren der gewünschten Datenpakete und Audio-Frames ohne dafür die Datei neu komprimieren zu müssen - da hierbei Qualität verloren gehen würde. 2010 Gunter Königsmann Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual. This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license. Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters. DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. Gunter Königsmann Handbuch von mp3splt-gtk V. 0.1 16.11.2010 Einführung Einführung Die mp3splt-gtk Applikation erlaubt es, MP3 und Ogg Vorbis Dateien zu Schneiden und kommt dabei ohne ein erneutes Komprimieren der Dateien aus, bei dem jedes Mal Qualität verlorengeht.
mp3splt-gtk direkt nach dem Start Zeigt mp3splt-gtk direkt nach dem Start.
Starten von mp3splt-gtk mp3splt-gtk kann unter Anderem auf die folgenden Weisen aufgerufen werden: Choose Sound and Videomp3splt-gtk from the Applications menu. Run mp3splt-gtk at the prompt in a terminal such as gnome-terminal, or from the Run Application dialogue. Beenden von mp3splt-gtk Auch zum Schließen von mp3splt-gtk gibt es mehrere Optionen choose FileQuit Drücke StrgW Drücken des X-förmigen Knopfes in der Titelleiste des Fensters Funktionen von mp3splt-gtk mp3splt-gtk erlaubt es, Audiodateien zu bearbeiten ohne, dass dabei qualität verlorengeht. Dieses Programm ist auf Benutzbarkeit ausgelegt und dient den Folgenden Funktionen Die Fähigkeit, diverse Abspielprogramme anzusteuern. Automatische Detektion der Punkte, an denen geschnitten werden muss. Automatisches Feinabstimmen der Position von Schnittpunkten, dass sie in eine Stille fallen - so, dass der Benutzer nicht gezwungen ist, auf die Millisekunde genau zu arbeiten. Der Import von Schnittpunkten eines bekannten Albums aus einer Internet-Datenbank wie freedb. Automatisches Trennen von Alben, die von albumwrap order mp3wrap in eine Datei zusammengefasst worden sind.
Normale Verwendung Öffnen einer Datei Den Wählen -Knopf drücken und die zu öffnende Datei auswählen. Wähle die Teilungspunkte, an denen Tracks beginnen sollen. Manuelle Wahl der Teilungspunkte Den Play -Knopf (ein graues Dreieck, das nach rechts zeigt) im Player tab drücken der Musik zuhören und immer dann den add Knopf-drücken (ebenfalls im Player-tab), wann immer ein neuer Track beginnen soll. If you don't want to be made to press the button exactly at the right centisecond the add Preferences tab gives you the possibility to let the program fine-tune the split points you choose. Automatisches Setzen von Teilungspunkten The Type of Split tab provides you with a wide choices of ways to select where to split a file into tracks. If you want to split a media into tracks others might have had access to before you can try searching for splitpoint readymades in the FreeDB tab instead. Feinjustierung der Teilungspunkte und Informationen zu den Titeln The Splitpoints tab now contains a list of points where tracks start or end. It also contains the information if this piece of the audio file is to be kept and how the corresponding track has to be named.
The split point tab Shows all split points and track names.
If you want to change the start or end position of a track or give it a name just do it at any time you want.
Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost.
Batch processing of files Besides manual and automatic splitting of a single file mp3splt-gtk also supports automatic batch-processing of multiple files at once. Enabling batch processing mode Go to the Type of split tab and there to the File mode tab. After selecting Batch processing here batch processing mode is enabled Adding files in batch processing mode Go to the Type of split tab and there to the Split mode tab and select after which criteria you want the files to be split. Adding files in batch processing mode Go to the Batch Processing tab and add all files you want to be automatically processed. Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost. Saving and resuming your work mp3splt-gtk contains an export feature that saves the current project's state as a cue file. This cue file can later be re-opened by mp3splt-gtk or be used by any cd burner or other application that can read cue files. If the cue file is used in a different application than mp3splt-gtk there is one feature that most probably won't work, though: The cue standard does provide commentary fields that allow applications to store private data (which we use for to remember which part of the file is not to be output). But since there is no standartized way to exclude parts of a file from the CD burning process other applications most probably won't know if you want to do so. To export the current split points as a cue file press FileExport Splitpoints Troubleshooting The player won't start If the player won't start even if the play button is pressed try starting the player independently from mp3splt-gtk and pressing play thereafter. mp3splt-gtk weiß, wie SnackAmp und Audacious ferngesteuert werden, so, dass diese automatisch zu der Datei umschalten können, die geschnitten werden soll. Das Schneiden funktioniert nicht Überprüfen Sie, ob die installierte Version von libmp3splt dieselbe Versionsnummer besitzt, wie mp3splt-gtk. Auch wenn (zumindest bei neueren Programmversionen) das configure-script sicherstellen, dass das Compilieren der falschen Version des Programms nicht möglich ist, gibt es sichereinen Weg, trotzdem falsche Kombinationen von Dateien in einem System zu installieren. If that is the case make sure that in the File mode tab of the Type of split tab Single file mode is selected. Splitting a certain Ogg file doesn't work Next to the lossy ogg vorbis format that gives good compression while keeping file sizes extremely low there are other file formats that can be kept inside an ogg container as well, notably ogg flac. Flac is a completely lossless codec which means that the output files are sonewhat larger than Ogg vorbis ones but these files can be cut on any information without loosing any quality. Since there is no direct need mp3splt-gtk still does not support cutting flac files. Adding a file to the files view doesn't work Make sure that in the File mode tab of the Type of split tab Batch processing mode is selected.
mp3splt-gtk-0.7.2/help/cs/0000755000175000017500000000000011753562422012252 500000000000000mp3splt-gtk-0.7.2/help/cs/cs.po0000644000175000017500000003615611753562422013152 00000000000000# # Translators: msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: http://sourceforge.net/tracker/?atid=476061&group_id=55130&func=browse\n" "POT-Creation-Date: 2011-01-11 21:44+0100\n" "PO-Revision-Date: 2010-12-13 18:36+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml72(None) msgid "" "@@image: 'figures/mp3splt-gtk.png'; md5=377dbd4b902606dadf9d03cdd9c13ad9" msgstr "" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml228(None) msgid "@@image: 'figures/Tracklist.png'; md5=1f97eed40ca5d67989a5ddd384f481b5" msgstr "" #: C/mp3splt-gtk.xml14(title) msgid "mp3splt-gtk Manual" msgstr "" #: C/mp3splt-gtk.xml16(para) msgid "mp3splt-gtk." msgstr "" #: C/mp3splt-gtk.xml19(para) msgid "" "A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means " "that the selected audio frames or packets are extracted without the need to " "re-encode the file - which would loose quality." msgstr "" #: C/mp3splt-gtk.xml26(year) msgid "2010" msgstr "" #: C/mp3splt-gtk.xml27(holder) msgid "Gunter Königsmann" msgstr "" #: C/mp3splt-gtk.xml2(para) msgid "" "Permission is granted to copy, distribute and/or modify this document under " "the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " "later version published by the Free Software Foundation with no Invariant " "Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" " of the GFDL at this link or in the file " "COPYING-DOCS distributed with this manual." msgstr "" #: C/mp3splt-gtk.xml11(para) msgid "" "This manual is part of a collection of GNOME manuals distributed under the " "GFDL. If you want to distribute this manual separately from the collection, " "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" #: C/mp3splt-gtk.xml17(para) msgid "" "Many of the names used by companies to distinguish their products and " "services are claimed as trademarks. Where those names appear in any GNOME " "documentation, and the members of the GNOME Documentation Project are made " "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" #: C/mp3splt-gtk.xml30(para) msgid "" "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " "EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " "THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " "MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " "RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " "MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " "MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " "WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " "SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" #: C/mp3splt-gtk.xml47(para) msgid "" "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" " NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " "CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " "DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " "FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " "ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " "WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" " OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" #: C/mp3splt-gtk.xml24(para) msgid "" "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "" msgstr "" #: C/mp3splt-gtk.xml41(firstname) msgid "Gunter" msgstr "" #: C/mp3splt-gtk.xml44(surname) msgid "Königsmann" msgstr "" #: C/mp3splt-gtk.xml50(revnumber) msgid "mp3splt-gtk Manual 0.1" msgstr "" #: C/mp3splt-gtk.xml51(date) msgid "2010-11-16" msgstr "" #: C/mp3splt-gtk.xml57(title) msgid "Introduction" msgstr "" #: C/mp3splt-gtk.xml58(para) msgid "" "The mp3splt-gtk application is a tool that allows" " to cut MP3 and Ogg Vorbis files without the need to re-encode them (which " "would loose them quality)." msgstr "" #: C/mp3splt-gtk.xml62(para) msgid "" "Features include graphical selection of split points, automatic splitting of" " music recordings into tracks and automatic adjustment of split points to " "fall into pauses." msgstr "" #: C/mp3splt-gtk.xml68(title) msgid "mp3splt-gtk directly after startup" msgstr "" #: C/mp3splt-gtk.xml75(application) msgid "mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml75(phrase) msgid "Shows directly after startup." msgstr "" #: C/mp3splt-gtk.xml82(title) msgid "Starting mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml83(para) msgid "" "You can start mp3splt-gtk in - at least - the " "following ways:" msgstr "" #: C/mp3splt-gtk.xml89(para) msgid "" "Choose Sound and Videomp3splt-" "gtk from the Applications " "menu." msgstr "" #: C/mp3splt-gtk.xml96(para) msgid "" "Run mp3splt-gtk at the prompt in a terminal such as " "gnome-terminal, or from the Run " "Application dialogue." msgstr "" #: C/mp3splt-gtk.xml106(title) msgid "Closing mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml107(para) msgid "" "To close the mp3splt-gtk window there are many " "options, too:" msgstr "" #: C/mp3splt-gtk.xml111(para) msgid "" "choose " "FileQuit" msgstr "" #: C/mp3splt-gtk.xml117(para) msgid "press CtrlW" msgstr "" #: C/mp3splt-gtk.xml123(para) msgid "" "press on the X-shaped button the window manager of your choise provides you " "with" msgstr "" #: C/mp3splt-gtk.xml131(title) msgid "mp3splt-gtk Features" msgstr "" #: C/mp3splt-gtk.xml132(para) msgid "" "mp3splt-gtk will allow you to manipulate audio " "files without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml141(para) msgid "" "The ability to use your favourite audio playback application for playback of" " the file that is to be cut." msgstr "" #: C/mp3splt-gtk.xml147(para) msgid "Automatic detection of the right places to split." msgstr "" #: C/mp3splt-gtk.xml152(para) msgid "" "Automatic adjustment of manually set split points to fall into a nearby " "pause - which allows the user to work with less than milisecond-accuracy " "when specifying the split points." msgstr "" #: C/mp3splt-gtk.xml160(para) msgid "Importing splitpoints for a known album from a database like freedb." msgstr "" #: C/mp3splt-gtk.xml166(para) msgid "" "Automatically split albums that have been joined by albumwrap or mp3wrap " "into the original files." msgstr "" #: C/mp3splt-gtk.xml136(para) msgid "" "This program was designed with usability in Mind and contains the followning" " features " msgstr "" #: C/mp3splt-gtk.xml176(title) msgid "Basic Workflow" msgstr "" #: C/mp3splt-gtk.xml178(title) msgid "Opening a file" msgstr "" #: C/mp3splt-gtk.xml179(para) msgid "" "Just press the Choose button and select a file to " "open." msgstr "" #: C/mp3splt-gtk.xml185(title) msgid "Choose the right split points" msgstr "" #: C/mp3splt-gtk.xml187(title) msgid "Choosing split points manually" msgstr "" #: C/mp3splt-gtk.xml188(para) msgid "" "Press the Play button (a gray triangle pointing to " "the right) on the Player tab, listen to the music and " "press the add button (which is on the " "Player tab, too) every time a new audio track should " "begin." msgstr "" #: C/mp3splt-gtk.xml196(para) msgid "" "If you don't want to be made to press the button exactly at the right " "centisecond the add Preferences tab gives you the " "possibility to let the program fine-tune the split points you choose." msgstr "" #: C/mp3splt-gtk.xml204(title) msgid "Automatical setting of split points" msgstr "" #: C/mp3splt-gtk.xml205(para) msgid "" "The Type of Split tab provides you with a wide choices " "of ways to select where to split a file into tracks. If you want to split a " "media into tracks others might have had access to before you can try " "searching for splitpoint readymades in the FreeDB tab " "instead." msgstr "" #: C/mp3splt-gtk.xml216(title) msgid "Tweaking split points and entering track information" msgstr "" #: C/mp3splt-gtk.xml217(para) msgid "" "The Splitpoints tab now contains a list of points where" " tracks start or end. It also contains the information if this piece of the " "audio file is to be kept and how the corresponding track has to be named." msgstr "" #: C/mp3splt-gtk.xml224(title) msgid "The split point tab" msgstr "" #: C/mp3splt-gtk.xml231(phrase) msgid "Shows all split points and track names." msgstr "" #: C/mp3splt-gtk.xml236(para) msgid "" "If you want to change the start or end position of a track or give it a name" " just do it at any time you want." msgstr "" #: C/mp3splt-gtk.xml242(title) C/mp3splt-gtk.xml281(title) msgid "Exporting the tracks" msgstr "" #: C/mp3splt-gtk.xml243(para) C/mp3splt-gtk.xml282(para) msgid "" "Now press the button with the green check mark that " "is always visible in the menu line. mp3splt-gtk will output all tracks into " "single files. If anything goes wrong don't despair: Since one of the goals " "of mp3splt-gtk is to work completely lossless even if anything goes wrong " "not much is lost." msgstr "" #: C/mp3splt-gtk.xml254(title) msgid "Batch processing of files" msgstr "" #: C/mp3splt-gtk.xml255(para) msgid "" "Besides manual and automatic splitting of a single file mp3splt-gtk also " "supports automatic batch-processing of multiple files at once." msgstr "" #: C/mp3splt-gtk.xml261(title) msgid "Enabling batch processing mode" msgstr "" #: C/mp3splt-gtk.xml262(para) msgid "" "Go to the Type of split tab and there to the " "File mode tab. After selecting Batch " "processing here batch processing mode is enabled" msgstr "" #: C/mp3splt-gtk.xml268(title) C/mp3splt-gtk.xml276(title) msgid "Adding files in batch processing mode" msgstr "" #: C/mp3splt-gtk.xml269(para) msgid "" "Go to the Type of split tab and there to the " "Split mode tab and select after which criteria you want" " the files to be split." msgstr "" #: C/mp3splt-gtk.xml277(para) msgid "" "Go to the Batch Processing tab and add all files you " "want to be automatically processed." msgstr "" #: C/mp3splt-gtk.xml293(title) msgid "Saving and resuming your work" msgstr "" #: C/mp3splt-gtk.xml294(para) msgid "" "mp3splt-gtk contains an export feature that saves the current project's " "state as a cue file. This cue file can later be re-opened by mp3splt-gtk or " "be used by any cd burner or other application that can read cue files." msgstr "" #: C/mp3splt-gtk.xml300(para) msgid "" "If the cue file is used in a different application than mp3splt-gtk there is" " one feature that most probably won't work, though:" msgstr "" #: C/mp3splt-gtk.xml305(para) msgid "" "The cue standard does provide commentary fields that allow applications to " "store private data (which we use for to remember which part of the file is " "not to be output). But since there is no standartized way to exclude parts " "of a file from the CD burning process other applications most probably won't" " know if you want to do so." msgstr "" #: C/mp3splt-gtk.xml313(para) msgid "" "To export the current split points as a cue file press " "FileExport " "Splitpoints" msgstr "" #: C/mp3splt-gtk.xml320(title) msgid "Troubleshooting" msgstr "" #: C/mp3splt-gtk.xml322(title) msgid "The player won't start" msgstr "" #: C/mp3splt-gtk.xml323(para) msgid "" "If the player won't start even if the play button is pressed try starting " "the player independently from mp3splt-gtk and pressing play thereafter." msgstr "" #: C/mp3splt-gtk.xml328(para) msgid "" "mp3splt-gtk knows how to remote-control SnackAmp and Audacious to " "automatically switch to the file that is about to be split." msgstr "" #: C/mp3splt-gtk.xml334(title) msgid "Splitting doesn't work" msgstr "" #: C/mp3splt-gtk.xml335(para) msgid "" "Try to make sure that the version of libmp3splt is installed correspondends " "to the version of mp3splt-gtk. Even if (for newer versions of the program) " "the configure script makes sure that both versions match it might still be " "possible to have the wrong combination of these elements installed on the " "same system." msgstr "" #: C/mp3splt-gtk.xml343(para) msgid "" "If that is the case make sure that in the File mode tab" " of the Type of split tab Single " "file mode is selected." msgstr "" #: C/mp3splt-gtk.xml350(title) msgid "Splitting a certain Ogg file doesn't work" msgstr "" #: C/mp3splt-gtk.xml351(para) msgid "" "Next to the lossy ogg vorbis format that gives good compression while " "keeping file sizes extremely low there are other file formats that can be " "kept inside an ogg container as well, notably ogg flac." msgstr "" #: C/mp3splt-gtk.xml357(para) msgid "" "Flac is a completely lossless codec which means that the output files are " "sonewhat larger than Ogg vorbis ones but these files can be cut on any " "information without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml363(para) msgid "" "Since there is no direct need mp3splt-gtk still does not support cutting " "flac files." msgstr "" #: C/mp3splt-gtk.xml369(title) msgid "Adding a file to the files view doesn't work" msgstr "" #: C/mp3splt-gtk.xml370(para) msgid "" "Make sure that in the File mode tab of the " "Type of split tab Batch processing" " mode is selected." msgstr "" #. Put one translator per line, in the form of NAME , YEAR1, YEAR2 #: C/mp3splt-gtk.xml0(None) msgid "translator-credits" msgstr "" mp3splt-gtk-0.7.2/help/cs/mp3splt-gtk.xml0000644000175000017500000003657211753562422015116 00000000000000 &appname;"> ]>
mp3splt-gtk Manual mp3splt-gtk. A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means that the selected audio frames or packets are extracted without the need to re-encode the file - which would loose quality. 2010 Gunter Königsmann Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual. This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license. Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters. DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. Gunter Königsmann mp3splt-gtk Manual 0.1 2010-11-16 Introduction The mp3splt-gtk application is a tool that allows to cut MP3 and Ogg Vorbis files without the need to re-encode them (which would loose them quality). Features include graphical selection of split points, automatic splitting of music recordings into tracks and automatic adjustment of split points to fall into pauses.
mp3splt-gtk directly after startup Shows mp3splt-gtk directly after startup.
Starting mp3splt-gtk You can start mp3splt-gtk in - at least - the following ways: Choose Sound and Videomp3splt-gtk from the Applications menu. Run mp3splt-gtk at the prompt in a terminal such as gnome-terminal, or from the Run Application dialogue. Closing mp3splt-gtk To close the mp3splt-gtk window there are many options, too: choose FileQuit press CtrlW press on the X-shaped button the window manager of your choise provides you with mp3splt-gtk Features mp3splt-gtk will allow you to manipulate audio files without loosing any quality. This program was designed with usability in Mind and contains the followning features The ability to use your favourite audio playback application for playback of the file that is to be cut. Automatic detection of the right places to split. Automatic adjustment of manually set split points to fall into a nearby pause - which allows the user to work with less than milisecond-accuracy when specifying the split points. Importing splitpoints for a known album from a database like freedb. Automatically split albums that have been joined by albumwrap or mp3wrap into the original files.
Basic Workflow Opening a file Just press the Choose button and select a file to open. Choose the right split points Choosing split points manually Press the Play button (a gray triangle pointing to the right) on the Player tab, listen to the music and press the add button (which is on the Player tab, too) every time a new audio track should begin. If you don't want to be made to press the button exactly at the right centisecond the add Preferences tab gives you the possibility to let the program fine-tune the split points you choose. Automatical setting of split points The Type of Split tab provides you with a wide choices of ways to select where to split a file into tracks. If you want to split a media into tracks others might have had access to before you can try searching for splitpoint readymades in the FreeDB tab instead. Tweaking split points and entering track information The Splitpoints tab now contains a list of points where tracks start or end. It also contains the information if this piece of the audio file is to be kept and how the corresponding track has to be named.
The split point tab Shows all split points and track names.
If you want to change the start or end position of a track or give it a name just do it at any time you want.
Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost.
Batch processing of files Besides manual and automatic splitting of a single file mp3splt-gtk also supports automatic batch-processing of multiple files at once. Enabling batch processing mode Go to the Type of split tab and there to the File mode tab. After selecting Batch processing here batch processing mode is enabled Adding files in batch processing mode Go to the Type of split tab and there to the Split mode tab and select after which criteria you want the files to be split. Adding files in batch processing mode Go to the Batch Processing tab and add all files you want to be automatically processed. Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost. Saving and resuming your work mp3splt-gtk contains an export feature that saves the current project's state as a cue file. This cue file can later be re-opened by mp3splt-gtk or be used by any cd burner or other application that can read cue files. If the cue file is used in a different application than mp3splt-gtk there is one feature that most probably won't work, though: The cue standard does provide commentary fields that allow applications to store private data (which we use for to remember which part of the file is not to be output). But since there is no standartized way to exclude parts of a file from the CD burning process other applications most probably won't know if you want to do so. To export the current split points as a cue file press FileExport Splitpoints Troubleshooting The player won't start If the player won't start even if the play button is pressed try starting the player independently from mp3splt-gtk and pressing play thereafter. mp3splt-gtk knows how to remote-control SnackAmp and Audacious to automatically switch to the file that is about to be split. Splitting doesn't work Try to make sure that the version of libmp3splt is installed correspondends to the version of mp3splt-gtk. Even if (for newer versions of the program) the configure script makes sure that both versions match it might still be possible to have the wrong combination of these elements installed on the same system. If that is the case make sure that in the File mode tab of the Type of split tab Single file mode is selected. Splitting a certain Ogg file doesn't work Next to the lossy ogg vorbis format that gives good compression while keeping file sizes extremely low there are other file formats that can be kept inside an ogg container as well, notably ogg flac. Flac is a completely lossless codec which means that the output files are sonewhat larger than Ogg vorbis ones but these files can be cut on any information without loosing any quality. Since there is no direct need mp3splt-gtk still does not support cutting flac files. Adding a file to the files view doesn't work Make sure that in the File mode tab of the Type of split tab Batch processing mode is selected.
mp3splt-gtk-0.7.2/help/en/0000755000175000017500000000000011753562422012247 500000000000000mp3splt-gtk-0.7.2/help/en/en.po0000644000175000017500000004627611753562422013150 00000000000000msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2010-12-17 23:00+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. When image changes, this message will be marked fuzzy or untranslated for you. #. It doesn't matter what you translate it to: it's not used at all. #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:72(None) msgid "@@image: 'figures/mp3splt-gtk.png'; md5=377dbd4b902606dadf9d03cdd9c13ad9" msgstr "" #. When image changes, this message will be marked fuzzy or untranslated for you. #. It doesn't matter what you translate it to: it's not used at all. #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:228(None) msgid "@@image: 'figures/Tracklist.png'; md5=1f97eed40ca5d67989a5ddd384f481b5" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:14(title) msgid "mp3splt-gtk Manual" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:16(para) msgid "mp3splt-gtk." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:19(para) msgid "A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means that the selected audio frames or packets are extracted without the need to re-encode the file - which would loose quality." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:26(year) msgid "2010" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:27(holder) msgid "Gunter Königsmann" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:2(para) msgid "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:11(para) msgid "This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:17(para) msgid "Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:30(para) msgid "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:47(para) msgid "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:24(para) msgid "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:41(firstname) msgid "Gunter" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:44(surname) msgid "Königsmann" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:50(revnumber) msgid "mp3splt-gtk Manual 0.1" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:51(date) msgid "2010-11-16" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:57(title) msgid "Introduction" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:58(para) msgid "The mp3splt-gtk application is a tool that allows to cut MP3 and Ogg Vorbis files without the need to re-encode them (which would loose them quality)." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:62(para) msgid "Features include graphical selection of split points, automatic splitting of music recordings into tracks and automatic adjustment of split points to fall into pauses." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:68(title) msgid "mp3splt-gtk directly after startup" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:75(application) msgid "mp3splt-gtk" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:75(phrase) msgid "Shows directly after startup." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:82(title) msgid "Starting mp3splt-gtk" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:83(para) msgid "You can start mp3splt-gtk in - at least - the following ways:" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:89(para) msgid "Choose Sound and Videomp3splt-gtk from the Applications menu." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:96(para) msgid "Run mp3splt-gtk at the prompt in a terminal such as gnome-terminal, or from the Run Application dialogue." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:106(title) msgid "Closing mp3splt-gtk" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:107(para) msgid "To close the mp3splt-gtk window there are many options, too:" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:111(para) msgid "choose FileQuit" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:117(para) msgid "press CtrlW" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:123(para) msgid "press on the X-shaped button the window manager of your choise provides you with" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:131(title) msgid "mp3splt-gtk Features" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:132(para) msgid "mp3splt-gtk will allow you to manipulate audio files without loosing any quality." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:141(para) msgid "The ability to use your favourite audio playback application for playback of the file that is to be cut." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:147(para) msgid "Automatic detection of the right places to split." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:152(para) msgid "Automatic adjustment of manually set split points to fall into a nearby pause - which allows the user to work with less than milisecond-accuracy when specifying the split points." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:160(para) msgid "Importing splitpoints for a known album from a database like freedb." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:166(para) msgid "Automatically split albums that have been joined by albumwrap or mp3wrap into the original files." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:136(para) msgid "This program was designed with usability in Mind and contains the followning features " msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:176(title) msgid "Basic Workflow" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:178(title) msgid "Opening a file" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:179(para) msgid "Just press the Choose button and select a file to open." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:185(title) msgid "Choose the right split points" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:187(title) msgid "Choosing split points manually" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:188(para) msgid "Press the Play button (a gray triangle pointing to the right) on the Player tab, listen to the music and press the add button (which is on the Player tab, too) every time a new audio track should begin." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:196(para) msgid "If you don't want to be made to press the button exactly at the right centisecond the add Preferences tab gives you the possibility to let the program fine-tune the split points you choose." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:204(title) msgid "Automatical setting of split points" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:205(para) msgid "The Type of Split tab provides you with a wide choices of ways to select where to split a file into tracks. If you want to split a media into tracks others might have had access to before you can try searching for splitpoint readymades in the FreeDB tab instead." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:216(title) msgid "Tweaking split points and entering track information" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:217(para) msgid "The Splitpoints tab now contains a list of points where tracks start or end. It also contains the information if this piece of the audio file is to be kept and how the corresponding track has to be named." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:224(title) msgid "The split point tab" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:231(phrase) msgid "Shows all split points and track names." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:236(para) msgid "If you want to change the start or end position of a track or give it a name just do it at any time you want." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:242(title) /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:281(title) msgid "Exporting the tracks" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:243(para) /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:282(para) msgid "Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:254(title) msgid "Batch processing of files" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:255(para) msgid "Besides manual and automatic splitting of a single file mp3splt-gtk also supports automatic batch-processing of multiple files at once." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:261(title) msgid "Enabling batch processing mode" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:262(para) msgid "Go to the Type of split tab and there to the File mode tab. After selecting Batch processing here batch processing mode is enabled" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:268(title) /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:276(title) msgid "Adding files in batch processing mode" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:269(para) msgid "Go to the Type of split tab and there to the Split mode tab and select after which criteria you want the files to be split." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:277(para) msgid "Go to the Batch Processing tab and add all files you want to be automatically processed." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:293(title) msgid "Troubleshooting" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:295(title) msgid "The player won't start" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:296(para) msgid "If the player won't start even if the play button is pressed try starting the player independently from mp3splt-gtk and pressing play thereafter." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:301(para) msgid "mp3splt-gtk knows how to remote-control SnackAmp and Audacious to automatically switch to the file that is about to be split." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:307(title) msgid "Splitting doesn't work" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:308(para) msgid "Try to make sure that the version of libmp3splt is installed correspondends to the version of mp3splt-gtk. Even if (for newer versions of the program) the configure script makes sure that both versions match it might still be possible to have the wrong combination of these elements installed on the same system." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:316(para) msgid "If that is the case make sure that in the File mode tab of the Type of split tab Single file mode is selected." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:323(title) msgid "Splitting a certain Ogg file doesn't work" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:324(para) msgid "Next to the lossy ogg vorbis format that gives good compression while keeping file sizes extremely low there are other file formats that can be kept inside an ogg container as well, notably ogg flac." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:330(para) msgid "Flac is a completely lossless codec which means that the output files are sonewhat larger than Ogg vorbis ones but these files can be cut on any information without loosing any quality." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:336(para) msgid "Since there is no direct need mp3splt-gtk still does not support cutting flac files." msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:342(title) msgid "Adding a file to the files view doesn't work" msgstr "" #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:343(para) msgid "Make sure that in the File mode tab of the Type of split tab Batch processing mode is selected." msgstr "" #. Put one translator per line, in the form of NAME , YEAR1, YEAR2 #: /home/ion/hacking/mp3splt-project/mp3splt-project/trunk/mp3splt-gtk/help/C/mp3splt-gtk.xml:0(None) msgid "translator-credits" msgstr "" mp3splt-gtk-0.7.2/help/en/mp3splt-gtk.xml0000644000175000017500000003657211753562422015113 00000000000000 &appname;"> ]>
mp3splt-gtk Manual mp3splt-gtk. A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means that the selected audio frames or packets are extracted without the need to re-encode the file - which would loose quality. 2010 Gunter Königsmann Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual. This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license. Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters. DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. Gunter Königsmann mp3splt-gtk Manual 0.1 2010-11-16 Introduction The mp3splt-gtk application is a tool that allows to cut MP3 and Ogg Vorbis files without the need to re-encode them (which would loose them quality). Features include graphical selection of split points, automatic splitting of music recordings into tracks and automatic adjustment of split points to fall into pauses.
mp3splt-gtk directly after startup Shows mp3splt-gtk directly after startup.
Starting mp3splt-gtk You can start mp3splt-gtk in - at least - the following ways: Choose Sound and Videomp3splt-gtk from the Applications menu. Run mp3splt-gtk at the prompt in a terminal such as gnome-terminal, or from the Run Application dialogue. Closing mp3splt-gtk To close the mp3splt-gtk window there are many options, too: choose FileQuit press CtrlW press on the X-shaped button the window manager of your choise provides you with mp3splt-gtk Features mp3splt-gtk will allow you to manipulate audio files without loosing any quality. This program was designed with usability in Mind and contains the followning features The ability to use your favourite audio playback application for playback of the file that is to be cut. Automatic detection of the right places to split. Automatic adjustment of manually set split points to fall into a nearby pause - which allows the user to work with less than milisecond-accuracy when specifying the split points. Importing splitpoints for a known album from a database like freedb. Automatically split albums that have been joined by albumwrap or mp3wrap into the original files.
Basic Workflow Opening a file Just press the Choose button and select a file to open. Choose the right split points Choosing split points manually Press the Play button (a gray triangle pointing to the right) on the Player tab, listen to the music and press the add button (which is on the Player tab, too) every time a new audio track should begin. If you don't want to be made to press the button exactly at the right centisecond the add Preferences tab gives you the possibility to let the program fine-tune the split points you choose. Automatical setting of split points The Type of Split tab provides you with a wide choices of ways to select where to split a file into tracks. If you want to split a media into tracks others might have had access to before you can try searching for splitpoint readymades in the FreeDB tab instead. Tweaking split points and entering track information The Splitpoints tab now contains a list of points where tracks start or end. It also contains the information if this piece of the audio file is to be kept and how the corresponding track has to be named.
The split point tab Shows all split points and track names.
If you want to change the start or end position of a track or give it a name just do it at any time you want.
Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost.
Batch processing of files Besides manual and automatic splitting of a single file mp3splt-gtk also supports automatic batch-processing of multiple files at once. Enabling batch processing mode Go to the Type of split tab and there to the File mode tab. After selecting Batch processing here batch processing mode is enabled Adding files in batch processing mode Go to the Type of split tab and there to the Split mode tab and select after which criteria you want the files to be split. Adding files in batch processing mode Go to the Batch Processing tab and add all files you want to be automatically processed. Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost. Saving and resuming your work mp3splt-gtk contains an export feature that saves the current project's state as a cue file. This cue file can later be re-opened by mp3splt-gtk or be used by any cd burner or other application that can read cue files. If the cue file is used in a different application than mp3splt-gtk there is one feature that most probably won't work, though: The cue standard does provide commentary fields that allow applications to store private data (which we use for to remember which part of the file is not to be output). But since there is no standartized way to exclude parts of a file from the CD burning process other applications most probably won't know if you want to do so. To export the current split points as a cue file press FileExport Splitpoints Troubleshooting The player won't start If the player won't start even if the play button is pressed try starting the player independently from mp3splt-gtk and pressing play thereafter. mp3splt-gtk knows how to remote-control SnackAmp and Audacious to automatically switch to the file that is about to be split. Splitting doesn't work Try to make sure that the version of libmp3splt is installed correspondends to the version of mp3splt-gtk. Even if (for newer versions of the program) the configure script makes sure that both versions match it might still be possible to have the wrong combination of these elements installed on the same system. If that is the case make sure that in the File mode tab of the Type of split tab Single file mode is selected. Splitting a certain Ogg file doesn't work Next to the lossy ogg vorbis format that gives good compression while keeping file sizes extremely low there are other file formats that can be kept inside an ogg container as well, notably ogg flac. Flac is a completely lossless codec which means that the output files are sonewhat larger than Ogg vorbis ones but these files can be cut on any information without loosing any quality. Since there is no direct need mp3splt-gtk still does not support cutting flac files. Adding a file to the files view doesn't work Make sure that in the File mode tab of the Type of split tab Batch processing mode is selected.
mp3splt-gtk-0.7.2/help/es/0000755000175000017500000000000011753562422012254 500000000000000mp3splt-gtk-0.7.2/help/es/es.po0000644000175000017500000004666111753562422013160 00000000000000# # Translators: # freddy sequera , 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: http://sourceforge.net/tracker/?atid=476061&group_id=55130&func=browse\n" "POT-Creation-Date: 2011-01-11 21:44+0100\n" "PO-Revision-Date: 2012-02-14 08:58+0000\n" "Last-Translator: freddy sequera \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml72(None) msgid "" "@@image: 'figures/mp3splt-gtk.png'; md5=377dbd4b902606dadf9d03cdd9c13ad9" msgstr "" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml228(None) msgid "@@image: 'figures/Tracklist.png'; md5=1f97eed40ca5d67989a5ddd384f481b5" msgstr "" #: C/mp3splt-gtk.xml14(title) msgid "mp3splt-gtk Manual" msgstr "" #: C/mp3splt-gtk.xml16(para) msgid "mp3splt-gtk." msgstr "" #: C/mp3splt-gtk.xml19(para) msgid "" "A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means " "that the selected audio frames or packets are extracted without the need to " "re-encode the file - which would loose quality." msgstr "Una herramienta que permite cortar sin pérdida de archivos MP3 o Ogg Vorbis. Esto significa que los cuadros seleccionados de audio o paquetes se extraen, sin necesidad de volver a codificar el archivo - que perdería calidad." #: C/mp3splt-gtk.xml26(year) msgid "2010" msgstr "" #: C/mp3splt-gtk.xml27(holder) msgid "Gunter Königsmann" msgstr "" #: C/mp3splt-gtk.xml2(para) msgid "" "Permission is granted to copy, distribute and/or modify this document under " "the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " "later version published by the Free Software Foundation with no Invariant " "Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" " of the GFDL at this link or in the file " "COPYING-DOCS distributed with this manual." msgstr "Se concede permiso para copiar, distribuir y / o modificar este documento bajo los términos de la GNU Free Documentation License (GFDL), Versión 1.1 o cualquier versión posterior publicada por la Free Software Foundation, sin Secciones Invariantes ni Textos de Cubierta Delantera y No Volver Textos de Cubierta. Puede encontrar una copia de la GFDL en este enlace o en el archivo COPYING-DOCS distribuido con este manual." #: C/mp3splt-gtk.xml11(para) msgid "" "This manual is part of a collection of GNOME manuals distributed under the " "GFDL. If you want to distribute this manual separately from the collection, " "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "Este manual es parte de una colección de manuales de GNOME distribuido bajo la licencia GFDL. Si desea distribuir este manual por separado de la colección, puede hacerlo añadiendo una copia de la licencia al manual, como se describe en la sección 6 de la licencia." #: C/mp3splt-gtk.xml17(para) msgid "" "Many of the names used by companies to distinguish their products and " "services are claimed as trademarks. Where those names appear in any GNOME " "documentation, and the members of the GNOME Documentation Project are made " "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "Muchos de los nombres utilizados por las empresas para distinguir sus productos y servicios se consideran marcas comerciales. Cuando estos nombres aparecen en la documentación de GNOME, y los miembros del Proyecto de documentación de GNOME están al corriente de esas marcas, los nombres están en mayúsculas o con letra inicial mayúscula." #: C/mp3splt-gtk.xml30(para) msgid "" "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " "EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " "THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " "MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " "RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " "MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " "MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " "WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " "SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "DOCUMENTO SE PROPORCIONAN \"TAL CUAL\", SIN GARANTÃA DE NINGÚN TIPO, YA SEA EXPRESA O IMPLÃCITA, INCLUYENDO, SIN LIMITACIÓN, LAS GARANTÃAS QUE LA VERSIÓN DE DOCUMENTO O MODIFICACIÓN DEL DOCUMENTO ES LIBRE DE DEFECTOS COMERCIALES, ADECUADOS PARA UN PROPÓSITO PARTICULAR O NO -INFRACCIÓN. EL RIESGO EN CUANTO A LA CALIDAD, LA PRECISIÓN Y EJECUCIÓN DEL DOCUMENTO O VERSIÓN MODIFICADA DEL DOCUMENTO ES CON USTED. SI CUALQUIER DOCUMENTO O VERSIÓN MODIFICADA PROVE DEFECTUOSO EN NINGÚN ASPECTO, USTED (NO INICIAL DEL ESCRITOR, AUTOR O CONTRIBUYENTE) ASUMIR EL COSTO DE CUALQUIER servicio, reparación o corrección. LA RENUNCIA DE GARANTÃA ES UNA PARTE ESENCIAL DE ESTA LICENCIA. NO USO DE CUALQUIER DOCUMENTO O VERSIÓN MODIFICADA DE LA PRESENTE DOCUMENTO SE AUTORIZA A EXCEPCIÓN DE CONFORMIDAD CON LA RENUNCIA; Y" #: C/mp3splt-gtk.xml47(para) msgid "" "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" " NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " "CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " "DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " "FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " "ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " "WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" " OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "BAJO NINGUNA CIRCUNSTANCIA Y BAJO NINGUNA TEORÃA LEGAL, YA SEA EN AGRAVIO (INCLUYENDO NEGLIGENCIA), CONTRATO, O DE OTRA MANERA, EL AUTOR, EL ESCRITOR INICIAL DE APORTACIONES, O CUALQUIER DISTRIBUIDOR DEL DOCUMENTO O VERSIÓN MODIFICADA DEL DOCUMENTO O CUALQUIER PROVEEDOR DE CUALQUIER DE ESAS PARTES, SERà RESPONSABLE DE CUALQUIER PERSONA POR DAÑOS DIRECTOS, INDIRECTOS, ESPECIALES, INCIDENTALES O DERIVADOS DE CUALQUIER TIPO, INCLUYENDO, SIN LIMITACIONES, DAÑOS POR PÉRDIDA DE BUENA VOLUNTAD, TRABAJO, NO O MAL FUNCIONAMIENTO, O CUALQUIER OTRO DAÑO O DERIVADO DE O EN RELACIÓN CON EL USO DEL DOCUMENTO Y VERSIONES DE MODIFICAR EL DOCUMENTO, AUN CUANDO DICHA PARTE HAYA SIDO INFORMADO DE LA POSIBILIDAD DE TALES DAÑOS." #: C/mp3splt-gtk.xml24(para) msgid "" "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "" msgstr "DOCUMENTO Y VERSIONES MODIFICADO DEL DOCUMENTO SE ESTABLECEN EN LOS TÉRMINOS DE LA LICENCIA Documentación Libre de GNU CON LA QUE: " #: C/mp3splt-gtk.xml41(firstname) msgid "Gunter" msgstr "" #: C/mp3splt-gtk.xml44(surname) msgid "Königsmann" msgstr "" #: C/mp3splt-gtk.xml50(revnumber) msgid "mp3splt-gtk Manual 0.1" msgstr "" #: C/mp3splt-gtk.xml51(date) msgid "2010-11-16" msgstr "" #: C/mp3splt-gtk.xml57(title) msgid "Introduction" msgstr "Introducción" #: C/mp3splt-gtk.xml58(para) msgid "" "The mp3splt-gtk application is a tool that allows" " to cut MP3 and Ogg Vorbis files without the need to re-encode them (which " "would loose them quality)." msgstr "La Mp3Splt-gtk aplicación es una herramienta que permite cortar archivos MP3 y Ogg Vorbis, sin la necesidad de volver a codificar (que perdería su calidad)." #: C/mp3splt-gtk.xml62(para) msgid "" "Features include graphical selection of split points, automatic splitting of" " music recordings into tracks and automatic adjustment of split points to " "fall into pauses." msgstr "Las características incluyen la selección gráfica de los puntos de división, división automática de grabaciones musicales en las pistas y el ajuste automático de los puntos de división a caer en las pausas." #: C/mp3splt-gtk.xml68(title) msgid "mp3splt-gtk directly after startup" msgstr "" #: C/mp3splt-gtk.xml75(application) msgid "mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml75(phrase) msgid "Shows directly after startup." msgstr "" #: C/mp3splt-gtk.xml82(title) msgid "Starting mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml83(para) msgid "" "You can start mp3splt-gtk in - at least - the " "following ways:" msgstr "Usted puede comenzar Mp3Splt-gtk en - al menos - de las siguientes maneras:" #: C/mp3splt-gtk.xml89(para) msgid "" "Choose Sound and Videomp3splt-" "gtk from the Applications " "menu." msgstr "" #: C/mp3splt-gtk.xml96(para) msgid "" "Run mp3splt-gtk at the prompt in a terminal such as " "gnome-terminal, or from the Run " "Application dialogue." msgstr "Ejecutar Mp3Splt-gtk en el indicador en un terminal como gnome-terminal , O de la Ejecutar una aplicación diálogo." #: C/mp3splt-gtk.xml106(title) msgid "Closing mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml107(para) msgid "" "To close the mp3splt-gtk window there are many " "options, too:" msgstr "" #: C/mp3splt-gtk.xml111(para) msgid "" "choose " "FileQuit" msgstr "" #: C/mp3splt-gtk.xml117(para) msgid "press CtrlW" msgstr "" #: C/mp3splt-gtk.xml123(para) msgid "" "press on the X-shaped button the window manager of your choise provides you " "with" msgstr "pulse sobre el botón en forma de X el gestor de ventanas de su elección le proporciona" #: C/mp3splt-gtk.xml131(title) msgid "mp3splt-gtk Features" msgstr "" #: C/mp3splt-gtk.xml132(para) msgid "" "mp3splt-gtk will allow you to manipulate audio " "files without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml141(para) msgid "" "The ability to use your favourite audio playback application for playback of" " the file that is to be cut." msgstr "La capacidad de utilizar su aplicación favorita de reproducción de audio para la reproducción del archivo que se va a cortar." #: C/mp3splt-gtk.xml147(para) msgid "Automatic detection of the right places to split." msgstr "Detección automática de los lugares correctos para dividir." #: C/mp3splt-gtk.xml152(para) msgid "" "Automatic adjustment of manually set split points to fall into a nearby " "pause - which allows the user to work with less than milisecond-accuracy " "when specifying the split points." msgstr "Ajuste automático de puntos de división manualmente a caer en una pausa en las cercanías - que permite al usuario trabajar con menos de milisegundo precisión al especificar los puntos de división." #: C/mp3splt-gtk.xml160(para) msgid "Importing splitpoints for a known album from a database like freedb." msgstr "Importación de splitpoints para un álbum de una base de datos conocida como freedb." #: C/mp3splt-gtk.xml166(para) msgid "" "Automatically split albums that have been joined by albumwrap or mp3wrap " "into the original files." msgstr "Divide automáticamente álbumes que se han unido albumwrap mp3wrap o en los archivos originales." #: C/mp3splt-gtk.xml136(para) msgid "" "This program was designed with usability in Mind and contains the followning" " features " msgstr "" #: C/mp3splt-gtk.xml176(title) msgid "Basic Workflow" msgstr "" #: C/mp3splt-gtk.xml178(title) msgid "Opening a file" msgstr "" #: C/mp3splt-gtk.xml179(para) msgid "" "Just press the Choose button and select a file to " "open." msgstr "" #: C/mp3splt-gtk.xml185(title) msgid "Choose the right split points" msgstr "" #: C/mp3splt-gtk.xml187(title) msgid "Choosing split points manually" msgstr "" #: C/mp3splt-gtk.xml188(para) msgid "" "Press the Play button (a gray triangle pointing to " "the right) on the Player tab, listen to the music and " "press the add button (which is on the " "Player tab, too) every time a new audio track should " "begin." msgstr "" #: C/mp3splt-gtk.xml196(para) msgid "" "If you don't want to be made to press the button exactly at the right " "centisecond the add Preferences tab gives you the " "possibility to let the program fine-tune the split points you choose." msgstr "" #: C/mp3splt-gtk.xml204(title) msgid "Automatical setting of split points" msgstr "" #: C/mp3splt-gtk.xml205(para) msgid "" "The Type of Split tab provides you with a wide choices " "of ways to select where to split a file into tracks. If you want to split a " "media into tracks others might have had access to before you can try " "searching for splitpoint readymades in the FreeDB tab " "instead." msgstr "" #: C/mp3splt-gtk.xml216(title) msgid "Tweaking split points and entering track information" msgstr "" #: C/mp3splt-gtk.xml217(para) msgid "" "The Splitpoints tab now contains a list of points where" " tracks start or end. It also contains the information if this piece of the " "audio file is to be kept and how the corresponding track has to be named." msgstr "" #: C/mp3splt-gtk.xml224(title) msgid "The split point tab" msgstr "" #: C/mp3splt-gtk.xml231(phrase) msgid "Shows all split points and track names." msgstr "" #: C/mp3splt-gtk.xml236(para) msgid "" "If you want to change the start or end position of a track or give it a name" " just do it at any time you want." msgstr "" #: C/mp3splt-gtk.xml242(title) C/mp3splt-gtk.xml281(title) msgid "Exporting the tracks" msgstr "" #: C/mp3splt-gtk.xml243(para) C/mp3splt-gtk.xml282(para) msgid "" "Now press the button with the green check mark that " "is always visible in the menu line. mp3splt-gtk will output all tracks into " "single files. If anything goes wrong don't despair: Since one of the goals " "of mp3splt-gtk is to work completely lossless even if anything goes wrong " "not much is lost." msgstr "" #: C/mp3splt-gtk.xml254(title) msgid "Batch processing of files" msgstr "" #: C/mp3splt-gtk.xml255(para) msgid "" "Besides manual and automatic splitting of a single file mp3splt-gtk also " "supports automatic batch-processing of multiple files at once." msgstr "" #: C/mp3splt-gtk.xml261(title) msgid "Enabling batch processing mode" msgstr "" #: C/mp3splt-gtk.xml262(para) msgid "" "Go to the Type of split tab and there to the " "File mode tab. After selecting Batch " "processing here batch processing mode is enabled" msgstr "" #: C/mp3splt-gtk.xml268(title) C/mp3splt-gtk.xml276(title) msgid "Adding files in batch processing mode" msgstr "" #: C/mp3splt-gtk.xml269(para) msgid "" "Go to the Type of split tab and there to the " "Split mode tab and select after which criteria you want" " the files to be split." msgstr "" #: C/mp3splt-gtk.xml277(para) msgid "" "Go to the Batch Processing tab and add all files you " "want to be automatically processed." msgstr "" #: C/mp3splt-gtk.xml293(title) msgid "Saving and resuming your work" msgstr "" #: C/mp3splt-gtk.xml294(para) msgid "" "mp3splt-gtk contains an export feature that saves the current project's " "state as a cue file. This cue file can later be re-opened by mp3splt-gtk or " "be used by any cd burner or other application that can read cue files." msgstr "" #: C/mp3splt-gtk.xml300(para) msgid "" "If the cue file is used in a different application than mp3splt-gtk there is" " one feature that most probably won't work, though:" msgstr "" #: C/mp3splt-gtk.xml305(para) msgid "" "The cue standard does provide commentary fields that allow applications to " "store private data (which we use for to remember which part of the file is " "not to be output). But since there is no standartized way to exclude parts " "of a file from the CD burning process other applications most probably won't" " know if you want to do so." msgstr "" #: C/mp3splt-gtk.xml313(para) msgid "" "To export the current split points as a cue file press " "FileExport " "Splitpoints" msgstr "" #: C/mp3splt-gtk.xml320(title) msgid "Troubleshooting" msgstr "" #: C/mp3splt-gtk.xml322(title) msgid "The player won't start" msgstr "" #: C/mp3splt-gtk.xml323(para) msgid "" "If the player won't start even if the play button is pressed try starting " "the player independently from mp3splt-gtk and pressing play thereafter." msgstr "" #: C/mp3splt-gtk.xml328(para) msgid "" "mp3splt-gtk knows how to remote-control SnackAmp and Audacious to " "automatically switch to the file that is about to be split." msgstr "" #: C/mp3splt-gtk.xml334(title) msgid "Splitting doesn't work" msgstr "" #: C/mp3splt-gtk.xml335(para) msgid "" "Try to make sure that the version of libmp3splt is installed correspondends " "to the version of mp3splt-gtk. Even if (for newer versions of the program) " "the configure script makes sure that both versions match it might still be " "possible to have the wrong combination of these elements installed on the " "same system." msgstr "" #: C/mp3splt-gtk.xml343(para) msgid "" "If that is the case make sure that in the File mode tab" " of the Type of split tab Single " "file mode is selected." msgstr "" #: C/mp3splt-gtk.xml350(title) msgid "Splitting a certain Ogg file doesn't work" msgstr "" #: C/mp3splt-gtk.xml351(para) msgid "" "Next to the lossy ogg vorbis format that gives good compression while " "keeping file sizes extremely low there are other file formats that can be " "kept inside an ogg container as well, notably ogg flac." msgstr "" #: C/mp3splt-gtk.xml357(para) msgid "" "Flac is a completely lossless codec which means that the output files are " "sonewhat larger than Ogg vorbis ones but these files can be cut on any " "information without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml363(para) msgid "" "Since there is no direct need mp3splt-gtk still does not support cutting " "flac files." msgstr "" #: C/mp3splt-gtk.xml369(title) msgid "Adding a file to the files view doesn't work" msgstr "" #: C/mp3splt-gtk.xml370(para) msgid "" "Make sure that in the File mode tab of the " "Type of split tab Batch processing" " mode is selected." msgstr "" #. Put one translator per line, in the form of NAME , YEAR1, YEAR2 #: C/mp3splt-gtk.xml0(None) msgid "translator-credits" msgstr "Traductor-créditos" mp3splt-gtk-0.7.2/help/es/mp3splt-gtk.xml0000644000175000017500000003647611753562422015123 00000000000000 &appname;"> ]>
mp3splt-gtk Manual mp3splt-gtk. Una herramienta que permite cortar sin pérdida de archivos MP3 o Ogg Vorbis. Esto significa que los cuadros seleccionados de audio o paquetes se extraen, sin necesidad de volver a codificar el archivo - que perdería calidad. 2010 Gunter Königsmann Se concede permiso para copiar, distribuir y / o modificar este documento bajo los términos de la GNU Free Documentation License (GFDL), Versión 1.1 o cualquier versión posterior publicada por la Free Software Foundation, sin Secciones Invariantes ni Textos de Cubierta Delantera y No Volver Textos de Cubierta. Puede encontrar una copia de la GFDL en este enlace o en el archivo COPYING-DOCS distribuido con este manual. Este manual es parte de una colección de manuales de GNOME distribuido bajo la licencia GFDL. Si desea distribuir este manual por separado de la colección, puede hacerlo añadiendo una copia de la licencia al manual, como se describe en la sección 6 de la licencia. Muchos de los nombres utilizados por las empresas para distinguir sus productos y servicios se consideran marcas comerciales. Cuando estos nombres aparecen en la documentación de GNOME, y los miembros del Proyecto de documentación de GNOME están al corriente de esas marcas, los nombres están en mayúsculas o con letra inicial mayúscula. DOCUMENTO Y VERSIONES MODIFICADO DEL DOCUMENTO SE ESTABLECEN EN LOS TÉRMINOS DE LA LICENCIA Documentación Libre de GNU CON LA QUE: DOCUMENTO SE PROPORCIONAN "TAL CUAL", SIN GARANTÃA DE NINGÚN TIPO, YA SEA EXPRESA O IMPLÃCITA, INCLUYENDO, SIN LIMITACIÓN, LAS GARANTÃAS QUE LA VERSIÓN DE DOCUMENTO O MODIFICACIÓN DEL DOCUMENTO ES LIBRE DE DEFECTOS COMERCIALES, ADECUADOS PARA UN PROPÓSITO PARTICULAR O NO -INFRACCIÓN. EL RIESGO EN CUANTO A LA CALIDAD, LA PRECISIÓN Y EJECUCIÓN DEL DOCUMENTO O VERSIÓN MODIFICADA DEL DOCUMENTO ES CON USTED. SI CUALQUIER DOCUMENTO O VERSIÓN MODIFICADA PROVE DEFECTUOSO EN NINGÚN ASPECTO, USTED (NO INICIAL DEL ESCRITOR, AUTOR O CONTRIBUYENTE) ASUMIR EL COSTO DE CUALQUIER servicio, reparación o corrección. LA RENUNCIA DE GARANTÃA ES UNA PARTE ESENCIAL DE ESTA LICENCIA. NO USO DE CUALQUIER DOCUMENTO O VERSIÓN MODIFICADA DE LA PRESENTE DOCUMENTO SE AUTORIZA A EXCEPCIÓN DE CONFORMIDAD CON LA RENUNCIA; Y BAJO NINGUNA CIRCUNSTANCIA Y BAJO NINGUNA TEORÃA LEGAL, YA SEA EN AGRAVIO (INCLUYENDO NEGLIGENCIA), CONTRATO, O DE OTRA MANERA, EL AUTOR, EL ESCRITOR INICIAL DE APORTACIONES, O CUALQUIER DISTRIBUIDOR DEL DOCUMENTO O VERSIÓN MODIFICADA DEL DOCUMENTO O CUALQUIER PROVEEDOR DE CUALQUIER DE ESAS PARTES, SERà RESPONSABLE DE CUALQUIER PERSONA POR DAÑOS DIRECTOS, INDIRECTOS, ESPECIALES, INCIDENTALES O DERIVADOS DE CUALQUIER TIPO, INCLUYENDO, SIN LIMITACIONES, DAÑOS POR PÉRDIDA DE BUENA VOLUNTAD, TRABAJO, NO O MAL FUNCIONAMIENTO, O CUALQUIER OTRO DAÑO O DERIVADO DE O EN RELACIÓN CON EL USO DEL DOCUMENTO Y VERSIONES DE MODIFICAR EL DOCUMENTO, AUN CUANDO DICHA PARTE HAYA SIDO INFORMADO DE LA POSIBILIDAD DE TALES DAÑOS. Gunter Königsmann mp3splt-gtk Manual 0.1 2010-11-16 Introducción La Mp3Splt-gtk aplicación es una herramienta que permite cortar archivos MP3 y Ogg Vorbis, sin la necesidad de volver a codificar (que perdería su calidad). Las características incluyen la selección gráfica de los puntos de división, división automática de grabaciones musicales en las pistas y el ajuste automático de los puntos de división a caer en las pausas.
mp3splt-gtk directly after startup Shows mp3splt-gtk directly after startup.
Starting mp3splt-gtk Usted puede comenzar Mp3Splt-gtk en - al menos - de las siguientes maneras: Choose Sound and Videomp3splt-gtk from the Applications menu. Ejecutar Mp3Splt-gtk en el indicador en un terminal como gnome-terminal , O de la Ejecutar una aplicación diálogo. Closing mp3splt-gtk To close the mp3splt-gtk window there are many options, too: choose FileQuit press CtrlW pulse sobre el botón en forma de X el gestor de ventanas de su elección le proporciona mp3splt-gtk Features mp3splt-gtk will allow you to manipulate audio files without loosing any quality. This program was designed with usability in Mind and contains the followning features La capacidad de utilizar su aplicación favorita de reproducción de audio para la reproducción del archivo que se va a cortar. Detección automática de los lugares correctos para dividir. Ajuste automático de puntos de división manualmente a caer en una pausa en las cercanías - que permite al usuario trabajar con menos de milisegundo precisión al especificar los puntos de división. Importación de splitpoints para un álbum de una base de datos conocida como freedb. Divide automáticamente álbumes que se han unido albumwrap mp3wrap o en los archivos originales.
Basic Workflow Opening a file Just press the Choose button and select a file to open. Choose the right split points Choosing split points manually Press the Play button (a gray triangle pointing to the right) on the Player tab, listen to the music and press the add button (which is on the Player tab, too) every time a new audio track should begin. If you don't want to be made to press the button exactly at the right centisecond the add Preferences tab gives you the possibility to let the program fine-tune the split points you choose. Automatical setting of split points The Type of Split tab provides you with a wide choices of ways to select where to split a file into tracks. If you want to split a media into tracks others might have had access to before you can try searching for splitpoint readymades in the FreeDB tab instead. Tweaking split points and entering track information The Splitpoints tab now contains a list of points where tracks start or end. It also contains the information if this piece of the audio file is to be kept and how the corresponding track has to be named.
The split point tab Shows all split points and track names.
If you want to change the start or end position of a track or give it a name just do it at any time you want.
Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost.
Batch processing of files Besides manual and automatic splitting of a single file mp3splt-gtk also supports automatic batch-processing of multiple files at once. Enabling batch processing mode Go to the Type of split tab and there to the File mode tab. After selecting Batch processing here batch processing mode is enabled Adding files in batch processing mode Go to the Type of split tab and there to the Split mode tab and select after which criteria you want the files to be split. Adding files in batch processing mode Go to the Batch Processing tab and add all files you want to be automatically processed. Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost. Saving and resuming your work mp3splt-gtk contains an export feature that saves the current project's state as a cue file. This cue file can later be re-opened by mp3splt-gtk or be used by any cd burner or other application that can read cue files. If the cue file is used in a different application than mp3splt-gtk there is one feature that most probably won't work, though: The cue standard does provide commentary fields that allow applications to store private data (which we use for to remember which part of the file is not to be output). But since there is no standartized way to exclude parts of a file from the CD burning process other applications most probably won't know if you want to do so. To export the current split points as a cue file press FileExport Splitpoints Troubleshooting The player won't start If the player won't start even if the play button is pressed try starting the player independently from mp3splt-gtk and pressing play thereafter. mp3splt-gtk knows how to remote-control SnackAmp and Audacious to automatically switch to the file that is about to be split. Splitting doesn't work Try to make sure that the version of libmp3splt is installed correspondends to the version of mp3splt-gtk. Even if (for newer versions of the program) the configure script makes sure that both versions match it might still be possible to have the wrong combination of these elements installed on the same system. If that is the case make sure that in the File mode tab of the Type of split tab Single file mode is selected. Splitting a certain Ogg file doesn't work Next to the lossy ogg vorbis format that gives good compression while keeping file sizes extremely low there are other file formats that can be kept inside an ogg container as well, notably ogg flac. Flac is a completely lossless codec which means that the output files are sonewhat larger than Ogg vorbis ones but these files can be cut on any information without loosing any quality. Since there is no direct need mp3splt-gtk still does not support cutting flac files. Adding a file to the files view doesn't work Make sure that in the File mode tab of the Type of split tab Batch processing mode is selected.
mp3splt-gtk-0.7.2/help/fr/0000755000175000017500000000000011753562422012254 500000000000000mp3splt-gtk-0.7.2/help/fr/fr.po0000644000175000017500000003621511753562422013152 00000000000000# # Translators: # Peter Pall , 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: http://sourceforge.net/tracker/?atid=476061&group_id=55130&func=browse\n" "POT-Creation-Date: 2011-01-11 21:44+0100\n" "PO-Revision-Date: 2012-02-14 08:58+0000\n" "Last-Translator: Peter Pall \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml72(None) msgid "" "@@image: 'figures/mp3splt-gtk.png'; md5=377dbd4b902606dadf9d03cdd9c13ad9" msgstr "" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml228(None) msgid "@@image: 'figures/Tracklist.png'; md5=1f97eed40ca5d67989a5ddd384f481b5" msgstr "" #: C/mp3splt-gtk.xml14(title) msgid "mp3splt-gtk Manual" msgstr "" #: C/mp3splt-gtk.xml16(para) msgid "mp3splt-gtk." msgstr "mp3splt-gtk." #: C/mp3splt-gtk.xml19(para) msgid "" "A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means " "that the selected audio frames or packets are extracted without the need to " "re-encode the file - which would loose quality." msgstr "" #: C/mp3splt-gtk.xml26(year) msgid "2010" msgstr "" #: C/mp3splt-gtk.xml27(holder) msgid "Gunter Königsmann" msgstr "" #: C/mp3splt-gtk.xml2(para) msgid "" "Permission is granted to copy, distribute and/or modify this document under " "the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " "later version published by the Free Software Foundation with no Invariant " "Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" " of the GFDL at this link or in the file " "COPYING-DOCS distributed with this manual." msgstr "" #: C/mp3splt-gtk.xml11(para) msgid "" "This manual is part of a collection of GNOME manuals distributed under the " "GFDL. If you want to distribute this manual separately from the collection, " "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" #: C/mp3splt-gtk.xml17(para) msgid "" "Many of the names used by companies to distinguish their products and " "services are claimed as trademarks. Where those names appear in any GNOME " "documentation, and the members of the GNOME Documentation Project are made " "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" #: C/mp3splt-gtk.xml30(para) msgid "" "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " "EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " "THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " "MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " "RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " "MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " "MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " "WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " "SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" #: C/mp3splt-gtk.xml47(para) msgid "" "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" " NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " "CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " "DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " "FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " "ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " "WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" " OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" #: C/mp3splt-gtk.xml24(para) msgid "" "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "" msgstr "" #: C/mp3splt-gtk.xml41(firstname) msgid "Gunter" msgstr "" #: C/mp3splt-gtk.xml44(surname) msgid "Königsmann" msgstr "" #: C/mp3splt-gtk.xml50(revnumber) msgid "mp3splt-gtk Manual 0.1" msgstr "" #: C/mp3splt-gtk.xml51(date) msgid "2010-11-16" msgstr "" #: C/mp3splt-gtk.xml57(title) msgid "Introduction" msgstr "" #: C/mp3splt-gtk.xml58(para) msgid "" "The mp3splt-gtk application is a tool that allows" " to cut MP3 and Ogg Vorbis files without the need to re-encode them (which " "would loose them quality)." msgstr "" #: C/mp3splt-gtk.xml62(para) msgid "" "Features include graphical selection of split points, automatic splitting of" " music recordings into tracks and automatic adjustment of split points to " "fall into pauses." msgstr "" #: C/mp3splt-gtk.xml68(title) msgid "mp3splt-gtk directly after startup" msgstr "" #: C/mp3splt-gtk.xml75(application) msgid "mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml75(phrase) msgid "Shows directly after startup." msgstr "" #: C/mp3splt-gtk.xml82(title) msgid "Starting mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml83(para) msgid "" "You can start mp3splt-gtk in - at least - the " "following ways:" msgstr "" #: C/mp3splt-gtk.xml89(para) msgid "" "Choose Sound and Videomp3splt-" "gtk from the Applications " "menu." msgstr "" #: C/mp3splt-gtk.xml96(para) msgid "" "Run mp3splt-gtk at the prompt in a terminal such as " "gnome-terminal, or from the Run " "Application dialogue." msgstr "" #: C/mp3splt-gtk.xml106(title) msgid "Closing mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml107(para) msgid "" "To close the mp3splt-gtk window there are many " "options, too:" msgstr "" #: C/mp3splt-gtk.xml111(para) msgid "" "choose " "FileQuit" msgstr "" #: C/mp3splt-gtk.xml117(para) msgid "press CtrlW" msgstr "" #: C/mp3splt-gtk.xml123(para) msgid "" "press on the X-shaped button the window manager of your choise provides you " "with" msgstr "" #: C/mp3splt-gtk.xml131(title) msgid "mp3splt-gtk Features" msgstr "" #: C/mp3splt-gtk.xml132(para) msgid "" "mp3splt-gtk will allow you to manipulate audio " "files without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml141(para) msgid "" "The ability to use your favourite audio playback application for playback of" " the file that is to be cut." msgstr "" #: C/mp3splt-gtk.xml147(para) msgid "Automatic detection of the right places to split." msgstr "" #: C/mp3splt-gtk.xml152(para) msgid "" "Automatic adjustment of manually set split points to fall into a nearby " "pause - which allows the user to work with less than milisecond-accuracy " "when specifying the split points." msgstr "" #: C/mp3splt-gtk.xml160(para) msgid "Importing splitpoints for a known album from a database like freedb." msgstr "" #: C/mp3splt-gtk.xml166(para) msgid "" "Automatically split albums that have been joined by albumwrap or mp3wrap " "into the original files." msgstr "" #: C/mp3splt-gtk.xml136(para) msgid "" "This program was designed with usability in Mind and contains the followning" " features " msgstr "" #: C/mp3splt-gtk.xml176(title) msgid "Basic Workflow" msgstr "" #: C/mp3splt-gtk.xml178(title) msgid "Opening a file" msgstr "" #: C/mp3splt-gtk.xml179(para) msgid "" "Just press the Choose button and select a file to " "open." msgstr "" #: C/mp3splt-gtk.xml185(title) msgid "Choose the right split points" msgstr "" #: C/mp3splt-gtk.xml187(title) msgid "Choosing split points manually" msgstr "" #: C/mp3splt-gtk.xml188(para) msgid "" "Press the Play button (a gray triangle pointing to " "the right) on the Player tab, listen to the music and " "press the add button (which is on the " "Player tab, too) every time a new audio track should " "begin." msgstr "" #: C/mp3splt-gtk.xml196(para) msgid "" "If you don't want to be made to press the button exactly at the right " "centisecond the add Preferences tab gives you the " "possibility to let the program fine-tune the split points you choose." msgstr "" #: C/mp3splt-gtk.xml204(title) msgid "Automatical setting of split points" msgstr "" #: C/mp3splt-gtk.xml205(para) msgid "" "The Type of Split tab provides you with a wide choices " "of ways to select where to split a file into tracks. If you want to split a " "media into tracks others might have had access to before you can try " "searching for splitpoint readymades in the FreeDB tab " "instead." msgstr "" #: C/mp3splt-gtk.xml216(title) msgid "Tweaking split points and entering track information" msgstr "" #: C/mp3splt-gtk.xml217(para) msgid "" "The Splitpoints tab now contains a list of points where" " tracks start or end. It also contains the information if this piece of the " "audio file is to be kept and how the corresponding track has to be named." msgstr "" #: C/mp3splt-gtk.xml224(title) msgid "The split point tab" msgstr "" #: C/mp3splt-gtk.xml231(phrase) msgid "Shows all split points and track names." msgstr "" #: C/mp3splt-gtk.xml236(para) msgid "" "If you want to change the start or end position of a track or give it a name" " just do it at any time you want." msgstr "" #: C/mp3splt-gtk.xml242(title) C/mp3splt-gtk.xml281(title) msgid "Exporting the tracks" msgstr "" #: C/mp3splt-gtk.xml243(para) C/mp3splt-gtk.xml282(para) msgid "" "Now press the button with the green check mark that " "is always visible in the menu line. mp3splt-gtk will output all tracks into " "single files. If anything goes wrong don't despair: Since one of the goals " "of mp3splt-gtk is to work completely lossless even if anything goes wrong " "not much is lost." msgstr "" #: C/mp3splt-gtk.xml254(title) msgid "Batch processing of files" msgstr "" #: C/mp3splt-gtk.xml255(para) msgid "" "Besides manual and automatic splitting of a single file mp3splt-gtk also " "supports automatic batch-processing of multiple files at once." msgstr "" #: C/mp3splt-gtk.xml261(title) msgid "Enabling batch processing mode" msgstr "" #: C/mp3splt-gtk.xml262(para) msgid "" "Go to the Type of split tab and there to the " "File mode tab. After selecting Batch " "processing here batch processing mode is enabled" msgstr "" #: C/mp3splt-gtk.xml268(title) C/mp3splt-gtk.xml276(title) msgid "Adding files in batch processing mode" msgstr "" #: C/mp3splt-gtk.xml269(para) msgid "" "Go to the Type of split tab and there to the " "Split mode tab and select after which criteria you want" " the files to be split." msgstr "" #: C/mp3splt-gtk.xml277(para) msgid "" "Go to the Batch Processing tab and add all files you " "want to be automatically processed." msgstr "" #: C/mp3splt-gtk.xml293(title) msgid "Saving and resuming your work" msgstr "" #: C/mp3splt-gtk.xml294(para) msgid "" "mp3splt-gtk contains an export feature that saves the current project's " "state as a cue file. This cue file can later be re-opened by mp3splt-gtk or " "be used by any cd burner or other application that can read cue files." msgstr "" #: C/mp3splt-gtk.xml300(para) msgid "" "If the cue file is used in a different application than mp3splt-gtk there is" " one feature that most probably won't work, though:" msgstr "" #: C/mp3splt-gtk.xml305(para) msgid "" "The cue standard does provide commentary fields that allow applications to " "store private data (which we use for to remember which part of the file is " "not to be output). But since there is no standartized way to exclude parts " "of a file from the CD burning process other applications most probably won't" " know if you want to do so." msgstr "" #: C/mp3splt-gtk.xml313(para) msgid "" "To export the current split points as a cue file press " "FileExport " "Splitpoints" msgstr "" #: C/mp3splt-gtk.xml320(title) msgid "Troubleshooting" msgstr "" #: C/mp3splt-gtk.xml322(title) msgid "The player won't start" msgstr "" #: C/mp3splt-gtk.xml323(para) msgid "" "If the player won't start even if the play button is pressed try starting " "the player independently from mp3splt-gtk and pressing play thereafter." msgstr "" #: C/mp3splt-gtk.xml328(para) msgid "" "mp3splt-gtk knows how to remote-control SnackAmp and Audacious to " "automatically switch to the file that is about to be split." msgstr "" #: C/mp3splt-gtk.xml334(title) msgid "Splitting doesn't work" msgstr "" #: C/mp3splt-gtk.xml335(para) msgid "" "Try to make sure that the version of libmp3splt is installed correspondends " "to the version of mp3splt-gtk. Even if (for newer versions of the program) " "the configure script makes sure that both versions match it might still be " "possible to have the wrong combination of these elements installed on the " "same system." msgstr "" #: C/mp3splt-gtk.xml343(para) msgid "" "If that is the case make sure that in the File mode tab" " of the Type of split tab Single " "file mode is selected." msgstr "" #: C/mp3splt-gtk.xml350(title) msgid "Splitting a certain Ogg file doesn't work" msgstr "" #: C/mp3splt-gtk.xml351(para) msgid "" "Next to the lossy ogg vorbis format that gives good compression while " "keeping file sizes extremely low there are other file formats that can be " "kept inside an ogg container as well, notably ogg flac." msgstr "" #: C/mp3splt-gtk.xml357(para) msgid "" "Flac is a completely lossless codec which means that the output files are " "sonewhat larger than Ogg vorbis ones but these files can be cut on any " "information without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml363(para) msgid "" "Since there is no direct need mp3splt-gtk still does not support cutting " "flac files." msgstr "" #: C/mp3splt-gtk.xml369(title) msgid "Adding a file to the files view doesn't work" msgstr "" #: C/mp3splt-gtk.xml370(para) msgid "" "Make sure that in the File mode tab of the " "Type of split tab Batch processing" " mode is selected." msgstr "" #. Put one translator per line, in the form of NAME , YEAR1, YEAR2 #: C/mp3splt-gtk.xml0(None) msgid "translator-credits" msgstr "" mp3splt-gtk-0.7.2/help/fr/mp3splt-gtk.xml0000644000175000017500000003656111753562422015116 00000000000000 &appname;"> ]>
mp3splt-gtk Manual mp3splt-gtk. A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means that the selected audio frames or packets are extracted without the need to re-encode the file - which would loose quality. 2010 Gunter Königsmann Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual. This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license. Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters. DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. Gunter Königsmann mp3splt-gtk Manual 0.1 2010-11-16 Introduction The mp3splt-gtk application is a tool that allows to cut MP3 and Ogg Vorbis files without the need to re-encode them (which would loose them quality). Features include graphical selection of split points, automatic splitting of music recordings into tracks and automatic adjustment of split points to fall into pauses.
mp3splt-gtk directly after startup Shows mp3splt-gtk directly after startup.
Starting mp3splt-gtk You can start mp3splt-gtk in - at least - the following ways: Choose Sound and Videomp3splt-gtk from the Applications menu. Run mp3splt-gtk at the prompt in a terminal such as gnome-terminal, or from the Run Application dialogue. Closing mp3splt-gtk To close the mp3splt-gtk window there are many options, too: choose FileQuit press CtrlW press on the X-shaped button the window manager of your choise provides you with mp3splt-gtk Features mp3splt-gtk will allow you to manipulate audio files without loosing any quality. This program was designed with usability in Mind and contains the followning features The ability to use your favourite audio playback application for playback of the file that is to be cut. Automatic detection of the right places to split. Automatic adjustment of manually set split points to fall into a nearby pause - which allows the user to work with less than milisecond-accuracy when specifying the split points. Importing splitpoints for a known album from a database like freedb. Automatically split albums that have been joined by albumwrap or mp3wrap into the original files.
Basic Workflow Opening a file Just press the Choose button and select a file to open. Choose the right split points Choosing split points manually Press the Play button (a gray triangle pointing to the right) on the Player tab, listen to the music and press the add button (which is on the Player tab, too) every time a new audio track should begin. If you don't want to be made to press the button exactly at the right centisecond the add Preferences tab gives you the possibility to let the program fine-tune the split points you choose. Automatical setting of split points The Type of Split tab provides you with a wide choices of ways to select where to split a file into tracks. If you want to split a media into tracks others might have had access to before you can try searching for splitpoint readymades in the FreeDB tab instead. Tweaking split points and entering track information The Splitpoints tab now contains a list of points where tracks start or end. It also contains the information if this piece of the audio file is to be kept and how the corresponding track has to be named.
The split point tab Shows all split points and track names.
If you want to change the start or end position of a track or give it a name just do it at any time you want.
Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost.
Batch processing of files Besides manual and automatic splitting of a single file mp3splt-gtk also supports automatic batch-processing of multiple files at once. Enabling batch processing mode Go to the Type of split tab and there to the File mode tab. After selecting Batch processing here batch processing mode is enabled Adding files in batch processing mode Go to the Type of split tab and there to the Split mode tab and select after which criteria you want the files to be split. Adding files in batch processing mode Go to the Batch Processing tab and add all files you want to be automatically processed. Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost. Saving and resuming your work mp3splt-gtk contains an export feature that saves the current project's state as a cue file. This cue file can later be re-opened by mp3splt-gtk or be used by any cd burner or other application that can read cue files. If the cue file is used in a different application than mp3splt-gtk there is one feature that most probably won't work, though: The cue standard does provide commentary fields that allow applications to store private data (which we use for to remember which part of the file is not to be output). But since there is no standartized way to exclude parts of a file from the CD burning process other applications most probably won't know if you want to do so. To export the current split points as a cue file press FileExport Splitpoints Troubleshooting The player won't start If the player won't start even if the play button is pressed try starting the player independently from mp3splt-gtk and pressing play thereafter. mp3splt-gtk knows how to remote-control SnackAmp and Audacious to automatically switch to the file that is about to be split. Splitting doesn't work Try to make sure that the version of libmp3splt is installed correspondends to the version of mp3splt-gtk. Even if (for newer versions of the program) the configure script makes sure that both versions match it might still be possible to have the wrong combination of these elements installed on the same system. If that is the case make sure that in the File mode tab of the Type of split tab Single file mode is selected. Splitting a certain Ogg file doesn't work Next to the lossy ogg vorbis format that gives good compression while keeping file sizes extremely low there are other file formats that can be kept inside an ogg container as well, notably ogg flac. Flac is a completely lossless codec which means that the output files are sonewhat larger than Ogg vorbis ones but these files can be cut on any information without loosing any quality. Since there is no direct need mp3splt-gtk still does not support cutting flac files. Adding a file to the files view doesn't work Make sure that in the File mode tab of the Type of split tab Batch processing mode is selected.
mp3splt-gtk-0.7.2/help/es_CL/0000755000175000017500000000000011753562422012632 500000000000000mp3splt-gtk-0.7.2/help/es_CL/es_CL.po0000644000175000017500000004750511753562422014112 00000000000000# # Translators: # Ricardo A. Hermosilla Carrillo , 2011. msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: http://sourceforge.net/tracker/?atid=476061&group_id=55130&func=browse\n" "POT-Creation-Date: 2011-01-11 21:44+0100\n" "PO-Revision-Date: 2012-02-14 08:58+0000\n" "Last-Translator: Ricardo A. Hermosilla Carrillo \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml72(None) msgid "" "@@image: 'figures/mp3splt-gtk.png'; md5=377dbd4b902606dadf9d03cdd9c13ad9" msgstr "" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml228(None) msgid "@@image: 'figures/Tracklist.png'; md5=1f97eed40ca5d67989a5ddd384f481b5" msgstr "" #: C/mp3splt-gtk.xml14(title) msgid "mp3splt-gtk Manual" msgstr "Manual de mp3splt-gtk" #: C/mp3splt-gtk.xml16(para) msgid "mp3splt-gtk." msgstr "mp3splt-gtk." #: C/mp3splt-gtk.xml19(para) msgid "" "A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means " "that the selected audio frames or packets are extracted without the need to " "re-encode the file - which would loose quality." msgstr "Una herramienta que permite cortar sin pérdida de datos en archivos MP3 o Ogg Vorbis. Esto significa que los cuadros seleccionados de audio o paquetes se extraen, sin necesidad de volver a codificar el archivo - que perdería calidad." #: C/mp3splt-gtk.xml26(year) msgid "2010" msgstr "2010" #: C/mp3splt-gtk.xml27(holder) msgid "Gunter Königsmann" msgstr "Gunter Königsmann" #: C/mp3splt-gtk.xml2(para) msgid "" "Permission is granted to copy, distribute and/or modify this document under " "the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " "later version published by the Free Software Foundation with no Invariant " "Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" " of the GFDL at this link or in the file " "COPYING-DOCS distributed with this manual." msgstr "Se concede permiso para copiar, distribuir y/o modificar este documento bajo los términos de la Licencia de Documentación Libre GNU (GFDL), en su versión 1.1 o posterior publicado por la Free Software Foundation sin Secciones invariantes, sin textos con portada y sin textos con portada trasera. Usted puede encontrar una copia de la GFDL en este enlace o en el archivo COPYING-DOCS distribuido con este manual." #: C/mp3splt-gtk.xml11(para) msgid "" "This manual is part of a collection of GNOME manuals distributed under the " "GFDL. If you want to distribute this manual separately from the collection, " "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "Este manual es parte de una colección de manuales para GNOME distribuidos bajo la GFDL. Si usted quiere distribuir este manual separadamente de la colección, puede hacerlo añadiendo una copia de la licencia al manual como se describe en la sección 6 de la licencia." #: C/mp3splt-gtk.xml17(para) msgid "" "Many of the names used by companies to distinguish their products and " "services are claimed as trademarks. Where those names appear in any GNOME " "documentation, and the members of the GNOME Documentation Project are made " "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "Muchos de los nombres usados por compañías para distinguir sus productos y servicios son demandados como marcas. Cuando estos nombres aparecen en la documentación de GNOME, y los miembros del Proyecto de documentación de GNOME están al corriente de esas marcas, los nombres están en mayúsculas o con letra inicial mayúscula." #: C/mp3splt-gtk.xml30(para) msgid "" "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " "EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " "THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " "MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " "RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " "MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " "MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " "WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " "SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "EL DOCUMENTO SE PROPORCIONARà \"TAL CUAL\", SIN GARANTÃA DE NINGÚN TIPO, YA SEA EXPRESA O IMPLÃCITA, INCLUYENDO, SIN LIMITACIÓN, LAS GARANTÃAS QUE EL DOCUMENTO O LA VERSIÓN MODIFICADA ES LIBRE DE DEFECTOS COMERCIALES, ADECUADOS PARA UN PROPÓSITO PARTICULAR O NO-INFRACCIÓN. EL RIESGO EN CUANTO A LA CALIDAD, LA PRECISIÓN Y EJECUCIÓN DEL DOCUMENTO O VERSIÓN MODIFICADA DEL DOCUMENTO ES SUYO. SI CUALQUIER DOCUMENTO O VERSIÓN MODIFICADA PRUEBA DEFECTUOSO EN CUALQUIER ASPECTO, USTED (NO ESCRITOR INICIAL, AUTOR O CONTRIBUYENTE) ASUME EL COSTO DE CUALQUIER SERVICIO, REPARACIÓN o CORRECCIÓN. LA RENUNCIA DE GARANTÃA ES UNA PARTE ESENCIAL DE ESTA LICENCIA. EL USO DE CUALQUIER DOCUMENTO O VERSIÓN MODIFICADA NO ES AUTORIZADA EXCEPTUANDO BAJO ESTA RENUNCIA DE RESPONSABILIDAD; Y" #: C/mp3splt-gtk.xml47(para) msgid "" "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" " NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " "CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " "DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " "FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " "ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " "WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" " OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "BAJO NINGUNA CIRCUNSTANCIA Y BAJO NINGUNA TEORÃA LEGAL, YA SEA EN AGRAVIO (INCLUYENDO NEGLIGENCIA), CONTRATO O DE OTRA MANERA, EL AUTOR, EL ESCRITOR INICIAL, CUALQUIER CONTRIBUYENTE O CUALQUIER DISTRIBUIDOR DEL DOCUMENTO O DE VERSIONES MODIFICADAS, O CUALQUIER PROVEEDOR DE CUALQUIERA DE ESAS PARTES, SERà RESPONSABLE DE CUALQUIER PERSONA POR DAÑOS DIRECTOS, INDIRECTOS, ESPECIALES, INCIDENTALES O DERIVADOS DE CUALQUIER TIPO, INCLUYENDO, SIN LIMITACIONES, DAÑOS POR PÉRDIDA DE BUENA VOLUNTAD, TRABAJO, FALLOS EN EL COMPUTADOR O MAL FUNCIONAMIENTO, O CUALQUIER OTRO DAÑO O DERIVADO DE O EN RELACIÓN CON EL USO DEL DOCUMENTO Y VERSIONES MODIFICADAS, AÚN CUANDO DICHA PARTE HAYA SIDO INFORMADA DE LA POSIBILIDAD DE TALES DAÑOS." #: C/mp3splt-gtk.xml24(para) msgid "" "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "" msgstr "EL DOCUMENTO Y LAS VERSIONES MODIFICADAS SON PROPORCIONADAS BAJO LOS TÉRMINOS DE LA LICENCIA DE DOCUMENTACIÓN LIBRE GNU CON LA PROMOCIÓN ENTENDIENDO QUE: " #: C/mp3splt-gtk.xml41(firstname) msgid "Gunter" msgstr "" #: C/mp3splt-gtk.xml44(surname) msgid "Königsmann" msgstr "" #: C/mp3splt-gtk.xml50(revnumber) msgid "mp3splt-gtk Manual 0.1" msgstr "Manual mp3splt-gtk 0.1" #: C/mp3splt-gtk.xml51(date) msgid "2010-11-16" msgstr "2010-11-16" #: C/mp3splt-gtk.xml57(title) msgid "Introduction" msgstr "Introducción" #: C/mp3splt-gtk.xml58(para) msgid "" "The mp3splt-gtk application is a tool that allows" " to cut MP3 and Ogg Vorbis files without the need to re-encode them (which " "would loose them quality)." msgstr "La aplicación mp3splt-gtk es una herramienta que le permite cortar archivos MP3 y Ogg Vorbis sin la necesidad de re-codificarlos (lo que provocaría pérdida de calidad)." #: C/mp3splt-gtk.xml62(para) msgid "" "Features include graphical selection of split points, automatic splitting of" " music recordings into tracks and automatic adjustment of split points to " "fall into pauses." msgstr "Las características incluyen la selección gráfica de los puntos de división, división automática de grabaciones musicales en las pistas y el ajuste automático de los puntos de división al caer en las pausas." #: C/mp3splt-gtk.xml68(title) msgid "mp3splt-gtk directly after startup" msgstr "" #: C/mp3splt-gtk.xml75(application) msgid "mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml75(phrase) msgid "Shows directly after startup." msgstr "" #: C/mp3splt-gtk.xml82(title) msgid "Starting mp3splt-gtk" msgstr "Iniciando mp3splt-gtk" #: C/mp3splt-gtk.xml83(para) msgid "" "You can start mp3splt-gtk in - at least - the " "following ways:" msgstr "Usted puede iniciar mp3splt-gtk en - a lo menos - las siguientes maneras:" #: C/mp3splt-gtk.xml89(para) msgid "" "Choose Sound and Videomp3splt-" "gtk from the Applications " "menu." msgstr "Escoja Sonido y Videomp3splt-gtk desde el menú Aplicaciones." #: C/mp3splt-gtk.xml96(para) msgid "" "Run mp3splt-gtk at the prompt in a terminal such as " "gnome-terminal, or from the Run " "Application dialogue." msgstr "Ejecute mp3splt-gtk en una terminal como gnome-terminal o desde el diálogo Ejecutar." #: C/mp3splt-gtk.xml106(title) msgid "Closing mp3splt-gtk" msgstr "Cerrando mp3splt-gtk" #: C/mp3splt-gtk.xml107(para) msgid "" "To close the mp3splt-gtk window there are many " "options, too:" msgstr "Para cerrar la aplicación mp3splt-gtk hay muchas opciones:" #: C/mp3splt-gtk.xml111(para) msgid "" "choose " "FileQuit" msgstr "" #: C/mp3splt-gtk.xml117(para) msgid "press CtrlW" msgstr "" #: C/mp3splt-gtk.xml123(para) msgid "" "press on the X-shaped button the window manager of your choise provides you " "with" msgstr "pulse sobre el botón en forma de X el gestor de ventanas" #: C/mp3splt-gtk.xml131(title) msgid "mp3splt-gtk Features" msgstr "Características de mp3splt-gtk" #: C/mp3splt-gtk.xml132(para) msgid "" "mp3splt-gtk will allow you to manipulate audio " "files without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml141(para) msgid "" "The ability to use your favourite audio playback application for playback of" " the file that is to be cut." msgstr "Habilidad de utilizar su reproductor favorito de música para la reproducción de archivos que serán cortados." #: C/mp3splt-gtk.xml147(para) msgid "Automatic detection of the right places to split." msgstr "Detección automática de los lugares correctos para dividir." #: C/mp3splt-gtk.xml152(para) msgid "" "Automatic adjustment of manually set split points to fall into a nearby " "pause - which allows the user to work with less than milisecond-accuracy " "when specifying the split points." msgstr "Ajuste automático de puntos de división establecidos manualmente para caer en pausas cercanas - que permite al usuario trabajar con menos de milisegundos de precisión al especificar los puntos de división." #: C/mp3splt-gtk.xml160(para) msgid "Importing splitpoints for a known album from a database like freedb." msgstr "Importación de puntos de división para un álbum conocido desde una base de datos como FreeDB." #: C/mp3splt-gtk.xml166(para) msgid "" "Automatically split albums that have been joined by albumwrap or mp3wrap " "into the original files." msgstr "División automática de albums que fueron pegados con albumwrap o mp3wrap en archivos originales." #: C/mp3splt-gtk.xml136(para) msgid "" "This program was designed with usability in Mind and contains the followning" " features " msgstr "" #: C/mp3splt-gtk.xml176(title) msgid "Basic Workflow" msgstr "" #: C/mp3splt-gtk.xml178(title) msgid "Opening a file" msgstr "" #: C/mp3splt-gtk.xml179(para) msgid "" "Just press the Choose button and select a file to " "open." msgstr "" #: C/mp3splt-gtk.xml185(title) msgid "Choose the right split points" msgstr "" #: C/mp3splt-gtk.xml187(title) msgid "Choosing split points manually" msgstr "" #: C/mp3splt-gtk.xml188(para) msgid "" "Press the Play button (a gray triangle pointing to " "the right) on the Player tab, listen to the music and " "press the add button (which is on the " "Player tab, too) every time a new audio track should " "begin." msgstr "" #: C/mp3splt-gtk.xml196(para) msgid "" "If you don't want to be made to press the button exactly at the right " "centisecond the add Preferences tab gives you the " "possibility to let the program fine-tune the split points you choose." msgstr "" #: C/mp3splt-gtk.xml204(title) msgid "Automatical setting of split points" msgstr "" #: C/mp3splt-gtk.xml205(para) msgid "" "The Type of Split tab provides you with a wide choices " "of ways to select where to split a file into tracks. If you want to split a " "media into tracks others might have had access to before you can try " "searching for splitpoint readymades in the FreeDB tab " "instead." msgstr "" #: C/mp3splt-gtk.xml216(title) msgid "Tweaking split points and entering track information" msgstr "" #: C/mp3splt-gtk.xml217(para) msgid "" "The Splitpoints tab now contains a list of points where" " tracks start or end. It also contains the information if this piece of the " "audio file is to be kept and how the corresponding track has to be named." msgstr "" #: C/mp3splt-gtk.xml224(title) msgid "The split point tab" msgstr "" #: C/mp3splt-gtk.xml231(phrase) msgid "Shows all split points and track names." msgstr "" #: C/mp3splt-gtk.xml236(para) msgid "" "If you want to change the start or end position of a track or give it a name" " just do it at any time you want." msgstr "" #: C/mp3splt-gtk.xml242(title) C/mp3splt-gtk.xml281(title) msgid "Exporting the tracks" msgstr "" #: C/mp3splt-gtk.xml243(para) C/mp3splt-gtk.xml282(para) msgid "" "Now press the button with the green check mark that " "is always visible in the menu line. mp3splt-gtk will output all tracks into " "single files. If anything goes wrong don't despair: Since one of the goals " "of mp3splt-gtk is to work completely lossless even if anything goes wrong " "not much is lost." msgstr "" #: C/mp3splt-gtk.xml254(title) msgid "Batch processing of files" msgstr "" #: C/mp3splt-gtk.xml255(para) msgid "" "Besides manual and automatic splitting of a single file mp3splt-gtk also " "supports automatic batch-processing of multiple files at once." msgstr "" #: C/mp3splt-gtk.xml261(title) msgid "Enabling batch processing mode" msgstr "" #: C/mp3splt-gtk.xml262(para) msgid "" "Go to the Type of split tab and there to the " "File mode tab. After selecting Batch " "processing here batch processing mode is enabled" msgstr "" #: C/mp3splt-gtk.xml268(title) C/mp3splt-gtk.xml276(title) msgid "Adding files in batch processing mode" msgstr "" #: C/mp3splt-gtk.xml269(para) msgid "" "Go to the Type of split tab and there to the " "Split mode tab and select after which criteria you want" " the files to be split." msgstr "" #: C/mp3splt-gtk.xml277(para) msgid "" "Go to the Batch Processing tab and add all files you " "want to be automatically processed." msgstr "" #: C/mp3splt-gtk.xml293(title) msgid "Saving and resuming your work" msgstr "" #: C/mp3splt-gtk.xml294(para) msgid "" "mp3splt-gtk contains an export feature that saves the current project's " "state as a cue file. This cue file can later be re-opened by mp3splt-gtk or " "be used by any cd burner or other application that can read cue files." msgstr "" #: C/mp3splt-gtk.xml300(para) msgid "" "If the cue file is used in a different application than mp3splt-gtk there is" " one feature that most probably won't work, though:" msgstr "" #: C/mp3splt-gtk.xml305(para) msgid "" "The cue standard does provide commentary fields that allow applications to " "store private data (which we use for to remember which part of the file is " "not to be output). But since there is no standartized way to exclude parts " "of a file from the CD burning process other applications most probably won't" " know if you want to do so." msgstr "" #: C/mp3splt-gtk.xml313(para) msgid "" "To export the current split points as a cue file press " "FileExport " "Splitpoints" msgstr "" #: C/mp3splt-gtk.xml320(title) msgid "Troubleshooting" msgstr "" #: C/mp3splt-gtk.xml322(title) msgid "The player won't start" msgstr "" #: C/mp3splt-gtk.xml323(para) msgid "" "If the player won't start even if the play button is pressed try starting " "the player independently from mp3splt-gtk and pressing play thereafter." msgstr "" #: C/mp3splt-gtk.xml328(para) msgid "" "mp3splt-gtk knows how to remote-control SnackAmp and Audacious to " "automatically switch to the file that is about to be split." msgstr "" #: C/mp3splt-gtk.xml334(title) msgid "Splitting doesn't work" msgstr "" #: C/mp3splt-gtk.xml335(para) msgid "" "Try to make sure that the version of libmp3splt is installed correspondends " "to the version of mp3splt-gtk. Even if (for newer versions of the program) " "the configure script makes sure that both versions match it might still be " "possible to have the wrong combination of these elements installed on the " "same system." msgstr "" #: C/mp3splt-gtk.xml343(para) msgid "" "If that is the case make sure that in the File mode tab" " of the Type of split tab Single " "file mode is selected." msgstr "" #: C/mp3splt-gtk.xml350(title) msgid "Splitting a certain Ogg file doesn't work" msgstr "" #: C/mp3splt-gtk.xml351(para) msgid "" "Next to the lossy ogg vorbis format that gives good compression while " "keeping file sizes extremely low there are other file formats that can be " "kept inside an ogg container as well, notably ogg flac." msgstr "" #: C/mp3splt-gtk.xml357(para) msgid "" "Flac is a completely lossless codec which means that the output files are " "sonewhat larger than Ogg vorbis ones but these files can be cut on any " "information without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml363(para) msgid "" "Since there is no direct need mp3splt-gtk still does not support cutting " "flac files." msgstr "" #: C/mp3splt-gtk.xml369(title) msgid "Adding a file to the files view doesn't work" msgstr "" #: C/mp3splt-gtk.xml370(para) msgid "" "Make sure that in the File mode tab of the " "Type of split tab Batch processing" " mode is selected." msgstr "" #. Put one translator per line, in the form of NAME , YEAR1, YEAR2 #: C/mp3splt-gtk.xml0(None) msgid "translator-credits" msgstr "Ricardo A. Hermosilla Carrillo " mp3splt-gtk-0.7.2/help/es_CL/mp3splt-gtk.xml0000644000175000017500000003634611753562422015475 00000000000000 &appname;"> ]>
Manual de mp3splt-gtk mp3splt-gtk. Una herramienta que permite cortar sin pérdida de datos en archivos MP3 o Ogg Vorbis. Esto significa que los cuadros seleccionados de audio o paquetes se extraen, sin necesidad de volver a codificar el archivo - que perdería calidad. 2010 Gunter Königsmann Se concede permiso para copiar, distribuir y/o modificar este documento bajo los términos de la Licencia de Documentación Libre GNU (GFDL), en su versión 1.1 o posterior publicado por la Free Software Foundation sin Secciones invariantes, sin textos con portada y sin textos con portada trasera. Usted puede encontrar una copia de la GFDL en este enlace o en el archivo COPYING-DOCS distribuido con este manual. Este manual es parte de una colección de manuales para GNOME distribuidos bajo la GFDL. Si usted quiere distribuir este manual separadamente de la colección, puede hacerlo añadiendo una copia de la licencia al manual como se describe en la sección 6 de la licencia. Muchos de los nombres usados por compañías para distinguir sus productos y servicios son demandados como marcas. Cuando estos nombres aparecen en la documentación de GNOME, y los miembros del Proyecto de documentación de GNOME están al corriente de esas marcas, los nombres están en mayúsculas o con letra inicial mayúscula. EL DOCUMENTO Y LAS VERSIONES MODIFICADAS SON PROPORCIONADAS BAJO LOS TÉRMINOS DE LA LICENCIA DE DOCUMENTACIÓN LIBRE GNU CON LA PROMOCIÓN ENTENDIENDO QUE: EL DOCUMENTO SE PROPORCIONARà "TAL CUAL", SIN GARANTÃA DE NINGÚN TIPO, YA SEA EXPRESA O IMPLÃCITA, INCLUYENDO, SIN LIMITACIÓN, LAS GARANTÃAS QUE EL DOCUMENTO O LA VERSIÓN MODIFICADA ES LIBRE DE DEFECTOS COMERCIALES, ADECUADOS PARA UN PROPÓSITO PARTICULAR O NO-INFRACCIÓN. EL RIESGO EN CUANTO A LA CALIDAD, LA PRECISIÓN Y EJECUCIÓN DEL DOCUMENTO O VERSIÓN MODIFICADA DEL DOCUMENTO ES SUYO. SI CUALQUIER DOCUMENTO O VERSIÓN MODIFICADA PRUEBA DEFECTUOSO EN CUALQUIER ASPECTO, USTED (NO ESCRITOR INICIAL, AUTOR O CONTRIBUYENTE) ASUME EL COSTO DE CUALQUIER SERVICIO, REPARACIÓN o CORRECCIÓN. LA RENUNCIA DE GARANTÃA ES UNA PARTE ESENCIAL DE ESTA LICENCIA. EL USO DE CUALQUIER DOCUMENTO O VERSIÓN MODIFICADA NO ES AUTORIZADA EXCEPTUANDO BAJO ESTA RENUNCIA DE RESPONSABILIDAD; Y BAJO NINGUNA CIRCUNSTANCIA Y BAJO NINGUNA TEORÃA LEGAL, YA SEA EN AGRAVIO (INCLUYENDO NEGLIGENCIA), CONTRATO O DE OTRA MANERA, EL AUTOR, EL ESCRITOR INICIAL, CUALQUIER CONTRIBUYENTE O CUALQUIER DISTRIBUIDOR DEL DOCUMENTO O DE VERSIONES MODIFICADAS, O CUALQUIER PROVEEDOR DE CUALQUIERA DE ESAS PARTES, SERà RESPONSABLE DE CUALQUIER PERSONA POR DAÑOS DIRECTOS, INDIRECTOS, ESPECIALES, INCIDENTALES O DERIVADOS DE CUALQUIER TIPO, INCLUYENDO, SIN LIMITACIONES, DAÑOS POR PÉRDIDA DE BUENA VOLUNTAD, TRABAJO, FALLOS EN EL COMPUTADOR O MAL FUNCIONAMIENTO, O CUALQUIER OTRO DAÑO O DERIVADO DE O EN RELACIÓN CON EL USO DEL DOCUMENTO Y VERSIONES MODIFICADAS, AÚN CUANDO DICHA PARTE HAYA SIDO INFORMADA DE LA POSIBILIDAD DE TALES DAÑOS. Gunter Königsmann Manual mp3splt-gtk 0.1 2010-11-16 Introducción La aplicación mp3splt-gtk es una herramienta que le permite cortar archivos MP3 y Ogg Vorbis sin la necesidad de re-codificarlos (lo que provocaría pérdida de calidad). Las características incluyen la selección gráfica de los puntos de división, división automática de grabaciones musicales en las pistas y el ajuste automático de los puntos de división al caer en las pausas.
mp3splt-gtk directly after startup Shows mp3splt-gtk directly after startup.
Iniciando mp3splt-gtk Usted puede iniciar mp3splt-gtk en - a lo menos - las siguientes maneras: Escoja Sonido y Videomp3splt-gtk desde el menú Aplicaciones. Ejecute mp3splt-gtk en una terminal como gnome-terminal o desde el diálogo Ejecutar. Cerrando mp3splt-gtk Para cerrar la aplicación mp3splt-gtk hay muchas opciones: choose FileQuit press CtrlW pulse sobre el botón en forma de X el gestor de ventanas Características de mp3splt-gtk mp3splt-gtk will allow you to manipulate audio files without loosing any quality. This program was designed with usability in Mind and contains the followning features Habilidad de utilizar su reproductor favorito de música para la reproducción de archivos que serán cortados. Detección automática de los lugares correctos para dividir. Ajuste automático de puntos de división establecidos manualmente para caer en pausas cercanas - que permite al usuario trabajar con menos de milisegundos de precisión al especificar los puntos de división. Importación de puntos de división para un álbum conocido desde una base de datos como FreeDB. División automática de albums que fueron pegados con albumwrap o mp3wrap en archivos originales.
Basic Workflow Opening a file Just press the Choose button and select a file to open. Choose the right split points Choosing split points manually Press the Play button (a gray triangle pointing to the right) on the Player tab, listen to the music and press the add button (which is on the Player tab, too) every time a new audio track should begin. If you don't want to be made to press the button exactly at the right centisecond the add Preferences tab gives you the possibility to let the program fine-tune the split points you choose. Automatical setting of split points The Type of Split tab provides you with a wide choices of ways to select where to split a file into tracks. If you want to split a media into tracks others might have had access to before you can try searching for splitpoint readymades in the FreeDB tab instead. Tweaking split points and entering track information The Splitpoints tab now contains a list of points where tracks start or end. It also contains the information if this piece of the audio file is to be kept and how the corresponding track has to be named.
The split point tab Shows all split points and track names.
If you want to change the start or end position of a track or give it a name just do it at any time you want.
Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost.
Batch processing of files Besides manual and automatic splitting of a single file mp3splt-gtk also supports automatic batch-processing of multiple files at once. Enabling batch processing mode Go to the Type of split tab and there to the File mode tab. After selecting Batch processing here batch processing mode is enabled Adding files in batch processing mode Go to the Type of split tab and there to the Split mode tab and select after which criteria you want the files to be split. Adding files in batch processing mode Go to the Batch Processing tab and add all files you want to be automatically processed. Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost. Saving and resuming your work mp3splt-gtk contains an export feature that saves the current project's state as a cue file. This cue file can later be re-opened by mp3splt-gtk or be used by any cd burner or other application that can read cue files. If the cue file is used in a different application than mp3splt-gtk there is one feature that most probably won't work, though: The cue standard does provide commentary fields that allow applications to store private data (which we use for to remember which part of the file is not to be output). But since there is no standartized way to exclude parts of a file from the CD burning process other applications most probably won't know if you want to do so. To export the current split points as a cue file press FileExport Splitpoints Troubleshooting The player won't start If the player won't start even if the play button is pressed try starting the player independently from mp3splt-gtk and pressing play thereafter. mp3splt-gtk knows how to remote-control SnackAmp and Audacious to automatically switch to the file that is about to be split. Splitting doesn't work Try to make sure that the version of libmp3splt is installed correspondends to the version of mp3splt-gtk. Even if (for newer versions of the program) the configure script makes sure that both versions match it might still be possible to have the wrong combination of these elements installed on the same system. If that is the case make sure that in the File mode tab of the Type of split tab Single file mode is selected. Splitting a certain Ogg file doesn't work Next to the lossy ogg vorbis format that gives good compression while keeping file sizes extremely low there are other file formats that can be kept inside an ogg container as well, notably ogg flac. Flac is a completely lossless codec which means that the output files are sonewhat larger than Ogg vorbis ones but these files can be cut on any information without loosing any quality. Since there is no direct need mp3splt-gtk still does not support cutting flac files. Adding a file to the files view doesn't work Make sure that in the File mode tab of the Type of split tab Batch processing mode is selected.
mp3splt-gtk-0.7.2/help/ru_RU/0000755000175000017500000000000011753562422012701 500000000000000mp3splt-gtk-0.7.2/help/ru_RU/ru_RU.po0000644000175000017500000003624011753562422014222 00000000000000# # Translators: msgid "" msgstr "" "Project-Id-Version: mp3splt-gtk\n" "Report-Msgid-Bugs-To: http://sourceforge.net/tracker/?atid=476061&group_id=55130&func=browse\n" "POT-Creation-Date: 2011-01-11 21:44+0100\n" "PO-Revision-Date: 2010-12-13 18:36+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ru_RU\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml72(None) msgid "" "@@image: 'figures/mp3splt-gtk.png'; md5=377dbd4b902606dadf9d03cdd9c13ad9" msgstr "" #. When image changes, this message will be marked fuzzy or untranslated for #. you. #. It doesn't matter what you translate it to: it's not used at all. #: C/mp3splt-gtk.xml228(None) msgid "@@image: 'figures/Tracklist.png'; md5=1f97eed40ca5d67989a5ddd384f481b5" msgstr "" #: C/mp3splt-gtk.xml14(title) msgid "mp3splt-gtk Manual" msgstr "" #: C/mp3splt-gtk.xml16(para) msgid "mp3splt-gtk." msgstr "" #: C/mp3splt-gtk.xml19(para) msgid "" "A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means " "that the selected audio frames or packets are extracted without the need to " "re-encode the file - which would loose quality." msgstr "" #: C/mp3splt-gtk.xml26(year) msgid "2010" msgstr "" #: C/mp3splt-gtk.xml27(holder) msgid "Gunter Königsmann" msgstr "" #: C/mp3splt-gtk.xml2(para) msgid "" "Permission is granted to copy, distribute and/or modify this document under " "the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any " "later version published by the Free Software Foundation with no Invariant " "Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy" " of the GFDL at this link or in the file " "COPYING-DOCS distributed with this manual." msgstr "" #: C/mp3splt-gtk.xml11(para) msgid "" "This manual is part of a collection of GNOME manuals distributed under the " "GFDL. If you want to distribute this manual separately from the collection, " "you can do so by adding a copy of the license to the manual, as described in" " section 6 of the license." msgstr "" #: C/mp3splt-gtk.xml17(para) msgid "" "Many of the names used by companies to distinguish their products and " "services are claimed as trademarks. Where those names appear in any GNOME " "documentation, and the members of the GNOME Documentation Project are made " "aware of those trademarks, then the names are in capital letters or initial " "capital letters." msgstr "" #: C/mp3splt-gtk.xml30(para) msgid "" "DOCUMENT IS PROVIDED ON AN \"AS IS\" BASIS, WITHOUT WARRANTY OF ANY KIND, " "EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT " "THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS " "MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE " "RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR " "MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR " "MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL " "WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY " "SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN " "ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION " "OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND" msgstr "" #: C/mp3splt-gtk.xml47(para) msgid "" "UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING" " NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY " "CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE " "DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON " "FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF " "ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, " "WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES" " OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED " "VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE" " POSSIBILITY OF SUCH DAMAGES." msgstr "" #: C/mp3splt-gtk.xml24(para) msgid "" "DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS " "OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: " "" msgstr "" #: C/mp3splt-gtk.xml41(firstname) msgid "Gunter" msgstr "" #: C/mp3splt-gtk.xml44(surname) msgid "Königsmann" msgstr "" #: C/mp3splt-gtk.xml50(revnumber) msgid "mp3splt-gtk Manual 0.1" msgstr "" #: C/mp3splt-gtk.xml51(date) msgid "2010-11-16" msgstr "" #: C/mp3splt-gtk.xml57(title) msgid "Introduction" msgstr "" #: C/mp3splt-gtk.xml58(para) msgid "" "The mp3splt-gtk application is a tool that allows" " to cut MP3 and Ogg Vorbis files without the need to re-encode them (which " "would loose them quality)." msgstr "" #: C/mp3splt-gtk.xml62(para) msgid "" "Features include graphical selection of split points, automatic splitting of" " music recordings into tracks and automatic adjustment of split points to " "fall into pauses." msgstr "" #: C/mp3splt-gtk.xml68(title) msgid "mp3splt-gtk directly after startup" msgstr "" #: C/mp3splt-gtk.xml75(application) msgid "mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml75(phrase) msgid "Shows directly after startup." msgstr "" #: C/mp3splt-gtk.xml82(title) msgid "Starting mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml83(para) msgid "" "You can start mp3splt-gtk in - at least - the " "following ways:" msgstr "" #: C/mp3splt-gtk.xml89(para) msgid "" "Choose Sound and Videomp3splt-" "gtk from the Applications " "menu." msgstr "" #: C/mp3splt-gtk.xml96(para) msgid "" "Run mp3splt-gtk at the prompt in a terminal such as " "gnome-terminal, or from the Run " "Application dialogue." msgstr "" #: C/mp3splt-gtk.xml106(title) msgid "Closing mp3splt-gtk" msgstr "" #: C/mp3splt-gtk.xml107(para) msgid "" "To close the mp3splt-gtk window there are many " "options, too:" msgstr "" #: C/mp3splt-gtk.xml111(para) msgid "" "choose " "FileQuit" msgstr "" #: C/mp3splt-gtk.xml117(para) msgid "press CtrlW" msgstr "" #: C/mp3splt-gtk.xml123(para) msgid "" "press on the X-shaped button the window manager of your choise provides you " "with" msgstr "" #: C/mp3splt-gtk.xml131(title) msgid "mp3splt-gtk Features" msgstr "" #: C/mp3splt-gtk.xml132(para) msgid "" "mp3splt-gtk will allow you to manipulate audio " "files without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml141(para) msgid "" "The ability to use your favourite audio playback application for playback of" " the file that is to be cut." msgstr "" #: C/mp3splt-gtk.xml147(para) msgid "Automatic detection of the right places to split." msgstr "" #: C/mp3splt-gtk.xml152(para) msgid "" "Automatic adjustment of manually set split points to fall into a nearby " "pause - which allows the user to work with less than milisecond-accuracy " "when specifying the split points." msgstr "" #: C/mp3splt-gtk.xml160(para) msgid "Importing splitpoints for a known album from a database like freedb." msgstr "" #: C/mp3splt-gtk.xml166(para) msgid "" "Automatically split albums that have been joined by albumwrap or mp3wrap " "into the original files." msgstr "" #: C/mp3splt-gtk.xml136(para) msgid "" "This program was designed with usability in Mind and contains the followning" " features " msgstr "" #: C/mp3splt-gtk.xml176(title) msgid "Basic Workflow" msgstr "" #: C/mp3splt-gtk.xml178(title) msgid "Opening a file" msgstr "" #: C/mp3splt-gtk.xml179(para) msgid "" "Just press the Choose button and select a file to " "open." msgstr "" #: C/mp3splt-gtk.xml185(title) msgid "Choose the right split points" msgstr "" #: C/mp3splt-gtk.xml187(title) msgid "Choosing split points manually" msgstr "" #: C/mp3splt-gtk.xml188(para) msgid "" "Press the Play button (a gray triangle pointing to " "the right) on the Player tab, listen to the music and " "press the add button (which is on the " "Player tab, too) every time a new audio track should " "begin." msgstr "" #: C/mp3splt-gtk.xml196(para) msgid "" "If you don't want to be made to press the button exactly at the right " "centisecond the add Preferences tab gives you the " "possibility to let the program fine-tune the split points you choose." msgstr "" #: C/mp3splt-gtk.xml204(title) msgid "Automatical setting of split points" msgstr "" #: C/mp3splt-gtk.xml205(para) msgid "" "The Type of Split tab provides you with a wide choices " "of ways to select where to split a file into tracks. If you want to split a " "media into tracks others might have had access to before you can try " "searching for splitpoint readymades in the FreeDB tab " "instead." msgstr "" #: C/mp3splt-gtk.xml216(title) msgid "Tweaking split points and entering track information" msgstr "" #: C/mp3splt-gtk.xml217(para) msgid "" "The Splitpoints tab now contains a list of points where" " tracks start or end. It also contains the information if this piece of the " "audio file is to be kept and how the corresponding track has to be named." msgstr "" #: C/mp3splt-gtk.xml224(title) msgid "The split point tab" msgstr "" #: C/mp3splt-gtk.xml231(phrase) msgid "Shows all split points and track names." msgstr "" #: C/mp3splt-gtk.xml236(para) msgid "" "If you want to change the start or end position of a track or give it a name" " just do it at any time you want." msgstr "" #: C/mp3splt-gtk.xml242(title) C/mp3splt-gtk.xml281(title) msgid "Exporting the tracks" msgstr "" #: C/mp3splt-gtk.xml243(para) C/mp3splt-gtk.xml282(para) msgid "" "Now press the button with the green check mark that " "is always visible in the menu line. mp3splt-gtk will output all tracks into " "single files. If anything goes wrong don't despair: Since one of the goals " "of mp3splt-gtk is to work completely lossless even if anything goes wrong " "not much is lost." msgstr "" #: C/mp3splt-gtk.xml254(title) msgid "Batch processing of files" msgstr "" #: C/mp3splt-gtk.xml255(para) msgid "" "Besides manual and automatic splitting of a single file mp3splt-gtk also " "supports automatic batch-processing of multiple files at once." msgstr "" #: C/mp3splt-gtk.xml261(title) msgid "Enabling batch processing mode" msgstr "" #: C/mp3splt-gtk.xml262(para) msgid "" "Go to the Type of split tab and there to the " "File mode tab. After selecting Batch " "processing here batch processing mode is enabled" msgstr "" #: C/mp3splt-gtk.xml268(title) C/mp3splt-gtk.xml276(title) msgid "Adding files in batch processing mode" msgstr "" #: C/mp3splt-gtk.xml269(para) msgid "" "Go to the Type of split tab and there to the " "Split mode tab and select after which criteria you want" " the files to be split." msgstr "" #: C/mp3splt-gtk.xml277(para) msgid "" "Go to the Batch Processing tab and add all files you " "want to be automatically processed." msgstr "" #: C/mp3splt-gtk.xml293(title) msgid "Saving and resuming your work" msgstr "" #: C/mp3splt-gtk.xml294(para) msgid "" "mp3splt-gtk contains an export feature that saves the current project's " "state as a cue file. This cue file can later be re-opened by mp3splt-gtk or " "be used by any cd burner or other application that can read cue files." msgstr "" #: C/mp3splt-gtk.xml300(para) msgid "" "If the cue file is used in a different application than mp3splt-gtk there is" " one feature that most probably won't work, though:" msgstr "" #: C/mp3splt-gtk.xml305(para) msgid "" "The cue standard does provide commentary fields that allow applications to " "store private data (which we use for to remember which part of the file is " "not to be output). But since there is no standartized way to exclude parts " "of a file from the CD burning process other applications most probably won't" " know if you want to do so." msgstr "" #: C/mp3splt-gtk.xml313(para) msgid "" "To export the current split points as a cue file press " "FileExport " "Splitpoints" msgstr "" #: C/mp3splt-gtk.xml320(title) msgid "Troubleshooting" msgstr "" #: C/mp3splt-gtk.xml322(title) msgid "The player won't start" msgstr "" #: C/mp3splt-gtk.xml323(para) msgid "" "If the player won't start even if the play button is pressed try starting " "the player independently from mp3splt-gtk and pressing play thereafter." msgstr "" #: C/mp3splt-gtk.xml328(para) msgid "" "mp3splt-gtk knows how to remote-control SnackAmp and Audacious to " "automatically switch to the file that is about to be split." msgstr "" #: C/mp3splt-gtk.xml334(title) msgid "Splitting doesn't work" msgstr "" #: C/mp3splt-gtk.xml335(para) msgid "" "Try to make sure that the version of libmp3splt is installed correspondends " "to the version of mp3splt-gtk. Even if (for newer versions of the program) " "the configure script makes sure that both versions match it might still be " "possible to have the wrong combination of these elements installed on the " "same system." msgstr "" #: C/mp3splt-gtk.xml343(para) msgid "" "If that is the case make sure that in the File mode tab" " of the Type of split tab Single " "file mode is selected." msgstr "" #: C/mp3splt-gtk.xml350(title) msgid "Splitting a certain Ogg file doesn't work" msgstr "" #: C/mp3splt-gtk.xml351(para) msgid "" "Next to the lossy ogg vorbis format that gives good compression while " "keeping file sizes extremely low there are other file formats that can be " "kept inside an ogg container as well, notably ogg flac." msgstr "" #: C/mp3splt-gtk.xml357(para) msgid "" "Flac is a completely lossless codec which means that the output files are " "sonewhat larger than Ogg vorbis ones but these files can be cut on any " "information without loosing any quality." msgstr "" #: C/mp3splt-gtk.xml363(para) msgid "" "Since there is no direct need mp3splt-gtk still does not support cutting " "flac files." msgstr "" #: C/mp3splt-gtk.xml369(title) msgid "Adding a file to the files view doesn't work" msgstr "" #: C/mp3splt-gtk.xml370(para) msgid "" "Make sure that in the File mode tab of the " "Type of split tab Batch processing" " mode is selected." msgstr "" #. Put one translator per line, in the form of NAME , YEAR1, YEAR2 #: C/mp3splt-gtk.xml0(None) msgid "translator-credits" msgstr "" mp3splt-gtk-0.7.2/help/ru_RU/mp3splt-gtk.xml0000644000175000017500000003657511753562422015550 00000000000000 &appname;"> ]>
mp3splt-gtk Manual mp3splt-gtk. A tool that allows to losslessly cut MP3 or Ogg Vorbis files. This means that the selected audio frames or packets are extracted without the need to re-encode the file - which would loose quality. 2010 Gunter Königsmann Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License (GFDL), Version 1.1 or any later version published by the Free Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. You can find a copy of the GFDL at this link or in the file COPYING-DOCS distributed with this manual. This manual is part of a collection of GNOME manuals distributed under the GFDL. If you want to distribute this manual separately from the collection, you can do so by adding a copy of the license to the manual, as described in section 6 of the license. Many of the names used by companies to distinguish their products and services are claimed as trademarks. Where those names appear in any GNOME documentation, and the members of the GNOME Documentation Project are made aware of those trademarks, then the names are in capital letters or initial capital letters. DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE WITH THE FURTHER UNDERSTANDING THAT: DOCUMENT IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS FREE OF DEFECTS MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY, ACCURACY, AND PERFORMANCE OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS WITH YOU. SHOULD ANY DOCUMENT OR MODIFIED VERSION PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL WRITER, AUTHOR OR ANY CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER; AND UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE AUTHOR, INITIAL WRITER, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF THE DOCUMENT OR MODIFIED VERSION OF THE DOCUMENT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER DAMAGES OR LOSSES ARISING OUT OF OR RELATING TO USE OF THE DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. Gunter Königsmann mp3splt-gtk Manual 0.1 2010-11-16 Introduction The mp3splt-gtk application is a tool that allows to cut MP3 and Ogg Vorbis files without the need to re-encode them (which would loose them quality). Features include graphical selection of split points, automatic splitting of music recordings into tracks and automatic adjustment of split points to fall into pauses.
mp3splt-gtk directly after startup Shows mp3splt-gtk directly after startup.
Starting mp3splt-gtk You can start mp3splt-gtk in - at least - the following ways: Choose Sound and Videomp3splt-gtk from the Applications menu. Run mp3splt-gtk at the prompt in a terminal such as gnome-terminal, or from the Run Application dialogue. Closing mp3splt-gtk To close the mp3splt-gtk window there are many options, too: choose FileQuit press CtrlW press on the X-shaped button the window manager of your choise provides you with mp3splt-gtk Features mp3splt-gtk will allow you to manipulate audio files without loosing any quality. This program was designed with usability in Mind and contains the followning features The ability to use your favourite audio playback application for playback of the file that is to be cut. Automatic detection of the right places to split. Automatic adjustment of manually set split points to fall into a nearby pause - which allows the user to work with less than milisecond-accuracy when specifying the split points. Importing splitpoints for a known album from a database like freedb. Automatically split albums that have been joined by albumwrap or mp3wrap into the original files.
Basic Workflow Opening a file Just press the Choose button and select a file to open. Choose the right split points Choosing split points manually Press the Play button (a gray triangle pointing to the right) on the Player tab, listen to the music and press the add button (which is on the Player tab, too) every time a new audio track should begin. If you don't want to be made to press the button exactly at the right centisecond the add Preferences tab gives you the possibility to let the program fine-tune the split points you choose. Automatical setting of split points The Type of Split tab provides you with a wide choices of ways to select where to split a file into tracks. If you want to split a media into tracks others might have had access to before you can try searching for splitpoint readymades in the FreeDB tab instead. Tweaking split points and entering track information The Splitpoints tab now contains a list of points where tracks start or end. It also contains the information if this piece of the audio file is to be kept and how the corresponding track has to be named.
The split point tab Shows all split points and track names.
If you want to change the start or end position of a track or give it a name just do it at any time you want.
Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost.
Batch processing of files Besides manual and automatic splitting of a single file mp3splt-gtk also supports automatic batch-processing of multiple files at once. Enabling batch processing mode Go to the Type of split tab and there to the File mode tab. After selecting Batch processing here batch processing mode is enabled Adding files in batch processing mode Go to the Type of split tab and there to the Split mode tab and select after which criteria you want the files to be split. Adding files in batch processing mode Go to the Batch Processing tab and add all files you want to be automatically processed. Exporting the tracks Now press the button with the green check mark that is always visible in the menu line. mp3splt-gtk will output all tracks into single files. If anything goes wrong don't despair: Since one of the goals of mp3splt-gtk is to work completely lossless even if anything goes wrong not much is lost. Saving and resuming your work mp3splt-gtk contains an export feature that saves the current project's state as a cue file. This cue file can later be re-opened by mp3splt-gtk or be used by any cd burner or other application that can read cue files. If the cue file is used in a different application than mp3splt-gtk there is one feature that most probably won't work, though: The cue standard does provide commentary fields that allow applications to store private data (which we use for to remember which part of the file is not to be output). But since there is no standartized way to exclude parts of a file from the CD burning process other applications most probably won't know if you want to do so. To export the current split points as a cue file press FileExport Splitpoints Troubleshooting The player won't start If the player won't start even if the play button is pressed try starting the player independently from mp3splt-gtk and pressing play thereafter. mp3splt-gtk knows how to remote-control SnackAmp and Audacious to automatically switch to the file that is about to be split. Splitting doesn't work Try to make sure that the version of libmp3splt is installed correspondends to the version of mp3splt-gtk. Even if (for newer versions of the program) the configure script makes sure that both versions match it might still be possible to have the wrong combination of these elements installed on the same system. If that is the case make sure that in the File mode tab of the Type of split tab Single file mode is selected. Splitting a certain Ogg file doesn't work Next to the lossy ogg vorbis format that gives good compression while keeping file sizes extremely low there are other file formats that can be kept inside an ogg container as well, notably ogg flac. Flac is a completely lossless codec which means that the output files are sonewhat larger than Ogg vorbis ones but these files can be cut on any information without loosing any quality. Since there is no direct need mp3splt-gtk still does not support cutting flac files. Adding a file to the files view doesn't work Make sure that in the File mode tab of the Type of split tab Batch processing mode is selected.
mp3splt-gtk-0.7.2/help/Makefile.am0000644000175000017500000000106411751531527013622 00000000000000if GNOME include $(top_srcdir)/build-aux/gnome-doc-utils.make dist-hook: doc-dist-hook DOC_MODULE = mp3splt-gtk DOC_ENTITIES = legal.xml DOC_INCLUDES = DOC_FIGURES = figures/FreeDBSearch.png figures/mp3splt-gtk.png figures/Preferences.png figures/SplitType.png figures/Tracklist.png DOC_LINGUAS = en de fr es_CL cs es ru_RU EXTRA_DIST = C/figures/FreeDBSearch.png C/figures/mp3splt-gtk.png C/figures/Preferences.png C/figures/SplitType.png C/figures/Tracklist.png else doc: @echo Generation of help files is disabled since Gnome support is disabled. endif mp3splt-gtk-0.7.2/help/Makefile.in0000644000175000017500000011624311753562401013636 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in 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. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # gnome-doc-utils.make - make magic for building documentation # Copyright (C) 2004-2005 Shaun McCance # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. ################################################################################ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ $(top_srcdir)/build-aux/gnome-doc-utils.make ChangeLog subdir = help ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/gnome-doc-utils.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/mp3splt.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUDACIOUS_CFLAGS = @AUDACIOUS_CFLAGS@ AUDACIOUS_LIBS = @AUDACIOUS_LIBS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@ DOC_USER_FORMATS = @DOC_USER_FORMATS@ DOXYGEN = @DOXYGEN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FAKE_GTK_CFLAGS = @FAKE_GTK_CFLAGS@ FAKE_GTK_LIBS = @FAKE_GTK_LIBS@ GMSGFMT = @GMSGFMT@ GRAPHVIZ = @GRAPHVIZ@ GREP = @GREP@ GST_CFLAGS = @GST_CFLAGS@ GST_LIBS = @GST_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HELP_DIR = @HELP_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LOCALEDIR = @LOCALEDIR@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MP3SPLT_CFLAGS = @MP3SPLT_CFLAGS@ MP3SPLT_LIBS = @MP3SPLT_LIBS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ @GNOME_TRUE@_clean_doc_header = $(if $(DOC_H_FILE),clean-doc-header) @GNOME_TRUE@_DOC_REAL_FORMATS = $(if $(DOC_USER_FORMATS),$(DOC_USER_FORMATS),$(DOC_FORMATS)) @GNOME_TRUE@_DOC_REAL_LINGUAS = $(if $(filter environment,$(origin LINGUAS)), \ @GNOME_TRUE@ $(filter $(LINGUAS),$(DOC_LINGUAS)), \ @GNOME_TRUE@ $(DOC_LINGUAS)) @GNOME_TRUE@_DOC_ABS_SRCDIR = @abs_srcdir@ @GNOME_TRUE@_xml2po_mode = $(if $(DOC_ID),mallard,docbook) @ENABLE_SK_TRUE@@GNOME_TRUE@_ENABLE_SK = true ################################################################################ @GNOME_TRUE@GDU_V_XML2PO = $(GDU__v_XML2PO_$(V)) @GNOME_TRUE@GDU__v_XML2PO_ = $(GDU__v_XML2PO_$(AM_DEFAULT_VERBOSITY)) @GNOME_TRUE@GDU__v_XML2PO_0 = @echo " XML2PO" $@; @GNOME_TRUE@GDU_V_MSGFMT = $(GDU__v_MSGFMT_$(V)) @GNOME_TRUE@GDU__v_MSGFMT_ = $(GDU__v_MSGFMT_$(AM_DEFAULT_VERBOSITY)) @GNOME_TRUE@GDU__v_MSGFMT_0 = @echo " MSGFMT" $@; @GNOME_TRUE@GDU_V_DB2OMF = $(GDU__v_DB2OMF_$(V)) @GNOME_TRUE@GDU__v_DB2OMF_ = $(GDU__v_DB2OMF_$(AM_DEFAULT_VERBOSITY)) @GNOME_TRUE@GDU__v_DB2OMF_0 = @echo " DB2OMF" $@; @GNOME_TRUE@GDU_V_DB2HTM = $(GDU__v_DB2HTM_$(V)) @GNOME_TRUE@GDU__v_DB2HTM_ = $(GDU__v_DB2HTM_$(AM_DEFAULT_VERBOSITY)) @GNOME_TRUE@GDU__v_DB2HTM_0 = @echo " DB2HTM" $@; ################################################################################ @GNOME_TRUE@db2omf_args = \ @GNOME_TRUE@ --stringparam db2omf.basename $(DOC_MODULE) \ @GNOME_TRUE@ --stringparam db2omf.format $(3) \ @GNOME_TRUE@ --stringparam db2omf.dtd \ @GNOME_TRUE@ $(shell xmllint --format $(2) | grep -h PUBLIC | head -n 1 \ @GNOME_TRUE@ | sed -e 's/.*PUBLIC \(\"[^\"]*\"\).*/\1/') \ @GNOME_TRUE@ --stringparam db2omf.lang $(notdir $(patsubst %/$(notdir $(2)),%,$(2))) \ @GNOME_TRUE@ --stringparam db2omf.omf_dir "$(OMF_DIR)" \ @GNOME_TRUE@ --stringparam db2omf.help_dir "$(HELP_DIR)" \ @GNOME_TRUE@ --stringparam db2omf.omf_in "$(_DOC_OMF_IN)" \ @GNOME_TRUE@ $(if $(_ENABLE_SK), \ @GNOME_TRUE@ --stringparam db2omf.scrollkeeper_cl "$(_skcontentslist)") \ @GNOME_TRUE@ $(_db2omf) $(2) @GNOME_TRUE@_DOC_OMF_IN = $(if $(DOC_MODULE),$(wildcard $(_DOC_ABS_SRCDIR)/$(DOC_MODULE).omf.in)) @GNOME_TRUE@_DOC_OMF_DB = $(if $(_DOC_OMF_IN), \ @GNOME_TRUE@ $(foreach lc,C $(_DOC_REAL_LINGUAS),$(DOC_MODULE)-$(lc).omf)) @GNOME_TRUE@_DOC_OMF_HTML = $(if $(_DOC_OMF_IN), \ @GNOME_TRUE@ $(foreach lc,C $(_DOC_REAL_LINGUAS),$(DOC_MODULE)-html-$(lc).omf)) # FIXME @GNOME_TRUE@_DOC_OMF_ALL = \ @GNOME_TRUE@ $(if $(filter docbook,$(_DOC_REAL_FORMATS)),$(_DOC_OMF_DB)) \ @GNOME_TRUE@ $(if $(filter html HTML,$(_DOC_REAL_FORMATS)),$(_DOC_OMF_HTML)) ################################################################################ @GNOME_TRUE@_DOC_C_MODULE = $(if $(DOC_MODULE),C/$(DOC_MODULE).xml) @GNOME_TRUE@_DOC_C_PAGES = $(foreach page,$(DOC_PAGES),C/$(page)) @GNOME_TRUE@_DOC_C_ENTITIES = $(foreach ent,$(DOC_ENTITIES),C/$(ent)) @GNOME_TRUE@_DOC_C_INCLUDES = $(foreach inc,$(DOC_INCLUDES),C/$(inc)) @GNOME_TRUE@_DOC_C_DOCS = \ @GNOME_TRUE@ $(_DOC_C_ENTITIES) $(_DOC_C_INCLUDES) \ @GNOME_TRUE@ $(_DOC_C_PAGES) $(_DOC_C_MODULE) @GNOME_TRUE@_DOC_C_DOCS_NOENT = \ @GNOME_TRUE@ $(_DOC_C_MODULE) $(_DOC_C_INCLUDES) \ @GNOME_TRUE@ $(_DOC_C_PAGES) @GNOME_TRUE@_DOC_C_FIGURES = $(if $(DOC_FIGURES), \ @GNOME_TRUE@ $(foreach fig,$(DOC_FIGURES),C/$(fig)), \ @GNOME_TRUE@ $(patsubst $(srcdir)/%,%,$(wildcard $(srcdir)/C/figures/*.png))) # FIXME: probably have to shell escape to determine the file names @GNOME_TRUE@_DOC_C_HTML = $(foreach f, \ @GNOME_TRUE@ $(shell xsltproc --xinclude \ @GNOME_TRUE@ --stringparam db.chunk.basename "$(DOC_MODULE)" \ @GNOME_TRUE@ $(_chunks) "C/$(DOC_MODULE).xml"), \ @GNOME_TRUE@ C/$(f).xhtml) ############################################################################### @GNOME_TRUE@_DOC_POFILES = $(if $(DOC_MODULE)$(DOC_ID), \ @GNOME_TRUE@ $(foreach lc,$(_DOC_REAL_LINGUAS),$(lc)/$(lc).po)) @GNOME_TRUE@_DOC_MOFILES = $(patsubst %.po,%.mo,$(_DOC_POFILES)) @GNOME_TRUE@_DOC_LC_MODULES = $(if $(DOC_MODULE), \ @GNOME_TRUE@ $(foreach lc,$(_DOC_REAL_LINGUAS),$(lc)/$(DOC_MODULE).xml)) @GNOME_TRUE@_DOC_LC_PAGES = \ @GNOME_TRUE@ $(foreach lc,$(_DOC_REAL_LINGUAS),$(foreach page,$(_DOC_C_PAGES), \ @GNOME_TRUE@ $(lc)/$(notdir $(page)) )) @GNOME_TRUE@_DOC_LC_INCLUDES = \ @GNOME_TRUE@ $(foreach lc,$(_DOC_REAL_LINGUAS),$(foreach inc,$(_DOC_C_INCLUDES), \ @GNOME_TRUE@ $(lc)/$(notdir $(inc)) )) # FIXME: probably have to shell escape to determine the file names @GNOME_TRUE@_DOC_LC_HTML = \ @GNOME_TRUE@ $(foreach lc,$(_DOC_REAL_LINGUAS),$(foreach doc,$(_DOC_C_HTML), \ @GNOME_TRUE@ $(lc)/$(notdir $(doc)) )) @GNOME_TRUE@_DOC_LC_DOCS = \ @GNOME_TRUE@ $(_DOC_LC_MODULES) $(_DOC_LC_INCLUDES) $(_DOC_LC_PAGES) \ @GNOME_TRUE@ $(if $(filter html HTML,$(_DOC_REAL_FORMATS)),$(_DOC_LC_HTML)) @GNOME_TRUE@_DOC_LC_FIGURES = $(foreach lc,$(_DOC_REAL_LINGUAS), \ @GNOME_TRUE@ $(patsubst C/%,$(lc)/%,$(_DOC_C_FIGURES)) ) @GNOME_TRUE@_DOC_SRC_FIGURES = \ @GNOME_TRUE@ $(foreach fig,$(_DOC_C_FIGURES), $(foreach lc,C $(_DOC_REAL_LINGUAS), \ @GNOME_TRUE@ $(wildcard $(srcdir)/$(lc)/$(patsubst C/%,%,$(fig))) )) @GNOME_TRUE@_DOC_POT = $(if $(DOC_MODULE),$(DOC_MODULE).pot,$(if $(DOC_ID),$(DOC_ID).pot)) ################################################################################ @GNOME_TRUE@_DOC_HTML_ALL = $(if $(filter html HTML,$(_DOC_REAL_FORMATS)), \ @GNOME_TRUE@ $(_DOC_C_HTML) $(_DOC_LC_HTML)) @GNOME_TRUE@_DOC_HTML_TOPS = $(foreach lc,C $(_DOC_REAL_LINGUAS),$(lc)/$(DOC_MODULE).xhtml) @GNOME_TRUE@_clean_omf = $(if $(_DOC_OMF_IN),clean-doc-omf) @GNOME_TRUE@_clean_dsk = $(if $(_DOC_DSK_IN),clean-doc-dsk) @GNOME_TRUE@_clean_lc = $(if $(_DOC_REAL_LINGUAS),clean-doc-lc) @GNOME_TRUE@_clean_dir = $(if $(DOC_MODULE)$(DOC_ID),clean-doc-dir) @GNOME_TRUE@_doc_install_dir = $(if $(DOC_ID),$(DOC_ID),$(DOC_MODULE)) @GNOME_TRUE@DOC_MODULE = mp3splt-gtk @GNOME_TRUE@DOC_ENTITIES = legal.xml @GNOME_TRUE@DOC_INCLUDES = @GNOME_TRUE@DOC_FIGURES = figures/FreeDBSearch.png figures/mp3splt-gtk.png figures/Preferences.png figures/SplitType.png figures/Tracklist.png @GNOME_TRUE@DOC_LINGUAS = en de fr es_CL cs es ru_RU @GNOME_TRUE@EXTRA_DIST = C/figures/FreeDBSearch.png C/figures/mp3splt-gtk.png C/figures/Preferences.png C/figures/SplitType.png C/figures/Tracklist.png all: all-am .SUFFIXES: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/build-aux/gnome-doc-utils.make $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu help/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu help/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_srcdir)/build-aux/gnome-doc-utils.make: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): tags: TAGS TAGS: ctags: CTAGS CTAGS: @GNOME_FALSE@dist-hook: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." @GNOME_FALSE@uninstall-local: @GNOME_FALSE@distclean-local: @GNOME_FALSE@install-data-local: @GNOME_FALSE@maintainer-clean-local: @GNOME_FALSE@mostlyclean-local: @GNOME_FALSE@clean-local: clean: clean-am clean-am: clean-generic clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic distclean-local dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-data-local install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic \ maintainer-clean-local mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-local pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-local .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-local \ dist-hook distclean distclean-generic distclean-local distdir \ dvi dvi-am html html-am info info-am install install-am \ install-data install-data-am install-data-local install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic \ maintainer-clean-local mostlyclean mostlyclean-generic \ mostlyclean-local pdf pdf-am ps ps-am uninstall uninstall-am \ uninstall-local @GNOME_TRUE@DOC_H_FILE ?= @GNOME_TRUE@DOC_H_DOCS ?= @GNOME_TRUE@$(DOC_H_FILE): $(DOC_H_DOCS); @GNOME_TRUE@ @rm -f $@.tmp; touch $@.tmp; @GNOME_TRUE@ echo 'const gchar* documentation_credits[] = {' >> $@.tmp @GNOME_TRUE@ list='$(DOC_H_DOCS)'; for doc in $$list; do \ @GNOME_TRUE@ xmlpath="`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`:$(srcdir)/`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`"; \ @GNOME_TRUE@ if ! test -f "$$doc"; then doc="$(srcdir)/$$doc"; fi; \ @GNOME_TRUE@ xsltproc --path "$$xmlpath" $(_credits) $$doc; \ @GNOME_TRUE@ done | sort | uniq \ @GNOME_TRUE@ | awk 'BEGIN{s=""}{n=split($$0,w,"<");if(s!=""&&s!=substr(w[1],1,length(w[1])-1)){print s};if(n>1){print $$0;s=""}else{s=$$0}};END{if(s!=""){print s}}' \ @GNOME_TRUE@ | sed -e 's/\\/\\\\/' -e 's/"/\\"/' -e 's/\(.*\)/\t"\1",/' >> $@.tmp @GNOME_TRUE@ echo ' NULL' >> $@.tmp @GNOME_TRUE@ echo '};' >> $@.tmp @GNOME_TRUE@ echo >> $@.tmp @GNOME_TRUE@ list='$(DOC_H_DOCS)'; for doc in $$list; do \ @GNOME_TRUE@ xmlpath="`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`:$(srcdir)/`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`"; \ @GNOME_TRUE@ if ! test -f "$$doc"; then doc="$(srcdir)/$$doc"; fi; \ @GNOME_TRUE@ docid=`echo "$$doc" | sed -e 's/.*\/\([^/]*\)\.xml/\1/' \ @GNOME_TRUE@ | sed -e 's/[^a-zA-Z_]/_/g' | tr 'a-z' 'A-Z'`; \ @GNOME_TRUE@ echo $$xmlpath; \ @GNOME_TRUE@ ids=`xsltproc --xinclude --path "$$xmlpath" $(_ids) $$doc`; \ @GNOME_TRUE@ for id in $$ids; do \ @GNOME_TRUE@ echo '#define HELP_'`echo $$docid`'_'`echo $$id \ @GNOME_TRUE@ | sed -e 's/[^a-zA-Z_]/_/g' | tr 'a-z' 'A-Z'`' "'$$id'"' >> $@.tmp; \ @GNOME_TRUE@ done; \ @GNOME_TRUE@ echo >> $@.tmp; \ @GNOME_TRUE@ done; @GNOME_TRUE@ cp $@.tmp $@ && rm -f $@.tmp @GNOME_TRUE@dist-check-gdu: @GNOME_TRUE@@HAVE_GNOME_DOC_UTILS_FALSE@ @echo "*** GNOME Doc Utils must be installed in order to make dist" @GNOME_TRUE@@HAVE_GNOME_DOC_UTILS_FALSE@ @false @GNOME_TRUE@.PHONY: dist-doc-header @GNOME_TRUE@dist-doc-header: $(DOC_H_FILE) @GNOME_TRUE@ @if test -f "$(DOC_H_FILE)"; then d=; else d="$(srcdir)/"; fi; \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $${d}$(DOC_H_FILE) $(distdir)/$(DOC_H_FILE)"; \ @GNOME_TRUE@ $(INSTALL_DATA) "$${d}$(DOC_H_FILE)" "$(distdir)/$(DOC_H_FILE)"; @GNOME_TRUE@doc-dist-hook: dist-check-gdu $(if $(DOC_H_FILE),dist-doc-header) @GNOME_TRUE@.PHONY: clean-doc-header @GNOME_TRUE@clean-local: $(_clean_doc_header) @GNOME_TRUE@distclean-local: $(_clean_doc_header) @GNOME_TRUE@mostlyclean-local: $(_clean_doc_header) @GNOME_TRUE@maintainer-clean-local: $(_clean_doc_header) @GNOME_TRUE@clean-doc-header: @GNOME_TRUE@ rm -f $(DOC_H_FILE) @GNOME_TRUE@all: $(DOC_H_FILE) ################################################################################ @GNOME_TRUE@DOC_MODULE ?= @GNOME_TRUE@DOC_ID ?= @GNOME_TRUE@DOC_PAGES ?= @GNOME_TRUE@DOC_ENTITIES ?= @GNOME_TRUE@DOC_INCLUDES ?= @GNOME_TRUE@DOC_FIGURES ?= @GNOME_TRUE@DOC_FORMATS ?= docbook @GNOME_TRUE@DOC_LINGUAS ?= ################################################################################ @GNOME_TRUE@_xml2po ?= `which xml2po` @GNOME_TRUE@_db2html ?= `$(PKG_CONFIG) --variable db2html gnome-doc-utils` @GNOME_TRUE@_db2omf ?= `$(PKG_CONFIG) --variable db2omf gnome-doc-utils` @GNOME_TRUE@_chunks ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/chunks.xsl @GNOME_TRUE@_credits ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/credits.xsl @GNOME_TRUE@_ids ?= $(shell $(PKG_CONFIG) --variable xmldir gnome-doc-utils)/gnome/xslt/docbook/utils/ids.xsl @ENABLE_SK_TRUE@@GNOME_TRUE@_skpkgdatadir ?= `scrollkeeper-config --pkgdatadir` @ENABLE_SK_TRUE@@GNOME_TRUE@_sklocalstatedir ?= `scrollkeeper-config --pkglocalstatedir` @ENABLE_SK_TRUE@@GNOME_TRUE@_skcontentslist ?= $(_skpkgdatadir)/Templates/C/scrollkeeper_cl.xml @GNOME_TRUE@$(_DOC_OMF_DB) : $(_DOC_OMF_IN) @GNOME_TRUE@$(_DOC_OMF_DB) : $(DOC_MODULE)-%.omf : %/$(DOC_MODULE).xml @GNOME_TRUE@ @test "x$(_ENABLE_SK)" != "xtrue" -o -f "$(_skcontentslist)" || { \ @GNOME_TRUE@ echo "The file '$(_skcontentslist)' does not exist." >&2; \ @GNOME_TRUE@ echo "Please check your ScrollKeeper installation." >&2; \ @GNOME_TRUE@ exit 1; } @GNOME_TRUE@ $(GDU_V_DB2OMF)xsltproc -o $@ $(call db2omf_args,$@,$<,'docbook') || { rm -f "$@"; exit 1; } @GNOME_TRUE@$(_DOC_OMF_HTML) : $(_DOC_OMF_IN) @GNOME_TRUE@$(_DOC_OMF_HTML) : $(DOC_MODULE)-html-%.omf : %/$(DOC_MODULE).xml @ENABLE_SK_TRUE@@GNOME_TRUE@ @test "x$(_ENABLE_SK)" != "xtrue" -o -f "$(_skcontentslist)" || { \ @ENABLE_SK_TRUE@@GNOME_TRUE@ echo "The file '$(_skcontentslist)' does not exist" >&2; \ @ENABLE_SK_TRUE@@GNOME_TRUE@ echo "Please check your ScrollKeeper installation." >&2; \ @ENABLE_SK_TRUE@@GNOME_TRUE@ exit 1; } @GNOME_TRUE@ $(GDU_V_DB2OMF)xsltproc -o $@ $(call db2omf_args,$@,$<,'xhtml') || { rm -f "$@"; exit 1; } @GNOME_TRUE@.PHONY: omf @GNOME_TRUE@omf: $(_DOC_OMF_ALL) @GNOME_TRUE@.PHONY: po @GNOME_TRUE@po: $(_DOC_POFILES) @GNOME_TRUE@.PHONY: mo @GNOME_TRUE@mo: $(_DOC_MOFILES) @GNOME_TRUE@$(_DOC_POFILES): @GNOME_TRUE@ @if ! test -d $(dir $@); then \ @GNOME_TRUE@ echo "mkdir $(dir $@)"; \ @GNOME_TRUE@ mkdir "$(dir $@)"; \ @GNOME_TRUE@ fi @GNOME_TRUE@ @if test ! -f $@ -a -f $(srcdir)/$@; then \ @GNOME_TRUE@ echo "cp $(srcdir)/$@ $@"; \ @GNOME_TRUE@ cp "$(srcdir)/$@" "$@"; \ @GNOME_TRUE@ fi; @GNOME_TRUE@ @docs=; \ @GNOME_TRUE@ list='$(_DOC_C_DOCS_NOENT)'; for doc in $$list; do \ @GNOME_TRUE@ docs="$$docs $(_DOC_ABS_SRCDIR)/$$doc"; \ @GNOME_TRUE@ done; \ @GNOME_TRUE@ if ! test -f $@; then \ @GNOME_TRUE@ echo "(cd $(dir $@) && \ @GNOME_TRUE@ $(_xml2po) -m $(_xml2po_mode) -e $$docs > $(notdir $@).tmp && \ @GNOME_TRUE@ cp $(notdir $@).tmp $(notdir $@) && rm -f $(notdir $@).tmp)"; \ @GNOME_TRUE@ (cd $(dir $@) && \ @GNOME_TRUE@ $(_xml2po) -m $(_xml2po_mode) -e $$docs > $(notdir $@).tmp && \ @GNOME_TRUE@ cp $(notdir $@).tmp $(notdir $@) && rm -f $(notdir $@).tmp); \ @GNOME_TRUE@ else \ @GNOME_TRUE@ echo "(cd $(dir $@) && \ @GNOME_TRUE@ $(_xml2po) -m $(_xml2po_mode) -e -u $(notdir $@) $$docs)"; \ @GNOME_TRUE@ (cd $(dir $@) && \ @GNOME_TRUE@ $(_xml2po) -m $(_xml2po_mode) -e -u $(notdir $@) $$docs); \ @GNOME_TRUE@ fi @GNOME_TRUE@$(_DOC_MOFILES): %.mo: %.po @GNOME_TRUE@ $(AM_V_at)if ! test -d $(dir $@); then mkdir "$(dir $@)"; fi @GNOME_TRUE@ $(GDU_V_MSGFMT)msgfmt -o $@ $< # FIXME: fix the dependancy # FIXME: hook xml2po up @GNOME_TRUE@$(_DOC_LC_DOCS) : $(_DOC_MOFILES) @GNOME_TRUE@$(_DOC_LC_DOCS) : $(_DOC_C_DOCS) @GNOME_TRUE@ $(AM_V_at)if ! test -d $(dir $@); then mkdir $(dir $@); fi @GNOME_TRUE@ $(GDU_V_XML2PO)if [ -f "C/$(notdir $@)" ]; then d="../"; else d="$(_DOC_ABS_SRCDIR)/"; fi; \ @GNOME_TRUE@ mo="$(dir $@)$(patsubst %/$(notdir $@),%,$@).mo"; \ @GNOME_TRUE@ if [ -f "$${mo}" ]; then mo="../$${mo}"; else mo="$(_DOC_ABS_SRCDIR)/$${mo}"; fi; \ @GNOME_TRUE@ (cd $(dir $@) && \ @GNOME_TRUE@ $(_xml2po) -m $(_xml2po_mode) -e -t "$${mo}" \ @GNOME_TRUE@ "$${d}C/$(notdir $@)" > $(notdir $@).tmp && \ @GNOME_TRUE@ cp $(notdir $@).tmp $(notdir $@) && rm -f $(notdir $@).tmp) @GNOME_TRUE@.PHONY: pot @GNOME_TRUE@pot: $(_DOC_POT) @GNOME_TRUE@$(_DOC_POT): $(_DOC_C_DOCS_NOENT) @GNOME_TRUE@ $(GDU_V_XML2PO)$(_xml2po) -m $(_xml2po_mode) -e -o $@ $^ @GNOME_TRUE@$(_DOC_HTML_TOPS): $(_DOC_C_DOCS) $(_DOC_LC_DOCS) @GNOME_TRUE@ $(GDU_V_DB2HTM)xsltproc -o $@ --xinclude --param db.chunk.chunk_top "false()" --stringparam db.chunk.basename "$(DOC_MODULE)" --stringparam db.chunk.extension ".xhtml" $(_db2html) $(patsubst %.xhtml,%.xml,$@) ################################################################################ @GNOME_TRUE@all: \ @GNOME_TRUE@ $(_DOC_C_DOCS) $(_DOC_LC_DOCS) \ @GNOME_TRUE@ $(_DOC_OMF_ALL) $(_DOC_DSK_ALL) \ @GNOME_TRUE@ $(_DOC_HTML_ALL) $(_DOC_POFILES) ################################################################################ @GNOME_TRUE@.PHONY: clean-doc-omf clean-doc-dsk clean-doc-lc clean-doc-dir @GNOME_TRUE@clean-doc-omf: ; rm -f $(_DOC_OMF_DB) $(_DOC_OMF_HTML) @GNOME_TRUE@clean-doc-dsk: ; rm -f $(_DOC_DSK_DB) $(_DOC_DSK_HTML) @GNOME_TRUE@clean-doc-lc: @GNOME_TRUE@ rm -f $(_DOC_LC_DOCS) @GNOME_TRUE@ rm -f $(_DOC_MOFILES) @GNOME_TRUE@ @list='$(_DOC_POFILES)'; for po in $$list; do \ @GNOME_TRUE@ if ! test "$$po" -ef "$(srcdir)/$$po"; then \ @GNOME_TRUE@ echo "rm -f $$po"; \ @GNOME_TRUE@ rm -f "$$po"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ done # .xml2.po.mo cleaning is obsolete as of 0.18.1 and could be removed in 0.20.x @GNOME_TRUE@ @for lc in C $(_DOC_REAL_LINGUAS); do \ @GNOME_TRUE@ if test -f "$$lc/.xml2po.mo"; then \ @GNOME_TRUE@ echo "rm -f $$lc/.xml2po.mo"; \ @GNOME_TRUE@ rm -f "$$lc/.xml2po.mo"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ done @GNOME_TRUE@clean-doc-dir: clean-doc-lc @GNOME_TRUE@ @for lc in C $(_DOC_REAL_LINGUAS); do \ @GNOME_TRUE@ for dir in `find $$lc -depth -type d`; do \ @GNOME_TRUE@ if ! test $$dir -ef $(srcdir)/$$dir; then \ @GNOME_TRUE@ echo "rmdir $$dir"; \ @GNOME_TRUE@ rmdir "$$dir"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ done; \ @GNOME_TRUE@ done @GNOME_TRUE@clean-local: \ @GNOME_TRUE@ $(_clean_omf) $(_clean_dsk) \ @GNOME_TRUE@ $(_clean_lc) $(_clean_dir) @GNOME_TRUE@distclean-local: \ @GNOME_TRUE@ $(_clean_omf) $(_clean_dsk) \ @GNOME_TRUE@ $(_clean_lc) $(_clean_dir) @GNOME_TRUE@mostlyclean-local: \ @GNOME_TRUE@ $(_clean_omf) $(_clean_dsk) \ @GNOME_TRUE@ $(_clean_lc) $(_clean_dir) @GNOME_TRUE@maintainer-clean-local: \ @GNOME_TRUE@ $(_clean_omf) $(_clean_dsk) \ @GNOME_TRUE@ $(_clean_lc) $(_clean_dir) ################################################################################ @GNOME_TRUE@.PHONY: dist-doc-docs dist-doc-pages dist-doc-figs dist-doc-omf dist-doc-dsk @GNOME_TRUE@doc-dist-hook: \ @GNOME_TRUE@ $(if $(DOC_MODULE)$(DOC_ID),dist-doc-docs) \ @GNOME_TRUE@ $(if $(_DOC_C_FIGURES),dist-doc-figs) \ @GNOME_TRUE@ $(if $(_DOC_OMF_IN),dist-doc-omf) # $(if $(_DOC_DSK_IN),dist-doc-dsk) @GNOME_TRUE@dist-doc-docs: $(_DOC_C_DOCS) $(_DOC_LC_DOCS) $(_DOC_POFILES) @GNOME_TRUE@ @for lc in C $(_DOC_REAL_LINGUAS); do \ @GNOME_TRUE@ echo " $(mkinstalldirs) $(distdir)/$$lc"; \ @GNOME_TRUE@ $(mkinstalldirs) "$(distdir)/$$lc"; \ @GNOME_TRUE@ done @GNOME_TRUE@ @list='$(_DOC_C_DOCS)'; \ @GNOME_TRUE@ for doc in $$list; do \ @GNOME_TRUE@ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ @GNOME_TRUE@ docdir=`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ @GNOME_TRUE@ if ! test -d "$(distdir)/$$docdir"; then \ @GNOME_TRUE@ echo "$(mkinstalldirs) $(distdir)/$$docdir"; \ @GNOME_TRUE@ $(mkinstalldirs) "$(distdir)/$$docdir"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$d$$doc $(distdir)/$$doc"; \ @GNOME_TRUE@ $(INSTALL_DATA) "$$d$$doc" "$(distdir)/$$doc"; \ @GNOME_TRUE@ done @GNOME_TRUE@ @list='$(_DOC_LC_DOCS)'; \ @GNOME_TRUE@ for doc in $$list; do \ @GNOME_TRUE@ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ @GNOME_TRUE@ docdir=`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ @GNOME_TRUE@ if ! test -d "$(distdir)/$$docdir"; then \ @GNOME_TRUE@ echo "$(mkinstalldirs) $(distdir)/$$docdir"; \ @GNOME_TRUE@ $(mkinstalldirs) "$(distdir)/$$docdir"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$d$$doc $(distdir)/$$doc"; \ @GNOME_TRUE@ $(INSTALL_DATA) "$$d$$doc" "$(distdir)/$$doc"; \ @GNOME_TRUE@ done @GNOME_TRUE@ @list='$(_DOC_POFILES)'; \ @GNOME_TRUE@ for doc in $$list; do \ @GNOME_TRUE@ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ @GNOME_TRUE@ docdir=`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ @GNOME_TRUE@ if ! test -d "$(distdir)/$$docdir"; then \ @GNOME_TRUE@ echo "$(mkinstalldirs) $(distdir)/$$docdir"; \ @GNOME_TRUE@ $(mkinstalldirs) "$(distdir)/$$docdir"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$d$$doc $(distdir)/$$doc"; \ @GNOME_TRUE@ $(INSTALL_DATA) "$$d$$doc" "$(distdir)/$$doc"; \ @GNOME_TRUE@ done @GNOME_TRUE@dist-doc-figs: $(_DOC_SRC_FIGURES) @GNOME_TRUE@ @list='$(_DOC_C_FIGURES) $(_DOC_LC_FIGURES)'; \ @GNOME_TRUE@ for fig in $$list; do \ @GNOME_TRUE@ if test -f "$$fig"; then d=; else d="$(srcdir)/"; fi; \ @GNOME_TRUE@ if test -f "$$d$$fig"; then \ @GNOME_TRUE@ figdir=`echo $$fig | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ @GNOME_TRUE@ if ! test -d "$(distdir)/$$figdir"; then \ @GNOME_TRUE@ echo "$(mkinstalldirs) $(distdir)/$$figdir"; \ @GNOME_TRUE@ $(mkinstalldirs) "$(distdir)/$$figdir"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$d$$fig $(distdir)/$$fig"; \ @GNOME_TRUE@ $(INSTALL_DATA) "$$d$$fig" "$(distdir)/$$fig"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ done; @GNOME_TRUE@dist-doc-omf: @GNOME_TRUE@ @if test -f "$(_DOC_OMF_IN)"; then d=; else d="$(srcdir)/"; fi; \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$d$(_DOC_OMF_IN) $(distdir)/$(notdir $(_DOC_OMF_IN))"; \ @GNOME_TRUE@ $(INSTALL_DATA) "$$d$(_DOC_OMF_IN)" "$(distdir)/$(notdir $(_DOC_OMF_IN))" @GNOME_TRUE@dist-doc-dsk: @GNOME_TRUE@ @if test -f "$(_DOC_DSK_IN)"; then d=; else d="$(srcdir)/"; fi; \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$d$(_DOC_DSK_IN) $(distdir)/$(notdir $(_DOC_DSK_IN))"; \ @GNOME_TRUE@ $(INSTALL_DATA) "$$d$(_DOC_DSK_IN)" "$(distdir)/$(notdir $(_DOC_DSK_IN))" ################################################################################ @GNOME_TRUE@.PHONY: check-doc-docs check-doc-omf @GNOME_TRUE@check: \ @GNOME_TRUE@ $(if $(DOC_MODULE),check-doc-docs) \ @GNOME_TRUE@ $(if $(DOC_ID),check-doc-pages) \ @GNOME_TRUE@ $(if $(_DOC_OMF_IN),check-doc-omf) @GNOME_TRUE@check-doc-docs: $(_DOC_C_DOCS) $(_DOC_LC_DOCS) @GNOME_TRUE@ @for lc in C $(_DOC_REAL_LINGUAS); do \ @GNOME_TRUE@ if test -f "$$lc"; \ @GNOME_TRUE@ then d=; \ @GNOME_TRUE@ xmlpath="$$lc"; \ @GNOME_TRUE@ else \ @GNOME_TRUE@ d="$(srcdir)/"; \ @GNOME_TRUE@ xmlpath="$$lc:$(srcdir)/$$lc"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ echo "xmllint --noout --noent --path $$xmlpath --xinclude --postvalid $$d$$lc/$(DOC_MODULE).xml"; \ @GNOME_TRUE@ xmllint --noout --noent --path "$$xmlpath" --xinclude --postvalid "$$d$$lc/$(DOC_MODULE).xml"; \ @GNOME_TRUE@ done @GNOME_TRUE@check-doc-pages: $(_DOC_C_PAGES) $(_DOC_LC_PAGES) @GNOME_TRUE@ for lc in C $(_DOC_REAL_LINGUAS); do \ @GNOME_TRUE@ if test -f "$$lc"; \ @GNOME_TRUE@ then d=; \ @GNOME_TRUE@ xmlpath="$$lc"; \ @GNOME_TRUE@ else \ @GNOME_TRUE@ d="$(srcdir)/"; \ @GNOME_TRUE@ xmlpath="$$lc:$(srcdir)/$$lc"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ for page in $(DOC_PAGES); do \ @GNOME_TRUE@ echo "xmllint --noout --noent --path $$xmlpath --xinclude $$d$$lc/$$page"; \ @GNOME_TRUE@ xmllint --noout --noent --path "$$xmlpath" --xinclude "$$d$$lc/$$page"; \ @GNOME_TRUE@ done; \ @GNOME_TRUE@ done @GNOME_TRUE@check-doc-omf: $(_DOC_OMF_ALL) @GNOME_TRUE@ @list='$(_DOC_OMF_ALL)'; for omf in $$list; do \ @GNOME_TRUE@ echo "xmllint --noout --xinclude --dtdvalid 'http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd' $$omf"; \ @GNOME_TRUE@ xmllint --noout --xinclude --dtdvalid 'http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd' $$omf; \ @GNOME_TRUE@ done ################################################################################ @GNOME_TRUE@.PHONY: install-doc-docs install-doc-html install-doc-figs install-doc-omf install-doc-dsk @GNOME_TRUE@install-data-local: \ @GNOME_TRUE@ $(if $(DOC_MODULE)$(DOC_ID),install-doc-docs) \ @GNOME_TRUE@ $(if $(_DOC_HTML_ALL),install-doc-html) \ @GNOME_TRUE@ $(if $(_DOC_C_FIGURES),install-doc-figs) \ @GNOME_TRUE@ $(if $(_DOC_OMF_IN),install-doc-omf) # $(if $(_DOC_DSK_IN),install-doc-dsk) @GNOME_TRUE@install-doc-docs: @GNOME_TRUE@ @for lc in C $(_DOC_REAL_LINGUAS); do \ @GNOME_TRUE@ echo "$(mkinstalldirs) $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$lc"; \ @GNOME_TRUE@ $(mkinstalldirs) $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$lc; \ @GNOME_TRUE@ done @GNOME_TRUE@ @list='$(_DOC_C_DOCS)'; for doc in $$list; do \ @GNOME_TRUE@ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ @GNOME_TRUE@ docdir="$$lc/"`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ @GNOME_TRUE@ docdir="$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$docdir"; \ @GNOME_TRUE@ if ! test -d "$$docdir"; then \ @GNOME_TRUE@ echo "$(mkinstalldirs) $$docdir"; \ @GNOME_TRUE@ $(mkinstalldirs) "$$docdir"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ @GNOME_TRUE@ $(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc; \ @GNOME_TRUE@ done @GNOME_TRUE@ @list='$(_DOC_LC_DOCS)'; for doc in $$list; do \ @GNOME_TRUE@ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ @GNOME_TRUE@ docdir="$$lc/"`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ @GNOME_TRUE@ docdir="$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$docdir"; \ @GNOME_TRUE@ if ! test -d "$$docdir"; then \ @GNOME_TRUE@ echo "$(mkinstalldirs) $$docdir"; \ @GNOME_TRUE@ $(mkinstalldirs) "$$docdir"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ @GNOME_TRUE@ $(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc; \ @GNOME_TRUE@ done @GNOME_TRUE@install-doc-figs: @GNOME_TRUE@ @list='$(patsubst C/%,%,$(_DOC_C_FIGURES))'; for fig in $$list; do \ @GNOME_TRUE@ for lc in C $(_DOC_REAL_LINGUAS); do \ @GNOME_TRUE@ figsymlink=false; \ @GNOME_TRUE@ if test -f "$$lc/$$fig"; then \ @GNOME_TRUE@ figfile="$$lc/$$fig"; \ @GNOME_TRUE@ elif test -f "$(srcdir)/$$lc/$$fig"; then \ @GNOME_TRUE@ figfile="$(srcdir)/$$lc/$$fig"; \ @GNOME_TRUE@ else \ @GNOME_TRUE@ figsymlink=true; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ figdir="$$lc/"`echo $$fig | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ @GNOME_TRUE@ figdir="$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$figdir"; \ @GNOME_TRUE@ if ! test -d "$$figdir"; then \ @GNOME_TRUE@ echo "$(mkinstalldirs) $$figdir"; \ @GNOME_TRUE@ $(mkinstalldirs) "$$figdir"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ figbase=`echo $$fig | sed -e 's/^.*\///'`; \ @GNOME_TRUE@ if $$figsymlink; then \ @GNOME_TRUE@ echo "cd $$figdir && $(LN_S) -f ../../C/$$fig $$figbase"; \ @GNOME_TRUE@ ( cd "$$figdir" && $(LN_S) -f "../../C/$$fig" "$$figbase" ); \ @GNOME_TRUE@ else \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$figfile $$figdir$$figbase"; \ @GNOME_TRUE@ $(INSTALL_DATA) "$$figfile" "$$figdir$$figbase"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ done; \ @GNOME_TRUE@ done @GNOME_TRUE@install-doc-html: @GNOME_TRUE@ echo install-html @GNOME_TRUE@install-doc-omf: @GNOME_TRUE@ $(mkinstalldirs) $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir) @GNOME_TRUE@ @list='$(_DOC_OMF_ALL)'; for omf in $$list; do \ @GNOME_TRUE@ echo "$(INSTALL_DATA) $$omf $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ @GNOME_TRUE@ $(INSTALL_DATA) $$omf $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf; \ @GNOME_TRUE@ done @GNOME_TRUE@ @if test "x$(_ENABLE_SK)" = "xtrue"; then \ @GNOME_TRUE@ echo "scrollkeeper-update -p $(DESTDIR)$(_sklocalstatedir) -o $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)"; \ @GNOME_TRUE@ scrollkeeper-update -p "$(DESTDIR)$(_sklocalstatedir)" -o "$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)"; \ @GNOME_TRUE@ fi; @GNOME_TRUE@install-doc-dsk: @GNOME_TRUE@ echo install-dsk ################################################################################ @GNOME_TRUE@.PHONY: uninstall-doc-docs uninstall-doc-html uninstall-doc-figs uninstall-doc-omf uninstall-doc-dsk @GNOME_TRUE@uninstall-local: \ @GNOME_TRUE@ $(if $(DOC_MODULE)$(DOC_ID),uninstall-doc-docs) \ @GNOME_TRUE@ $(if $(_DOC_HTML_ALL),uninstall-doc-html) \ @GNOME_TRUE@ $(if $(_DOC_C_FIGURES),uninstall-doc-figs) \ @GNOME_TRUE@ $(if $(_DOC_OMF_IN),uninstall-doc-omf) # $(if $(_DOC_DSK_IN),uninstall-doc-dsk) @GNOME_TRUE@uninstall-doc-docs: @GNOME_TRUE@ @list='$(_DOC_C_DOCS)'; for doc in $$list; do \ @GNOME_TRUE@ echo " rm -f $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ @GNOME_TRUE@ rm -f "$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ @GNOME_TRUE@ done @GNOME_TRUE@ @list='$(_DOC_LC_DOCS)'; for doc in $$list; do \ @GNOME_TRUE@ echo " rm -f $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ @GNOME_TRUE@ rm -f "$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ @GNOME_TRUE@ done @GNOME_TRUE@uninstall-doc-figs: @GNOME_TRUE@ @list='$(_DOC_C_FIGURES) $(_DOC_LC_FIGURES)'; for fig in $$list; do \ @GNOME_TRUE@ echo "rm -f $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$fig"; \ @GNOME_TRUE@ rm -f "$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$fig"; \ @GNOME_TRUE@ done; @GNOME_TRUE@uninstall-doc-omf: @GNOME_TRUE@ @list='$(_DOC_OMF_ALL)'; for omf in $$list; do \ @GNOME_TRUE@ if test "x$(_ENABLE_SK)" = "xtrue"; then \ @GNOME_TRUE@ echo "scrollkeeper-uninstall -p $(_sklocalstatedir) $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ @GNOME_TRUE@ scrollkeeper-uninstall -p "$(_sklocalstatedir)" "$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ @GNOME_TRUE@ fi; \ @GNOME_TRUE@ echo "rm -f $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ @GNOME_TRUE@ rm -f "$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ @GNOME_TRUE@ done @GNOME_TRUE@dist-hook: doc-dist-hook @GNOME_FALSE@doc: @GNOME_FALSE@ @echo Generation of help files is disabled since Gnome support is disabled. # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mp3splt-gtk-0.7.2/help/mp3splt-gtk.omf.in0000644000175000017500000000051211753562422015060 00000000000000 manual mp3splt-gtk-0.7.2/help/ChangeLog0000664000175000017500000000000011500544325013317 00000000000000mp3splt-gtk-0.7.2/depcomp0000764000175000017500000004271311241331403012202 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2007-03-29.01 # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007 Free Software # Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: mp3splt-gtk-0.7.2/aclocal.m40000644000175000017500000012317711753562376012520 00000000000000# generated automatically by aclocal 1.11.3 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, # Inc. # 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. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, [m4_warning([this file was generated for autoconf 2.68. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software # Foundation, Inc. # # 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. # serial 1 # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.3], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.3])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # 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. # serial 1 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # 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. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, # 2010, 2011 Free Software Foundation, Inc. # # 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. # serial 12 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # 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. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # 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. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, # Inc. # # 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. # serial 1 # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # 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. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- # From Jim Meyering # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, # 2011 Free Software Foundation, Inc. # # 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. # serial 5 # AM_MAINTAINER_MODE([DEFAULT-MODE]) # ---------------------------------- # Control maintainer-specific portions of Makefiles. # Default is to disable them, unless `enable' is passed literally. # For symmetry, `disable' may be passed as well. Anyway, the user # can override the default with the --enable/--disable switch. AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]), [enable], [m4_define([am_maintainer_other], [disable])], [disable], [m4_define([am_maintainer_other], [enable])], [m4_define([am_maintainer_other], [enable]) m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])]) AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) dnl maintainer-mode's default is 'disable' unless 'enable' is passed AC_ARG_ENABLE([maintainer-mode], [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful (and sometimes confusing) to the casual installer], [USE_MAINTAINER_MODE=$enableval], [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes])) AC_MSG_RESULT([$USE_MAINTAINER_MODE]) AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes]) MAINT=$MAINTAINER_MODE_TRUE AC_SUBST([MAINT])dnl ] ) AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # 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. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # 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. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, # Inc. # # 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. # serial 1 # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software # Foundation, Inc. # # 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. # serial 5 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # 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. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # 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. # serial 1 # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. # # 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. # serial 3 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. # # 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. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/gettext.m4]) m4_include([m4/gnome-doc-utils.m4]) m4_include([m4/iconv.m4]) m4_include([m4/lib-ld.m4]) m4_include([m4/lib-link.m4]) m4_include([m4/lib-prefix.m4]) m4_include([m4/mp3splt.m4]) m4_include([m4/nls.m4]) m4_include([m4/po.m4]) m4_include([m4/progtest.m4]) mp3splt-gtk-0.7.2/README0000644000175000017500000000263411753562262011524 00000000000000 mp3splt-gtk version 0.7.2 Copyright (C) 2005-2012 Alexandru Ionut Munteanu Visit http://mp3splt.sourceforge.net for latest releases Note : you have to install libmp3splt for mp3splt-gtk -some versions of libmp3splt are not compatible with mp3splt-gtk. Be sure to have the same version of the library as mp3splt-gtk Example : mp3splt-gtk v0.2 with libmp3splt v0.2 DISCLAIMER This software comes with absolutely no warranty, and is intended only to help people handling mp3 and ogg files. Author despises any use of mp3 technology for illegal purposes and will not be rensposible for any illegal action you can do with this software (if there are). LICENSE INFORMATION You can redistribute this software and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. See COPYING for more details. Read INSTALL for installation and compile instructions. mp3splt-gtk-0.7.2/configure0000744000175000017500000101111711753562400012540 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for mp3splt-gtk 0.7.2. # # Report bugs to . # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software # Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and mp3splt.sf.net $0: about your system, including any error possibly output $0: before this message. Then install a modern shell, or $0: manually run the script under such a shell if you do $0: have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='mp3splt-gtk' PACKAGE_TARNAME='mp3splt-gtk' PACKAGE_VERSION='0.7.2' PACKAGE_STRING='mp3splt-gtk 0.7.2' PACKAGE_BUGREPORT='mp3splt.sf.net' PACKAGE_URL='' ac_unique_file="src/mp3splt-gtk.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS LOCALEDIR top_builddir NO_IMAGES_DIR_FALSE NO_IMAGES_DIR_TRUE GRAPHVIZ DOXYGEN HAVE_GRAPHVIZ_FALSE HAVE_GRAPHVIZ_TRUE HAVE_DOXYGEN_FALSE HAVE_DOXYGEN_TRUE GST_LIBS GST_CFLAGS GSTREAMER_FALSE GSTREAMER_TRUE AUDACIOUS_LIBS AUDACIOUS_CFLAGS AUDACIOUS_FALSE AUDACIOUS_TRUE MP3SPLT_LIBS MP3SPLT_CFLAGS DISTCHECK_CONFIGURE_FLAGS DOC_USER_FORMATS OMF_DIR HELP_DIR AM_DEFAULT_VERBOSITY LN_S ENABLE_SK_FALSE ENABLE_SK_TRUE HAVE_GNOME_DOC_UTILS_FALSE HAVE_GNOME_DOC_UTILS_TRUE GNOME_FALSE GNOME_TRUE GTK_LIBS GTK_CFLAGS FAKE_GTK_LIBS FAKE_GTK_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG WIN32_FALSE WIN32_TRUE POSUB LTLIBINTL LIBINTL INTLLIBS LTLIBICONV LIBICONV host_os host_vendor host_cpu host build_os build_vendor build_cpu build MSGMERGE XGETTEXT GMSGFMT MSGFMT USE_NLS MKINSTALLDIRS EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC MAINT MAINTAINER_MODE_FALSE MAINTAINER_MODE_TRUE am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_maintainer_mode enable_dependency_tracking enable_nls with_gnu_ld enable_rpath with_libiconv_prefix with_libintl_prefix enable_gtk3 enable_gnome with_help_dir with_omf_dir with_help_formats enable_scrollkeeper with_mp3splt with_mp3splt_libraries with_mp3splt_includes enable_mp3splttest enable_audacious enable_gstreamer enable_doxygen_doc with_no_images_dir enable_c_debug enable_optimise enable_extra_warnings ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR FAKE_GTK_CFLAGS FAKE_GTK_LIBS GTK_CFLAGS GTK_LIBS AUDACIOUS_CFLAGS AUDACIOUS_LIBS GST_CFLAGS GST_LIBS DOXYGEN GRAPHVIZ' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures mp3splt-gtk 0.7.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/mp3splt-gtk] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of mp3splt-gtk 0.7.2:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-maintainer-mode disable make rules and dependencies not useful (and sometimes confusing) to the casual installer --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --disable-nls do not use Native Language Support --disable-rpath do not hardcode runtime library paths --enable-gtk3 Compile against GTK 3.x explicitly (default: use GTK 3.x if available) --disable-gtk3 Compile against GTK 2.x explicitly (default: use GTK 3.x if available) --disable-gnome Disable gnome support. --disable-scrollkeeper do not make updates to the scrollkeeper database --disable-mp3splttest Do not try to compile and run a test mp3splt program. --disable-audacious Disable audacious player support. --disable-gstreamer Disable gstreamer 'internal' player support. --disable-doxygen_doc Disable doxygen code documentation. --enable-c-debug Enable debugging symbols. --enable-optimise Enable O2 optimise. --enable-extra-warnings Enable extra warnings. Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld assume the C compiler uses GNU ld default=no --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir --with-help-dir=DIR path to help docs --with-omf-dir=DIR path to OMF files --with-help-formats=FORMATS list of formats --with-mp3splt=PFX Prefix where libmp3splt is installed (optional). --with-mp3splt-libraries=DIR Directory where libmp3splt library is installed (optional). --with-mp3splt-includes=DIR Directory where libmp3splt header files are installed (optional). --with-no_images_dir take images from the directory where the application is run Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path FAKE_GTK_CFLAGS C compiler flags for FAKE_GTK, overriding pkg-config FAKE_GTK_LIBS linker flags for FAKE_GTK, overriding pkg-config GTK_CFLAGS C compiler flags for GTK, overriding pkg-config GTK_LIBS linker flags for GTK, overriding pkg-config AUDACIOUS_CFLAGS C compiler flags for AUDACIOUS, overriding pkg-config AUDACIOUS_LIBS linker flags for AUDACIOUS, overriding pkg-config GST_CFLAGS C compiler flags for GST, overriding pkg-config GST_LIBS linker flags for GST, overriding pkg-config DOXYGEN Location of the 'doxygen' program; if found we can generate documentation for the C code GRAPHVIZ Location of the 'dot' program from the graphviz suite; if found we can generate caller graphs for the documentation of the C code Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF mp3splt-gtk configure 0.7.2 generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ----------------------------- ## ## Report this to mp3splt.sf.net ## ## ----------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by mp3splt-gtk $as_me 0.7.2, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # tell autoconf where to put the temporary files and scripts # it generates. Seems to be more clean to put them into a subdir; # One of this files is gnome-doc-utils.make, which is needed to # compile the help files. ac_aux_dir= for ac_dir in build-aux "$srcdir"/build-aux; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # tell which file by being there indicates we are run from the # right directory # Initialize automake am__api_version='1.11' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE=mp3splt-gtk VERSION=0.7.2 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # Tell autoconf where to put the output file that contains all # definitions our C program will need ac_config_headers="$ac_config_headers config.h" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5 $as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; } # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then : enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5 $as_echo "$USE_MAINTAINER_MODE" >&6; } if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else MAINTAINER_MODE_TRUE='#' MAINTAINER_MODE_FALSE= fi MAINT=$MAINTAINER_MODE_TRUE ################################################# # Check for programs ################################################# ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi # Include all m4 macros that have to do with the language C ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu #gettext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in unistd.h do : ac_fn_c_check_header_mongrel "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default" if test "x$ac_cv_header_unistd_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_UNISTD_H 1 _ACEOF fi done MKINSTALLDIRS= if test -n "$ac_aux_dir"; then case "$ac_aux_dir" in /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;; *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;; esac fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f messages.po # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGMERGE" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$GMSGFMT" != ":"; then if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` { $as_echo "$as_me:${as_lineno-$LINENO}: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5 $as_echo "found $GMSGFMT program is not GNU msgfmt; ignore it" >&6; } GMSGFMT=":" fi fi if test "$XGETTEXT" != ":"; then if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 $as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } XGETTEXT=":" fi rm -f messages.po fi ac_config_commands="$ac_config_commands default-1" if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5 $as_echo_n "checking for ld used by GCC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | [A-Za-z]:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the path of ld ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${acl_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi fi LD="$acl_cv_path_LD" if test -n "$LD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${acl_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 &5 $as_echo "$acl_cv_prog_gnu_ld" >&6; } with_gnu_ld=$acl_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 $as_echo_n "checking for shared library run path origin... " >&6; } if ${acl_cv_rpath+:} false; then : $as_echo_n "(cached) " >&6 else CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 $as_echo "$acl_cv_rpath" >&6; } wl="$acl_cv_wl" libext="$acl_cv_libext" shlibext="$acl_cv_shlibext" hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" hardcode_direct="$acl_cv_hardcode_direct" hardcode_minus_L="$acl_cv_hardcode_minus_L" # Check whether --enable-rpath was given. if test "${enable_rpath+set}" = set; then : enableval=$enable_rpath; : else enable_rpath=yes fi use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libiconv-prefix was given. if test "${with_libiconv_prefix+set}" = set; then : withval=$with_libiconv_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi fi LIBICONV= LTLIBICONV= INCICONV= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" else : fi else found_dir= found_la= found_so= found_a= if test $use_additional = yes; then if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then found_dir="$additional_libdir" found_so="$additional_libdir/lib$name.$shlibext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi else if test -f "$additional_libdir/lib$name.$libext"; then found_dir="$additional_libdir" found_a="$additional_libdir/lib$name.$libext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then found_dir="$dir" found_so="$dir/lib$name.$shlibext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi else if test -f "$dir/lib$name.$libext"; then found_dir="$dir" found_a="$dir/lib$name.$libext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$hardcode_direct" = yes; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */lib | */lib/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/lib"; then haveit= if test "X$additional_libdir" = "X/usr/local/lib"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } LIBINTL= LTLIBINTL= POSUB= if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 $as_echo_n "checking for GNU gettext in libc... " >&6; } if ${gt_cv_func_gnugettext1_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; int main () { bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_gnugettext1_libc=yes else gt_cv_func_gnugettext1_libc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_gnugettext1_libc" >&5 $as_echo "$gt_cv_func_gnugettext1_libc" >&6; } if test "$gt_cv_func_gnugettext1_libc" != "yes"; then am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 $as_echo_n "checking for iconv... " >&6; } if ${am_cv_func_iconv+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_lib_iconv=yes am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 $as_echo "$am_cv_func_iconv" >&6; } if test "$am_cv_func_iconv" = yes; then $as_echo "#define HAVE_ICONV 1" >>confdefs.h fi if test "$am_cv_lib_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 $as_echo_n "checking how to link with libiconv... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 $as_echo "$LIBICONV" >&6; } else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libintl-prefix was given. if test "${with_libintl_prefix+set}" = set; then : withval=$with_libintl_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi fi LIBINTL= LTLIBINTL= INCINTL= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" else : fi else found_dir= found_la= found_so= found_a= if test $use_additional = yes; then if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then found_dir="$additional_libdir" found_so="$additional_libdir/lib$name.$shlibext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi else if test -f "$additional_libdir/lib$name.$libext"; then found_dir="$additional_libdir" found_a="$additional_libdir/lib$name.$libext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then found_dir="$dir" found_so="$dir/lib$name.$shlibext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi else if test -f "$dir/lib$name.$libext"; then found_dir="$dir" found_a="$dir/lib$name.$libext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$hardcode_direct" = yes; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */lib | */lib/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/lib"; then haveit= if test "X$additional_libdir" = "X/usr/local/lib"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 $as_echo_n "checking for GNU gettext in libintl... " >&6; } if ${gt_cv_func_gnugettext1_libintl+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (); int main () { bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_gnugettext1_libintl=yes else gt_cv_func_gnugettext1_libintl=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$gt_cv_func_gnugettext1_libintl" != yes && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (); int main () { bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" gt_cv_func_gnugettext1_libintl=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_gnugettext1_libintl" >&5 $as_echo "$gt_cv_func_gnugettext1_libintl" >&6; } fi if test "$gt_cv_func_gnugettext1_libc" = "yes" \ || { test "$gt_cv_func_gnugettext1_libintl" = "yes" \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h else USE_NLS=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 $as_echo_n "checking whether to use NLS... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } if test "$USE_NLS" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 $as_echo_n "checking where the gettext function comes from... " >&6; } if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 $as_echo "$gt_source" >&6; } fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 $as_echo_n "checking how to link with libintl... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 $as_echo "$LIBINTL" >&6; } for element in $INCINTL; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done fi $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h $as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h fi POSUB=po fi INTLLIBS="$LIBINTL" ################################################################# # Check for the type of the host ################################################################# { $as_echo "$as_me:${as_lineno-$LINENO}: checking the host" >&5 $as_echo_n "checking the host... " >&6; } if false; then WIN32_TRUE= WIN32_FALSE='#' else WIN32_TRUE='#' WIN32_FALSE= fi case $host in *linux*) HOST="Linux-based system" ;; *openbsd*) HOST="OpenBSD" LIBS="$LIBS `pkg-config --libs gtk+-2.0` -lpthread" CFLAGS="$CFLAGS `pkg-config --cflags gtk+-2.0`" ;; *netbsd*) HOST="NetBSD" LIBS="$LIBS -D_nl_domain_bindings=libintl_nl_domain_bindings -lintl -lstdc++" ;; *freebsd*) HOST="FreeBSD" LIBS="$LIBS -lpthread" ;; *mingw*) HOST="Mingw" if true; then WIN32_TRUE= WIN32_FALSE='#' else WIN32_TRUE='#' WIN32_FALSE= fi ;; *solaris*) HOST="Solaris" LIBS="$LIBS -lsocket" ;; *) HOST="Other" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $HOST" >&5 $as_echo "$HOST" >&6; } ################################################# # Check for libraries ################################################# #check for -lm { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pow in -lm" >&5 $as_echo_n "checking for pow in -lm... " >&6; } if ${ac_cv_lib_m_pow+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pow (); int main () { return pow (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_m_pow=yes else ac_cv_lib_m_pow=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_pow" >&5 $as_echo "$ac_cv_lib_m_pow" >&6; } if test "x$ac_cv_lib_m_pow" = xyes; then : haslm="yes" else as_fn_error $? "libm not found !" "$LINENO" 5 fi ################################################# #enable/disable gtk3 # Check whether --enable-gtk3 was given. if test "${enable_gtk3+set}" = set; then : enableval=$enable_gtk3; enable_gtk3=$enableval else enable_gtk3="auto" fi #we must keep this as the first call to PKG_CHECK_MODULES in order to force the searching of pkg-config if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for FAKE_GTK" >&5 $as_echo_n "checking for FAKE_GTK... " >&6; } if test -n "$FAKE_GTK_CFLAGS"; then pkg_cv_FAKE_GTK_CFLAGS="$FAKE_GTK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_FAKE_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-3.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$FAKE_GTK_LIBS"; then pkg_cv_FAKE_GTK_LIBS="$FAKE_GTK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_FAKE_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-3.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then FAKE_GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-3.0" 2>&1` else FAKE_GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-3.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$FAKE_GTK_PKG_ERRORS" >&5 pkg_config_found=no elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } pkg_config_found=no else FAKE_GTK_CFLAGS=$pkg_cv_FAKE_GTK_CFLAGS FAKE_GTK_LIBS=$pkg_cv_FAKE_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } pkg_config_found=yes fi if test "x$enable_gtk3" = xauto; then #auto gtk version detection { $as_echo "$as_me:${as_lineno-$LINENO}: selecting GTK 2.x/3.x automatically" >&5 $as_echo "$as_me: selecting GTK 2.x/3.x automatically" >&6;} pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 $as_echo_n "checking for GTK... " >&6; } if test -n "$GTK_CFLAGS"; then pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= 3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= 3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-3.0 >= 3.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTK_LIBS"; then pkg_cv_GTK_LIBS="$GTK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= 3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= 3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-3.0 >= 3.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-3.0 >= 3.0" 2>&1` else GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-3.0 >= 3.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 enable_gtk3=no elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } enable_gtk3=no else GTK_CFLAGS=$pkg_cv_GTK_CFLAGS GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } enable_gtk3=yes fi fi audacious_check="audclient < 3.0" if test "x$enable_gtk3" = xyes; then #gtk 3.x check { $as_echo "$as_me:${as_lineno-$LINENO}: GTK 3.x selected" >&5 $as_echo "$as_me: GTK 3.x selected" >&6;} pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 $as_echo_n "checking for GTK... " >&6; } if test -n "$GTK_CFLAGS"; then pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= 3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= 3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-3.0 >= 3.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTK_LIBS"; then pkg_cv_GTK_LIBS="$GTK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-3.0 >= 3.0\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-3.0 >= 3.0") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-3.0 >= 3.0" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-3.0 >= 3.0" 2>&1` else GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-3.0 >= 3.0" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 as_fn_error $? "Cannot find GTK >= 3.0" "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "Cannot find GTK >= 3.0" "$LINENO" 5 else GTK_CFLAGS=$pkg_cv_GTK_CFLAGS GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } CFLAGS="$CFLAGS -DGTK_DISABLE_SINGLE_INCLUDES -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGSEAL_ENABLE" audacious_check="audclient >= 3.0" fi else #gtk 2.x check { $as_echo "$as_me:${as_lineno-$LINENO}: GTK 2.x selected" >&5 $as_echo "$as_me: GTK 2.x selected" >&6;} pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK" >&5 $as_echo_n "checking for GTK... " >&6; } if test -n "$GTK_CFLAGS"; then pkg_cv_GTK_CFLAGS="$GTK_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.18\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.18") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_CFLAGS=`$PKG_CONFIG --cflags "gtk+-2.0 >= 2.18" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GTK_LIBS"; then pkg_cv_GTK_LIBS="$GTK_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gtk+-2.0 >= 2.18\""; } >&5 ($PKG_CONFIG --exists --print-errors "gtk+-2.0 >= 2.18") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GTK_LIBS=`$PKG_CONFIG --libs "gtk+-2.0 >= 2.18" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GTK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gtk+-2.0 >= 2.18" 2>&1` else GTK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gtk+-2.0 >= 2.18" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GTK_PKG_ERRORS" >&5 as_fn_error $? "Cannot find GTK >= 2.18" "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "Cannot find GTK >= 2.18" "$LINENO" 5 else GTK_CFLAGS=$pkg_cv_GTK_CFLAGS GTK_LIBS=$pkg_cv_GTK_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi fi ################################################# # Initialize the gnome integration ################################################# if false; then GNOME_TRUE= GNOME_FALSE='#' else GNOME_TRUE='#' GNOME_FALSE= fi if false; then HAVE_GNOME_DOC_UTILS_TRUE= HAVE_GNOME_DOC_UTILS_FALSE='#' else HAVE_GNOME_DOC_UTILS_TRUE='#' HAVE_GNOME_DOC_UTILS_FALSE= fi gnome="no" # Check whether --enable-gnome was given. if test "${enable_gnome+set}" = set; then : enableval=$enable_gnome; enable_gnome=$enableval else enable_gnome="yes" fi if true; then ENABLE_SK_TRUE= ENABLE_SK_FALSE='#' else ENABLE_SK_TRUE='#' ENABLE_SK_FALSE= fi if test "x$enable_gnome" = xyes;then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi if test -z "$AM_DEFAULT_VERBOSITY"; then AM_DEFAULT_VERBOSITY=1 fi gdu_cv_version_required=0.3.2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking gnome-doc-utils >= $gdu_cv_version_required" >&5 $as_echo_n "checking gnome-doc-utils >= $gdu_cv_version_required... " >&6; } if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gnome-doc-utils >= \$gdu_cv_version_required\""; } >&5 ($PKG_CONFIG --exists --print-errors "gnome-doc-utils >= $gdu_cv_version_required") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then gdu_cv_have_gdu=yes else gdu_cv_have_gdu=no fi if test "$gdu_cv_have_gdu" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } if true; then GNOME_TRUE= GNOME_FALSE='#' else GNOME_TRUE='#' GNOME_FALSE= fi if true; then HAVE_GNOME_DOC_UTILS_TRUE= HAVE_GNOME_DOC_UTILS_FALSE='#' else HAVE_GNOME_DOC_UTILS_TRUE='#' HAVE_GNOME_DOC_UTILS_FALSE= fi gnome="yes" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "gnome-doc-utils not found. Install it or configure with \"--disable-gnome\"." "$LINENO" 5 fi # Check whether --with-help-dir was given. if test "${with_help_dir+set}" = set; then : withval=$with_help_dir; else with_help_dir='${datadir}/gnome/help' fi HELP_DIR="$with_help_dir" # Check whether --with-omf-dir was given. if test "${with_omf_dir+set}" = set; then : withval=$with_omf_dir; else with_omf_dir='${datadir}/omf' fi OMF_DIR="$with_omf_dir" # Check whether --with-help-formats was given. if test "${with_help_formats+set}" = set; then : withval=$with_help_formats; else with_help_formats='' fi DOC_USER_FORMATS="$with_help_formats" # Check whether --enable-scrollkeeper was given. if test "${enable_scrollkeeper+set}" = set; then : enableval=$enable_scrollkeeper; else enable_scrollkeeper=yes fi if test "$gdu_cv_have_gdu" = "yes" -a "$enable_scrollkeeper" = "yes"; then ENABLE_SK_TRUE= ENABLE_SK_FALSE='#' else ENABLE_SK_TRUE='#' ENABLE_SK_FALSE= fi DISTCHECK_CONFIGURE_FLAGS="--disable-scrollkeeper $DISTCHECK_CONFIGURE_FLAGS" if test "$gdu_cv_have_gdu" = "yes"; then HAVE_GNOME_DOC_UTILS_TRUE= HAVE_GNOME_DOC_UTILS_FALSE='#' else HAVE_GNOME_DOC_UTILS_TRUE='#' HAVE_GNOME_DOC_UTILS_FALSE= fi fi ################################################# #Check for libmp3splt # Check whether --with-mp3splt was given. if test "${with_mp3splt+set}" = set; then : withval=$with_mp3splt; mp3splt_prefix="$withval" else mp3splt_prefix="" fi # Check whether --with-mp3splt-libraries was given. if test "${with_mp3splt_libraries+set}" = set; then : withval=$with_mp3splt_libraries; mp3splt_libraries="$withval" else mp3splt_libraries="" fi # Check whether --with-mp3splt-includes was given. if test "${with_mp3splt_includes+set}" = set; then : withval=$with_mp3splt_includes; mp3splt_includes="$withval" else mp3splt_includes="" fi # Check whether --enable-mp3splttest was given. if test "${enable_mp3splttest+set}" = set; then : enableval=$enable_mp3splttest; else enable_mp3splttest=yes fi if test "x$mp3splt_libraries" != "x"; then MP3SPLT_LIBS="-L$mp3splt_libraries" elif test "x$mp3splt_prefix" != "x"; then MP3SPLT_LIBS="-L$mp3splt_prefix/lib" elif test "x$prefix" != "xNONE"; then MP3SPLT_LIBS="-L$prefix/lib" fi MP3SPLT_LIBS="$MP3SPLT_LIBS -lmp3splt" if test "x$mp3splt_includes" != "x"; then MP3SPLT_CFLAGS="-I$mp3splt_includes" elif test "x$mp3splt_prefix" != "x"; then MP3SPLT_CFLAGS="-I$mp3splt_prefix/include" elif test "x$prefix" != "xNONE"; then mp3splt_CFLAGS="-I$prefix/include" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libmp3splt" >&5 $as_echo_n "checking for libmp3splt... " >&6; } no_mp3splt="" if test "x$enable_mp3splttest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $MP3SPLT_CFLAGS" LIBS="$LIBS $MP3SPLT_LIBS" rm -f conf.mp3splttest if test "$cross_compiling" = yes; then : echo $ac_n "cross compiling; assumed OK... $ac_c" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { system("touch conf.mp3splttest"); return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else no_mp3splt=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi if test "x$no_mp3splt" = "x" ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } : else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test -f conf.mp3splttest ; then : else echo "*** Could not run libmp3splt test program, checking why..." CFLAGS="$CFLAGS $MP3SPLT_CFLAGS" LIBS="$LIBS $MP3SPLT_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding libmp3splt or finding the wrong" echo "*** version of libmp3splt. If it is not finding libmp3splt, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" else echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means libmp3splt was incorrectly installed" echo "*** or that you have moved libmp3splt since it was installed." fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi MP3SPLT_CFLAGS="" MP3SPLT_LIBS="" as_fn_error $? "libmp3splt version 0.7.2 needed : Download the latest version of libmp3splt at http://mp3splt.sourceforge.net/ " "$LINENO" 5 fi rm -f conf.mp3splttest ################################################# #Check for audacious if false; then AUDACIOUS_TRUE= AUDACIOUS_FALSE='#' else AUDACIOUS_TRUE='#' AUDACIOUS_FALSE= fi audacious="no" #checking for --disable-audacious & audacious library # Check whether --enable-audacious was given. if test "${enable_audacious+set}" = set; then : enableval=$enable_audacious; enable_audacious=$enableval else enable_audacious="yes" fi if test "x$enable_audacious" = xyes;then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for AUDACIOUS" >&5 $as_echo_n "checking for AUDACIOUS... " >&6; } if test -n "$AUDACIOUS_CFLAGS"; then pkg_cv_AUDACIOUS_CFLAGS="$AUDACIOUS_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$audacious_check \""; } >&5 ($PKG_CONFIG --exists --print-errors "$audacious_check ") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_AUDACIOUS_CFLAGS=`$PKG_CONFIG --cflags "$audacious_check " 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$AUDACIOUS_LIBS"; then pkg_cv_AUDACIOUS_LIBS="$AUDACIOUS_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$audacious_check \""; } >&5 ($PKG_CONFIG --exists --print-errors "$audacious_check ") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_AUDACIOUS_LIBS=`$PKG_CONFIG --libs "$audacious_check " 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then AUDACIOUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$audacious_check " 2>&1` else AUDACIOUS_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$audacious_check " 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$AUDACIOUS_PKG_ERRORS" >&5 as_fn_error $? "Audacious player development files for $audacious_check not found. Install it or configure with \"--disable-audacious\". Also check that if you want to compile with GTK 3.x, you will need audacious >= 3.0. For GTK 2.x, you will need audacious < 3.0. You can force the GTK version using --enable-gtk3 and --disable-gtk3. " "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "Audacious player development files for $audacious_check not found. Install it or configure with \"--disable-audacious\". Also check that if you want to compile with GTK 3.x, you will need audacious >= 3.0. For GTK 2.x, you will need audacious < 3.0. You can force the GTK version using --enable-gtk3 and --disable-gtk3. " "$LINENO" 5 else AUDACIOUS_CFLAGS=$pkg_cv_AUDACIOUS_CFLAGS AUDACIOUS_LIBS=$pkg_cv_AUDACIOUS_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } if true; then AUDACIOUS_TRUE= AUDACIOUS_FALSE='#' else AUDACIOUS_TRUE='#' AUDACIOUS_FALSE= fi audacious="yes" fi fi ################################################# #Check for gstreamer if false; then GSTREAMER_TRUE= GSTREAMER_FALSE='#' else GSTREAMER_TRUE='#' GSTREAMER_FALSE= fi gstreamer="no" #checking for --disable-gstreamer & gstreamer library # Check whether --enable-gstreamer was given. if test "${enable_gstreamer+set}" = set; then : enableval=$enable_gstreamer; enable_gstreamer=$enableval else enable_gstreamer="yes" fi if test "x$enable_gstreamer" = xyes;then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GST" >&5 $as_echo_n "checking for GST... " >&6; } if test -n "$GST_CFLAGS"; then pkg_cv_GST_CFLAGS="$GST_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-0.10 >= 0.10 gstreamer-base-0.10 >= 0.10 gstreamer-plugins-base-0.10 >= 0.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-0.10 >= 0.10 gstreamer-base-0.10 >= 0.10 gstreamer-plugins-base-0.10 >= 0.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GST_CFLAGS=`$PKG_CONFIG --cflags "gstreamer-0.10 >= 0.10 gstreamer-base-0.10 >= 0.10 gstreamer-plugins-base-0.10 >= 0.10" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$GST_LIBS"; then pkg_cv_GST_LIBS="$GST_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"gstreamer-0.10 >= 0.10 gstreamer-base-0.10 >= 0.10 gstreamer-plugins-base-0.10 >= 0.10\""; } >&5 ($PKG_CONFIG --exists --print-errors "gstreamer-0.10 >= 0.10 gstreamer-base-0.10 >= 0.10 gstreamer-plugins-base-0.10 >= 0.10") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_GST_LIBS=`$PKG_CONFIG --libs "gstreamer-0.10 >= 0.10 gstreamer-base-0.10 >= 0.10 gstreamer-plugins-base-0.10 >= 0.10" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then GST_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "gstreamer-0.10 >= 0.10 gstreamer-base-0.10 >= 0.10 gstreamer-plugins-base-0.10 >= 0.10" 2>&1` else GST_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gstreamer-0.10 >= 0.10 gstreamer-base-0.10 >= 0.10 gstreamer-plugins-base-0.10 >= 0.10" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$GST_PKG_ERRORS" >&5 as_fn_error $? "GStreamer >= 0.10 development files are not installed. Install it or configure with \"--disable-gstreamer\"." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "GStreamer >= 0.10 development files are not installed. Install it or configure with \"--disable-gstreamer\"." "$LINENO" 5 else GST_CFLAGS=$pkg_cv_GST_CFLAGS GST_LIBS=$pkg_cv_GST_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } if true; then GSTREAMER_TRUE= GSTREAMER_FALSE='#' else GSTREAMER_TRUE='#' GSTREAMER_FALSE= fi gstreamer="yes" fi fi ################################################# # Documentation of the code # (but only if doxygen is installed) ################################################# doxygen_doc="no" with_graphviz="no" # Check whether --enable-doxygen_doc was given. if test "${enable_doxygen_doc+set}" = set; then : enableval=$enable_doxygen_doc; enable_doxygen_doc=$enableval else enable_doxygen_doc="yes" fi if false; then HAVE_DOXYGEN_TRUE= HAVE_DOXYGEN_FALSE='#' else HAVE_DOXYGEN_TRUE='#' HAVE_DOXYGEN_FALSE= fi if false; then HAVE_GRAPHVIZ_TRUE= HAVE_GRAPHVIZ_FALSE='#' else HAVE_GRAPHVIZ_TRUE='#' HAVE_GRAPHVIZ_FALSE= fi if test "x$enable_doxygen_doc" = xyes;then # Extract the first word of "doxygen", so it can be a program name with args. set dummy doxygen; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_DOXYGEN+:} false; then : $as_echo_n "(cached) " >&6 else case $DOXYGEN in [\\/]* | ?:[\\/]*) ac_cv_path_DOXYGEN="$DOXYGEN" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_DOXYGEN="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi DOXYGEN=$ac_cv_path_DOXYGEN if test -n "$DOXYGEN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DOXYGEN" >&5 $as_echo "$DOXYGEN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$DOXYGEN" != "x"; then if true; then HAVE_DOXYGEN_TRUE= HAVE_DOXYGEN_FALSE='#' else HAVE_DOXYGEN_TRUE='#' HAVE_DOXYGEN_FALSE= fi doxygen_doc="yes" # Extract the first word of "dot", so it can be a program name with args. set dummy dot; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GRAPHVIZ+:} false; then : $as_echo_n "(cached) " >&6 else case $GRAPHVIZ in [\\/]* | ?:[\\/]*) ac_cv_path_GRAPHVIZ="$GRAPHVIZ" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_GRAPHVIZ="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi GRAPHVIZ=$ac_cv_path_GRAPHVIZ if test -n "$GRAPHVIZ"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GRAPHVIZ" >&5 $as_echo "$GRAPHVIZ" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$GRAPHVIZ" = "x"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** dot from the graphviz package not found, inheritance diagrams will not be generated in code documentation" >&5 $as_echo "$as_me: WARNING: *** dot from the graphviz package not found, inheritance diagrams will not be generated in code documentation" >&2;} else if true; then HAVE_GRAPHVIZ_TRUE= HAVE_GRAPHVIZ_FALSE='#' else HAVE_GRAPHVIZ_TRUE='#' HAVE_GRAPHVIZ_FALSE= fi with_graphviz="yes" fi fi fi ################################################# # ################################################# if false; then NO_IMAGES_DIR_TRUE= NO_IMAGES_DIR_FALSE='#' else NO_IMAGES_DIR_TRUE='#' NO_IMAGES_DIR_FALSE= fi # Check whether --with-no_images_dir was given. if test "${with_no_images_dir+set}" = set; then : withval=$with_no_images_dir; if true; then NO_IMAGES_DIR_TRUE= NO_IMAGES_DIR_FALSE='#' else NO_IMAGES_DIR_TRUE='#' NO_IMAGES_DIR_FALSE= fi fi ################################################################# # Check for some debugging, warnings and optimise options ################################################################# # Check whether --enable-c-debug was given. if test "${enable_c_debug+set}" = set; then : enableval=$enable_c_debug; enable_c_debug=$enableval else enable_c_debug="no" fi if test "x$enable_c_debug" = xyes;then CFLAGS="$CFLAGS -g" fi # Check whether --enable-optimise was given. if test "${enable_optimise+set}" = set; then : enableval=$enable_optimise; enable_optimise=$enableval else enable_optimise="no" fi if test "x$enable_optimise" = xyes;then CFLAGS="$CFLAGS -O2" fi # Check whether --enable-extra-warnings was given. if test "${enable_extra_warnings+set}" = set; then : enableval=$enable_extra_warnings; enable_extra_warnings=$enableval else enable_extra_warnings="no" fi if test "x$enable_extra_warnings" = xyes;then CFLAGS="$CFLAGS -Wall -Wextra -Wswitch-enum -Wswitch-default -Wfloat-equal -Wbad-function-cast -Wcast-qual -Wunreachable-code" fi ################################################# # Generate Makefiles ################################################# ac_config_files="$ac_config_files Makefile src/Makefile m4/Makefile po/Makefile.in doc/Makefile help/Makefile" ################################################# # Define some useful constants ################################################# # Gettext wants to know the path to the top directory and such things... top_builddir=`pwd` ################################################# # Output configuration ################################################# echo echo "---------------------------------------------------------" echo "Configuration:" echo echo " install path: ${prefix}" echo echo " Players :" echo echo " gstreamer $gstreamer" echo " audacious $audacious" echo " snackAmp yes" echo echo " Other :" echo echo " gnome support $gnome" echo " doxygen documentation $doxygen_doc" echo " with graphviz $with_graphviz" echo "---------------------------------------------------------" echo # Tell autoconf to start outputting whatever it has to. cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then as_fn_error $? "conditional \"MAINTAINER_MODE\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${WIN32_TRUE}" && test -z "${WIN32_FALSE}"; then as_fn_error $? "conditional \"WIN32\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${WIN32_TRUE}" && test -z "${WIN32_FALSE}"; then as_fn_error $? "conditional \"WIN32\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GNOME_TRUE}" && test -z "${GNOME_FALSE}"; then as_fn_error $? "conditional \"GNOME\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GNOME_DOC_UTILS_TRUE}" && test -z "${HAVE_GNOME_DOC_UTILS_FALSE}"; then as_fn_error $? "conditional \"HAVE_GNOME_DOC_UTILS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_SK_TRUE}" && test -z "${ENABLE_SK_FALSE}"; then as_fn_error $? "conditional \"ENABLE_SK\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GNOME_TRUE}" && test -z "${GNOME_FALSE}"; then as_fn_error $? "conditional \"GNOME\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GNOME_DOC_UTILS_TRUE}" && test -z "${HAVE_GNOME_DOC_UTILS_FALSE}"; then as_fn_error $? "conditional \"HAVE_GNOME_DOC_UTILS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${ENABLE_SK_TRUE}" && test -z "${ENABLE_SK_FALSE}"; then as_fn_error $? "conditional \"ENABLE_SK\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GNOME_DOC_UTILS_TRUE}" && test -z "${HAVE_GNOME_DOC_UTILS_FALSE}"; then as_fn_error $? "conditional \"HAVE_GNOME_DOC_UTILS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AUDACIOUS_TRUE}" && test -z "${AUDACIOUS_FALSE}"; then as_fn_error $? "conditional \"AUDACIOUS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AUDACIOUS_TRUE}" && test -z "${AUDACIOUS_FALSE}"; then as_fn_error $? "conditional \"AUDACIOUS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GSTREAMER_TRUE}" && test -z "${GSTREAMER_FALSE}"; then as_fn_error $? "conditional \"GSTREAMER\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GSTREAMER_TRUE}" && test -z "${GSTREAMER_FALSE}"; then as_fn_error $? "conditional \"GSTREAMER\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_DOXYGEN_TRUE}" && test -z "${HAVE_DOXYGEN_FALSE}"; then as_fn_error $? "conditional \"HAVE_DOXYGEN\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GRAPHVIZ_TRUE}" && test -z "${HAVE_GRAPHVIZ_FALSE}"; then as_fn_error $? "conditional \"HAVE_GRAPHVIZ\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_DOXYGEN_TRUE}" && test -z "${HAVE_DOXYGEN_FALSE}"; then as_fn_error $? "conditional \"HAVE_DOXYGEN\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_GRAPHVIZ_TRUE}" && test -z "${HAVE_GRAPHVIZ_FALSE}"; then as_fn_error $? "conditional \"HAVE_GRAPHVIZ\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${NO_IMAGES_DIR_TRUE}" && test -z "${NO_IMAGES_DIR_FALSE}"; then as_fn_error $? "conditional \"NO_IMAGES_DIR\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${NO_IMAGES_DIR_TRUE}" && test -z "${NO_IMAGES_DIR_FALSE}"; then as_fn_error $? "conditional \"NO_IMAGES_DIR\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by mp3splt-gtk $as_me 0.7.2, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ mp3splt-gtk config.status 0.7.2 configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "m4/Makefile") CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "help/Makefile") CONFIG_FILES="$CONFIG_FILES help/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "default-1":C) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi mp3splt-gtk-0.7.2/configure.ac0000644000175000017500000002546411753562262013140 00000000000000#/********************************************************** # * # * mp3splt-gtk - utility using libmp3splt, # * for mp3/ogg splitting without decoding # * # * Copyright (c) 2002-2005 M. Trotta - # * Copyright (c) 2005-2012 Munteanu Alexandru - io_fx@yahoo.fr # * # * http://mp3splt.sourceforge.net # * # *********************************************************/ #/********************************************************** # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # *********************************************************/ ################################################# # Basic initialisations ################################################# AC_PREREQ(2.62) AC_INIT(mp3splt-gtk, 0.7.2, mp3splt.sf.net) # tell autoconf where to put the temporary files and scripts # it generates. Seems to be more clean to put them into a subdir; # One of this files is gnome-doc-utils.make, which is needed to # compile the help files. AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) # tell which file by being there indicates we are run from the # right directory AC_CONFIG_SRCDIR([src/mp3splt-gtk.c]) # Initialize automake AM_INIT_AUTOMAKE(mp3splt-gtk, 0.7.2) # Tell autoconf where to put the output file that contains all # definitions our C program will need AC_CONFIG_HEADER([config.h]) AM_MAINTAINER_MODE([enable]) ################################################# # Check for programs ################################################# AC_PROG_CC # Include all m4 macros that have to do with the language C AC_LANG_C #gettext AC_CHECK_HEADERS([unistd.h]) AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([0.13.1]) ################################################################# # Check for the type of the host ################################################################# AC_MSG_CHECKING(the host) AM_CONDITIONAL(WIN32,false) case $host in *linux*) HOST="Linux-based system" ;; *openbsd*) HOST="OpenBSD" LIBS="$LIBS `pkg-config --libs gtk+-2.0` -lpthread" CFLAGS="$CFLAGS `pkg-config --cflags gtk+-2.0`" ;; *netbsd*) HOST="NetBSD" LIBS="$LIBS -D_nl_domain_bindings=libintl_nl_domain_bindings -lintl -lstdc++" ;; *freebsd*) HOST="FreeBSD" LIBS="$LIBS -lpthread" ;; *mingw*) HOST="Mingw" AM_CONDITIONAL(WIN32,true) ;; *solaris*) HOST="Solaris" LIBS="$LIBS -lsocket" ;; *) HOST="Other" ;; esac AC_MSG_RESULT($HOST) ################################################# # Check for libraries ################################################# #check for -lm AC_CHECK_LIB(m, pow, [ haslm="yes" ] , [ AC_MSG_ERROR([libm not found !]) ] ) ################################################# #enable/disable gtk3 AC_ARG_ENABLE(gtk3, [ AC_HELP_STRING([--enable-gtk3], [Compile against GTK 3.x explicitly (default: use GTK 3.x if available)]) AC_HELP_STRING([--disable-gtk3], [Compile against GTK 2.x explicitly (default: use GTK 3.x if available)])], [enable_gtk3=$enableval],[enable_gtk3="auto"]) #we must keep this as the first call to PKG_CHECK_MODULES in order to force the searching of pkg-config PKG_CHECK_MODULES(FAKE_GTK, [gtk+-3.0], [pkg_config_found=yes], [pkg_config_found=no]) if test "x$enable_gtk3" = xauto; then #auto gtk version detection AC_MSG_NOTICE([selecting GTK 2.x/3.x automatically]) PKG_CHECK_MODULES(GTK, [gtk+-3.0 >= 3.0], [enable_gtk3=yes], [enable_gtk3=no]) fi audacious_check="audclient < 3.0" if test "x$enable_gtk3" = xyes; then #gtk 3.x check AC_MSG_NOTICE([GTK 3.x selected]) PKG_CHECK_MODULES(GTK, [gtk+-3.0 >= 3.0], [ CFLAGS="$CFLAGS -DGTK_DISABLE_SINGLE_INCLUDES -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGSEAL_ENABLE" audacious_check="audclient >= 3.0" ], [ AC_MSG_ERROR([Cannot find GTK >= 3.0]) ]) else #gtk 2.x check AC_MSG_NOTICE([GTK 2.x selected]) PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.18], [ ], [ AC_MSG_ERROR([Cannot find GTK >= 2.18]) ]) fi ################################################# # Initialize the gnome integration ################################################# AM_CONDITIONAL(GNOME, false) AM_CONDITIONAL(HAVE_GNOME_DOC_UTILS, false) gnome="no" AC_ARG_ENABLE(gnome, AC_HELP_STRING([--disable-gnome], [Disable gnome support. ]), [enable_gnome=$enableval],[enable_gnome="yes"]) AM_CONDITIONAL(ENABLE_SK, true) if test "x$enable_gnome" = xyes;then ifdef([GNOME_DOC_INIT], [ GNOME_DOC_INIT([], [ AM_CONDITIONAL(GNOME, true) AM_CONDITIONAL(HAVE_GNOME_DOC_UTILS, true) gnome="yes" ], [AC_MSG_ERROR([gnome-doc-utils not found. Install it or configure with "--disable-gnome".])]) ], [ AC_MSG_NOTICE([No GNOME_DOC_INIT found.]) ]) fi ################################################# #Check for libmp3splt MP3SPLT_CHECK(,[ AC_MSG_ERROR(libmp3splt version 0.7.2 needed : Download the latest version of libmp3splt at http://mp3splt.sourceforge.net/ ) ]) ################################################# #Check for audacious AM_CONDITIONAL(AUDACIOUS,false) audacious="no" #checking for --disable-audacious & audacious library AC_ARG_ENABLE(audacious, AC_HELP_STRING([--disable-audacious], [Disable audacious player support. ]), [enable_audacious=$enableval],[enable_audacious="yes"]) if test "x$enable_audacious" = xyes;then PKG_CHECK_MODULES([AUDACIOUS], [$audacious_check ], [AM_CONDITIONAL(AUDACIOUS, true) audacious="yes" ], [AC_MSG_ERROR([Audacious player development files for $audacious_check not found. Install it or configure with "--disable-audacious". Also check that if you want to compile with GTK 3.x, you will need audacious >= 3.0. For GTK 2.x, you will need audacious < 3.0. You can force the GTK version using --enable-gtk3 and --disable-gtk3. ]) ]) fi ################################################# #Check for gstreamer AM_CONDITIONAL(GSTREAMER,false) gstreamer="no" #checking for --disable-gstreamer & gstreamer library AC_ARG_ENABLE(gstreamer, AC_HELP_STRING([--disable-gstreamer], [Disable gstreamer 'internal' player support. ]), [enable_gstreamer=$enableval],[enable_gstreamer="yes"]) if test "x$enable_gstreamer" = xyes;then PKG_CHECK_MODULES(GST, [gstreamer-0.10 >= 0.10 gstreamer-base-0.10 >= 0.10 gstreamer-plugins-base-0.10 >= 0.10], [AM_CONDITIONAL(GSTREAMER,true) gstreamer="yes"], [AC_MSG_ERROR([GStreamer >= 0.10 development files are not installed. Install it or configure with "--disable-gstreamer".])]) fi ################################################# # Documentation of the code # (but only if doxygen is installed) ################################################# doxygen_doc="no" with_graphviz="no" AC_ARG_ENABLE(doxygen_doc, [AC_HELP_STRING([--disable-doxygen_doc],[ Disable doxygen code documentation. ]) ], [enable_doxygen_doc=$enableval],[enable_doxygen_doc="yes"]) AM_CONDITIONAL(HAVE_DOXYGEN, false) AM_CONDITIONAL(HAVE_GRAPHVIZ, false) if test "x$enable_doxygen_doc" = xyes;then AC_PATH_PROG([DOXYGEN],[doxygen]) AC_ARG_VAR(DOXYGEN, [Location of the 'doxygen' program; if found we can generate documentation for the C code]) if test "x$DOXYGEN" != "x"; then AM_CONDITIONAL(HAVE_DOXYGEN, true) doxygen_doc="yes" AC_PATH_PROG([GRAPHVIZ],[dot]) AC_ARG_VAR(GRAPHVIZ, [Location of the 'dot' program from the graphviz suite; if found we can generate caller graphs for the documentation of the C code]) if test "x$GRAPHVIZ" = "x"; then AC_MSG_WARN([*** dot from the graphviz package not found, inheritance diagrams will not be generated in code documentation]) else AM_CONDITIONAL(HAVE_GRAPHVIZ, true) with_graphviz="yes" fi fi fi ################################################# # ################################################# AM_CONDITIONAL(NO_IMAGES_DIR, false) AC_ARG_WITH([no_images_dir], [AS_HELP_STRING([--with-no_images_dir], [take images from the directory where the application is run])], [AM_CONDITIONAL(NO_IMAGES_DIR, true)], []) ################################################################# # Check for some debugging, warnings and optimise options ################################################################# AC_ARG_ENABLE(c-debug, [AC_HELP_STRING([--enable-c-debug],[ Enable debugging symbols. ]) ], [enable_c_debug=$enableval],[enable_c_debug="no"]) if test "x$enable_c_debug" = xyes;then CFLAGS="$CFLAGS -g" fi AC_ARG_ENABLE(optimise, [AC_HELP_STRING([--enable-optimise],[ Enable O2 optimise. ]) ], [enable_optimise=$enableval],[enable_optimise="no"]) if test "x$enable_optimise" = xyes;then CFLAGS="$CFLAGS -O2" fi AC_ARG_ENABLE(extra-warnings, [AC_HELP_STRING([--enable-extra-warnings],[ Enable extra warnings. ]) ], [enable_extra_warnings=$enableval],[enable_extra_warnings="no"]) if test "x$enable_extra_warnings" = xyes;then CFLAGS="$CFLAGS -Wall -Wextra -Wswitch-enum -Wswitch-default -Wfloat-equal -Wbad-function-cast -Wcast-qual -Wunreachable-code" fi ################################################# # Generate Makefiles ################################################# AC_CONFIG_FILES([Makefile src/Makefile m4/Makefile po/Makefile.in doc/Makefile help/Makefile]) ################################################# # Define some useful constants ################################################# # Gettext wants to know the path to the top directory and such things... top_builddir=`pwd` AC_SUBST(top_builddir) AC_SUBST(PACKAGE) AC_SUBST(LOCALEDIR) ################################################# # Output configuration ################################################# echo echo "---------------------------------------------------------" echo "Configuration:" echo echo " install path: ${prefix}" echo echo " Players :" echo echo " gstreamer $gstreamer" echo " audacious $audacious" echo " snackAmp yes" echo echo " Other :" echo echo " gnome support $gnome" echo " doxygen documentation $doxygen_doc" echo " with graphviz $with_graphviz" echo "---------------------------------------------------------" echo # Tell autoconf to start outputting whatever it has to. AC_OUTPUT mp3splt-gtk-0.7.2/mp3splt-gtk.desktop.in0000644000175000017500000000062411554347754015034 00000000000000[Desktop Entry] Name=Mp3splt-gtk audio splitter GenericName=Sound Splitter Comment=Split mp3 and ogg files without decoding Icon=PREFIX/mp3splt-gtk_ico.svg Type=Application Categories=Application;AudioVideo;Audio;AudioVideoEditing; Exec=mp3splt-gtk StartupNotify=false Terminal=false MimeType=application/x-cue;application/x-cddb;application/ogg;audio/x-mp3;audio/ogg;audio/x-vorbis+ogg;audio/mpeg; mp3splt-gtk-0.7.2/config.guess0000764000175000017500000012763711474044322013167 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. timestamp='2009-12-30' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner. Please send patches (context # diff format) to and include a ChangeLog # entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else echo ${UNAME_MACHINE}-unknown-linux-gnueabi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; i*86:Linux:*:*) LIBC=gnu eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in i386) eval $set_cc_for_build if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then UNAME_PROCESSOR="x86_64" fi fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: mp3splt-gtk-0.7.2/config.rpath0000764000175000017500000003521311241331367013143 00000000000000#! /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-2003 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # # 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 M$VC, # 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 AC_LIBTOOL_PROG_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; mingw* | pw32* | os2*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; newsos6) ;; linux*) case $CC in icc|ecc) wl='-Wl,' ;; ccc) wl='-Wl,' ;; 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*) ;; 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 ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then 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 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 can 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 ;; netbsd*) ;; solaris* | sysv5*) 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 ;; 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" = yes; then # 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' 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 ;; bsdi4*) ;; 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*) if $CC -v 2>&1 | grep 'Apple' >/dev/null ; then hardcode_direct=no 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*) 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* | hpux11*) if test "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=no ;; ia64*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=no # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; *) 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 ;; 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=: ;; sco3.2v5*) ;; 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.2uw2*) hardcode_direct=yes hardcode_minus_L=no ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7*) ;; sysv5*) hardcode_libdir_flag_spec= ;; 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*) ;; bsdi4*) ;; cygwin* | mingw* | pw32*) shrext=.dll ;; darwin* | rhapsody*) shrext=.dylib ;; dgux*) ;; freebsd1*) ;; freebsd*) ;; gnu*) ;; hpux9* | hpux10* | hpux11*) case "$host_cpu" in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac ;; 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*) ;; netbsd*) ;; newsos6) ;; nto-qnx) ;; openbsd*) ;; os2*) libname_spec='$name' shrext=.dll ;; osf3* | osf4* | osf5*) ;; sco3.2v5*) ;; solaris*) ;; sunos4*) ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ;; sysv4*MP*) ;; 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"` sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: mp3splt-gtk-0.7.2/autogen.sh0000744000175000017500000000404711654736024012642 00000000000000#!/bin/sh win=$1 #autopoint check (autopoint --version) > /dev/null 2>&1 || { echo echo "Error: you must have autopoint installed to compile mp3splt-gtk !" echo exit 1 } #autoconf check (autoconf --version && autoheader --version) > /dev/null 2>&1 || { echo echo "Error: you must have autoconf installed to compile mp3splt-gtk !" echo exit 1 } #automake check (aclocal --version) > /dev/null 2>&1 || { echo echo "Error: you must have automake installed to compile mp3splt-gtk !" echo exit 1 } #msgfmt check (msgfmt --version) > /dev/null 2>&1 || { echo echo "Error: you must have gettext(msgfmt) installed to compile mp3splt-gtk !" echo exit 1 } if test "x$win" != x;then WIN_ACLOCAL_FLAGS="-I /usr/share/aclocal" fi echo -n "Running autopoint... "; autopoint -f && echo "done"; echo -n "Running aclocal... " \ && aclocal -I m4 $WIN_ACLOCAL_FLAGS $ACLOCAL_FLAGS && echo "done" \ && echo -n "Running autoheader... " \ && autoheader && echo "done" if test "x$win" = x; then { echo "Trying to initialize the help file builder... " echo " " echo -n "Running gnome-doc-prepare... " \ && gnome-doc-prepare --force --automake \ && echo "done" \ && echo -n "Running aclocal again after adding the help files... " \ && aclocal -I m4 $WIN_ACLOCAL_FLAGS $ACLOCAL_FLAGS \ && echo "done" }; fi echo -n "Running autoconf... " \ && autoconf && echo "done" \ && if test "x$win" = x; then { if test -e build-aux/gnome-doc-utils.make; then echo "Seems like we found working gnome documentation build utilities."; else echo "doc-dist-hook:" > build-aux/gnome-doc-utils.make; fi }; else rm -f build-aux/gnome-doc-utils.make && touch build-aux/gnome-doc-utils.make; fi \ && echo -n "Running automake... " \ && automake -a -c && echo "done" echo -n "Formatting language files with msgfmt... " && \ { cd po for f in *.po; do if test -r "$f"; then lang=`echo $f | sed -e 's,\.po$,,'` msgfmt -c -o $lang.gmo $lang.po fi done cd .. } && echo "done" mp3splt-gtk-0.7.2/config.sub0000764000175000017500000010344511474044322012621 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. timestamp='2010-01-22' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | ubicom32 \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile-* | tilegx-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze) basic_machine=microblaze-xilinx ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; # This must be matched before tile*. tilegx*) basic_machine=tilegx-unknown os=-linux-gnu ;; tile*) basic_machine=tile-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: mp3splt-gtk-0.7.2/missing0000764000175000017500000002557711241331402012234 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2006-05-10.23 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case $1 in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $1 in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: mp3splt-gtk-0.7.2/debian/0000755000175000017500000000000011753562412012136 500000000000000mp3splt-gtk-0.7.2/debian/dirs0000664000175000017500000000001011235156541012730 00000000000000usr/bin mp3splt-gtk-0.7.2/debian/docs0000664000175000017500000000005311753005414012723 00000000000000AUTHORS ChangeLog INSTALL NEWS README TODO mp3splt-gtk-0.7.2/debian/control0000644000175000017500000000203111753005414013447 00000000000000Source: mp3splt-gtk Section: sound Priority: optional Maintainer: Ryan Niebur DM-Upload-Allowed: yes Build-Depends: debhelper (>= 7.0), libmp3splt-dev (>= 0.7.1.976), libgtk2.0-dev, libgstreamer0.10-dev, libgstreamer-plugins-base0.10-dev, audacious-dev, gnome-doc-utils, libgnomeui-dev, rarian-compat Standards-Version: 3.9.1 Homepage: http://mp3splt.sourceforge.net/ Package: mp3splt-gtk Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, libmp3splt0 (>= 0.7.1.976), libmp3splt0-mp3 | libmp3splt-plugin Recommends: gstreamer0.10-plugins-good, libmp3splt0-ogg Suggests: audacious Description: Gnome application for lossless linear editing of audio files This application allows to cut an audio file into several tracks. Since there is no decoding step involved this means that MP3 (including VBR) and Ogg Vorbis can be split into smaller files without loosing any quality. Useful for splitting albums into tracks which can be done either manually, using freedb.org data from the net or using .cue files ... mp3splt-gtk-0.7.2/debian/rules0000744000175000017500000000067211501010227013120 00000000000000#!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ mp3splt-gtk-0.7.2/debian/changelog0000644000175000017500000000305611753562262013737 00000000000000mp3splt-gtk (0.7.2) oneiric; urgency=low * Non-maintainer upload. * New Upstream Version * Updated the debian control file -- Gunter Königsmann Sat, 3 Mar 2011 23:04:40 +0100 mp3splt-gtk (0.5.6-1.2) unstable; urgency=low * Non-maintainer upload. * debian/control: Add Recommends on gstreamer0.10-plugins-good. (Closes: #585614) -- Tim Retout Sun, 03 Oct 2010 12:46:50 +0100 mp3splt-gtk (0.5.6-1.1) unstable; urgency=medium * Non-maintainer upload. * Adjust pkconfig call to flags to properly set flags to link against audacious shlib, fixes FTBFS (Closes: #581292). * Build-depend on quilt. -- Alessio Treglia Mon, 20 Sep 2010 10:50:25 +0200 mp3splt-gtk (0.5.6-1) unstable; urgency=low * New Upstream Version * add DM-Upload-Allowed field * remove quilt patching, patches are applied upstream * remove Debian man page, upstream wrote one now * pass --disable-mp3splttest, those tests look for ../libmp3splt * stop passing --enable-gstreamer and --enable-audacious, those cause those features to be disabled...they are now enabled by default anyway * add dependency on libmp3splt-mp3 | libmp3splt-plugin, since the dependency was removed from the libmp3splt0 package due to a circular dependency -- Ryan Niebur Thu, 21 May 2009 18:50:42 -0700 mp3splt-gtk (0.5.4-1) unstable; urgency=low * Initial release (Closes: #515243, #500446) (LP: 319177) -- Ryan Niebur Fri, 10 Apr 2009 08:43:39 -0700 mp3splt-gtk-0.7.2/debian/compat0000644000175000017500000000000211501010227013233 000000000000007 mp3splt-gtk-0.7.2/debian/copyright0000644000175000017500000000176511753301674014023 00000000000000Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=174 Upstream-Name: mp3splt-gtk Source: http://launchpad.net/oggfix/ Files: * Copyright: 2005-2012 Munteanu Alexandru - , 2002-2005 M. Trotta - License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. Full text of the license is in /usr/share/common-licenses/GPL mp3splt-gtk-0.7.2/mkinstalldirs0000764000175000017500000000370411241331370013433 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain errstatus=0 dirmode="" usage="\ Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..." # process command line arguments while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" 1>&2 exit 0 ;; -m) # -m PERM arg shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } dirmode=$1 shift ;; --) # stop option processing shift break ;; -*) # unknown option echo "$usage" 1>&2 exit 1 ;; *) # first non-opt arg break ;; esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac case $dirmode in '') if mkdir -p -- . 2>/dev/null; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" fi ;; *) if mkdir -m "$dirmode" -p -- . 2>/dev/null; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" fi ;; esac for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case $pathcomp in -*) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr="" chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp="$pathcomp/" done done exit $errstatus # Local Variables: # mode: shell-script # sh-indentation: 2 # End: # mkinstalldirs ends here mp3splt-gtk-0.7.2/Makefile.am0000644000175000017500000000115211751531527012670 00000000000000# General automake options. AUTOMAKE_OPTIONS = foreign no-dependencies ACLOCAL_AMFLAGS = -I m4 SUBDIRS = m4 po doc src EXTRA_DIST = mp3splt-gtk.desktop.in autogen.sh m4 debian/changelog debian/compat debian/control debian/copyright debian/dirs debian/docs debian/rules appsdir = $(datadir)/applications apps_DATA = mp3splt-gtk.desktop mp3splt-gtk.desktop: mp3splt-gtk.desktop.in FORCE sed -e "s#PREFIX/#$(datadir)/pixmaps/#" $< > $@ doc: FORCE $(MAKE) -C doc doc if GNOME EXTRA_DIST += build-aux/gnome-doc-utils.make SUBDIRS += help endif # A make target that always needs to be rebuilt FORCE: .PHONY: FORCE mp3splt-gtk-0.7.2/Makefile.in0000644000175000017500000006454111753562402012712 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in 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. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ @GNOME_TRUE@am__append_1 = build-aux/gnome-doc-utils.make @GNOME_TRUE@am__append_2 = help subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/configure ABOUT-NLS AUTHORS COPYING ChangeLog \ INSTALL NEWS TODO build-aux/config.guess \ build-aux/config.rpath build-aux/config.sub build-aux/depcomp \ build-aux/install-sh build-aux/missing build-aux/mkinstalldirs \ config.guess config.rpath config.sub depcomp install-sh \ missing mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ $(top_srcdir)/m4/gnome-doc-utils.m4 $(top_srcdir)/m4/iconv.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/mp3splt.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/build-aux/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = depcomp = am__depfiles_maybe = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(appsdir)" DATA = $(apps_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = m4 po doc src help DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AUDACIOUS_CFLAGS = @AUDACIOUS_CFLAGS@ AUDACIOUS_LIBS = @AUDACIOUS_LIBS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@ DOC_USER_FORMATS = @DOC_USER_FORMATS@ DOXYGEN = @DOXYGEN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FAKE_GTK_CFLAGS = @FAKE_GTK_CFLAGS@ FAKE_GTK_LIBS = @FAKE_GTK_LIBS@ GMSGFMT = @GMSGFMT@ GRAPHVIZ = @GRAPHVIZ@ GREP = @GREP@ GST_CFLAGS = @GST_CFLAGS@ GST_LIBS = @GST_LIBS@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ HELP_DIR = @HELP_DIR@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INTLLIBS = @INTLLIBS@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LN_S = @LN_S@ LOCALEDIR = @LOCALEDIR@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MP3SPLT_CFLAGS = @MP3SPLT_CFLAGS@ MP3SPLT_LIBS = @MP3SPLT_LIBS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ OMF_DIR = @OMF_DIR@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ POSUB = @POSUB@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # General automake options. AUTOMAKE_OPTIONS = foreign no-dependencies ACLOCAL_AMFLAGS = -I m4 SUBDIRS = m4 po doc src $(am__append_2) EXTRA_DIST = mp3splt-gtk.desktop.in autogen.sh m4 debian/changelog \ debian/compat debian/control debian/copyright debian/dirs \ debian/docs debian/rules $(am__append_1) appsdir = $(datadir)/applications apps_DATA = mp3splt-gtk.desktop all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then rm -f stamp-h1; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 install-appsDATA: $(apps_DATA) @$(NORMAL_INSTALL) test -z "$(appsdir)" || $(MKDIR_P) "$(DESTDIR)$(appsdir)" @list='$(apps_DATA)'; test -n "$(appsdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(appsdir)" || exit $$?; \ done uninstall-appsDATA: @$(NORMAL_UNINSTALL) @list='$(apps_DATA)'; test -n "$(appsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(appsdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(appsdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-appsDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-appsDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-appsDATA install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \ tags-recursive uninstall uninstall-am uninstall-appsDATA mp3splt-gtk.desktop: mp3splt-gtk.desktop.in FORCE sed -e "s#PREFIX/#$(datadir)/pixmaps/#" $< > $@ doc: FORCE $(MAKE) -C doc doc # A make target that always needs to be rebuilt FORCE: .PHONY: FORCE # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: mp3splt-gtk-0.7.2/config.h.in0000644000175000017500000000344511753562411012664 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define if you have the iconv() function. */ #undef HAVE_ICONV /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION mp3splt-gtk-0.7.2/build-aux/0000755000175000017500000000000011753562412012606 500000000000000mp3splt-gtk-0.7.2/build-aux/depcomp0000764000175000017500000004426711471417437014123 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2009-04-28.21; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free # Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u="sed s,\\\\\\\\,/,g" depmode=msvisualcpp fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: mp3splt-gtk-0.7.2/build-aux/config.guess0000764000175000017500000012763711471417437015071 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. timestamp='2009-12-30' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner. Please send patches (context # diff format) to and include a ChangeLog # entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else echo ${UNAME_MACHINE}-unknown-linux-gnueabi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; i*86:Linux:*:*) LIBC=gnu eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in i386) eval $set_cc_for_build if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then UNAME_PROCESSOR="x86_64" fi fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: mp3splt-gtk-0.7.2/build-aux/config.rpath0000764000175000017500000003521311471417431015037 00000000000000#! /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-2003 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # # 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 M$VC, # 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 AC_LIBTOOL_PROG_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; mingw* | pw32* | os2*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; newsos6) ;; linux*) case $CC in icc|ecc) wl='-Wl,' ;; ccc) wl='-Wl,' ;; 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*) ;; 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 ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then 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 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 can 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 ;; netbsd*) ;; solaris* | sysv5*) 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 ;; 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" = yes; then # 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' 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 ;; bsdi4*) ;; 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*) if $CC -v 2>&1 | grep 'Apple' >/dev/null ; then hardcode_direct=no 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*) 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* | hpux11*) if test "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=no ;; ia64*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=no # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; *) 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 ;; 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=: ;; sco3.2v5*) ;; 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.2uw2*) hardcode_direct=yes hardcode_minus_L=no ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7*) ;; sysv5*) hardcode_libdir_flag_spec= ;; 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*) ;; bsdi4*) ;; cygwin* | mingw* | pw32*) shrext=.dll ;; darwin* | rhapsody*) shrext=.dylib ;; dgux*) ;; freebsd1*) ;; freebsd*) ;; gnu*) ;; hpux9* | hpux10* | hpux11*) case "$host_cpu" in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac ;; 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*) ;; netbsd*) ;; newsos6) ;; nto-qnx) ;; openbsd*) ;; os2*) libname_spec='$name' shrext=.dll ;; osf3* | osf4* | osf5*) ;; sco3.2v5*) ;; solaris*) ;; sunos4*) ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ;; sysv4*MP*) ;; 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"` sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: mp3splt-gtk-0.7.2/build-aux/config.sub0000764000175000017500000010344511471417437014523 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. timestamp='2010-01-22' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | ubicom32 \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile-* | tilegx-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze) basic_machine=microblaze-xilinx ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; # This must be matched before tile*. tilegx*) basic_machine=tilegx-unknown os=-linux-gnu ;; tile*) basic_machine=tile-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: mp3splt-gtk-0.7.2/build-aux/missing0000764000175000017500000002623311471417437014136 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and \`g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar*) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: mp3splt-gtk-0.7.2/build-aux/mkinstalldirs0000764000175000017500000000370411471417432015336 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy # Author: Noah Friedman # Created: 1993-05-16 # Public domain errstatus=0 dirmode="" usage="\ Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..." # process command line arguments while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" 1>&2 exit 0 ;; -m) # -m PERM arg shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } dirmode=$1 shift ;; --) # stop option processing shift break ;; -*) # unknown option echo "$usage" 1>&2 exit 1 ;; *) # first non-opt arg break ;; esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac case $dirmode in '') if mkdir -p -- . 2>/dev/null; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" fi ;; *) if mkdir -m "$dirmode" -p -- . 2>/dev/null; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" fi ;; esac for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case $pathcomp in -*) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr="" chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp="$pathcomp/" done done exit $errstatus # Local Variables: # mode: shell-script # sh-indentation: 2 # End: # mkinstalldirs ends here mp3splt-gtk-0.7.2/build-aux/gnome-doc-utils.make0000644000175000017500000006120211735522677016405 00000000000000# gnome-doc-utils.make - make magic for building documentation # Copyright (C) 2004-2005 Shaun McCance # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. ################################################################################ ## @@ Generating Header Files ## @ DOC_H_FILE ## The name of the header file to generate DOC_H_FILE ?= ## @ DOC_H_DOCS ## The input DocBook files for generating the header file DOC_H_DOCS ?= $(DOC_H_FILE): $(DOC_H_DOCS); @rm -f $@.tmp; touch $@.tmp; echo 'const gchar* documentation_credits[] = {' >> $@.tmp list='$(DOC_H_DOCS)'; for doc in $$list; do \ xmlpath="`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`:$(srcdir)/`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`"; \ if ! test -f "$$doc"; then doc="$(srcdir)/$$doc"; fi; \ xsltproc --path "$$xmlpath" $(_credits) $$doc; \ done | sort | uniq \ | awk 'BEGIN{s=""}{n=split($$0,w,"<");if(s!=""&&s!=substr(w[1],1,length(w[1])-1)){print s};if(n>1){print $$0;s=""}else{s=$$0}};END{if(s!=""){print s}}' \ | sed -e 's/\\/\\\\/' -e 's/"/\\"/' -e 's/\(.*\)/\t"\1",/' >> $@.tmp echo ' NULL' >> $@.tmp echo '};' >> $@.tmp echo >> $@.tmp list='$(DOC_H_DOCS)'; for doc in $$list; do \ xmlpath="`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`:$(srcdir)/`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`"; \ if ! test -f "$$doc"; then doc="$(srcdir)/$$doc"; fi; \ docid=`echo "$$doc" | sed -e 's/.*\/\([^/]*\)\.xml/\1/' \ | sed -e 's/[^a-zA-Z_]/_/g' | tr 'a-z' 'A-Z'`; \ echo $$xmlpath; \ ids=`xsltproc --xinclude --path "$$xmlpath" $(_ids) $$doc`; \ for id in $$ids; do \ echo '#define HELP_'`echo $$docid`'_'`echo $$id \ | sed -e 's/[^a-zA-Z_]/_/g' | tr 'a-z' 'A-Z'`' "'$$id'"' >> $@.tmp; \ done; \ echo >> $@.tmp; \ done; cp $@.tmp $@ && rm -f $@.tmp dist-check-gdu: if !HAVE_GNOME_DOC_UTILS @echo "*** GNOME Doc Utils must be installed in order to make dist" @false endif .PHONY: dist-doc-header dist-doc-header: $(DOC_H_FILE) @if test -f "$(DOC_H_FILE)"; then d=; else d="$(srcdir)/"; fi; \ echo "$(INSTALL_DATA) $${d}$(DOC_H_FILE) $(distdir)/$(DOC_H_FILE)"; \ $(INSTALL_DATA) "$${d}$(DOC_H_FILE)" "$(distdir)/$(DOC_H_FILE)"; doc-dist-hook: dist-check-gdu $(if $(DOC_H_FILE),dist-doc-header) .PHONY: clean-doc-header _clean_doc_header = $(if $(DOC_H_FILE),clean-doc-header) clean-local: $(_clean_doc_header) distclean-local: $(_clean_doc_header) mostlyclean-local: $(_clean_doc_header) maintainer-clean-local: $(_clean_doc_header) clean-doc-header: rm -f $(DOC_H_FILE) all: $(DOC_H_FILE) ################################################################################ ## @@ Generating Documentation Files ## @ DOC_MODULE ## The name of the document being built DOC_MODULE ?= ## @ DOC_ID ## The unique identifier for a Mallard document DOC_ID ?= ## @ DOC_PAGES ## Page files in a Mallard document DOC_PAGES ?= ## @ DOC_ENTITIES ## Files included with a SYSTEM entity DOC_ENTITIES ?= ## @ DOC_INCLUDES ## Files included with XInclude DOC_INCLUDES ?= ## @ DOC_FIGURES ## Figures and other external data DOC_FIGURES ?= ## @ DOC_FORMATS ## The default formats to be built and installed DOC_FORMATS ?= docbook _DOC_REAL_FORMATS = $(if $(DOC_USER_FORMATS),$(DOC_USER_FORMATS),$(DOC_FORMATS)) ## @ DOC_LINGUAS ## The languages this document is translated into DOC_LINGUAS ?= _DOC_REAL_LINGUAS = $(if $(filter environment,$(origin LINGUAS)), \ $(filter $(LINGUAS),$(DOC_LINGUAS)), \ $(DOC_LINGUAS)) _DOC_ABS_SRCDIR = @abs_srcdir@ ################################################################################ ## Variables for Bootstrapping _xml2po ?= `which xml2po` _xml2po_mode = $(if $(DOC_ID),mallard,docbook) _db2html ?= `$(PKG_CONFIG) --variable db2html gnome-doc-utils` _db2omf ?= `$(PKG_CONFIG) --variable db2omf gnome-doc-utils` _chunks ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/chunks.xsl _credits ?= `$(PKG_CONFIG) --variable xmldir gnome-doc-utils`/gnome/xslt/docbook/utils/credits.xsl _ids ?= $(shell $(PKG_CONFIG) --variable xmldir gnome-doc-utils)/gnome/xslt/docbook/utils/ids.xsl if ENABLE_SK _ENABLE_SK = true _skpkgdatadir ?= `scrollkeeper-config --pkgdatadir` _sklocalstatedir ?= `scrollkeeper-config --pkglocalstatedir` _skcontentslist ?= $(_skpkgdatadir)/Templates/C/scrollkeeper_cl.xml endif ################################################################################ ## Support for automake silent-rules GDU_V_XML2PO=$(GDU__v_XML2PO_$(V)) GDU__v_XML2PO_=$(GDU__v_XML2PO_$(AM_DEFAULT_VERBOSITY)) GDU__v_XML2PO_0=@echo " XML2PO" $@; GDU_V_MSGFMT=$(GDU__v_MSGFMT_$(V)) GDU__v_MSGFMT_=$(GDU__v_MSGFMT_$(AM_DEFAULT_VERBOSITY)) GDU__v_MSGFMT_0=@echo " MSGFMT" $@; GDU_V_DB2OMF=$(GDU__v_DB2OMF_$(V)) GDU__v_DB2OMF_=$(GDU__v_DB2OMF_$(AM_DEFAULT_VERBOSITY)) GDU__v_DB2OMF_0=@echo " DB2OMF" $@; GDU_V_DB2HTM=$(GDU__v_DB2HTM_$(V)) GDU__v_DB2HTM_=$(GDU__v_DB2HTM_$(AM_DEFAULT_VERBOSITY)) GDU__v_DB2HTM_0=@echo " DB2HTM" $@; ################################################################################ ## @@ Rules for OMF Files db2omf_args = \ --stringparam db2omf.basename $(DOC_MODULE) \ --stringparam db2omf.format $(3) \ --stringparam db2omf.dtd \ $(shell xmllint --format $(2) | grep -h PUBLIC | head -n 1 \ | sed -e 's/.*PUBLIC \(\"[^\"]*\"\).*/\1/') \ --stringparam db2omf.lang $(notdir $(patsubst %/$(notdir $(2)),%,$(2))) \ --stringparam db2omf.omf_dir "$(OMF_DIR)" \ --stringparam db2omf.help_dir "$(HELP_DIR)" \ --stringparam db2omf.omf_in "$(_DOC_OMF_IN)" \ $(if $(_ENABLE_SK), \ --stringparam db2omf.scrollkeeper_cl "$(_skcontentslist)") \ $(_db2omf) $(2) ## @ _DOC_OMF_IN ## The OMF input file _DOC_OMF_IN = $(if $(DOC_MODULE),$(wildcard $(_DOC_ABS_SRCDIR)/$(DOC_MODULE).omf.in)) ## @ _DOC_OMF_DB ## The OMF files for DocBook output _DOC_OMF_DB = $(if $(_DOC_OMF_IN), \ $(foreach lc,C $(_DOC_REAL_LINGUAS),$(DOC_MODULE)-$(lc).omf)) $(_DOC_OMF_DB) : $(_DOC_OMF_IN) $(_DOC_OMF_DB) : $(DOC_MODULE)-%.omf : %/$(DOC_MODULE).xml @test "x$(_ENABLE_SK)" != "xtrue" -o -f "$(_skcontentslist)" || { \ echo "The file '$(_skcontentslist)' does not exist." >&2; \ echo "Please check your ScrollKeeper installation." >&2; \ exit 1; } $(GDU_V_DB2OMF)xsltproc -o $@ $(call db2omf_args,$@,$<,'docbook') || { rm -f "$@"; exit 1; } ## @ _DOC_OMF_HTML ## The OMF files for HTML output _DOC_OMF_HTML = $(if $(_DOC_OMF_IN), \ $(foreach lc,C $(_DOC_REAL_LINGUAS),$(DOC_MODULE)-html-$(lc).omf)) $(_DOC_OMF_HTML) : $(_DOC_OMF_IN) $(_DOC_OMF_HTML) : $(DOC_MODULE)-html-%.omf : %/$(DOC_MODULE).xml if ENABLE_SK @test "x$(_ENABLE_SK)" != "xtrue" -o -f "$(_skcontentslist)" || { \ echo "The file '$(_skcontentslist)' does not exist" >&2; \ echo "Please check your ScrollKeeper installation." >&2; \ exit 1; } endif $(GDU_V_DB2OMF)xsltproc -o $@ $(call db2omf_args,$@,$<,'xhtml') || { rm -f "$@"; exit 1; } ## @ _DOC_OMF_ALL ## All OMF output files to be built # FIXME _DOC_OMF_ALL = \ $(if $(filter docbook,$(_DOC_REAL_FORMATS)),$(_DOC_OMF_DB)) \ $(if $(filter html HTML,$(_DOC_REAL_FORMATS)),$(_DOC_OMF_HTML)) .PHONY: omf omf: $(_DOC_OMF_ALL) ################################################################################ ## @@ C Locale Documents ## @ _DOC_C_MODULE ## The top-level documentation file in the C locale _DOC_C_MODULE = $(if $(DOC_MODULE),C/$(DOC_MODULE).xml) ## @ _DOC_C_PAGES ## Page files in a Mallard document in the C locale _DOC_C_PAGES = $(foreach page,$(DOC_PAGES),C/$(page)) ## @ _DOC_C_ENTITIES ## Files included with a SYSTEM entity in the C locale _DOC_C_ENTITIES = $(foreach ent,$(DOC_ENTITIES),C/$(ent)) ## @ _DOC_C_XINCLUDES ## Files included with XInclude in the C locale _DOC_C_INCLUDES = $(foreach inc,$(DOC_INCLUDES),C/$(inc)) ## @ _DOC_C_DOCS ## All documentation files in the C locale _DOC_C_DOCS = \ $(_DOC_C_ENTITIES) $(_DOC_C_INCLUDES) \ $(_DOC_C_PAGES) $(_DOC_C_MODULE) ## @ _DOC_C_DOCS_NOENT ## All documentation files in the C locale, ## except files included with a SYSTEM entity _DOC_C_DOCS_NOENT = \ $(_DOC_C_MODULE) $(_DOC_C_INCLUDES) \ $(_DOC_C_PAGES) ## @ _DOC_C_FIGURES ## All figures and other external data in the C locale _DOC_C_FIGURES = $(if $(DOC_FIGURES), \ $(foreach fig,$(DOC_FIGURES),C/$(fig)), \ $(patsubst $(srcdir)/%,%,$(wildcard $(srcdir)/C/figures/*.png))) ## @ _DOC_C_HTML ## All HTML documentation in the C locale # FIXME: probably have to shell escape to determine the file names _DOC_C_HTML = $(foreach f, \ $(shell xsltproc --xinclude \ --stringparam db.chunk.basename "$(DOC_MODULE)" \ $(_chunks) "C/$(DOC_MODULE).xml"), \ C/$(f).xhtml) ############################################################################### ## @@ Other Locale Documentation ## @ _DOC_POFILES ## The .po files used for translating the document _DOC_POFILES = $(if $(DOC_MODULE)$(DOC_ID), \ $(foreach lc,$(_DOC_REAL_LINGUAS),$(lc)/$(lc).po)) .PHONY: po po: $(_DOC_POFILES) ## @ _DOC_MOFILES ## The .mo files used for translating the document _DOC_MOFILES = $(patsubst %.po,%.mo,$(_DOC_POFILES)) .PHONY: mo mo: $(_DOC_MOFILES) ## @ _DOC_LC_MODULES ## The top-level documentation files in all other locales _DOC_LC_MODULES = $(if $(DOC_MODULE), \ $(foreach lc,$(_DOC_REAL_LINGUAS),$(lc)/$(DOC_MODULE).xml)) ## @ _DOC_LC_PAGES ## Page files in a Mallard document in all other locales _DOC_LC_PAGES = \ $(foreach lc,$(_DOC_REAL_LINGUAS),$(foreach page,$(_DOC_C_PAGES), \ $(lc)/$(notdir $(page)) )) ## @ _DOC_LC_XINCLUDES ## Files included with XInclude in all other locales _DOC_LC_INCLUDES = \ $(foreach lc,$(_DOC_REAL_LINGUAS),$(foreach inc,$(_DOC_C_INCLUDES), \ $(lc)/$(notdir $(inc)) )) ## @ _DOC_LC_HTML ## All HTML documentation in all other locales # FIXME: probably have to shell escape to determine the file names _DOC_LC_HTML = \ $(foreach lc,$(_DOC_REAL_LINGUAS),$(foreach doc,$(_DOC_C_HTML), \ $(lc)/$(notdir $(doc)) )) ## @ _DOC_LC_DOCS ## All documentation files in all other locales _DOC_LC_DOCS = \ $(_DOC_LC_MODULES) $(_DOC_LC_INCLUDES) $(_DOC_LC_PAGES) \ $(if $(filter html HTML,$(_DOC_REAL_FORMATS)),$(_DOC_LC_HTML)) ## @ _DOC_LC_FIGURES ## All figures and other external data in all other locales _DOC_LC_FIGURES = $(foreach lc,$(_DOC_REAL_LINGUAS), \ $(patsubst C/%,$(lc)/%,$(_DOC_C_FIGURES)) ) _DOC_SRC_FIGURES = \ $(foreach fig,$(_DOC_C_FIGURES), $(foreach lc,C $(_DOC_REAL_LINGUAS), \ $(wildcard $(srcdir)/$(lc)/$(patsubst C/%,%,$(fig))) )) $(_DOC_POFILES): @if ! test -d $(dir $@); then \ echo "mkdir $(dir $@)"; \ mkdir "$(dir $@)"; \ fi @if test ! -f $@ -a -f $(srcdir)/$@; then \ echo "cp $(srcdir)/$@ $@"; \ cp "$(srcdir)/$@" "$@"; \ fi; @docs=; \ list='$(_DOC_C_DOCS_NOENT)'; for doc in $$list; do \ docs="$$docs $(_DOC_ABS_SRCDIR)/$$doc"; \ done; \ if ! test -f $@; then \ echo "(cd $(dir $@) && \ $(_xml2po) -m $(_xml2po_mode) -e $$docs > $(notdir $@).tmp && \ cp $(notdir $@).tmp $(notdir $@) && rm -f $(notdir $@).tmp)"; \ (cd $(dir $@) && \ $(_xml2po) -m $(_xml2po_mode) -e $$docs > $(notdir $@).tmp && \ cp $(notdir $@).tmp $(notdir $@) && rm -f $(notdir $@).tmp); \ else \ echo "(cd $(dir $@) && \ $(_xml2po) -m $(_xml2po_mode) -e -u $(notdir $@) $$docs)"; \ (cd $(dir $@) && \ $(_xml2po) -m $(_xml2po_mode) -e -u $(notdir $@) $$docs); \ fi $(_DOC_MOFILES): %.mo: %.po $(AM_V_at)if ! test -d $(dir $@); then mkdir "$(dir $@)"; fi $(GDU_V_MSGFMT)msgfmt -o $@ $< # FIXME: fix the dependancy # FIXME: hook xml2po up $(_DOC_LC_DOCS) : $(_DOC_MOFILES) $(_DOC_LC_DOCS) : $(_DOC_C_DOCS) $(AM_V_at)if ! test -d $(dir $@); then mkdir $(dir $@); fi $(GDU_V_XML2PO)if [ -f "C/$(notdir $@)" ]; then d="../"; else d="$(_DOC_ABS_SRCDIR)/"; fi; \ mo="$(dir $@)$(patsubst %/$(notdir $@),%,$@).mo"; \ if [ -f "$${mo}" ]; then mo="../$${mo}"; else mo="$(_DOC_ABS_SRCDIR)/$${mo}"; fi; \ (cd $(dir $@) && \ $(_xml2po) -m $(_xml2po_mode) -e -t "$${mo}" \ "$${d}C/$(notdir $@)" > $(notdir $@).tmp && \ cp $(notdir $@).tmp $(notdir $@) && rm -f $(notdir $@).tmp) ## @ _DOC_POT ## A pot file _DOC_POT = $(if $(DOC_MODULE),$(DOC_MODULE).pot,$(if $(DOC_ID),$(DOC_ID).pot)) .PHONY: pot pot: $(_DOC_POT) $(_DOC_POT): $(_DOC_C_DOCS_NOENT) $(GDU_V_XML2PO)$(_xml2po) -m $(_xml2po_mode) -e -o $@ $^ ################################################################################ ## @@ All Documentation ## @ _DOC_HTML_ALL ## All HTML documentation, only if it's built _DOC_HTML_ALL = $(if $(filter html HTML,$(_DOC_REAL_FORMATS)), \ $(_DOC_C_HTML) $(_DOC_LC_HTML)) _DOC_HTML_TOPS = $(foreach lc,C $(_DOC_REAL_LINGUAS),$(lc)/$(DOC_MODULE).xhtml) $(_DOC_HTML_TOPS): $(_DOC_C_DOCS) $(_DOC_LC_DOCS) $(GDU_V_DB2HTM)xsltproc -o $@ --xinclude --param db.chunk.chunk_top "false()" --stringparam db.chunk.basename "$(DOC_MODULE)" --stringparam db.chunk.extension ".xhtml" $(_db2html) $(patsubst %.xhtml,%.xml,$@) ################################################################################ ## All all: \ $(_DOC_C_DOCS) $(_DOC_LC_DOCS) \ $(_DOC_OMF_ALL) $(_DOC_DSK_ALL) \ $(_DOC_HTML_ALL) $(_DOC_POFILES) ################################################################################ ## Clean .PHONY: clean-doc-omf clean-doc-dsk clean-doc-lc clean-doc-dir clean-doc-omf: ; rm -f $(_DOC_OMF_DB) $(_DOC_OMF_HTML) clean-doc-dsk: ; rm -f $(_DOC_DSK_DB) $(_DOC_DSK_HTML) clean-doc-lc: rm -f $(_DOC_LC_DOCS) rm -f $(_DOC_MOFILES) @list='$(_DOC_POFILES)'; for po in $$list; do \ if ! test "$$po" -ef "$(srcdir)/$$po"; then \ echo "rm -f $$po"; \ rm -f "$$po"; \ fi; \ done # .xml2.po.mo cleaning is obsolete as of 0.18.1 and could be removed in 0.20.x @for lc in C $(_DOC_REAL_LINGUAS); do \ if test -f "$$lc/.xml2po.mo"; then \ echo "rm -f $$lc/.xml2po.mo"; \ rm -f "$$lc/.xml2po.mo"; \ fi; \ done clean-doc-dir: clean-doc-lc @for lc in C $(_DOC_REAL_LINGUAS); do \ for dir in `find $$lc -depth -type d`; do \ if ! test $$dir -ef $(srcdir)/$$dir; then \ echo "rmdir $$dir"; \ rmdir "$$dir"; \ fi; \ done; \ done _clean_omf = $(if $(_DOC_OMF_IN),clean-doc-omf) _clean_dsk = $(if $(_DOC_DSK_IN),clean-doc-dsk) _clean_lc = $(if $(_DOC_REAL_LINGUAS),clean-doc-lc) _clean_dir = $(if $(DOC_MODULE)$(DOC_ID),clean-doc-dir) clean-local: \ $(_clean_omf) $(_clean_dsk) \ $(_clean_lc) $(_clean_dir) distclean-local: \ $(_clean_omf) $(_clean_dsk) \ $(_clean_lc) $(_clean_dir) mostlyclean-local: \ $(_clean_omf) $(_clean_dsk) \ $(_clean_lc) $(_clean_dir) maintainer-clean-local: \ $(_clean_omf) $(_clean_dsk) \ $(_clean_lc) $(_clean_dir) ################################################################################ ## Dist .PHONY: dist-doc-docs dist-doc-pages dist-doc-figs dist-doc-omf dist-doc-dsk doc-dist-hook: \ $(if $(DOC_MODULE)$(DOC_ID),dist-doc-docs) \ $(if $(_DOC_C_FIGURES),dist-doc-figs) \ $(if $(_DOC_OMF_IN),dist-doc-omf) # $(if $(_DOC_DSK_IN),dist-doc-dsk) dist-doc-docs: $(_DOC_C_DOCS) $(_DOC_LC_DOCS) $(_DOC_POFILES) @for lc in C $(_DOC_REAL_LINGUAS); do \ echo " $(mkinstalldirs) $(distdir)/$$lc"; \ $(mkinstalldirs) "$(distdir)/$$lc"; \ done @list='$(_DOC_C_DOCS)'; \ for doc in $$list; do \ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ docdir=`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ if ! test -d "$(distdir)/$$docdir"; then \ echo "$(mkinstalldirs) $(distdir)/$$docdir"; \ $(mkinstalldirs) "$(distdir)/$$docdir"; \ fi; \ echo "$(INSTALL_DATA) $$d$$doc $(distdir)/$$doc"; \ $(INSTALL_DATA) "$$d$$doc" "$(distdir)/$$doc"; \ done @list='$(_DOC_LC_DOCS)'; \ for doc in $$list; do \ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ docdir=`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ if ! test -d "$(distdir)/$$docdir"; then \ echo "$(mkinstalldirs) $(distdir)/$$docdir"; \ $(mkinstalldirs) "$(distdir)/$$docdir"; \ fi; \ echo "$(INSTALL_DATA) $$d$$doc $(distdir)/$$doc"; \ $(INSTALL_DATA) "$$d$$doc" "$(distdir)/$$doc"; \ done @list='$(_DOC_POFILES)'; \ for doc in $$list; do \ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ docdir=`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ if ! test -d "$(distdir)/$$docdir"; then \ echo "$(mkinstalldirs) $(distdir)/$$docdir"; \ $(mkinstalldirs) "$(distdir)/$$docdir"; \ fi; \ echo "$(INSTALL_DATA) $$d$$doc $(distdir)/$$doc"; \ $(INSTALL_DATA) "$$d$$doc" "$(distdir)/$$doc"; \ done dist-doc-figs: $(_DOC_SRC_FIGURES) @list='$(_DOC_C_FIGURES) $(_DOC_LC_FIGURES)'; \ for fig in $$list; do \ if test -f "$$fig"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$fig"; then \ figdir=`echo $$fig | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ if ! test -d "$(distdir)/$$figdir"; then \ echo "$(mkinstalldirs) $(distdir)/$$figdir"; \ $(mkinstalldirs) "$(distdir)/$$figdir"; \ fi; \ echo "$(INSTALL_DATA) $$d$$fig $(distdir)/$$fig"; \ $(INSTALL_DATA) "$$d$$fig" "$(distdir)/$$fig"; \ fi; \ done; dist-doc-omf: @if test -f "$(_DOC_OMF_IN)"; then d=; else d="$(srcdir)/"; fi; \ echo "$(INSTALL_DATA) $$d$(_DOC_OMF_IN) $(distdir)/$(notdir $(_DOC_OMF_IN))"; \ $(INSTALL_DATA) "$$d$(_DOC_OMF_IN)" "$(distdir)/$(notdir $(_DOC_OMF_IN))" dist-doc-dsk: @if test -f "$(_DOC_DSK_IN)"; then d=; else d="$(srcdir)/"; fi; \ echo "$(INSTALL_DATA) $$d$(_DOC_DSK_IN) $(distdir)/$(notdir $(_DOC_DSK_IN))"; \ $(INSTALL_DATA) "$$d$(_DOC_DSK_IN)" "$(distdir)/$(notdir $(_DOC_DSK_IN))" ################################################################################ ## Check .PHONY: check-doc-docs check-doc-omf check: \ $(if $(DOC_MODULE),check-doc-docs) \ $(if $(DOC_ID),check-doc-pages) \ $(if $(_DOC_OMF_IN),check-doc-omf) check-doc-docs: $(_DOC_C_DOCS) $(_DOC_LC_DOCS) @for lc in C $(_DOC_REAL_LINGUAS); do \ if test -f "$$lc"; \ then d=; \ xmlpath="$$lc"; \ else \ d="$(srcdir)/"; \ xmlpath="$$lc:$(srcdir)/$$lc"; \ fi; \ echo "xmllint --noout --noent --path $$xmlpath --xinclude --postvalid $$d$$lc/$(DOC_MODULE).xml"; \ xmllint --noout --noent --path "$$xmlpath" --xinclude --postvalid "$$d$$lc/$(DOC_MODULE).xml"; \ done check-doc-pages: $(_DOC_C_PAGES) $(_DOC_LC_PAGES) for lc in C $(_DOC_REAL_LINGUAS); do \ if test -f "$$lc"; \ then d=; \ xmlpath="$$lc"; \ else \ d="$(srcdir)/"; \ xmlpath="$$lc:$(srcdir)/$$lc"; \ fi; \ for page in $(DOC_PAGES); do \ echo "xmllint --noout --noent --path $$xmlpath --xinclude $$d$$lc/$$page"; \ xmllint --noout --noent --path "$$xmlpath" --xinclude "$$d$$lc/$$page"; \ done; \ done check-doc-omf: $(_DOC_OMF_ALL) @list='$(_DOC_OMF_ALL)'; for omf in $$list; do \ echo "xmllint --noout --xinclude --dtdvalid 'http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd' $$omf"; \ xmllint --noout --xinclude --dtdvalid 'http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/scrollkeeper-omf.dtd' $$omf; \ done ################################################################################ ## Install .PHONY: install-doc-docs install-doc-html install-doc-figs install-doc-omf install-doc-dsk _doc_install_dir = $(if $(DOC_ID),$(DOC_ID),$(DOC_MODULE)) install-data-local: \ $(if $(DOC_MODULE)$(DOC_ID),install-doc-docs) \ $(if $(_DOC_HTML_ALL),install-doc-html) \ $(if $(_DOC_C_FIGURES),install-doc-figs) \ $(if $(_DOC_OMF_IN),install-doc-omf) # $(if $(_DOC_DSK_IN),install-doc-dsk) install-doc-docs: @for lc in C $(_DOC_REAL_LINGUAS); do \ echo "$(mkinstalldirs) $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$lc"; \ $(mkinstalldirs) $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$lc; \ done @list='$(_DOC_C_DOCS)'; for doc in $$list; do \ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ docdir="$$lc/"`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ docdir="$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$docdir"; \ if ! test -d "$$docdir"; then \ echo "$(mkinstalldirs) $$docdir"; \ $(mkinstalldirs) "$$docdir"; \ fi; \ echo "$(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ $(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc; \ done @list='$(_DOC_LC_DOCS)'; for doc in $$list; do \ if test -f "$$doc"; then d=; else d="$(srcdir)/"; fi; \ docdir="$$lc/"`echo $$doc | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ docdir="$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$docdir"; \ if ! test -d "$$docdir"; then \ echo "$(mkinstalldirs) $$docdir"; \ $(mkinstalldirs) "$$docdir"; \ fi; \ echo "$(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ $(INSTALL_DATA) $$d$$doc $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc; \ done install-doc-figs: @list='$(patsubst C/%,%,$(_DOC_C_FIGURES))'; for fig in $$list; do \ for lc in C $(_DOC_REAL_LINGUAS); do \ figsymlink=false; \ if test -f "$$lc/$$fig"; then \ figfile="$$lc/$$fig"; \ elif test -f "$(srcdir)/$$lc/$$fig"; then \ figfile="$(srcdir)/$$lc/$$fig"; \ else \ figsymlink=true; \ fi; \ figdir="$$lc/"`echo $$fig | sed -e 's/^\(.*\/\).*/\1/' -e '/\//!s/.*//'`; \ figdir="$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$figdir"; \ if ! test -d "$$figdir"; then \ echo "$(mkinstalldirs) $$figdir"; \ $(mkinstalldirs) "$$figdir"; \ fi; \ figbase=`echo $$fig | sed -e 's/^.*\///'`; \ if $$figsymlink; then \ echo "cd $$figdir && $(LN_S) -f ../../C/$$fig $$figbase"; \ ( cd "$$figdir" && $(LN_S) -f "../../C/$$fig" "$$figbase" ); \ else \ echo "$(INSTALL_DATA) $$figfile $$figdir$$figbase"; \ $(INSTALL_DATA) "$$figfile" "$$figdir$$figbase"; \ fi; \ done; \ done install-doc-html: echo install-html install-doc-omf: $(mkinstalldirs) $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir) @list='$(_DOC_OMF_ALL)'; for omf in $$list; do \ echo "$(INSTALL_DATA) $$omf $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ $(INSTALL_DATA) $$omf $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf; \ done @if test "x$(_ENABLE_SK)" = "xtrue"; then \ echo "scrollkeeper-update -p $(DESTDIR)$(_sklocalstatedir) -o $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)"; \ scrollkeeper-update -p "$(DESTDIR)$(_sklocalstatedir)" -o "$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)"; \ fi; install-doc-dsk: echo install-dsk ################################################################################ ## Uninstall .PHONY: uninstall-doc-docs uninstall-doc-html uninstall-doc-figs uninstall-doc-omf uninstall-doc-dsk uninstall-local: \ $(if $(DOC_MODULE)$(DOC_ID),uninstall-doc-docs) \ $(if $(_DOC_HTML_ALL),uninstall-doc-html) \ $(if $(_DOC_C_FIGURES),uninstall-doc-figs) \ $(if $(_DOC_OMF_IN),uninstall-doc-omf) # $(if $(_DOC_DSK_IN),uninstall-doc-dsk) uninstall-doc-docs: @list='$(_DOC_C_DOCS)'; for doc in $$list; do \ echo " rm -f $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ rm -f "$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ done @list='$(_DOC_LC_DOCS)'; for doc in $$list; do \ echo " rm -f $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ rm -f "$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$doc"; \ done uninstall-doc-figs: @list='$(_DOC_C_FIGURES) $(_DOC_LC_FIGURES)'; for fig in $$list; do \ echo "rm -f $(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$fig"; \ rm -f "$(DESTDIR)$(HELP_DIR)/$(_doc_install_dir)/$$fig"; \ done; uninstall-doc-omf: @list='$(_DOC_OMF_ALL)'; for omf in $$list; do \ if test "x$(_ENABLE_SK)" = "xtrue"; then \ echo "scrollkeeper-uninstall -p $(_sklocalstatedir) $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ scrollkeeper-uninstall -p "$(_sklocalstatedir)" "$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ fi; \ echo "rm -f $(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ rm -f "$(DESTDIR)$(OMF_DIR)/$(_doc_install_dir)/$$omf"; \ done mp3splt-gtk-0.7.2/AUTHORS0000644000175000017500000000224411532552055011703 00000000000000* Alexandru Ionut Munteanu - : Author and main maintainer of mp3splt-gtk * Matteo Trotta - : Author and main maintainer of Mp3Splt Project People who contributed to mp3splt-project development : - Marco Papa Manzillo : rpm and deb packager. - François Revol : added list option and worked on BeOS porting. - Remo Laubacher : ported mp3splt v. 0.4 for Windows. - Davide Magatti : "official" mp3splt beta tester - Markus Elfring: code checking for return codes, some bad coding techniques and suggestions - Roberto Neri : patch from BMP to audacious support - Mario Blättermann : german translation and suggestions - Erez Volk : alphabetic track number output variables patch - Federico Grau : audacity labels support - David Belohrad : set tags from filename regular expression - Gunter Königsmann : gui improvement and debian packaging and others ... Homepage : http://mp3splt.sourceforge.net/ mp3splt-gtk-0.7.2/INSTALL0000644000175000017500000000734511500737216011672 00000000000000mp3splt-gtk - INSTALLATION INFORMATION ==================================================================== To install the program, you can to compile the source code. Installing the program using the binary '.deb' debian packages : 0) Installation on Debian GNU/Linux Installing the program on GNU/Linux is made in 3 steps : 1) Install needed libraries 2) Compile the source 3) Install the binary 4) Troubleshooting Installing the program on Windows : 5) Installation on Windows Notes : 6) Notes for using the snackAmp player -------------------------------------------------------------------- 0) Installation on Debian GNU/Linux : Download the libmp3splt debian package from the mp3splt site (http://mp3splt.sourceforge.net) and install it with : dpkg -i libmp3splt.deb Download the mp3splt-gtk debian package from the mp3splt site and install it with : dpkg -i mp3splt-gtk.deb -------------------------------------------------------------------- 1) Install needed libraries : Before compiling the source code, verify that you have the following libraries installed : libmp3splt (http://mp3splt.sourceforge.net) In order to have more features, you can also install the following optional libraries/programs : gstreamer (http://www.gstreamer.net/) audacious (http://audacious-media-player.org/) -------------------------------------------------------------------- 2) Compiling the source : Move into the mp3splt-gtk directory and type : ./configure Main configure options : --disable-gstreamer --disable-audacious Other configure options : --with-mp3splt=PFX --with-mp3splt-libraries=DIR --with-mp3splt-includes=DIR --disable-mp3splttest This will create the Makefile used to compile the program After that, type : make -------------------------------------------------------------------- 3) Install the binary : To install the binary type : make install -------------------------------------------------------------------- 4) Compiling from svn In order to generate a "./configure" command you have to type ./autogen.sh before trying step 2) If due to a broken installation of the gnome-documentation-build-utilities you get the following error message: touch: cannot touch `build-aux/gnome-doc-utils.make': Permission denied replace the said symlink by a "real" file of the same contents. -------------------------------------------------------------------- 5) Troubleshooting : If when running the application you get an error message like "cannot open shared library...", try the following : as root, type : echo "/usr/local/lib" >> /etc/ld.so.conf then : ldconfig -------------------------------------------------------------------- 6) Installation on Windows Download the windows installer and install it. The windows binary supports an 'internal' player with gstreamer. It is recommended to use the 'gstreamer' player. -------------------------------------------------------------------- 7) Notes for using the snackAmp player : To make SnackAmp work with mp3splt-gtk : download it from : http://snackamp.sourceforge.net/ Make sure to download snackamp version >= 3.1.3 otherwise it will not work -to get the player working, you have to go to Tools->Preferences->Miscellaneous from the snackamp menu and check "Enable Socket Interface" -only default port is supported for now(8775) -after that, restart snackamp and mp3splt-gtk should work /////////////////////////////////////////// for any problems, contact me or send bugs/suggestions to : Alexandru Munteanu http://mp3splt.sourceforge.net/ /////////////////////////////////////////// mp3splt-gtk-0.7.2/ABOUT-NLS0000664000175000017500000013023511241331367012064 00000000000000Notes on the Free Translation Project ************************************* Free software is going international! The Free Translation Project is a way to get maintainers of free software, translators, and users all together, so that will gradually become able to speak many languages. A few packages already provide translations for their messages. If you found this `ABOUT-NLS' file inside a distribution, you may assume that the distributed package does use GNU `gettext' internally, itself available at your nearest GNU archive site. But you do _not_ need to install GNU `gettext' prior to configuring, installing or using this package with messages translated. Installers will find here some useful hints. These notes also explain how users should proceed for getting the programs to use the available translations. They tell how people wanting to contribute and work at translations should contact the appropriate team. When reporting bugs in the `intl/' directory or bugs which may be related to internationalization, you should tell about the version of `gettext' which is used. The information can be found in the `intl/VERSION' file, in internationalized packages. Quick configuration advice ========================== If you want to exploit the full power of internationalization, you should configure it using ./configure --with-included-gettext to force usage of internationalizing routines provided within this package, despite the existence of internationalizing capabilities in the operating system where this package is being installed. So far, only the `gettext' implementation in the GNU C library version 2 provides as many features (such as locale alias, message inheritance, automatic charset conversion or plural form handling) as the implementation here. It is also not possible to offer this additional functionality on top of a `catgets' implementation. Future versions of GNU `gettext' will very likely convey even more functionality. So it might be a good idea to change to GNU `gettext' as soon as possible. So you need _not_ provide this option if you are using GNU libc 2 or you have installed a recent copy of the GNU gettext package with the included `libintl'. INSTALL Matters =============== Some packages are "localizable" when properly installed; the programs they contain can be made to speak your own native language. Most such packages use GNU `gettext'. Other packages have their own ways to internationalization, predating GNU `gettext'. By default, this package will be installed to allow translation of messages. It will automatically detect whether the system already provides the GNU `gettext' functions. If not, the GNU `gettext' own library will be used. This library is wholly contained within this package, usually in the `intl/' subdirectory, so prior installation of the GNU `gettext' package is _not_ required. Installers may use special options at configuration time for changing the default behaviour. The commands: ./configure --with-included-gettext ./configure --disable-nls will respectively bypass any pre-existing `gettext' to use the internationalizing routines provided within this package, or else, _totally_ disable translation of messages. When you already have GNU `gettext' installed on your system and run configure without an option for your new package, `configure' will probably detect the previously built and installed `libintl.a' file and will decide to use this. This might be not what is desirable. You should use the more recent version of the GNU `gettext' library. I.e. if the file `intl/VERSION' shows that the library which comes with this package is more recent, you should use ./configure --with-included-gettext to prevent auto-detection. The configuration process will not test for the `catgets' function and therefore it will not be used. The reason is that even an emulation of `gettext' on top of `catgets' could not provide all the extensions of the GNU `gettext' library. Internationalized packages have usually many `po/LL.po' files, where LL gives an ISO 639 two-letter code identifying the language. Unless translations have been forbidden at `configure' time by using the `--disable-nls' switch, all available translations are installed together with the package. However, the environment variable `LINGUAS' may be set, prior to configuration, to limit the installed set. `LINGUAS' should then contain a space separated list of two-letter codes, stating which languages are allowed. Using This Package ================== As a user, if your language has been installed for this package, you only have to set the `LANG' environment variable to the appropriate `LL_CC' combination. Here `LL' is an ISO 639 two-letter language code, and `CC' is an ISO 3166 two-letter country code. For example, let's suppose that you speak German and live in Germany. At the shell prompt, merely execute `setenv LANG de_DE' (in `csh'), `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). This can be done from your `.login' or `.profile' file, once and for all. You might think that the country code specification is redundant. But in fact, some languages have dialects in different countries. For example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The country code serves to distinguish the dialects. The locale naming convention of `LL_CC', with `LL' denoting the language and `CC' denoting the country, is the one use on systems based on GNU libc. On other systems, some variations of this scheme are used, such as `LL' or `LL_CC.ENCODING'. You can get the list of locales supported by your system for your country by running the command `locale -a | grep '^LL''. Not all programs have translations for all languages. By default, an English message is shown in place of a nonexistent translation. If you understand other languages, you can set up a priority list of languages. This is done through a different environment variable, called `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' for the purpose of message handling, but you still need to have `LANG' set to the primary language; this is required by other parts of the system libraries. For example, some Swedish users who would rather read translations in German than English for when Swedish is not available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. In the `LANGUAGE' environment variable, but not in the `LANG' environment variable, `LL_CC' combinations can be abbreviated as `LL' to denote the language's main dialect. For example, `de' is equivalent to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' (Portuguese as spoken in Portugal) in this context. Translating Teams ================= For the Free Translation Project to be a success, we need interested people who like their own language and write it well, and who are also able to synergize with other translators speaking the same language. Each translation team has its own mailing list. The up-to-date list of teams can be found at the Free Translation Project's homepage, `http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams" area. If you'd like to volunteer to _work_ at translating messages, you should become a member of the translating team for your own language. The subscribing address is _not_ the same as the list itself, it has `-request' appended. For example, speakers of Swedish can send a message to `sv-request@li.org', having this message body: subscribe Keep in mind that team members are expected to participate _actively_ in translations, or at solving translational difficulties, rather than merely lurking around. If your team does not exist yet and you want to start one, or if you are unsure about what to do or how to get started, please write to `translation@iro.umontreal.ca' to reach the coordinator for all translator teams. The English team is special. It works at improving and uniformizing the terminology in use. Proven linguistic skill are praised more than programming skill, here. Available Packages ================== Languages are not equally supported in all packages. The following matrix shows the current state of internationalization, as of December 2003. The matrix shows, in regard of each package, for which languages PO files have been submitted to translation coordination, with a translation percentage of at least 50%. Ready PO files am az be bg ca cs da de el en en_GB eo es +-------------------------------------------+ a2ps | [] [] [] [] | aegis | () | ant-phone | () | anubis | | ap-utils | | bash | [] [] [] [] | batchelor | | bfd | [] [] | binutils | [] [] | bison | [] [] [] | bluez-pin | [] [] | clisp | | clisp | [] [] [] | coreutils | [] [] [] [] | cpio | [] [] [] | darkstat | [] () [] | diffutils | [] [] [] [] [] [] [] | e2fsprogs | [] [] | enscript | [] [] [] [] | error | [] [] [] [] [] | fetchmail | [] () [] [] [] [] | fileutils | [] [] [] | findutils | [] [] [] [] [] [] [] | flex | [] [] [] [] | fslint | | gas | [] | gawk | [] [] [] [] | gbiff | [] | gcal | [] | gcc | [] [] | gettext | [] [] [] [] [] | gettext-examples | [] [] [] | gettext-runtime | [] [] [] [] [] | gettext-tools | [] [] [] | gimp-print | [] [] [] [] [] | gliv | | glunarclock | [] [] | gnubiff | [] | gnucash | [] () [] [] | gnucash-glossary | [] () [] | gnupg | [] () [] [] [] [] | gpe-aerial | [] | gpe-beam | [] [] | gpe-calendar | [] [] | gpe-clock | [] [] | gpe-conf | [] [] | gpe-contacts | [] [] | gpe-edit | [] | gpe-go | [] | gpe-login | [] [] | gpe-ownerinfo | [] [] | gpe-sketchbook | [] [] | gpe-su | [] [] | gpe-taskmanager | [] [] | gpe-timesheet | [] | gpe-today | [] [] | gpe-todo | [] [] | gphoto2 | [] [] [] [] | gprof | [] [] [] | gpsdrive | () () () | gramadoir | [] | grep | [] [] [] [] [] [] | gretl | [] | gtick | () | hello | [] [] [] [] [] [] | id-utils | [] [] | indent | [] [] [] [] | jpilot | [] [] [] | jtag | | jwhois | [] | kbd | [] [] [] [] [] | latrine | () | ld | [] [] | libc | [] [] [] [] [] [] | libgpewidget | [] [] | libiconv | [] [] [] [] [] | lifelines | [] () | lilypond | [] | lingoteach | | lingoteach_lessons | () () | lynx | [] [] [] [] | m4 | [] [] [] [] | mailutils | [] [] | make | [] [] [] | man-db | [] () [] [] () | minicom | [] [] [] | mysecretdiary | [] [] [] | nano | [] () [] [] [] | nano_1_0 | [] () [] [] [] | opcodes | [] | parted | [] [] [] [] [] | ptx | [] [] [] [] [] | python | | radius | [] | recode | [] [] [] [] [] [] [] | rpm | [] [] | screem | | scrollkeeper | [] [] [] [] [] [] | sed | [] [] [] [] [] | sh-utils | [] [] [] | shared-mime-info | | sharutils | [] [] [] [] [] [] | silky | () | skencil | [] () [] | sketch | [] () [] | soundtracker | [] [] [] | sp | [] | tar | [] [] [] [] | texinfo | [] [] [] | textutils | [] [] [] [] | tin | () () | tuxpaint | [] [] [] [] [] [] [] | util-linux | [] [] [] [] [] | vorbis-tools | [] [] [] [] | wastesedge | () | wdiff | [] [] [] [] | wget | [] [] [] [] [] [] | xchat | [] [] [] [] | xfree86_xkb_xml | [] | xpad | [] | +-------------------------------------------+ am az be bg ca cs da de el en en_GB eo es 0 0 8 3 37 38 56 73 15 1 5 12 64 et fa fi fr ga gl he hr hu id is it ja +----------------------------------------+ a2ps | [] [] [] () | aegis | | ant-phone | | anubis | [] | ap-utils | [] | bash | [] [] | batchelor | [] | bfd | [] | binutils | [] [] | bison | [] [] [] [] | bluez-pin | [] [] [] [] [] | clisp | | clisp | [] | coreutils | [] [] [] [] [] [] | cpio | [] [] [] | darkstat | () [] [] [] | diffutils | [] [] [] [] [] [] [] | e2fsprogs | | enscript | [] [] | error | [] [] [] [] | fetchmail | [] | fileutils | [] [] [] [] [] [] | findutils | [] [] [] [] [] [] [] [] [] [] | flex | [] [] | fslint | | gas | [] | gawk | [] [] [] | gbiff | | gcal | [] | gcc | [] | gettext | [] [] | gettext-examples | [] [] | gettext-runtime | [] [] [] [] | gettext-tools | [] [] | gimp-print | [] [] | gliv | () | glunarclock | [] [] [] [] | gnubiff | | gnucash | () [] | gnucash-glossary | [] | gnupg | [] [] [] [] [] [] [] | gpe-aerial | [] | gpe-beam | [] | gpe-calendar | [] [] [] | gpe-clock | [] | gpe-conf | [] | gpe-contacts | [] [] | gpe-edit | [] [] | gpe-go | [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] | gpe-sketchbook | [] | gpe-su | [] | gpe-taskmanager | [] | gpe-timesheet | [] [] [] | gpe-today | [] [] | gpe-todo | [] [] | gphoto2 | [] [] [] | gprof | [] [] | gpsdrive | () [] () () | gramadoir | [] | grep | [] [] [] [] [] [] [] [] [] [] [] | gretl | [] | gtick | [] [] | hello | [] [] [] [] [] [] [] [] [] [] [] [] | id-utils | [] [] [] [] | indent | [] [] [] [] [] [] [] [] [] | jpilot | [] () | jtag | | jwhois | [] [] [] [] | kbd | [] | latrine | | ld | [] | libc | [] [] [] [] [] | libgpewidget | [] [] [] [] | libiconv | [] [] [] [] [] [] [] [] [] | lifelines | () | lilypond | [] | lingoteach | [] [] | lingoteach_lessons | | lynx | [] [] [] [] | m4 | [] [] [] [] | mailutils | | make | [] [] [] [] [] | man-db | () () | minicom | [] [] [] [] | mysecretdiary | [] [] | nano | [] [] [] [] | nano_1_0 | [] [] [] [] | opcodes | [] | parted | [] [] [] | ptx | [] [] [] [] [] [] [] | python | | radius | [] | recode | [] [] [] [] [] [] | rpm | | screem | | scrollkeeper | [] | sed | [] [] [] [] [] [] [] [] [] | sh-utils | [] [] [] [] [] [] [] | shared-mime-info | [] | sharutils | [] [] [] [] [] | silky | [] () | skencil | [] | sketch | [] | soundtracker | [] [] [] [] | sp | [] () | tar | [] [] [] [] [] [] [] [] [] | texinfo | [] [] [] [] | textutils | [] [] [] [] [] | tin | [] () | tuxpaint | [] [] [] [] [] [] [] [] | util-linux | [] [] [] [] () [] | vorbis-tools | [] | wastesedge | () | wdiff | [] [] [] [] [] [] | wget | [] [] [] [] [] [] [] | xchat | [] [] [] | xfree86_xkb_xml | | xpad | [] | +----------------------------------------+ et fa fi fr ga gl he hr hu id is it ja 21 1 25 86 24 24 8 10 38 31 1 23 32 ko lg lt lv ms nb nl nn no pl pt pt_BR ro +-------------------------------------------+ a2ps | () [] [] () () [] [] | aegis | () () | ant-phone | [] [] | anubis | [] [] [] [] [] | ap-utils | [] () [] | bash | [] [] | batchelor | [] | bfd | [] | binutils | | bison | [] [] [] [] | bluez-pin | [] [] [] | clisp | | clisp | [] | coreutils | [] | cpio | [] [] [] [] [] | darkstat | [] [] [] [] | diffutils | [] [] [] [] | e2fsprogs | [] | enscript | [] [] [] | error | [] [] [] | fetchmail | [] [] () | fileutils | [] [] | findutils | [] [] [] [] [] | flex | [] [] [] [] | fslint | [] [] | gas | | gawk | [] [] [] | gbiff | [] [] | gcal | | gcc | | gettext | [] [] [] | gettext-examples | [] [] | gettext-runtime | [] [] [] | gettext-tools | [] [] [] | gimp-print | [] | gliv | [] [] [] | glunarclock | [] [] [] | gnubiff | | gnucash | [] [] () | gnucash-glossary | [] [] | gnupg | [] | gpe-aerial | [] [] [] | gpe-beam | [] [] [] | gpe-calendar | [] [] [] | gpe-clock | [] [] [] | gpe-conf | [] [] [] | gpe-contacts | [] [] [] | gpe-edit | [] [] [] | gpe-go | [] [] | gpe-login | [] [] [] | gpe-ownerinfo | [] [] [] | gpe-sketchbook | [] [] [] | gpe-su | [] [] [] | gpe-taskmanager | [] [] [] | gpe-timesheet | [] [] [] | gpe-today | [] [] [] | gpe-todo | [] [] [] | gphoto2 | [] | gprof | [] [] | gpsdrive | () () () [] | gramadoir | [] | grep | [] [] [] [] | gretl | | gtick | [] [] | hello | [] [] [] [] [] [] [] [] [] [] | id-utils | [] [] [] | indent | [] [] [] | jpilot | () () | jtag | | jwhois | [] [] [] [] | kbd | [] [] [] | latrine | [] | ld | | libc | [] [] [] [] [] | libgpewidget | [] [] [] | libiconv | [] [] [] [] | lifelines | | lilypond | | lingoteach | | lingoteach_lessons | | lynx | [] [] | m4 | [] [] [] [] | mailutils | [] [] | make | [] [] [] [] | man-db | [] | minicom | [] [] [] | mysecretdiary | [] [] [] | nano | [] [] [] [] | nano_1_0 | [] [] [] [] [] | opcodes | [] [] | parted | [] [] [] [] | ptx | [] [] [] [] [] [] [] | python | | radius | [] | recode | [] [] [] | rpm | [] [] | screem | | scrollkeeper | [] [] [] [] | sed | [] [] [] | sh-utils | [] | shared-mime-info | [] | sharutils | [] | silky | | skencil | [] [] | sketch | [] [] | soundtracker | | sp | | tar | [] [] [] [] [] [] | texinfo | [] [] [] | textutils | [] [] | tin | | tuxpaint | [] [] [] [] [] [] [] [] [] | util-linux | [] [] | vorbis-tools | [] [] | wastesedge | | wdiff | [] [] [] [] | wget | [] [] | xchat | [] [] | xfree86_xkb_xml | [] | xpad | [] [] | +-------------------------------------------+ ko lg lt lv ms nb nl nn no pl pt pt_BR ro 12 0 1 2 12 10 60 4 4 38 25 35 76 ru sk sl sr sv ta tr uk vi wa zh_CN zh_TW +-------------------------------------------+ a2ps | [] [] [] [] [] | 16 aegis | () | 0 ant-phone | | 2 anubis | [] [] [] | 9 ap-utils | () | 3 bash | [] | 9 batchelor | | 2 bfd | [] [] | 6 binutils | [] [] [] | 7 bison | [] [] [] | 14 bluez-pin | [] [] [] | 13 clisp | | 0 clisp | | 5 coreutils | [] [] [] [] [] | 16 cpio | [] [] [] | 14 darkstat | [] [] [] () () | 12 diffutils | [] [] [] [] | 22 e2fsprogs | [] [] | 5 enscript | [] [] [] | 12 error | [] [] [] | 15 fetchmail | [] [] [] | 11 fileutils | [] [] [] [] [] [] | 17 findutils | [] [] [] [] [] [] [] | 29 flex | [] [] [] | 13 fslint | | 2 gas | [] | 3 gawk | [] [] | 12 gbiff | | 3 gcal | [] [] | 4 gcc | [] | 4 gettext | [] [] [] [] [] [] | 16 gettext-examples | [] [] [] [] | 11 gettext-runtime | [] [] [] [] [] [] [] [] [] | 21 gettext-tools | [] [] [] [] [] [] | 14 gimp-print | [] [] | 10 gliv | | 3 glunarclock | [] [] [] [] | 13 gnubiff | | 1 gnucash | [] [] [] | 9 gnucash-glossary | [] [] [] | 8 gnupg | [] [] [] [] | 17 gpe-aerial | [] [] | 7 gpe-beam | [] [] | 8 gpe-calendar | [] [] [] [] [] | 13 gpe-clock | [] [] [] [] | 10 gpe-conf | [] [] [] | 9 gpe-contacts | [] [] [] [] | 11 gpe-edit | [] [] [] [] [] [] | 12 gpe-go | [] | 5 gpe-login | [] [] [] [] [] [] | 13 gpe-ownerinfo | [] [] [] [] [] | 13 gpe-sketchbook | [] [] [] | 9 gpe-su | [] [] [] [] | 10 gpe-taskmanager | [] [] [] [] | 10 gpe-timesheet | [] [] [] [] [] | 12 gpe-today | [] [] [] [] [] [] | 13 gpe-todo | [] [] [] [] [] | 12 gphoto2 | [] [] [] | 11 gprof | [] [] | 9 gpsdrive | [] [] | 4 gramadoir | | 3 grep | [] [] [] [] [] | 26 gretl | | 2 gtick | [] | 5 hello | [] [] [] [] [] | 33 id-utils | [] [] [] | 12 indent | [] [] [] [] [] | 21 jpilot | [] [] [] [] [] | 9 jtag | [] | 1 jwhois | () () [] [] | 11 kbd | [] [] | 11 latrine | | 1 ld | [] [] | 5 libc | [] [] [] [] | 20 libgpewidget | [] [] [] [] | 13 libiconv | [] [] [] [] [] [] [] [] [] | 27 lifelines | [] | 2 lilypond | [] | 3 lingoteach | | 2 lingoteach_lessons | () | 0 lynx | [] [] [] [] | 14 m4 | [] [] [] | 15 mailutils | [] | 5 make | [] [] [] [] | 16 man-db | [] | 5 minicom | [] | 11 mysecretdiary | [] [] | 10 nano | [] [] [] [] [] | 17 nano_1_0 | [] [] [] [] | 17 opcodes | [] [] | 6 parted | [] [] [] | 15 ptx | [] [] [] | 22 python | | 0 radius | [] | 4 recode | [] [] [] [] | 20 rpm | [] [] [] | 7 screem | [] [] | 2 scrollkeeper | [] [] [] [] | 15 sed | [] [] [] [] [] [] | 23 sh-utils | [] [] [] | 14 shared-mime-info | [] [] | 4 sharutils | [] [] [] [] [] | 17 silky | () | 2 skencil | [] | 6 sketch | [] | 6 soundtracker | [] [] | 9 sp | [] | 3 tar | [] [] [] [] [] | 24 texinfo | [] [] [] [] | 14 textutils | [] [] [] [] [] | 16 tin | | 1 tuxpaint | [] [] [] [] [] | 29 util-linux | [] [] [] | 15 vorbis-tools | [] | 8 wastesedge | | 0 wdiff | [] [] [] [] | 18 wget | [] [] [] [] [] [] [] [] | 23 xchat | [] [] [] [] [] | 14 xfree86_xkb_xml | [] [] [] [] [] [] | 8 xpad | | 4 +-------------------------------------------+ 51 teams ru sk sl sr sv ta tr uk vi wa zh_CN zh_TW 120 domains 59 42 16 25 81 0 56 12 1 10 21 22 1260 Some counters in the preceding matrix are higher than the number of visible blocks let us expect. This is because a few extra PO files are used for implementing regional variants of languages, or language dialects. For a PO file in the matrix above to be effective, the package to which it applies should also have been internationalized and distributed as such by its maintainer. There might be an observable lag between the mere existence a PO file and its wide availability in a distribution. If December 2003 seems to be old, you may fetch a more recent copy of this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix with full percentage details can be found at `http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'. Using `gettext' in new packages =============================== If you are writing a freely available program and want to internationalize it you are welcome to use GNU `gettext' in your package. Of course you have to respect the GNU Library General Public License which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared library, whereas only free software can use `libintl' as a static library or use modified versions of `libintl'. Once the sources are changed appropriately and the setup can handle the use of `gettext' the only thing missing are the translations. The Free Translation Project is also available for packages which are not developed inside the GNU project. Therefore the information given above applies also for every other Free Software Project. Contact `translation@iro.umontreal.ca' to make the `.pot' files available to the translation teams. mp3splt-gtk-0.7.2/ChangeLog0000644000175000017500000003444211753276711012421 00000000000000Check http://mp3splt.sourceforge.net for the latest release. Please read the ChangeLog of libmp3splt for more information. Some changes are implemented in libmp3splt, but reported here for convenience. ------------------------------------------------------------- mp3splt-gtk version 0.7.2 - fixed an important bug of memory leak in player drawing when using GTK+-2 - fixed bug not showing icon and image in the about dialog - fix for the '--disable-gtk3' option; also fixed the gtk 2.x/3.x check - made some player graphic optimisations - added player refresh rate option in Preferences->Player - added expanders to the player history and player splitpoints view - we don't need gtk 2 version >= 2.20; changed it to 2.18 ------------------------------------------------------------- mp3splt-gtk version 0.7.1 - added minimum track length option for silence scan - closes #2393766 - added gtk3 support (auto detection or --enable-gtk3, --disable-gtk3) - almost closes #3385903 (some tests still need to be done) - fixed #3385841 - removed scrollkeeper warnings - fixed #3385827 - added --disable-doxygen_doc - fixed #3385829 - building doxygen documentation by itself + installing doxygen files - fixed #3385833 - don't apply debugging flags or warnings flags by default: added --enable-c-debug --enable-optimise --enable-extra-warnings - added support for multiple ogg/vorbis logical streams (mail) (libmp3splt) - fixed mp3 frame mode with skippoint when skippoint too small (on the same frame as previous) (libmp3splt) - fixed several audacity labels issues (libmp3splt) - fixed some regression regarding mp3splt v2.1c - removed some checks relative to the total time - we cannot rely on the total time - for example with concatenated mp3s (libmp3splt) ------------------------------------------------------------- mp3splt-gtk version 0.7 - added trimming using silence detection - fixed bug #3034474: genre tag problem + original tags are now correctly copied, with two exceptions: (libmp3splt) * only one artist, album, title are supported * for mp3's, the total tracknumber is not yet supported - fixed bug: don't show split files when setting silence splitpoints or trim splitpoints - fixed #3355210 - gtk not intuitive - split button with text and shadow - fixed windows bug to take translations from the current directory (+libmp3splt) - fixed windows bug with wide characters in directory path of executable (+libmp3splt) ------------------------------------------------------------- mp3splt-gtk version 0.6.1a - fixed tracktype.org issue (libmp3splt) ------------------------------------------------------------- mp3splt-gtk version 0.6.1 - new CUE export: save current state - #3101612 & #1763318 - new gnome help - new player buttons svg images + new program icon - added experimental option - splitpoint names from filename - added back the silence split mode for batch processing - support for setting tags from filename regular expression - keep browsing path - related to #1353726 - new option '-d' to specify the output directory from the command line - specify input filenames from the command line - #3108936 - remember screen size and position - #2991763 - a file/open menu entry - #3108935 - fixed pcre bug #3134156 - fixed windows bug #3118436: LiveP freezing GUI - fixed bug #3105771: uppercase filters - doxygen documentation - registering the program in the system's mimetype database. - more translations (project mp3splt-gtk on transifex) - added --with-no-images_dir to mp3splt-gtk configure, in order to run the application with the new icons without installing - added genre tag to custom tags and to output format (libmp3splt) - support for the FILE attribute in CUE files - #1353726 (libmp3splt) - fixed CUE import bug - spaces at the end are now correctly wiped out (libmp3splt) - fixed bug #3114384: introduced back the 'file might be VBR' warning (libmp3splt) - fixed bug #3034474: genre tag problems (libmp3splt) - fixed ogg stream issues - #2861898 & #1078018 (libmp3splt) - fixed bug: setting the saved end time on wrong splitpoint indexes (libmp3splt) ------------------------------------------------------------- mp3splt-gtk version 0.6 - fixed important bug with tags and multiple files split - fixed auto adjusting when splitting in equal parts - fixed bug #3028775 & #3028078: naming conventions for files > 100 minutes confuses sort (libmp3splt) - fixed bug #3025671: getting original ID3v2 tags was not working on Windows (libmp3splt) - fixed bug #2969223: 'invalid dir I:' (libmp3splt) - added > 2Gb support on Windows (libmp3splt) mp3splt-gtk version (Next) - Made the gui more gnome-like (help/contents menu entry, File/open dialog that is redundand since there is a "browse" button as well) ------------------------------------------------------------- mp3splt-gtk version 0.5.9 - added split in equal time tracks mode - fixed important problem with ogg comments not written in the output files (related to #2925104) (libmp3splt) ------------------------------------------------------------- mp3splt-gtk version 0.5.8a - fixed ogg streams stdin time mode bug (libmp3splt) ------------------------------------------------------------- mp3splt-gtk version 0.5.8 - removed CDDB & CUE tab & added 'Import...' in the 'File' menu - added audacity labels support - fixed bug #2844232: Desktop folder not found in localized Windows - fixed bug #2861898: no amplitude wave with ogg streams (one point still remains) - fixed bug with wrong time on silence level detection for mp3 streams (libmp3splt) - fixed bug with sync error mode & output format (not creating output files) (libmp3splt) - fixed important bug with the 'rm' parameter - SPLT_SKIPPOINT in general (libmp3splt) - fixed issue with mp3 frame mode: frame mode is not any more enabled by default (libmp3splt) - fixed mp3 non seekable stdin bug (libmp3splt) - fixed bug #1078018 with ogg negative granulepos packets (libmp3splt) - fixed ogg streams bug #2801293 (libmp3splt) - both ID3v1 & ID3v2 are now written if the input file contains both (libmp3splt) - small adjustment on the mp3 seekable non frame mode & non seekable frame mode (libmp3splt) - removed unuseful 'frame mode enabled' message for dewrapping & sync error mode (libmp3splt) - fixed bug #2881113: crash when no genre (libmp3splt) - fixed cue mode bug when no PERFORMER or TITLE (libmp3splt) ------------------------------------------------------------- mp3splt-gtk version 0.5.7a - fixed important regression bug with the gap parameter of auto adjust (libmp3splt) ------------------------------------------------------------- mp3splt-gtk version 0.5.7 - major GUI usability improvements - multiple files split : split recursively files from directories - added basic Drag & Drop support for .mp3, .ogg, .cue, .cddb files - turned upside down silence wave & optimizations - added option in the GUI to create directories from filenames - added messages history window - updated french translation & added german translation - improved preferences to save automatically + saving the split mode state - added default UTF-8 encoding on all OSes - removed the language chooser in the preferences on most OSes - removed the 'input not seekable' option from the preferences - added patch for output format variables @u, @U, @l, @L (libmp3splt) - added support to output both ID3v1 and ID3v2 tags - fixed bug #2809816 with cue file : artist tags were the same (libmp3splt) - fixed important bug when detecting the total time : the last split file was shorter (libmp3splt) - fixed compilation bug for libmp3splt detection to look for 'libmp3splt/mp3splt.h' instead of mp3splt.h (libmp3splt) - tweaked --enable-xxx and --disable-xxx options to act correctly : --enable-gstreamer was acting like --disable-gstreamer ------------------------------------------------------------- mp3splt-gtk version 0.5.6 libmp3splt fixes : - Xing header is now written even if 'No tags' option is used - fixed dewrap error message - fixed dewrap bug to not attempt to create output directories - fixed minor bug #2790952 : time mode creating an empty file (at the end) ------------------------------------------------------------- mp3splt-gtk version 0.5.5 - IMPORTANT : by default gstreamer and audacious are now enabled for mp3splt-gtk : configure options changed from --enable-gstreamer to --disable-gstreamer and from --enable-audacious to --disable-audacious - fixed issue with CUE file not being imported correctly : \r and \n problem (bug #2778717) - fixed bug #2691576 - CUE file seg fault if no artist - added a basic mp3splt-gtk man page - removed encoding from '.desktop' file - added --with-mp3splt(-libraries|-includes)?, --disable-mp3splttest configure options ------------------------------------------------------------- mp3splt-gtk version 0.5.4 - added the tags version option in the Preferences->Split : if to split using the version of the original file, to force ID3v2 or ID3v1 output - fixed CUE & CDDB not always setting the correct number of digits for @n in the GUI - fixed all tags/filenames "unicode" encoding issues on windows ------------------------------------------------------------- mp3splt-gtk version 0.5.3 - moved 'silence split' in the 'splitpoints' tab to set the splitpoints from silence detection before splitting the file - added a silence wave in the player - added 'skippoint' option : allows the user to skip some splitpoints from creating the split file if the 'Keep' column is unchecked in the 'splitpoints' tab - created a completely new windows installer allowing to install only some components and to uninstall only the installed files - fixed the 'quit' button which did not always quit - fixed playlist hide on player change - fixed bug #2407192 : 'mp3splt-gtk loose the last split file with CUE files' - fixed an error coding in the gstreamer player infos - removed most of the warnings from the compilation (+ removed unuseful and dangerous casts) - small renames in the gtk player tab help ------------------------------------------------------------- mp3splt-gtk version 0.5.2 - released to follow the same version with libmp3splt ------------------------------------------------------------- mp3splt-gtk version 0.5.1 - implemented 'internal' player using gstreamer ------------------------------------------------------------- mp3splt-gtk version 0.5 - Beep Media Player has been dropped for Audacious - moved the filename entry and browse button on top of all tabs - fixed bug when pushing the 'Close' button in the About window - added mp3splt-gtk.desktop ------------------------------------------------------------- mp3splt-gtk version 0.4_rc1 - no major change; changed code to follow libmp3splt API ------------------------------------------------------------- mp3splt-gtk version 0.3.1 -fixes important bugs with the tags, the user can now choose to put the original tags, cddb or cue tags or no tags -the update splitpoints was optimised, no more trouble when we have many splitpoints -the split files tab can erase multiple selected files or all the files -important bug fix with the output filename for cddb and cue ------------------------------------------------------------- mp3splt-gtk version 0.3 -progress bar when splitting -support for stopping the split process -advanced player progress bar with possibility to move, select, erase and play preview the splitpoints -output support for cddb and cue (includes freedb) -more user friendly (does not "block" anymore, it uses threads) -bug fixes ------------------------------------------------------------- mp3splt-gtk version 0.2.1 -this is a stable release -it is mainly a bug fix release, many many bugs were fixed -play preview and split preview added -length column in the split tab added -split in the same directory as the song support -added a search button on the freedb tab -please update your snackAmp version with the latest testing version, bugs have been solved in snackAmp ------------------------------------------------------------- mp3splt-gtk version 0.2 -snackamp player support both on GNU/Linux and Windows -download and install snackamp : http://snackamp.sourceforge.net/ Make sure to download snackamp version >= 3.1.3 -to get the player working, you have to go to Tools->Preferences->Miscellaneous from the snackamp menu and check "Enable Socket Interface" -only default port is supported for now(8775) -after that, restart snackamp and mp3splt-gtk should work -snackamp is the default player for now, and beep media player is no longer compiled as default. To enable it you have to compile with beep media player support : "./configure --enable-bmp" -xmms is no longer supported (however, compiling with beep media player library supports xmms) -windows installer -debian package added -compiles with gcc-4.0.1 without warnings -some icons stuff -some bugs fixed -wrap mode split -error mode split(mp3) -time split -silence auto detection split -auto-adjust silence split -frame mode option -input not seekable option ------------------------------------------------------------- mp3splt-gtk version 0.1.4 -zoom progress bar with splitpoints added for the player -cddb file and cue file support added -freedb support added -split and give name for the split files -all code revised -player optimised -bugs fixed ------------------------------------------------------------- mp3splt-gtk version 0.1.3 -fixes mp3 VBR bug -support for internationalization and translation to french. You can now easily translate mp3splt-gtk in your language. -added support for hundredth of seconds -better version of the player progress bar and the player volume bar -some other minor changes ------------------------------------------------------------- mp3splt-gtk version 0.1.2 - fixes major bugs - added support for beep-media-player and made as default at compiling - created preferences tab - ability to choose the directory for split files - moved choose player to preferences tab - created split files tab where you can see split files, and erase them or listen them by click - also support for queuing split files to player - detachable player, splitpoints ... added - added support for saving preferences in .mp3splt-gtk directory ..... autoloading ... ------------------------------------------------------------- mp3splt-gtk version 0.1.1 - this is the first release, no change from the last version :) however, the version supports : -integrated xmms player control -supports mp3 and ogg split with unlimited splipoints for a song mp3splt-gtk-0.7.2/COPYING0000664000175000017500000004311011235156561011667 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License.