We truncated the diff of some files because they were too big.
If you want to see the full diff for every file, click here.
Changes of Revision 11
freetuxtv.changes
Added
x
1
2
+-------------------------------------------------------------------
3
+Mon Jan 27 13:41:26 UTC 2014 - guillaume@opensuse.org
4
+
5
+- Clean-up spec file
6
+- Now use GTK-3 when available since GTK-2 build is broken
7
+
8
+-------------------------------------------------------------------
9
+Mon Jan 27 13:21:05 UTC 2014 - guillaume@opensuse.org
10
+
11
+- Update to FreetuxTV 0.6.6 (2014-01-18):
12
+ - Use correctly libvlc options
13
+ - Add Turkish translation
14
+ - Add Spanish translation
15
+ - Add missing logo size
16
+ - Download icons options
17
+
18
+-------------------------------------------------------------------
19
+Mon Jan 27 13:20:03 UTC 2014 - guillaume@opensuse.org
20
+
21
+- Move changelog from *.spec file to *.changes file
22
+
23
+-------------------------------------------------------------------
24
+Wed Apr 18 2012 - Benjamin Denisart <p.drouand@gmail.com>
25
+
26
+- Freetuxtv version 0.6.3
27
+
28
+-------------------------------------------------------------------
29
+Sun Mar 21 2010 - Gilles Sabourin <gilles.sabourin@free.fr>
30
+
31
+- Freetuxtv version 0.4.2
32
+
33
+-------------------------------------------------------------------
34
+Sat Dec 12 2009 - Gilles Sabourin <gilles.sabourin@free.fr>
35
+
36
+- Freetuxtv version 0.4.0
37
+
38
+-------------------------------------------------------------------
39
+Wed Aug 26 2009 - Gilles Sabourin <gilles.sabourin@free.fr>
40
+
41
+- Source is bziped
42
+- Freetuxtv version 0.3.0
43
+
44
+-------------------------------------------------------------------
45
+Sun Jan 18 2009 - Gilles Sabourin <gilles.sabourin@free.fr>
46
+
47
+- Added norootforbuild directive
48
+
49
+-------------------------------------------------------------------
50
+Tue Nov 11 2008 - Gilles Sabourin <gilles.sabourin@free.fr>
51
+
52
+- Initial build for openSUSE 11.0
53
freetuxtv.spec
Changed
95
1
2
# norootforbuild
3
%define vlcbetadev %(rpm -q --quiet vlc-beta-devel ; if test $? != 0 ; then echo 0 ; else echo 1 ; fi )
4
5
-Summary: Player Free / Neuf TV
6
-Name: freetuxtv
7
-Version: 0.6.5
8
-Release: 1
9
+%if 0%{?suse_version} < 1220
10
+# openSUSE before 12.2 has only GTK-2 and no GTK-3
11
+%define gtk_version 2
12
+%else
13
+%define gtk_version 3
14
+%endif
15
+
16
+Summary: Player Free / Neuf TV
17
+Name: freetuxtv
18
+Version: 0.6.6
19
+Release: 0
20
Source: %{name}-%{version}.tar.gz
21
License: GPL-2.0
22
Url: http://code.google.com/p/freetuxtv/
23
-Group: Productivity/Multimedia/Video/Players
24
-BuildRoot: %{_tmppath}/%{name}-%{version}-build
25
-BuildRequires: gtk2-devel >= 2.12 glib2-devel >= 2.16 libglade2-devel >= 2.6
26
-BuildRequires: libcurl-devel >= 7.16.4 sqlite3-devel > 3.4.0
27
-BuildRequires: dbus-1-glib-devel >= 0.74
28
-BuildRequires: libgthread-2_0-0
29
-BuildRequires: gettext-devel libstdc++-devel
30
-BuildRequires: vlc-devel >= 2.0
31
-BuildRequires: intltool
32
+Group: Productivity/Multimedia/Video/Players
33
+BuildRoot: %{_tmppath}/%{name}-%{version}-build
34
+%if %{gtk_version} == 2
35
+BuildRequires: gtk2-devel >= 2.12
36
+%else
37
+BuildRequires: gtk3-devel
38
+%endif
39
+BuildRequires: glib2-devel >= 2.16 libglade2-devel >= 2.6
40
+BuildRequires: libcurl-devel >= 7.18.0 sqlite3-devel > 3.4.0
41
+BuildRequires: dbus-1-glib-devel >= 0.74
42
+BuildRequires: libgthread-2_0-0
43
+BuildRequires: gettext-devel libstdc++-devel
44
+BuildRequires: vlc-devel >= 2.0
45
+BuildRequires: intltool
46
BuildRequires: autoconf
47
BuildRequires: libtool
48
BuildRequires: automake
49
50
51
%build
52
53
-./autogen.sh --prefix=%{_prefix} --libdir=%{_libdir} --with-gtk=2.0
54
+%configure \
55
+%if %{gtk_version} == 2
56
+ --with-gtk=2.0
57
+%else
58
+ --with-gtk=3.0
59
+%endif
60
make %{?_smp_mflags}
61
62
63
64
%find_lang %{name}
65
rm -r %{buildroot}/%{_datadir}/%{name}/doc
66
67
-%clean
68
-rm -rf "$RPM_BUILD_ROOT"
69
-
70
71
%files
72
%defattr(-,root,root)
73
74
%defattr(-,root,root,-)
75
76
%changelog
77
-* Wed Apr 18 2012 - Benjamin Denisart <p.drouand@gmail.com>
78
-- Freetuxtv version 0.6.3
79
-
80
-* Sun Mar 21 2010 - Gilles Sabourin <gilles.sabourin@free.fr>
81
-- Freetuxtv version 0.4.2
82
-
83
-* Sat Dec 12 2009 - Gilles Sabourin <gilles.sabourin@free.fr>
84
-- Freetuxtv version 0.4.0
85
-
86
-* Wed Aug 26 2009 - Gilles Sabourin <gilles.sabourin@free.fr>
87
-- Source is bziped
88
-- Freetuxtv version 0.3.0
89
-
90
-* Sun Jan 18 2009 - Gilles Sabourin <gilles.sabourin@free.fr>
91
-- Added norootforbuild directive
92
-
93
-* Tue Nov 11 2008 - Gilles Sabourin <gilles.sabourin@free.fr>
94
-- Initial build for openSUSE 11.0
95
freetuxtv-0.6.5.tar.gz/mkinstalldirs
Deleted
164
1
2
-#! /bin/sh
3
-# mkinstalldirs --- make directory hierarchy
4
-
5
-scriptversion=2009-04-28.21; # UTC
6
-
7
-# Original author: Noah Friedman <friedman@prep.ai.mit.edu>
8
-# Created: 1993-05-16
9
-# Public domain.
10
-#
11
-# This file is maintained in Automake, please report
12
-# bugs to <bug-automake@gnu.org> or send patches to
13
-# <automake-patches@gnu.org>.
14
-
15
-nl='
16
-'
17
-IFS=" "" $nl"
18
-errstatus=0
19
-dirmode=
20
-
21
-usage="\
22
-Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ...
23
-
24
-Create each directory DIR (with mode MODE, if specified), including all
25
-leading file name components.
26
-
27
-Report bugs to <bug-automake@gnu.org>."
28
-
29
-# process command line arguments
30
-while test $# -gt 0 ; do
31
- case $1 in
32
- -h | --help | --h*) # -h for help
33
- echo "$usage"
34
- exit $?
35
- ;;
36
- -m) # -m PERM arg
37
- shift
38
- test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
39
- dirmode=$1
40
- shift
41
- ;;
42
- --version)
43
- echo "$0 $scriptversion"
44
- exit $?
45
- ;;
46
- --) # stop option processing
47
- shift
48
- break
49
- ;;
50
- -*) # unknown option
51
- echo "$usage" 1>&2
52
- exit 1
53
- ;;
54
- *) # first non-opt arg
55
- break
56
- ;;
57
- esac
58
-done
59
-
60
-for file
61
-do
62
- if test -d "$file"; then
63
- shift
64
- else
65
- break
66
- fi
67
-done
68
-
69
-case $# in
70
- 0) exit 0 ;;
71
-esac
72
-
73
-# Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and
74
-# mkdir -p a/c at the same time, both will detect that a is missing,
75
-# one will create a, then the other will try to create a and die with
76
-# a "File exists" error. This is a problem when calling mkinstalldirs
77
-# from a parallel make. We use --version in the probe to restrict
78
-# ourselves to GNU mkdir, which is thread-safe.
79
-case $dirmode in
80
- '')
81
- if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
82
- echo "mkdir -p -- $*"
83
- exec mkdir -p -- "$@"
84
- else
85
- # On NextStep and OpenStep, the `mkdir' command does not
86
- # recognize any option. It will interpret all options as
87
- # directories to create, and then abort because `.' already
88
- # exists.
89
- test -d ./-p && rmdir ./-p
90
- test -d ./--version && rmdir ./--version
91
- fi
92
- ;;
93
- *)
94
- if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
95
- test ! -d ./--version; then
96
- echo "mkdir -m $dirmode -p -- $*"
97
- exec mkdir -m "$dirmode" -p -- "$@"
98
- else
99
- # Clean up after NextStep and OpenStep mkdir.
100
- for d in ./-m ./-p ./--version "./$dirmode";
101
- do
102
- test -d $d && rmdir $d
103
- done
104
- fi
105
- ;;
106
-esac
107
-
108
-for file
109
-do
110
- case $file in
111
- /*) pathcomp=/ ;;
112
- *) pathcomp= ;;
113
- esac
114
- oIFS=$IFS
115
- IFS=/
116
- set fnord $file
117
- shift
118
- IFS=$oIFS
119
-
120
- for d
121
- do
122
- test "x$d" = x && continue
123
-
124
- pathcomp=$pathcomp$d
125
- case $pathcomp in
126
- -*) pathcomp=./$pathcomp ;;
127
- esac
128
-
129
- if test ! -d "$pathcomp"; then
130
- echo "mkdir $pathcomp"
131
-
132
- mkdir "$pathcomp" || lasterr=$?
133
-
134
- if test ! -d "$pathcomp"; then
135
- errstatus=$lasterr
136
- else
137
- if test ! -z "$dirmode"; then
138
- echo "chmod $dirmode $pathcomp"
139
- lasterr=
140
- chmod "$dirmode" "$pathcomp" || lasterr=$?
141
-
142
- if test ! -z "$lasterr"; then
143
- errstatus=$lasterr
144
- fi
145
- fi
146
- fi
147
- fi
148
-
149
- pathcomp=$pathcomp/
150
- done
151
-done
152
-
153
-exit $errstatus
154
-
155
-# Local Variables:
156
-# mode: shell-script
157
-# sh-indentation: 2
158
-# eval: (add-hook 'write-file-hooks 'time-stamp)
159
-# time-stamp-start: "scriptversion="
160
-# time-stamp-format: "%:y-%02m-%02d.%02H"
161
-# time-stamp-time-zone: "UTC"
162
-# time-stamp-end: "; # UTC"
163
-# End:
164
freetuxtv-0.6.5.tar.gz/ChangeLog -> freetuxtv-0.6.6.tar.gz/ChangeLog
Changed
12
1
2
+FreetuxTV 0.6.6 (2014-01-18)
3
+ - Use correctly libvlc options
4
+ - Add Turkish translation
5
+ - Add Spanish translation
6
+ - Add missing logo size
7
+ - Download icons options
8
+
9
FreetuxTV 0.6.5 (2012-05-08)
10
- Fix crash when displaying channels group
11
- Use defined bug tracker URL in configure.ac
12
freetuxtv-0.6.5.tar.gz/Makefile.in -> freetuxtv-0.6.6.tar.gz/Makefile.in
Changed
201
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
@SET_MAKE@
16
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = .
70
-DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
71
- $(srcdir)/Makefile.in $(srcdir)/config.h.in \
72
- $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
73
- compile config.guess config.sub depcomp install-sh ltmain.sh \
74
- missing mkinstalldirs
75
+DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
76
+ $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
77
+ $(top_srcdir)/configure $(am__configure_deps) \
78
+ $(srcdir)/config.h.in COPYING compile config.guess config.sub \
79
+ install-sh missing ltmain.sh
80
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
81
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
82
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
83
$(ACLOCAL_M4)
84
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
85
configure.lineno config.status.lineno
86
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
87
+mkinstalldirs = $(install_sh) -d
88
CONFIG_HEADER = config.h
89
CONFIG_CLEAN_FILES =
90
CONFIG_CLEAN_VPATH_FILES =
91
+AM_V_P = $(am__v_P_@AM_V@)
92
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
93
+am__v_P_0 = false
94
+am__v_P_1 = :
95
+AM_V_GEN = $(am__v_GEN_@AM_V@)
96
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
97
+am__v_GEN_0 = @echo " GEN " $@;
98
+am__v_GEN_1 =
99
+AM_V_at = $(am__v_at_@AM_V@)
100
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
101
+am__v_at_0 = @
102
+am__v_at_1 =
103
SOURCES =
104
DIST_SOURCES =
105
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
106
- html-recursive info-recursive install-data-recursive \
107
- install-dvi-recursive install-exec-recursive \
108
- install-html-recursive install-info-recursive \
109
- install-pdf-recursive install-ps-recursive install-recursive \
110
- installcheck-recursive installdirs-recursive pdf-recursive \
111
- ps-recursive uninstall-recursive
112
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
113
+ ctags-recursive dvi-recursive html-recursive info-recursive \
114
+ install-data-recursive install-dvi-recursive \
115
+ install-exec-recursive install-html-recursive \
116
+ install-info-recursive install-pdf-recursive \
117
+ install-ps-recursive install-recursive installcheck-recursive \
118
+ installdirs-recursive pdf-recursive ps-recursive \
119
+ tags-recursive uninstall-recursive
120
+am__can_run_installinfo = \
121
+ case $$AM_UPDATE_INFO_DIR in \
122
+ n|no|NO) false;; \
123
+ *) (install-info --version) >/dev/null 2>&1;; \
124
+ esac
125
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
126
am__vpath_adj = case $$p in \
127
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
128
129
DATA = $(freetuxtvdoc_DATA)
130
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
131
distclean-recursive maintainer-clean-recursive
132
-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
133
- $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
134
- distdir dist dist-all distcheck
135
+am__recursive_targets = \
136
+ $(RECURSIVE_TARGETS) \
137
+ $(RECURSIVE_CLEAN_TARGETS) \
138
+ $(am__extra_recursive_targets)
139
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
140
+ cscope distdir dist dist-all distcheck
141
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
142
+ $(LISP)config.h.in
143
+# Read a list of newline-separated strings from the standard input,
144
+# and print each of them once, without duplicates. Input order is
145
+# *not* preserved.
146
+am__uniquify_input = $(AWK) '\
147
+ BEGIN { nonempty = 0; } \
148
+ { items[$$0] = 1; nonempty = 1; } \
149
+ END { if (nonempty) { for (i in items) print i; }; } \
150
+'
151
+# Make sure the list of sources is unique. This is necessary because,
152
+# e.g., the same source file might be shared among _SOURCES variables
153
+# for different programs/libraries.
154
+am__define_uniq_tagged_files = \
155
+ list='$(am__tagged_files)'; \
156
+ unique=`for i in $$list; do \
157
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
158
+ done | $(am__uniquify_input)`
159
ETAGS = etags
160
CTAGS = ctags
161
+CSCOPE = cscope
162
DIST_SUBDIRS = $(SUBDIRS)
163
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
164
distdir = $(PACKAGE)-$(VERSION)
165
166
&& rm -rf "$(distdir)" \
167
|| { sleep 5 && rm -rf "$(distdir)"; }; \
168
else :; fi
169
+am__post_remove_distdir = $(am__remove_distdir)
170
am__relativize = \
171
dir0=`pwd`; \
172
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
173
174
reldir="$$dir2"
175
DIST_ARCHIVES = $(distdir).tar.gz
176
GZIP_ENV = --best
177
+DIST_TARGETS = dist-gzip
178
distuninstallcheck_listfiles = find . -type f -print
179
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
180
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
181
182
-rm -f libtool config.lt
183
install-freetuxtvdocDATA: $(freetuxtvdoc_DATA)
184
@$(NORMAL_INSTALL)
185
- test -z "$(freetuxtvdocdir)" || $(MKDIR_P) "$(DESTDIR)$(freetuxtvdocdir)"
186
@list='$(freetuxtvdoc_DATA)'; test -n "$(freetuxtvdocdir)" || list=; \
187
+ if test -n "$$list"; then \
188
+ echo " $(MKDIR_P) '$(DESTDIR)$(freetuxtvdocdir)'"; \
189
+ $(MKDIR_P) "$(DESTDIR)$(freetuxtvdocdir)" || exit 1; \
190
+ fi; \
191
for p in $$list; do \
192
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
193
echo "$$d$$p"; \
194
195
dir='$(DESTDIR)$(freetuxtvdocdir)'; $(am__uninstall_files_from_dir)
196
197
# This directory's subdirectories are mostly independent; you can cd
198
-# into them and run `make' without going through this Makefile.
199
-# To change the values of `make' variables: instead of editing Makefiles,
200
-# (1) if the variable is set in `config.status', edit `config.status'
201
freetuxtv-0.6.5.tar.gz/aclocal.m4 -> freetuxtv-0.6.6.tar.gz/aclocal.m4
Changed
201
1
2
-# generated automatically by aclocal 1.11.3 -*- Autoconf -*-
3
+# generated automatically by aclocal 1.13.3 -*- Autoconf -*-
4
+
5
+# Copyright (C) 1996-2013 Free Software Foundation, Inc.
6
7
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
8
-# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
9
-# Inc.
10
# This file is free software; the Free Software Foundation
11
# gives unlimited permission to copy and/or distribute it,
12
# with or without modifications, as long as this notice is preserved.
13
14
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
15
# PARTICULAR PURPOSE.
16
17
+m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
18
m4_ifndef([AC_AUTOCONF_VERSION],
19
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
20
-m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],,
21
-[m4_warning([this file was generated for autoconf 2.68.
22
+m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
23
+[m4_warning([this file was generated for autoconf 2.69.
24
You have another version of autoconf. It may work, but is not guaranteed to.
25
If you have problems, you may need to regenerate the build system entirely.
26
-To do so, use the procedure documented by the package, typically `autoreconf'.])])
27
+To do so, use the procedure documented by the package, typically 'autoreconf'.])])
28
29
# Copyright (C) 1995-2002 Free Software Foundation, Inc.
30
# Copyright (C) 2001-2003,2004 Red Hat, Inc.
31
32
dnl
33
glib_DEFUN([GLIB_GNU_GETTEXT],
34
[AC_REQUIRE([AC_PROG_CC])dnl
35
- AC_REQUIRE([AC_HEADER_STDC])dnl
36
37
GLIB_LC_MESSAGES
38
GLIB_WITH_NLS
39
40
LD="${LD-ld} -m elf_i386_fbsd"
41
;;
42
x86_64-*linux*)
43
- LD="${LD-ld} -m elf_i386"
44
+ case `/usr/bin/file conftest.o` in
45
+ *x86-64*)
46
+ LD="${LD-ld} -m elf32_x86_64"
47
+ ;;
48
+ *)
49
+ LD="${LD-ld} -m elf_i386"
50
+ ;;
51
+ esac
52
;;
53
ppc64-*linux*|powerpc64-*linux*)
54
LD="${LD-ld} -m elf32ppclinux"
55
56
;;
57
*)
58
lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
59
- if test -n "$lt_cv_sys_max_cmd_len"; then
60
+ if test -n "$lt_cv_sys_max_cmd_len" && \
61
+ test undefined != "$lt_cv_sys_max_cmd_len"; then
62
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
63
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
64
else
65
66
esac
67
;;
68
69
-gnu*)
70
- version_type=linux # correct to gnu/linux during the next big refactor
71
- need_lib_prefix=no
72
- need_version=no
73
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
74
- soname_spec='${libname}${release}${shared_ext}$major'
75
- shlibpath_var=LD_LIBRARY_PATH
76
- shlibpath_overrides_runpath=no
77
- hardcode_into_libs=yes
78
- ;;
79
-
80
haiku*)
81
version_type=linux # correct to gnu/linux during the next big refactor
82
need_lib_prefix=no
83
84
;;
85
86
# This must be glibc/ELF.
87
-linux* | k*bsd*-gnu | kopensolaris*-gnu)
88
+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
89
version_type=linux # correct to gnu/linux during the next big refactor
90
need_lib_prefix=no
91
need_version=no
92
93
fi
94
;;
95
96
-gnu*)
97
- lt_cv_deplibs_check_method=pass_all
98
- ;;
99
-
100
haiku*)
101
lt_cv_deplibs_check_method=pass_all
102
;;
103
104
;;
105
106
# This must be glibc/ELF.
107
-linux* | k*bsd*-gnu | kopensolaris*-gnu)
108
+linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
109
lt_cv_deplibs_check_method=pass_all
110
;;
111
112
113
;;
114
esac
115
;;
116
- linux* | k*bsd*-gnu | kopensolaris*-gnu)
117
+ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
118
case $cc_basename in
119
KCC*)
120
# KAI C++ Compiler
121
122
_LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
123
;;
124
125
- linux* | k*bsd*-gnu | kopensolaris*-gnu)
126
+ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
127
case $cc_basename in
128
# old Intel for x86_64 which still supported -KPIC.
129
ecc*)
130
131
_LT_TAGVAR(ld_shlibs, $1)=yes
132
;;
133
134
- gnu*)
135
- ;;
136
-
137
haiku*)
138
_LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
139
_LT_TAGVAR(link_all_deplibs, $1)=yes
140
141
_LT_TAGVAR(inherit_rpath, $1)=yes
142
;;
143
144
- linux* | k*bsd*-gnu | kopensolaris*-gnu)
145
+ linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
146
case $cc_basename in
147
KCC*)
148
# Kuck and Associates, Inc. (KAI) C++ Compiler
149
150
fi[]dnl
151
])# PKG_CHECK_MODULES
152
153
-# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software
154
-# Foundation, Inc.
155
+# Copyright (C) 2002-2013 Free Software Foundation, Inc.
156
#
157
# This file is free software; the Free Software Foundation
158
# gives unlimited permission to copy and/or distribute it,
159
# with or without modifications, as long as this notice is preserved.
160
161
-# serial 1
162
-
163
# AM_AUTOMAKE_VERSION(VERSION)
164
# ----------------------------
165
# Automake X.Y traces this macro to ensure aclocal.m4 has been
166
# generated from the m4 files accompanying Automake X.Y.
167
# (This private macro should not be called outside this file.)
168
AC_DEFUN([AM_AUTOMAKE_VERSION],
169
-[am__api_version='1.11'
170
+[am__api_version='1.13'
171
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
172
dnl require some minimum version. Point them to the right macro.
173
-m4_if([$1], [1.11.3], [],
174
+m4_if([$1], [1.13.3], [],
175
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
176
])
177
178
179
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
180
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
181
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
182
-[AM_AUTOMAKE_VERSION([1.11.3])dnl
183
+[AM_AUTOMAKE_VERSION([1.13.3])dnl
184
m4_ifndef([AC_AUTOCONF_VERSION],
185
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
186
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
187
188
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
189
190
-# Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc.
191
+# Copyright (C) 2001-2013 Free Software Foundation, Inc.
192
#
193
# This file is free software; the Free Software Foundation
194
# gives unlimited permission to copy and/or distribute it,
195
# with or without modifications, as long as this notice is preserved.
196
197
-# serial 1
198
-
199
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
200
-# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
201
freetuxtv-0.6.5.tar.gz/compile -> freetuxtv-0.6.6.tar.gz/compile
Changed
131
1
2
#! /bin/sh
3
# Wrapper for compilers which do not understand '-c -o'.
4
5
-scriptversion=2012-01-04.17; # UTC
6
+scriptversion=2012-10-14.11; # UTC
7
8
-# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009, 2010, 2012 Free
9
-# Software Foundation, Inc.
10
+# Copyright (C) 1999-2013 Free Software Foundation, Inc.
11
# Written by Tom Tromey <tromey@cygnus.com>.
12
#
13
# This program is free software; you can redistribute it and/or modify
14
15
esac
16
}
17
18
+# func_cl_dashL linkdir
19
+# Make cl look for libraries in LINKDIR
20
+func_cl_dashL ()
21
+{
22
+ func_file_conv "$1"
23
+ if test -z "$lib_path"; then
24
+ lib_path=$file
25
+ else
26
+ lib_path="$lib_path;$file"
27
+ fi
28
+ linker_opts="$linker_opts -LIBPATH:$file"
29
+}
30
+
31
+# func_cl_dashl library
32
+# Do a library search-path lookup for cl
33
+func_cl_dashl ()
34
+{
35
+ lib=$1
36
+ found=no
37
+ save_IFS=$IFS
38
+ IFS=';'
39
+ for dir in $lib_path $LIB
40
+ do
41
+ IFS=$save_IFS
42
+ if $shared && test -f "$dir/$lib.dll.lib"; then
43
+ found=yes
44
+ lib=$dir/$lib.dll.lib
45
+ break
46
+ fi
47
+ if test -f "$dir/$lib.lib"; then
48
+ found=yes
49
+ lib=$dir/$lib.lib
50
+ break
51
+ fi
52
+ if test -f "$dir/lib$lib.a"; then
53
+ found=yes
54
+ lib=$dir/lib$lib.a
55
+ break
56
+ fi
57
+ done
58
+ IFS=$save_IFS
59
+
60
+ if test "$found" != yes; then
61
+ lib=$lib.lib
62
+ fi
63
+}
64
+
65
# func_cl_wrapper cl arg...
66
# Adjust compile command to suit cl
67
func_cl_wrapper ()
68
69
;;
70
esac
71
;;
72
+ -I)
73
+ eat=1
74
+ func_file_conv "$2" mingw
75
+ set x "$@" -I"$file"
76
+ shift
77
+ ;;
78
-I*)
79
func_file_conv "${1#-I}" mingw
80
set x "$@" -I"$file"
81
shift
82
;;
83
+ -l)
84
+ eat=1
85
+ func_cl_dashl "$2"
86
+ set x "$@" "$lib"
87
+ shift
88
+ ;;
89
-l*)
90
- lib=${1#-l}
91
- found=no
92
- save_IFS=$IFS
93
- IFS=';'
94
- for dir in $lib_path $LIB
95
- do
96
- IFS=$save_IFS
97
- if $shared && test -f "$dir/$lib.dll.lib"; then
98
- found=yes
99
- set x "$@" "$dir/$lib.dll.lib"
100
- break
101
- fi
102
- if test -f "$dir/$lib.lib"; then
103
- found=yes
104
- set x "$@" "$dir/$lib.lib"
105
- break
106
- fi
107
- done
108
- IFS=$save_IFS
109
-
110
- test "$found" != yes && set x "$@" "$lib.lib"
111
+ func_cl_dashl "${1#-l}"
112
+ set x "$@" "$lib"
113
shift
114
;;
115
+ -L)
116
+ eat=1
117
+ func_cl_dashL "$2"
118
+ ;;
119
-L*)
120
- func_file_conv "${1#-L}"
121
- if test -z "$lib_path"; then
122
- lib_path=$file
123
- else
124
- lib_path="$lib_path;$file"
125
- fi
126
- linker_opts="$linker_opts -LIBPATH:$file"
127
+ func_cl_dashL "${1#-L}"
128
;;
129
-static)
130
shared=false
131
freetuxtv-0.6.5.tar.gz/config.guess -> freetuxtv-0.6.6.tar.gz/config.guess
Changed
201
1
2
#! /bin/sh
3
# Attempt to guess a canonical system name.
4
-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
5
-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
6
-# 2011, 2012 Free Software Foundation, Inc.
7
+# Copyright 1992-2013 Free Software Foundation, Inc.
8
9
-timestamp='2012-02-10'
10
+timestamp='2013-06-10'
11
12
# This file is free software; you can redistribute it and/or modify it
13
# under the terms of the GNU General Public License as published by
14
-# the Free Software Foundation; either version 2 of the License, or
15
+# the Free Software Foundation; either version 3 of the License, or
16
# (at your option) any later version.
17
#
18
# This program is distributed in the hope that it will be useful, but
19
20
# As a special exception to the GNU General Public License, if you
21
# distribute this file as part of a program that contains a
22
# configuration script generated by Autoconf, you may include it under
23
-# the same distribution terms that you use for the rest of that program.
24
-
25
-
26
-# Originally written by Per Bothner. Please send patches (context
27
-# diff format) to <config-patches@gnu.org> and include a ChangeLog
28
-# entry.
29
+# the same distribution terms that you use for the rest of that
30
+# program. This Exception is an additional permission under section 7
31
+# of the GNU General Public License, version 3 ("GPLv3").
32
#
33
-# This script attempts to guess a canonical system name similar to
34
-# config.sub. If it succeeds, it prints the system name on stdout, and
35
-# exits with 0. Otherwise, it exits with 1.
36
+# Originally written by Per Bothner.
37
#
38
# You can get the latest version of this script from:
39
# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
40
+#
41
+# Please send patches with a ChangeLog entry to config-patches@gnu.org.
42
+
43
44
me=`echo "$0" | sed -e 's,.*/,,'`
45
46
47
GNU config.guess ($timestamp)
48
49
Originally written by Per Bothner.
50
-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
51
-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
52
-Free Software Foundation, Inc.
53
+Copyright 1992-2013 Free Software Foundation, Inc.
54
55
This is free software; see the source for copying conditions. There is NO
56
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
57
58
UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
59
UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
60
61
+case "${UNAME_SYSTEM}" in
62
+Linux|GNU|GNU/*)
63
+ # If the system lacks a compiler, then just pick glibc.
64
+ # We could probably try harder.
65
+ LIBC=gnu
66
+
67
+ eval $set_cc_for_build
68
+ cat <<-EOF > $dummy.c
69
+ #include <features.h>
70
+ #if defined(__UCLIBC__)
71
+ LIBC=uclibc
72
+ #elif defined(__dietlibc__)
73
+ LIBC=dietlibc
74
+ #else
75
+ LIBC=gnu
76
+ #endif
77
+ EOF
78
+ eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
79
+ ;;
80
+esac
81
+
82
# Note: order is significant - the case branches are not exclusive.
83
84
case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
85
86
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
87
echo "${machine}-${os}${release}"
88
exit ;;
89
+ *:Bitrig:*:*)
90
+ UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
91
+ echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}
92
+ exit ;;
93
*:OpenBSD:*:*)
94
UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
95
echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
96
97
arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
98
echo arm-acorn-riscix${UNAME_RELEASE}
99
exit ;;
100
- arm:riscos:*:*|arm:RISCOS:*:*)
101
+ arm*:riscos:*:*|arm*:RISCOS:*:*)
102
echo arm-unknown-riscos
103
exit ;;
104
SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
105
106
i*:CYGWIN*:*)
107
echo ${UNAME_MACHINE}-pc-cygwin
108
exit ;;
109
+ *:MINGW64*:*)
110
+ echo ${UNAME_MACHINE}-pc-mingw64
111
+ exit ;;
112
*:MINGW*:*)
113
echo ${UNAME_MACHINE}-pc-mingw32
114
exit ;;
115
116
exit ;;
117
*:GNU:*:*)
118
# the GNU system
119
- echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
120
+ echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
121
exit ;;
122
*:GNU/*:*:*)
123
# other systems with GNU libc and userland
124
- echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
125
+ echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
126
exit ;;
127
i*86:Minix:*:*)
128
echo ${UNAME_MACHINE}-pc-minix
129
exit ;;
130
aarch64:Linux:*:*)
131
- echo ${UNAME_MACHINE}-unknown-linux-gnu
132
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
133
exit ;;
134
aarch64_be:Linux:*:*)
135
UNAME_MACHINE=aarch64_be
136
- echo ${UNAME_MACHINE}-unknown-linux-gnu
137
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
138
exit ;;
139
alpha:Linux:*:*)
140
case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
141
142
EV68*) UNAME_MACHINE=alphaev68 ;;
143
esac
144
objdump --private-headers /bin/sh | grep -q ld.so.1
145
- if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
146
- echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
147
+ if test "$?" = 0 ; then LIBC="gnulibc1" ; fi
148
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
149
+ exit ;;
150
+ arc:Linux:*:* | arceb:Linux:*:*)
151
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
152
exit ;;
153
arm*:Linux:*:*)
154
eval $set_cc_for_build
155
if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
156
| grep -q __ARM_EABI__
157
then
158
- echo ${UNAME_MACHINE}-unknown-linux-gnu
159
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
160
else
161
if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
162
| grep -q __ARM_PCS_VFP
163
then
164
- echo ${UNAME_MACHINE}-unknown-linux-gnueabi
165
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
166
else
167
- echo ${UNAME_MACHINE}-unknown-linux-gnueabihf
168
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
169
fi
170
fi
171
exit ;;
172
avr32*:Linux:*:*)
173
- echo ${UNAME_MACHINE}-unknown-linux-gnu
174
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
175
exit ;;
176
cris:Linux:*:*)
177
- echo ${UNAME_MACHINE}-axis-linux-gnu
178
+ echo ${UNAME_MACHINE}-axis-linux-${LIBC}
179
exit ;;
180
crisv32:Linux:*:*)
181
- echo ${UNAME_MACHINE}-axis-linux-gnu
182
+ echo ${UNAME_MACHINE}-axis-linux-${LIBC}
183
exit ;;
184
frv:Linux:*:*)
185
- echo ${UNAME_MACHINE}-unknown-linux-gnu
186
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
187
exit ;;
188
hexagon:Linux:*:*)
189
- echo ${UNAME_MACHINE}-unknown-linux-gnu
190
+ echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
191
exit ;;
192
i*86:Linux:*:*)
193
- LIBC=gnu
194
- eval $set_cc_for_build
195
- sed 's/^ //' << EOF >$dummy.c
196
- #ifdef __dietlibc__
197
- LIBC=dietlibc
198
- #endif
199
-EOF
200
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
201
freetuxtv-0.6.5.tar.gz/config.sub -> freetuxtv-0.6.6.tar.gz/config.sub
Changed
201
1
2
#! /bin/sh
3
# Configuration validation subroutine script.
4
-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
5
-# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
6
-# 2011, 2012 Free Software Foundation, Inc.
7
+# Copyright 1992-2013 Free Software Foundation, Inc.
8
9
-timestamp='2012-02-10'
10
+timestamp='2013-08-10'
11
12
-# This file is (in principle) common to ALL GNU software.
13
-# The presence of a machine in this file suggests that SOME GNU software
14
-# can handle that machine. It does not imply ALL GNU software can.
15
-#
16
-# This file is free software; you can redistribute it and/or modify
17
-# it under the terms of the GNU General Public License as published by
18
-# the Free Software Foundation; either version 2 of the License, or
19
+# This file is free software; you can redistribute it and/or modify it
20
+# under the terms of the GNU General Public License as published by
21
+# the Free Software Foundation; either version 3 of the License, or
22
# (at your option) any later version.
23
#
24
-# This program is distributed in the hope that it will be useful,
25
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
26
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27
-# GNU General Public License for more details.
28
+# This program is distributed in the hope that it will be useful, but
29
+# WITHOUT ANY WARRANTY; without even the implied warranty of
30
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
31
+# General Public License for more details.
32
#
33
# You should have received a copy of the GNU General Public License
34
# along with this program; if not, see <http://www.gnu.org/licenses/>.
35
36
# As a special exception to the GNU General Public License, if you
37
# distribute this file as part of a program that contains a
38
# configuration script generated by Autoconf, you may include it under
39
-# the same distribution terms that you use for the rest of that program.
40
+# the same distribution terms that you use for the rest of that
41
+# program. This Exception is an additional permission under section 7
42
+# of the GNU General Public License, version 3 ("GPLv3").
43
44
45
-# Please send patches to <config-patches@gnu.org>. Submit a context
46
-# diff and a properly formatted GNU ChangeLog entry.
47
+# Please send patches with a ChangeLog entry to config-patches@gnu.org.
48
#
49
# Configuration subroutine to validate and canonicalize a configuration type.
50
# Supply the specified configuration type as an argument.
51
52
version="\
53
GNU config.sub ($timestamp)
54
55
-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
56
-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
57
-Free Software Foundation, Inc.
58
+Copyright 1992-2013 Free Software Foundation, Inc.
59
60
This is free software; see the source for copying conditions. There is NO
61
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
62
63
maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
64
case $maybe_os in
65
nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \
66
- linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
67
+ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \
68
knetbsd*-gnu* | netbsd*-gnu* | \
69
kopensolaris*-gnu* | \
70
storm-chaos* | os2-emx* | rtmk-nova*)
71
72
-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
73
-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
74
-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
75
- -apple | -axis | -knuth | -cray | -microblaze)
76
+ -apple | -axis | -knuth | -cray | -microblaze*)
77
os=
78
basic_machine=$1
79
;;
80
81
-isc*)
82
basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
83
;;
84
+ -lynx*178)
85
+ os=-lynxos178
86
+ ;;
87
+ -lynx*5)
88
+ os=-lynxos5
89
+ ;;
90
-lynx*)
91
os=-lynxos
92
;;
93
94
| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
95
| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
96
| am33_2.0 \
97
- | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
98
- | be32 | be64 \
99
+ | arc | arceb \
100
+ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \
101
+ | avr | avr32 \
102
+ | be32 | be64 \
103
| bfin \
104
- | c4x | clipper \
105
+ | c4x | c8051 | clipper \
106
| d10v | d30v | dlx | dsp16xx \
107
| epiphany \
108
| fido | fr30 | frv \
109
110
| le32 | le64 \
111
| lm32 \
112
| m32c | m32r | m32rle | m68000 | m68k | m88k \
113
- | maxq | mb | microblaze | mcore | mep | metag \
114
+ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \
115
| mips | mipsbe | mipseb | mipsel | mipsle \
116
| mips16 \
117
| mips64 | mips64el \
118
119
| mipsisa64r2 | mipsisa64r2el \
120
| mipsisa64sb1 | mipsisa64sb1el \
121
| mipsisa64sr71k | mipsisa64sr71kel \
122
+ | mipsr5900 | mipsr5900el \
123
| mipstx39 | mipstx39el \
124
| mn10200 | mn10300 \
125
| moxie \
126
| mt \
127
| msp430 \
128
| nds32 | nds32le | nds32be \
129
- | nios | nios2 \
130
+ | nios | nios2 | nios2eb | nios2el \
131
| ns16k | ns32k \
132
| open8 \
133
- | or32 \
134
+ | or1k | or32 \
135
| pdp10 | pdp11 | pj | pjl \
136
| powerpc | powerpc64 | powerpc64le | powerpcle \
137
| pyramid \
138
139
| aarch64-* | aarch64_be-* \
140
| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
141
| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
142
- | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
143
+ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \
144
| arm-* | armbe-* | armle-* | armeb-* | armv*-* \
145
| avr-* | avr32-* \
146
| be32-* | be64-* \
147
| bfin-* | bs2000-* \
148
| c[123]* | c30-* | [cjt]90-* | c4x-* \
149
- | clipper-* | craynv-* | cydra-* \
150
+ | c8051-* | clipper-* | craynv-* | cydra-* \
151
| d10v-* | d30v-* | dlx-* \
152
| elxsi-* \
153
| f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
154
155
| lm32-* \
156
| m32c-* | m32r-* | m32rle-* \
157
| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
158
- | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \
159
+ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \
160
+ | microblaze-* | microblazeel-* \
161
| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
162
| mips16-* \
163
| mips64-* | mips64el-* \
164
165
| mipsisa64r2-* | mipsisa64r2el-* \
166
| mipsisa64sb1-* | mipsisa64sb1el-* \
167
| mipsisa64sr71k-* | mipsisa64sr71kel-* \
168
+ | mipsr5900-* | mipsr5900el-* \
169
| mipstx39-* | mipstx39el-* \
170
| mmix-* \
171
| mt-* \
172
| msp430-* \
173
| nds32-* | nds32le-* | nds32be-* \
174
- | nios-* | nios2-* \
175
+ | nios-* | nios2-* | nios2eb-* | nios2el-* \
176
| none-* | np1-* | ns16k-* | ns32k-* \
177
| open8-* \
178
| orion-* \
179
180
basic_machine=ns32k-utek
181
os=-sysv
182
;;
183
- microblaze)
184
+ microblaze*)
185
basic_machine=microblaze-xilinx
186
;;
187
+ mingw64)
188
+ basic_machine=x86_64-pc
189
+ os=-mingw64
190
+ ;;
191
mingw32)
192
- basic_machine=i386-pc
193
+ basic_machine=i686-pc
194
os=-mingw32
195
;;
196
mingw32ce)
197
198
basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
199
;;
200
msys)
201
freetuxtv-0.6.5.tar.gz/configure -> freetuxtv-0.6.6.tar.gz/configure
Changed
201
1
2
#! /bin/sh
3
# Guess values for system-dependent variables and create Makefiles.
4
-# Generated by GNU Autoconf 2.68 for freetuxtv 0.6.5.
5
+# Generated by GNU Autoconf 2.69 for freetuxtv 0.6.6.
6
#
7
# Report bugs to <http://code.google.com/p/freetuxtv/issues/list>.
8
#
9
#
10
-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
11
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
12
-# Foundation, Inc.
13
+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
14
#
15
#
16
# This configure script is free software; the Free Software Foundation
17
18
# CDPATH.
19
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
20
21
+# Use a proper internal environment variable to ensure we don't fall
22
+ # into an infinite loop, continuously re-executing ourselves.
23
+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
24
+ _as_can_reexec=no; export _as_can_reexec;
25
+ # We cannot yet assume a decent shell, so we have to provide a
26
+# neutralization value for shells without unset; and this also
27
+# works around shells that cannot unset nonexistent variables.
28
+# Preserve -v and -x to the replacement shell.
29
+BASH_ENV=/dev/null
30
+ENV=/dev/null
31
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
32
+case $- in # ((((
33
+ *v*x* | *x*v* ) as_opts=-vx ;;
34
+ *v* ) as_opts=-v ;;
35
+ *x* ) as_opts=-x ;;
36
+ * ) as_opts= ;;
37
+esac
38
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
39
+# Admittedly, this is quite paranoid, since all the known shells bail
40
+# out after a failed `exec'.
41
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
42
+as_fn_exit 255
43
+ fi
44
+ # We don't want this to propagate to other subprocesses.
45
+ { _as_can_reexec=; unset _as_can_reexec;}
46
if test "x$CONFIG_SHELL" = x; then
47
as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
48
emulate sh
49
50
else
51
exitcode=1; echo positional parameters were not saved.
52
fi
53
-test x\$exitcode = x0 || exit 1"
54
+test x\$exitcode = x0 || exit 1
55
+test -x / || exit 1"
56
as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
57
as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
58
eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
59
60
61
62
if test "x$CONFIG_SHELL" != x; then :
63
- # We cannot yet assume a decent shell, so we have to provide a
64
- # neutralization value for shells without unset; and this also
65
- # works around shells that cannot unset nonexistent variables.
66
- # Preserve -v and -x to the replacement shell.
67
- BASH_ENV=/dev/null
68
- ENV=/dev/null
69
- (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
70
- export CONFIG_SHELL
71
- case $- in # ((((
72
- *v*x* | *x*v* ) as_opts=-vx ;;
73
- *v* ) as_opts=-v ;;
74
- *x* ) as_opts=-x ;;
75
- * ) as_opts= ;;
76
- esac
77
- exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
78
+ export CONFIG_SHELL
79
+ # We cannot yet assume a decent shell, so we have to provide a
80
+# neutralization value for shells without unset; and this also
81
+# works around shells that cannot unset nonexistent variables.
82
+# Preserve -v and -x to the replacement shell.
83
+BASH_ENV=/dev/null
84
+ENV=/dev/null
85
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
86
+case $- in # ((((
87
+ *v*x* | *x*v* ) as_opts=-vx ;;
88
+ *v* ) as_opts=-v ;;
89
+ *x* ) as_opts=-x ;;
90
+ * ) as_opts= ;;
91
+esac
92
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
93
+# Admittedly, this is quite paranoid, since all the known shells bail
94
+# out after a failed `exec'.
95
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
96
+exit 255
97
fi
98
99
if test x$as_have_required = xno; then :
100
101
102
103
} # as_fn_mkdir_p
104
+
105
+# as_fn_executable_p FILE
106
+# -----------------------
107
+# Test if FILE is an executable regular file.
108
+as_fn_executable_p ()
109
+{
110
+ test -f "$1" && test -x "$1"
111
+} # as_fn_executable_p
112
# as_fn_append VAR VALUE
113
# ----------------------
114
# Append the text in VALUE to the end of the definition contained in VAR. Take
115
116
chmod +x "$as_me.lineno" ||
117
{ $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
118
119
+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
120
+ # already done that, so ensure we don't try to do so again and fall
121
+ # in an infinite loop. This has already happened in practice.
122
+ _as_can_reexec=no; export _as_can_reexec
123
# Don't try to exec as it changes $[0], causing all sort of problems
124
# (the dirname of $[0] is not the place where we might find the
125
# original and so on. Autoconf is especially sensitive to this).
126
127
# ... but there are two gotchas:
128
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
129
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
130
- # In both cases, we have to default to `cp -p'.
131
+ # In both cases, we have to default to `cp -pR'.
132
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
133
- as_ln_s='cp -p'
134
+ as_ln_s='cp -pR'
135
elif ln conf$$.file conf$$ 2>/dev/null; then
136
as_ln_s=ln
137
else
138
- as_ln_s='cp -p'
139
+ as_ln_s='cp -pR'
140
fi
141
else
142
- as_ln_s='cp -p'
143
+ as_ln_s='cp -pR'
144
fi
145
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
146
rmdir conf$$.dir 2>/dev/null
147
148
as_mkdir_p=false
149
fi
150
151
-if test -x / >/dev/null 2>&1; then
152
- as_test_x='test -x'
153
-else
154
- if ls -dL / >/dev/null 2>&1; then
155
- as_ls_L_option=L
156
- else
157
- as_ls_L_option=
158
- fi
159
- as_test_x='
160
- eval sh -c '\''
161
- if test -d "$1"; then
162
- test -d "$1/.";
163
- else
164
- case $1 in #(
165
- -*)set "./$1";;
166
- esac;
167
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
168
- ???[sx]*):;;*)false;;esac;fi
169
- '\'' sh
170
- '
171
-fi
172
-as_executable_p=$as_test_x
173
+as_test_x='test -x'
174
+as_executable_p=as_fn_executable_p
175
176
# Sed expression to map a string onto a valid CPP name.
177
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
178
179
# Identity of this package.
180
PACKAGE_NAME='freetuxtv'
181
PACKAGE_TARNAME='freetuxtv'
182
-PACKAGE_VERSION='0.6.5'
183
-PACKAGE_STRING='freetuxtv 0.6.5'
184
+PACKAGE_VERSION='0.6.6'
185
+PACKAGE_STRING='freetuxtv 0.6.6'
186
PACKAGE_BUGREPORT='http://code.google.com/p/freetuxtv/issues/list'
187
PACKAGE_URL='http://code.google.com/p/freetuxtv/'
188
189
190
INTLTOOL__v_MERGE_0
191
INTLTOOL__v_MERGE_
192
INTLTOOL_V_MERGE
193
-AM_DEFAULT_VERBOSITY
194
INTLTOOL_EXTRACT
195
INTLTOOL_MERGE
196
INTLTOOL_UPDATE
197
198
MAINT
199
MAINTAINER_MODE_FALSE
200
MAINTAINER_MODE_TRUE
201
freetuxtv-0.6.5.tar.gz/configure.ac -> freetuxtv-0.6.6.tar.gz/configure.ac
Changed
10
1
2
dnl Process this file with autoconf to produce a configure script.
3
dnl Created by Anjuta application wizard.
4
5
-AC_INIT(freetuxtv, 0.6.5,
6
+AC_INIT(freetuxtv, 0.6.6,
7
http://code.google.com/p/freetuxtv/issues/list,,
8
http://code.google.com/p/freetuxtv/)
9
10
freetuxtv-0.6.5.tar.gz/data/Makefile.in -> freetuxtv-0.6.6.tar.gz/data/Makefile.in
Changed
201
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
@SET_MAKE@
16
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = data
70
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
71
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
72
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
73
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
74
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
75
$(ACLOCAL_M4)
76
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
77
+mkinstalldirs = $(install_sh) -d
78
CONFIG_HEADER = $(top_builddir)/config.h
79
CONFIG_CLEAN_FILES =
80
CONFIG_CLEAN_VPATH_FILES =
81
+AM_V_P = $(am__v_P_@AM_V@)
82
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
83
+am__v_P_0 = false
84
+am__v_P_1 = :
85
+AM_V_GEN = $(am__v_GEN_@AM_V@)
86
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
87
+am__v_GEN_0 = @echo " GEN " $@;
88
+am__v_GEN_1 =
89
+AM_V_at = $(am__v_at_@AM_V@)
90
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
91
+am__v_at_0 = @
92
+am__v_at_1 =
93
SOURCES =
94
DIST_SOURCES =
95
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
96
- html-recursive info-recursive install-data-recursive \
97
- install-dvi-recursive install-exec-recursive \
98
- install-html-recursive install-info-recursive \
99
- install-pdf-recursive install-ps-recursive install-recursive \
100
- installcheck-recursive installdirs-recursive pdf-recursive \
101
- ps-recursive uninstall-recursive
102
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
103
+ ctags-recursive dvi-recursive html-recursive info-recursive \
104
+ install-data-recursive install-dvi-recursive \
105
+ install-exec-recursive install-html-recursive \
106
+ install-info-recursive install-pdf-recursive \
107
+ install-ps-recursive install-recursive installcheck-recursive \
108
+ installdirs-recursive pdf-recursive ps-recursive \
109
+ tags-recursive uninstall-recursive
110
+am__can_run_installinfo = \
111
+ case $$AM_UPDATE_INFO_DIR in \
112
+ n|no|NO) false;; \
113
+ *) (install-info --version) >/dev/null 2>&1;; \
114
+ esac
115
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
116
am__vpath_adj = case $$p in \
117
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
118
119
DATA = $(freetuxtvdata_DATA) $(xml_DATA)
120
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
121
distclean-recursive maintainer-clean-recursive
122
-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
123
- $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
124
+am__recursive_targets = \
125
+ $(RECURSIVE_TARGETS) \
126
+ $(RECURSIVE_CLEAN_TARGETS) \
127
+ $(am__extra_recursive_targets)
128
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
129
distdir
130
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
131
+# Read a list of newline-separated strings from the standard input,
132
+# and print each of them once, without duplicates. Input order is
133
+# *not* preserved.
134
+am__uniquify_input = $(AWK) '\
135
+ BEGIN { nonempty = 0; } \
136
+ { items[$$0] = 1; nonempty = 1; } \
137
+ END { if (nonempty) { for (i in items) print i; }; } \
138
+'
139
+# Make sure the list of sources is unique. This is necessary because,
140
+# e.g., the same source file might be shared among _SOURCES variables
141
+# for different programs/libraries.
142
+am__define_uniq_tagged_files = \
143
+ list='$(am__tagged_files)'; \
144
+ unique=`for i in $$list; do \
145
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
146
+ done | $(am__uniquify_input)`
147
ETAGS = etags
148
CTAGS = ctags
149
DIST_SUBDIRS = $(SUBDIRS)
150
151
-rm -rf .libs _libs
152
install-freetuxtvdataDATA: $(freetuxtvdata_DATA)
153
@$(NORMAL_INSTALL)
154
- test -z "$(freetuxtvdatadir)" || $(MKDIR_P) "$(DESTDIR)$(freetuxtvdatadir)"
155
@list='$(freetuxtvdata_DATA)'; test -n "$(freetuxtvdatadir)" || list=; \
156
+ if test -n "$$list"; then \
157
+ echo " $(MKDIR_P) '$(DESTDIR)$(freetuxtvdatadir)'"; \
158
+ $(MKDIR_P) "$(DESTDIR)$(freetuxtvdatadir)" || exit 1; \
159
+ fi; \
160
for p in $$list; do \
161
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
162
echo "$$d$$p"; \
163
164
dir='$(DESTDIR)$(freetuxtvdatadir)'; $(am__uninstall_files_from_dir)
165
install-xmlDATA: $(xml_DATA)
166
@$(NORMAL_INSTALL)
167
- test -z "$(xmldir)" || $(MKDIR_P) "$(DESTDIR)$(xmldir)"
168
@list='$(xml_DATA)'; test -n "$(xmldir)" || list=; \
169
+ if test -n "$$list"; then \
170
+ echo " $(MKDIR_P) '$(DESTDIR)$(xmldir)'"; \
171
+ $(MKDIR_P) "$(DESTDIR)$(xmldir)" || exit 1; \
172
+ fi; \
173
for p in $$list; do \
174
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
175
echo "$$d$$p"; \
176
177
dir='$(DESTDIR)$(xmldir)'; $(am__uninstall_files_from_dir)
178
179
# This directory's subdirectories are mostly independent; you can cd
180
-# into them and run `make' without going through this Makefile.
181
-# To change the values of `make' variables: instead of editing Makefiles,
182
-# (1) if the variable is set in `config.status', edit `config.status'
183
-# (which will cause the Makefiles to be regenerated when you run `make');
184
-# (2) otherwise, pass the desired values on the `make' command line.
185
-$(RECURSIVE_TARGETS):
186
- @fail= failcom='exit 1'; \
187
- for f in x $$MAKEFLAGS; do \
188
- case $$f in \
189
- *=* | --[!k]*);; \
190
- *k*) failcom='fail=yes';; \
191
- esac; \
192
- done; \
193
+# into them and run 'make' without going through this Makefile.
194
+# To change the values of 'make' variables: instead of editing Makefiles,
195
+# (1) if the variable is set in 'config.status', edit 'config.status'
196
+# (which will cause the Makefiles to be regenerated when you run 'make');
197
+# (2) otherwise, pass the desired values on the 'make' command line.
198
+$(am__recursive_targets):
199
+ @fail=; \
200
+ if $(am__make_keepgoing); then \
201
freetuxtv-0.6.5.tar.gz/data/channels_groups.xml.in -> freetuxtv-0.6.6.tar.gz/data/channels_groups.xml.in
Changed
201
1
2
<language lang="Darty" id="darty">
3
<channels_group name="Darty TV" uri="http://dartybox-news.fr/ftp/dartyboxtvpc.m3u" required_isp="Darty"/>
4
</language>
5
+ <language id="af" _lang="Afrikaans Web TV and Radio">
6
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_af.m3u" _name="Web TV (Afrikaans)"></channels_group>
7
+ </language>
8
+ <language id="sq" _lang="Albanian Web TV and Radio">
9
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_sq.m3u" _name="Web TV (Albanian)"></channels_group>
10
+ </language>
11
+ <language id="am" _lang="Amharic Web TV and Radio">
12
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_am.m3u" _name="Web TV (Amharic)"></channels_group>
13
+ </language>
14
<language id="ar" _lang="Arabic Web TV and Radio">
15
- <channels_group _name="Web Radio (Arabic)" uri="http://database.freetuxtv.net/playlists/playlist_webradio_ar.m3u" />
16
- <channels_group _name="Web TV (Arabic)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_ar.m3u" />
17
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_ar.m3u" _name="Web TV (Arabic)"></channels_group>
18
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_ar.m3u" _name="Web Radio (Arabic)"></channels_group>
19
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webcam_ar.m3u" _name="Web Cam (Arabic)"></channels_group>
20
+ </language>
21
+ <language id="hy" _lang="Armenian Web TV and Radio">
22
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_hy.m3u" _name="Web TV (Armenian)"></channels_group>
23
+ </language>
24
+ <language id="az" _lang="Azerbaijani Web TV and Radio">
25
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_az.m3u" _name="Web TV (Azerbaijani)"></channels_group>
26
+ </language>
27
+ <language id="bn" _lang="Bengali/Bangla Web TV and Radio">
28
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_bn.m3u" _name="Web TV (Bengali/Bangla)"></channels_group>
29
+ </language>
30
+ <language id="bg" _lang="Bulgarian Web TV and Radio">
31
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_bg.m3u" _name="Web TV (Bulgarian)"></channels_group>
32
+ </language>
33
+ <language id="km" _lang="Cambodian Web TV and Radio">
34
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_km.m3u" _name="Web TV (Cambodian)"></channels_group>
35
</language>
36
<language id="ca" _lang="Catalan Web TV and Radio">
37
- <channels_group _name="Web Radio (Catalan)" uri="http://database.freetuxtv.net/playlists/playlist_webradio_ca.m3u" />
38
- <channels_group _name="Web TV (Catalan)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_ca.m3u" />
39
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_ca.m3u" _name="Web TV (Catalan)"></channels_group>
40
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_ca.m3u" _name="Web Radio (Catalan)"></channels_group>
41
</language>
42
<language id="zh" _lang="Chinese Web TV and Radio">
43
- <channels_group _name="Web Radio (Chinese)" uri="http://database.freetuxtv.net/playlists/playlist_webradio_zh.m3u" />
44
- <channels_group _name="Web TV (Chinese)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_zh.m3u" />
45
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_zh.m3u" _name="Web TV (Chinese)"></channels_group>
46
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_zh.m3u" _name="Web Radio (Chinese)"></channels_group>
47
+ </language>
48
+ <language id="hr" _lang="Croatian Web TV and Radio">
49
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_hr.m3u" _name="Web TV (Croatian)"></channels_group>
50
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_hr.m3u" _name="Web Radio (Croatian)"></channels_group>
51
</language>
52
<language id="cs" _lang="Czech Web TV and Radio">
53
- <channels_group _name="Web TV (Czech)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_cs.m3u" />
54
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_cs.m3u" _name="Web TV (Czech)"></channels_group>
55
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_cs.m3u" _name="Web Radio (Czech)"></channels_group>
56
+ </language>
57
+ <language id="da" _lang="Danish Web TV and Radio">
58
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_da.m3u" _name="Web TV (Danish)"></channels_group>
59
</language>
60
<language id="nl" _lang="Dutch Web TV and Radio">
61
- <channels_group _name="Web TV (Dutch)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_nl.m3u" />
62
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_nl.m3u" _name="Web TV (Dutch)"></channels_group>
63
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_nl.m3u" _name="Web Radio (Dutch)"></channels_group>
64
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webcam_nl.m3u" _name="Web Cam (Dutch)"></channels_group>
65
</language>
66
<language id="en" _lang="English Web TV and Radio">
67
- <channels_group _name="Web Programmes (English)" uri="http://database.freetuxtv.net/playlists/playlist_programmes_en.m3u" />
68
- <channels_group _name="Web Radio (English)" uri="http://database.freetuxtv.net/playlists/playlist_webradio_en.m3u" />
69
- <channels_group _name="Web TV (English)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_en.m3u" />
70
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_en.m3u" _name="Web TV (English)"></channels_group>
71
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_en.m3u" _name="Web Radio (English)"></channels_group>
72
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_programmes_en.m3u" _name="Web Programmes (English)"></channels_group>
73
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webcam_en.m3u" _name="Web Cam (English)"></channels_group>
74
+ </language>
75
+ <language id="et" _lang="Estonian Web TV and Radio">
76
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_et.m3u" _name="Web TV (Estonian)"></channels_group>
77
+ </language>
78
+ <language id="fi" _lang="Finnish Web TV and Radio">
79
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_fi.m3u" _name="Web TV (Finnish)"></channels_group>
80
</language>
81
<language id="fr" _lang="French Web TV and Radio">
82
- <channels_group _name="Web Programmes (French)" uri="http://database.freetuxtv.net/playlists/playlist_programmes_fr.m3u" />
83
- <channels_group _name="Web Radio (French)" uri="http://database.freetuxtv.net/playlists/playlist_webradio_fr.m3u" />
84
- <channels_group _name="Web TV (French)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_fr.m3u" />
85
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_fr.m3u" _name="Web TV (French)"></channels_group>
86
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_fr.m3u" _name="Web Radio (French)"></channels_group>
87
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_programmes_fr.m3u" _name="Web Programmes (French)"></channels_group>
88
+ </language>
89
+ <language id="ka" _lang="Georgian Web TV and Radio">
90
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_ka.m3u" _name="Web TV (Georgian)"></channels_group>
91
</language>
92
<language id="de" _lang="German Web TV and Radio">
93
- <channels_group _name="Web Radio (German)" uri="http://database.freetuxtv.net/playlists/playlist_webradio_de.m3u" />
94
- <channels_group _name="Web TV (German)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_de.m3u" />
95
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_de.m3u" _name="Web TV (German)"></channels_group>
96
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_de.m3u" _name="Web Radio (German)"></channels_group>
97
+ </language>
98
+ <language id="el" _lang="Greek Web TV and Radio">
99
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_el.m3u" _name="Web TV (Greek)"></channels_group>
100
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_el.m3u" _name="Web Radio (Greek)"></channels_group>
101
+ </language>
102
+ <language id="iw" _lang="Hebrew Web TV and Radio">
103
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_iw.m3u" _name="Web TV (Hebrew)"></channels_group>
104
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_iw.m3u" _name="Web Radio (Hebrew)"></channels_group>
105
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webcam_iw.m3u" _name="Web Cam (Hebrew)"></channels_group>
106
+ </language>
107
+ <language id="hi" _lang="Hindi Web TV and Radio">
108
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_hi.m3u" _name="Web TV (Hindi)"></channels_group>
109
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_hi.m3u" _name="Web Radio (Hindi)"></channels_group>
110
</language>
111
<language id="hu" _lang="Hungarian Web TV and Radio">
112
- <channels_group _name="Web TV (Hungarian)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_hu.m3u" />
113
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_hu.m3u" _name="Web TV (Hungarian)"></channels_group>
114
</language>
115
- <language id="el" _lang="Greek Web TV and Radio">
116
- <channels_group _name="Web TV (Greek)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_el.m3u" />
117
+ <language id="is" _lang="Icelandic Web TV and Radio">
118
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_is.m3u" _name="Web TV (Icelandic)"></channels_group>
119
+ </language>
120
+ <language id="in" _lang="Indonesian Web TV and Radio">
121
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_in.m3u" _name="Web TV (Indonesian)"></channels_group>
122
+ </language>
123
+ <language id="ia" _lang="Interlingua Web TV and Radio">
124
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_ia.m3u" _name="Web Radio (Interlingua)"></channels_group>
125
+ </language>
126
+ <language id="ga" _lang="Irish Web TV and Radio">
127
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_ga.m3u" _name="Web TV (Irish)"></channels_group>
128
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_ga.m3u" _name="Web Radio (Irish)"></channels_group>
129
</language>
130
<language id="it" _lang="Italian Web TV and Radio">
131
- <channels_group _name="Web Radio (Italian)" uri="http://database.freetuxtv.net/playlists/playlist_webradio_it.m3u" />
132
- <channels_group _name="Web TV (Italian)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_it.m3u" />
133
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_it.m3u" _name="Web TV (Italian)"></channels_group>
134
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_it.m3u" _name="Web Radio (Italian)"></channels_group>
135
</language>
136
<language id="ja" _lang="Japanese Web TV and Radio">
137
- <channels_group _name="Web TV (Japanese)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_ja.m3u" />
138
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_ja.m3u" _name="Web TV (Japanese)"></channels_group>
139
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_ja.m3u" _name="Web Radio (Japanese)"></channels_group>
140
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webcam_ja.m3u" _name="Web Cam (Japanese)"></channels_group>
141
+ </language>
142
+ <language id="kk" _lang="Kazakh Web TV and Radio">
143
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_kk.m3u" _name="Web TV (Kazakh)"></channels_group>
144
</language>
145
<language id="ko" _lang="Korean Web TV and Radio">
146
- <channels_group _name="Web TV (Korean)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_ko.m3u" />
147
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_ko.m3u" _name="Web TV (Korean)"></channels_group>
148
+ </language>
149
+ <language id="ku" _lang="Kurdish Web TV and Radio">
150
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_ku.m3u" _name="Web TV (Kurdish)"></channels_group>
151
</language>
152
<language id="la" _lang="Latin Web TV and Radio">
153
- <channels_group _name="Web TV (Latin)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_la.m3u" />
154
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_la.m3u" _name="Web TV (Latin)"></channels_group>
155
+ </language>
156
+ <language id="lv" _lang="Latvian/Lettish Web TV and Radio">
157
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_lv.m3u" _name="Web TV (Latvian/Lettish)"></channels_group>
158
+ </language>
159
+ <language id="lt" _lang="Lithuanian Web TV and Radio">
160
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_lt.m3u" _name="Web TV (Lithuanian)"></channels_group>
161
+ </language>
162
+ <language id="mk" _lang="Macedonian Web TV and Radio">
163
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_mk.m3u" _name="Web TV (Macedonian)"></channels_group>
164
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_mk.m3u" _name="Web Radio (Macedonian)"></channels_group>
165
</language>
166
- <language id="el" _lang="Modern Greek Web TV and Radio">
167
- <channels_group _name="Web TV (Modern Greek)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_el.m3u" />
168
+ <language id="ms" _lang="Malay Web TV and Radio">
169
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_ms.m3u" _name="Web TV (Malay)"></channels_group>
170
+ </language>
171
+ <language id="ml" _lang="Malayalam Web TV and Radio">
172
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_ml.m3u" _name="Web TV (Malayalam)"></channels_group>
173
+ </language>
174
+ <language id="mt" _lang="Maltese Web TV and Radio">
175
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_mt.m3u" _name="Web TV (Maltese)"></channels_group>
176
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_mt.m3u" _name="Web Radio (Maltese)"></channels_group>
177
+ </language>
178
+ <language id="mo" _lang="Moldavian Web TV and Radio">
179
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_mo.m3u" _name="Web TV (Moldavian)"></channels_group>
180
+ </language>
181
+ <language id="mn" _lang="Mongolian Web TV and Radio">
182
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_mn.m3u" _name="Web TV (Mongolian)"></channels_group>
183
</language>
184
<language id="no" _lang="Norwegian Web TV and Radio">
185
- <channels_group _name="Web TV (Norwegian)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_no.m3u" />
186
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_no.m3u" _name="Web TV (Norwegian)"></channels_group>
187
</language>
188
<language id="fa" _lang="Persian Web TV and Radio">
189
- <channels_group _name="Web TV (Persian)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_fa.m3u" />
190
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_fa.m3u" _name="Web TV (Persian)"></channels_group>
191
</language>
192
<language id="pl" _lang="Polish Web TV and Radio">
193
- <channels_group _name="Web TV (Polish)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_pl.m3u" />
194
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_pl.m3u" _name="Web TV (Polish)"></channels_group>
195
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webradio_pl.m3u" _name="Web Radio (Polish)"></channels_group>
196
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webcam_pl.m3u" _name="Web Cam (Polish)"></channels_group>
197
</language>
198
<language id="pt" _lang="Portuguese Web TV and Radio">
199
- <channels_group _name="Web TV (Portuguese)" uri="http://database.freetuxtv.net/playlists/playlist_webtv_pt.m3u" />
200
+ <channels_group uri="http://database.freetuxtv.net/playlists/playlist_webtv_pt.m3u" _name="Web TV (Portuguese)"></channels_group>
201
freetuxtv-0.6.5.tar.gz/data/icons/Makefile.am -> freetuxtv-0.6.6.tar.gz/data/icons/Makefile.am
Changed
19
1
2
hicolor_apps_22x22_freetuxtv.png \
3
hicolor_apps_32x32_freetuxtv.png \
4
hicolor_apps_48x48_freetuxtv.png \
5
+ hicolor_apps_64x64_freetuxtv.png \
6
+ hicolor_apps_128x128_freetuxtv.png \
7
hicolor_apps_scalable_freetuxtv.svg \
8
$(NULL)
9
10
11
hicolor_apps_22x22_freetuxtv.svg \
12
hicolor_apps_32x32_freetuxtv.svg \
13
hicolor_apps_48x48_freetuxtv.svg \
14
+ hicolor_apps_64x64_freetuxtv.svg \
15
+ hicolor_apps_128x128_freetuxtv.svg \
16
$(NULL)
17
18
EXTRA_DIST = \
19
freetuxtv-0.6.5.tar.gz/data/icons/Makefile.in -> freetuxtv-0.6.6.tar.gz/data/icons/Makefile.in
Changed
167
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
@SET_MAKE@
16
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = data/icons
70
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
71
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
72
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
73
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
74
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
75
$(ACLOCAL_M4)
76
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
77
+mkinstalldirs = $(install_sh) -d
78
CONFIG_HEADER = $(top_builddir)/config.h
79
CONFIG_CLEAN_FILES =
80
CONFIG_CLEAN_VPATH_FILES =
81
+AM_V_P = $(am__v_P_@AM_V@)
82
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
83
+am__v_P_0 = false
84
+am__v_P_1 = :
85
+AM_V_GEN = $(am__v_GEN_@AM_V@)
86
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
87
+am__v_GEN_0 = @echo " GEN " $@;
88
+am__v_GEN_1 =
89
+AM_V_at = $(am__v_at_@AM_V@)
90
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
91
+am__v_at_0 = @
92
+am__v_at_1 =
93
SOURCES =
94
DIST_SOURCES =
95
+am__can_run_installinfo = \
96
+ case $$AM_UPDATE_INFO_DIR in \
97
+ n|no|NO) false;; \
98
+ *) (install-info --version) >/dev/null 2>&1;; \
99
+ esac
100
DATA = $(noinst_DATA)
101
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
102
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
103
ACLOCAL = @ACLOCAL@
104
ALL_LINGUAS = @ALL_LINGUAS@
105
106
hicolor_apps_22x22_freetuxtv.png \
107
hicolor_apps_32x32_freetuxtv.png \
108
hicolor_apps_48x48_freetuxtv.png \
109
+ hicolor_apps_64x64_freetuxtv.png \
110
+ hicolor_apps_128x128_freetuxtv.png \
111
hicolor_apps_scalable_freetuxtv.svg \
112
$(NULL)
113
114
115
hicolor_apps_22x22_freetuxtv.svg \
116
hicolor_apps_32x32_freetuxtv.svg \
117
hicolor_apps_48x48_freetuxtv.svg \
118
+ hicolor_apps_64x64_freetuxtv.svg \
119
+ hicolor_apps_128x128_freetuxtv.svg \
120
$(NULL)
121
122
EXTRA_DIST = \
123
124
125
clean-libtool:
126
-rm -rf .libs _libs
127
-tags: TAGS
128
-TAGS:
129
+tags TAGS:
130
+
131
+ctags CTAGS:
132
133
-ctags: CTAGS
134
-CTAGS:
135
+cscope cscopelist:
136
137
138
distdir: $(DISTFILES)
139
140
.MAKE: install-am install-strip
141
142
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
143
- distclean distclean-generic distclean-libtool distdir dvi \
144
- dvi-am html html-am info info-am install install-am \
145
- install-data install-data-am install-data-local install-dvi \
146
- install-dvi-am install-exec install-exec-am install-html \
147
- install-html-am install-info install-info-am install-man \
148
- install-pdf install-pdf-am install-ps install-ps-am \
149
- install-strip installcheck installcheck-am installdirs \
150
- maintainer-clean maintainer-clean-generic mostlyclean \
151
- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
152
- uninstall uninstall-am uninstall-local
153
+ cscopelist-am ctags-am distclean distclean-generic \
154
+ distclean-libtool distdir dvi dvi-am html html-am info info-am \
155
+ install install-am install-data install-data-am \
156
+ install-data-local install-dvi install-dvi-am install-exec \
157
+ install-exec-am install-html install-html-am install-info \
158
+ install-info-am install-man install-pdf install-pdf-am \
159
+ install-ps install-ps-am install-strip installcheck \
160
+ installcheck-am installdirs maintainer-clean \
161
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
162
+ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
163
+ uninstall-am uninstall-local
164
165
166
update-icon-cache:
167
freetuxtv-0.6.6.tar.gz/data/icons/hicolor_apps_128x128_freetuxtv.png
Added
freetuxtv-0.6.6.tar.gz/data/icons/hicolor_apps_128x128_freetuxtv.svg
Added
201
1
2
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
4
+
5
+<svg
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:cc="http://creativecommons.org/ns#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+ xmlns:svg="http://www.w3.org/2000/svg"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:xlink="http://www.w3.org/1999/xlink"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ width="128"
15
+ height="128"
16
+ id="svg19089"
17
+ version="1.1"
18
+ inkscape:version="0.48.3.1 r9886"
19
+ sodipodi:docname="hicdolor_apps_48x48_freetuxtv.svg"
20
+ inkscape:export-filename="/home/ebeuque/Informatique/Personnel/Projets/autres/freetuxtv/freetuxtv/data/icons/hicolor_apps_scalable_freetuxtv.png"
21
+ inkscape:export-xdpi="90"
22
+ inkscape:export-ydpi="90">
23
+ <defs
24
+ id="defs19091">
25
+ <inkscape:perspective
26
+ sodipodi:type="inkscape:persp3d"
27
+ inkscape:vp_x="0 : 526.18109 : 1"
28
+ inkscape:vp_y="0 : 1000 : 0"
29
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
30
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
31
+ id="perspective19097" />
32
+ <inkscape:perspective
33
+ id="perspective19107"
34
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
35
+ inkscape:vp_z="1 : 0.5 : 1"
36
+ inkscape:vp_y="0 : 1000 : 0"
37
+ inkscape:vp_x="0 : 0.5 : 1"
38
+ sodipodi:type="inkscape:persp3d" />
39
+ <radialGradient
40
+ inkscape:collect="always"
41
+ xlink:href="#linearGradient6814"
42
+ id="radialGradient19039"
43
+ gradientUnits="userSpaceOnUse"
44
+ gradientTransform="matrix(0.58265832,0.48695545,-0.35874809,0.43561089,-6534.2634,8805.1227)"
45
+ cx="-11724.028"
46
+ cy="7085.5718"
47
+ fx="-11724.028"
48
+ fy="7085.5718"
49
+ r="230.60361" />
50
+ <linearGradient
51
+ inkscape:collect="always"
52
+ id="linearGradient6814">
53
+ <stop
54
+ style="stop-color:#ffffff;stop-opacity:1;"
55
+ offset="0"
56
+ id="stop6816" />
57
+ <stop
58
+ style="stop-color:#ffffff;stop-opacity:0;"
59
+ offset="1"
60
+ id="stop6818" />
61
+ </linearGradient>
62
+ <radialGradient
63
+ inkscape:collect="always"
64
+ xlink:href="#linearGradient22931"
65
+ id="radialGradient19041"
66
+ gradientUnits="userSpaceOnUse"
67
+ gradientTransform="matrix(0.70059678,0,0,0.39699302,-7364.8104,3547.1811)"
68
+ cx="-11699.636"
69
+ cy="6699.9062"
70
+ fx="-11699.636"
71
+ fy="6699.9062"
72
+ r="282.70825" />
73
+ <linearGradient
74
+ id="linearGradient22931"
75
+ inkscape:collect="always">
76
+ <stop
77
+ id="stop22933"
78
+ offset="0"
79
+ style="stop-color:#ffffff;stop-opacity:0.5" />
80
+ <stop
81
+ id="stop22935"
82
+ offset="1"
83
+ style="stop-color:#ffffff;stop-opacity:0;" />
84
+ </linearGradient>
85
+ <linearGradient
86
+ inkscape:collect="always"
87
+ xlink:href="#linearGradient7918"
88
+ id="linearGradient19043"
89
+ gradientUnits="userSpaceOnUse"
90
+ gradientTransform="matrix(0.85224082,0,0,0.85852814,-5913.9015,53.6739)"
91
+ x1="-11583.832"
92
+ y1="7177.8628"
93
+ x2="-11393.838"
94
+ y2="7307.4028" />
95
+ <linearGradient
96
+ id="linearGradient7918"
97
+ inkscape:collect="always">
98
+ <stop
99
+ id="stop7920"
100
+ offset="0"
101
+ style="stop-color:#ffffff;stop-opacity:1;" />
102
+ <stop
103
+ id="stop7922"
104
+ offset="1"
105
+ style="stop-color:#ffffff;stop-opacity:0;" />
106
+ </linearGradient>
107
+ <filter
108
+ color-interpolation-filters="sRGB"
109
+ height="1.7744713"
110
+ y="-0.38723564"
111
+ width="1.1470716"
112
+ x="-0.073535778"
113
+ id="filter7804"
114
+ inkscape:collect="always">
115
+ <feGaussianBlur
116
+ id="feGaussianBlur7806"
117
+ stdDeviation="20.83271"
118
+ inkscape:collect="always" />
119
+ </filter>
120
+ <radialGradient
121
+ inkscape:collect="always"
122
+ xlink:href="#linearGradient7834"
123
+ id="radialGradient19045"
124
+ gradientUnits="userSpaceOnUse"
125
+ gradientTransform="matrix(1,0,0,0.12345678,0,7047.5778)"
126
+ cx="-8773.3252"
127
+ cy="8040.1943"
128
+ fx="-8773.3252"
129
+ fy="8040.1943"
130
+ r="291.20587" />
131
+ <linearGradient
132
+ id="linearGradient7834"
133
+ inkscape:collect="always">
134
+ <stop
135
+ id="stop7836"
136
+ offset="0"
137
+ style="stop-color:#000000;stop-opacity:1;" />
138
+ <stop
139
+ id="stop7838"
140
+ offset="1"
141
+ style="stop-color:#000000;stop-opacity:0;" />
142
+ </linearGradient>
143
+ <radialGradient
144
+ inkscape:collect="always"
145
+ xlink:href="#linearGradient7834"
146
+ id="radialGradient19047"
147
+ gradientUnits="userSpaceOnUse"
148
+ gradientTransform="matrix(1,0,0,0.12345678,0,7047.5778)"
149
+ cx="-8773.3252"
150
+ cy="8040.1943"
151
+ fx="-8773.3252"
152
+ fy="8040.1943"
153
+ r="291.20587" />
154
+ <filter
155
+ id="filter10358"
156
+ color-interpolation-filters="sRGB"
157
+ height="1.3937207"
158
+ width="1.1726084"
159
+ y="-0.19686034"
160
+ x="-0.086304188">
161
+ <feGaussianBlur
162
+ stdDeviation="4.5870333"
163
+ id="feGaussianBlur10360" />
164
+ </filter>
165
+ <linearGradient
166
+ inkscape:collect="always"
167
+ xlink:href="#linearGradient10031"
168
+ id="linearGradient19049"
169
+ gradientUnits="userSpaceOnUse"
170
+ gradientTransform="matrix(1.2574371,0,0,1.2991162,-8898.6126,6772.5369)"
171
+ x1="283.625"
172
+ y1="324.5"
173
+ x2="283.625"
174
+ y2="380.875" />
175
+ <linearGradient
176
+ id="linearGradient10031">
177
+ <stop
178
+ offset="0"
179
+ style="stop-color:#ffffff;stop-opacity:0.67595828;"
180
+ id="stop10033" />
181
+ <stop
182
+ offset="0.5"
183
+ style="stop-color:#ffffff;stop-opacity:0.50196081"
184
+ id="stop10370" />
185
+ <stop
186
+ offset="1"
187
+ style="stop-color:#ffffff;stop-opacity:0"
188
+ id="stop10035" />
189
+ </linearGradient>
190
+ <filter
191
+ id="filter19143"
192
+ color-interpolation-filters="sRGB"
193
+ height="1.3937207"
194
+ width="1.1726084"
195
+ y="-0.19686034"
196
+ x="-0.086304188">
197
+ <feGaussianBlur
198
+ stdDeviation="4.5870333"
199
+ id="feGaussianBlur19145" />
200
+ </filter>
201
freetuxtv-0.6.6.tar.gz/data/icons/hicolor_apps_64x64_freetuxtv.png
Added
freetuxtv-0.6.6.tar.gz/data/icons/hicolor_apps_64x64_freetuxtv.svg
Added
201
1
2
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
3
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
4
+
5
+<svg
6
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
7
+ xmlns:cc="http://creativecommons.org/ns#"
8
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
9
+ xmlns:svg="http://www.w3.org/2000/svg"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ xmlns:xlink="http://www.w3.org/1999/xlink"
12
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
13
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
14
+ width="64"
15
+ height="64"
16
+ id="svg19089"
17
+ version="1.1"
18
+ inkscape:version="0.48.3.1 r9886"
19
+ sodipodi:docname="hicolor_apps_64x64_freetuxtv.svg"
20
+ inkscape:export-filename="/home/ebeuque/Informatique/Personnel/Projets/autres/freetuxtv/freetuxtv/data/icons/hicolor_apps_scalable_freetuxtv.png"
21
+ inkscape:export-xdpi="90"
22
+ inkscape:export-ydpi="90">
23
+ <defs
24
+ id="defs19091">
25
+ <inkscape:perspective
26
+ sodipodi:type="inkscape:persp3d"
27
+ inkscape:vp_x="0 : 526.18109 : 1"
28
+ inkscape:vp_y="0 : 1000 : 0"
29
+ inkscape:vp_z="744.09448 : 526.18109 : 1"
30
+ inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
31
+ id="perspective19097" />
32
+ <inkscape:perspective
33
+ id="perspective19107"
34
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
35
+ inkscape:vp_z="1 : 0.5 : 1"
36
+ inkscape:vp_y="0 : 1000 : 0"
37
+ inkscape:vp_x="0 : 0.5 : 1"
38
+ sodipodi:type="inkscape:persp3d" />
39
+ <radialGradient
40
+ inkscape:collect="always"
41
+ xlink:href="#linearGradient6814"
42
+ id="radialGradient19039"
43
+ gradientUnits="userSpaceOnUse"
44
+ gradientTransform="matrix(0.58265832,0.48695545,-0.35874809,0.43561089,-6534.2634,8805.1227)"
45
+ cx="-11724.028"
46
+ cy="7085.5718"
47
+ fx="-11724.028"
48
+ fy="7085.5718"
49
+ r="230.60361" />
50
+ <linearGradient
51
+ inkscape:collect="always"
52
+ id="linearGradient6814">
53
+ <stop
54
+ style="stop-color:#ffffff;stop-opacity:1;"
55
+ offset="0"
56
+ id="stop6816" />
57
+ <stop
58
+ style="stop-color:#ffffff;stop-opacity:0;"
59
+ offset="1"
60
+ id="stop6818" />
61
+ </linearGradient>
62
+ <radialGradient
63
+ inkscape:collect="always"
64
+ xlink:href="#linearGradient22931"
65
+ id="radialGradient19041"
66
+ gradientUnits="userSpaceOnUse"
67
+ gradientTransform="matrix(0.70059678,0,0,0.39699302,-7364.8104,3547.1811)"
68
+ cx="-11699.636"
69
+ cy="6699.9062"
70
+ fx="-11699.636"
71
+ fy="6699.9062"
72
+ r="282.70825" />
73
+ <linearGradient
74
+ id="linearGradient22931"
75
+ inkscape:collect="always">
76
+ <stop
77
+ id="stop22933"
78
+ offset="0"
79
+ style="stop-color:#ffffff;stop-opacity:0.5" />
80
+ <stop
81
+ id="stop22935"
82
+ offset="1"
83
+ style="stop-color:#ffffff;stop-opacity:0;" />
84
+ </linearGradient>
85
+ <linearGradient
86
+ inkscape:collect="always"
87
+ xlink:href="#linearGradient7918"
88
+ id="linearGradient19043"
89
+ gradientUnits="userSpaceOnUse"
90
+ gradientTransform="matrix(0.85224082,0,0,0.85852814,-5913.9015,53.6739)"
91
+ x1="-11583.832"
92
+ y1="7177.8628"
93
+ x2="-11393.838"
94
+ y2="7307.4028" />
95
+ <linearGradient
96
+ id="linearGradient7918"
97
+ inkscape:collect="always">
98
+ <stop
99
+ id="stop7920"
100
+ offset="0"
101
+ style="stop-color:#ffffff;stop-opacity:1;" />
102
+ <stop
103
+ id="stop7922"
104
+ offset="1"
105
+ style="stop-color:#ffffff;stop-opacity:0;" />
106
+ </linearGradient>
107
+ <filter
108
+ color-interpolation-filters="sRGB"
109
+ height="1.7744713"
110
+ y="-0.38723564"
111
+ width="1.1470716"
112
+ x="-0.073535778"
113
+ id="filter7804"
114
+ inkscape:collect="always">
115
+ <feGaussianBlur
116
+ id="feGaussianBlur7806"
117
+ stdDeviation="20.83271"
118
+ inkscape:collect="always" />
119
+ </filter>
120
+ <radialGradient
121
+ inkscape:collect="always"
122
+ xlink:href="#linearGradient7834"
123
+ id="radialGradient19045"
124
+ gradientUnits="userSpaceOnUse"
125
+ gradientTransform="matrix(1,0,0,0.12345678,0,7047.5778)"
126
+ cx="-8773.3252"
127
+ cy="8040.1943"
128
+ fx="-8773.3252"
129
+ fy="8040.1943"
130
+ r="291.20587" />
131
+ <linearGradient
132
+ id="linearGradient7834"
133
+ inkscape:collect="always">
134
+ <stop
135
+ id="stop7836"
136
+ offset="0"
137
+ style="stop-color:#000000;stop-opacity:1;" />
138
+ <stop
139
+ id="stop7838"
140
+ offset="1"
141
+ style="stop-color:#000000;stop-opacity:0;" />
142
+ </linearGradient>
143
+ <radialGradient
144
+ inkscape:collect="always"
145
+ xlink:href="#linearGradient7834"
146
+ id="radialGradient19047"
147
+ gradientUnits="userSpaceOnUse"
148
+ gradientTransform="matrix(1,0,0,0.12345678,0,7047.5778)"
149
+ cx="-8773.3252"
150
+ cy="8040.1943"
151
+ fx="-8773.3252"
152
+ fy="8040.1943"
153
+ r="291.20587" />
154
+ <filter
155
+ id="filter10358"
156
+ color-interpolation-filters="sRGB"
157
+ height="1.3937207"
158
+ width="1.1726084"
159
+ y="-0.19686034"
160
+ x="-0.086304188">
161
+ <feGaussianBlur
162
+ stdDeviation="4.5870333"
163
+ id="feGaussianBlur10360" />
164
+ </filter>
165
+ <linearGradient
166
+ inkscape:collect="always"
167
+ xlink:href="#linearGradient10031"
168
+ id="linearGradient19049"
169
+ gradientUnits="userSpaceOnUse"
170
+ gradientTransform="matrix(1.2574371,0,0,1.2991162,-8898.6126,6772.5369)"
171
+ x1="283.625"
172
+ y1="324.5"
173
+ x2="283.625"
174
+ y2="380.875" />
175
+ <linearGradient
176
+ id="linearGradient10031">
177
+ <stop
178
+ offset="0"
179
+ style="stop-color:#ffffff;stop-opacity:0.67595828;"
180
+ id="stop10033" />
181
+ <stop
182
+ offset="0.5"
183
+ style="stop-color:#ffffff;stop-opacity:0.50196081"
184
+ id="stop10370" />
185
+ <stop
186
+ offset="1"
187
+ style="stop-color:#ffffff;stop-opacity:0"
188
+ id="stop10035" />
189
+ </linearGradient>
190
+ <filter
191
+ id="filter19143"
192
+ color-interpolation-filters="sRGB"
193
+ height="1.3937207"
194
+ width="1.1726084"
195
+ y="-0.19686034"
196
+ x="-0.086304188">
197
+ <feGaussianBlur
198
+ stdDeviation="4.5870333"
199
+ id="feGaussianBlur19145" />
200
+ </filter>
201
freetuxtv-0.6.5.tar.gz/data/images/Makefile.in -> freetuxtv-0.6.6.tar.gz/data/images/Makefile.in
Changed
201
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
16
@SET_MAKE@
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = data/images
70
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
71
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
72
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
73
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
74
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
75
$(ACLOCAL_M4)
76
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
77
+mkinstalldirs = $(install_sh) -d
78
CONFIG_HEADER = $(top_builddir)/config.h
79
CONFIG_CLEAN_FILES =
80
CONFIG_CLEAN_VPATH_FILES =
81
+AM_V_P = $(am__v_P_@AM_V@)
82
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
83
+am__v_P_0 = false
84
+am__v_P_1 = :
85
+AM_V_GEN = $(am__v_GEN_@AM_V@)
86
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
87
+am__v_GEN_0 = @echo " GEN " $@;
88
+am__v_GEN_1 =
89
+AM_V_at = $(am__v_at_@AM_V@)
90
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
91
+am__v_at_0 = @
92
+am__v_at_1 =
93
SOURCES =
94
DIST_SOURCES =
95
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
96
- html-recursive info-recursive install-data-recursive \
97
- install-dvi-recursive install-exec-recursive \
98
- install-html-recursive install-info-recursive \
99
- install-pdf-recursive install-ps-recursive install-recursive \
100
- installcheck-recursive installdirs-recursive pdf-recursive \
101
- ps-recursive uninstall-recursive
102
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
103
+ ctags-recursive dvi-recursive html-recursive info-recursive \
104
+ install-data-recursive install-dvi-recursive \
105
+ install-exec-recursive install-html-recursive \
106
+ install-info-recursive install-pdf-recursive \
107
+ install-ps-recursive install-recursive installcheck-recursive \
108
+ installdirs-recursive pdf-recursive ps-recursive \
109
+ tags-recursive uninstall-recursive
110
+am__can_run_installinfo = \
111
+ case $$AM_UPDATE_INFO_DIR in \
112
+ n|no|NO) false;; \
113
+ *) (install-info --version) >/dev/null 2>&1;; \
114
+ esac
115
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
116
distclean-recursive maintainer-clean-recursive
117
-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
118
- $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
119
+am__recursive_targets = \
120
+ $(RECURSIVE_TARGETS) \
121
+ $(RECURSIVE_CLEAN_TARGETS) \
122
+ $(am__extra_recursive_targets)
123
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
124
distdir
125
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
126
+# Read a list of newline-separated strings from the standard input,
127
+# and print each of them once, without duplicates. Input order is
128
+# *not* preserved.
129
+am__uniquify_input = $(AWK) '\
130
+ BEGIN { nonempty = 0; } \
131
+ { items[$$0] = 1; nonempty = 1; } \
132
+ END { if (nonempty) { for (i in items) print i; }; } \
133
+'
134
+# Make sure the list of sources is unique. This is necessary because,
135
+# e.g., the same source file might be shared among _SOURCES variables
136
+# for different programs/libraries.
137
+am__define_uniq_tagged_files = \
138
+ list='$(am__tagged_files)'; \
139
+ unique=`for i in $$list; do \
140
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
141
+ done | $(am__uniquify_input)`
142
ETAGS = etags
143
CTAGS = ctags
144
DIST_SUBDIRS = $(SUBDIRS)
145
146
-rm -rf .libs _libs
147
148
# This directory's subdirectories are mostly independent; you can cd
149
-# into them and run `make' without going through this Makefile.
150
-# To change the values of `make' variables: instead of editing Makefiles,
151
-# (1) if the variable is set in `config.status', edit `config.status'
152
-# (which will cause the Makefiles to be regenerated when you run `make');
153
-# (2) otherwise, pass the desired values on the `make' command line.
154
-$(RECURSIVE_TARGETS):
155
- @fail= failcom='exit 1'; \
156
- for f in x $$MAKEFLAGS; do \
157
- case $$f in \
158
- *=* | --[!k]*);; \
159
- *k*) failcom='fail=yes';; \
160
- esac; \
161
- done; \
162
+# into them and run 'make' without going through this Makefile.
163
+# To change the values of 'make' variables: instead of editing Makefiles,
164
+# (1) if the variable is set in 'config.status', edit 'config.status'
165
+# (which will cause the Makefiles to be regenerated when you run 'make');
166
+# (2) otherwise, pass the desired values on the 'make' command line.
167
+$(am__recursive_targets):
168
+ @fail=; \
169
+ if $(am__make_keepgoing); then \
170
+ failcom='fail=yes'; \
171
+ else \
172
+ failcom='exit 1'; \
173
+ fi; \
174
dot_seen=no; \
175
target=`echo $@ | sed s/-recursive//`; \
176
- list='$(SUBDIRS)'; for subdir in $$list; do \
177
+ case "$@" in \
178
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
179
+ *) list='$(SUBDIRS)' ;; \
180
+ esac; \
181
+ for subdir in $$list; do \
182
echo "Making $$target in $$subdir"; \
183
if test "$$subdir" = "."; then \
184
dot_seen=yes; \
185
186
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
187
fi; test -z "$$fail"
188
189
-$(RECURSIVE_CLEAN_TARGETS):
190
- @fail= failcom='exit 1'; \
191
- for f in x $$MAKEFLAGS; do \
192
- case $$f in \
193
- *=* | --[!k]*);; \
194
- *k*) failcom='fail=yes';; \
195
- esac; \
196
- done; \
197
- dot_seen=no; \
198
- case "$@" in \
199
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
200
- *) list='$(SUBDIRS)' ;; \
201
freetuxtv-0.6.5.tar.gz/data/images/channels/Makefile.in -> freetuxtv-0.6.6.tar.gz/data/images/channels/Makefile.in
Changed
168
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
@SET_MAKE@
16
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = data/images/channels
70
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
71
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
72
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
73
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
74
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
75
$(ACLOCAL_M4)
76
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
77
+mkinstalldirs = $(install_sh) -d
78
CONFIG_HEADER = $(top_builddir)/config.h
79
CONFIG_CLEAN_FILES =
80
CONFIG_CLEAN_VPATH_FILES =
81
+AM_V_P = $(am__v_P_@AM_V@)
82
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
83
+am__v_P_0 = false
84
+am__v_P_1 = :
85
+AM_V_GEN = $(am__v_GEN_@AM_V@)
86
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
87
+am__v_GEN_0 = @echo " GEN " $@;
88
+am__v_GEN_1 =
89
+AM_V_at = $(am__v_at_@AM_V@)
90
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
91
+am__v_at_0 = @
92
+am__v_at_1 =
93
SOURCES =
94
DIST_SOURCES =
95
+am__can_run_installinfo = \
96
+ case $$AM_UPDATE_INFO_DIR in \
97
+ n|no|NO) false;; \
98
+ *) (install-info --version) >/dev/null 2>&1;; \
99
+ esac
100
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
101
am__vpath_adj = case $$p in \
102
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
103
104
}
105
am__installdirs = "$(DESTDIR)$(channelsdir)"
106
DATA = $(channels_DATA)
107
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
108
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
109
ACLOCAL = @ACLOCAL@
110
ALL_LINGUAS = @ALL_LINGUAS@
111
112
-rm -rf .libs _libs
113
install-channelsDATA: $(channels_DATA)
114
@$(NORMAL_INSTALL)
115
- test -z "$(channelsdir)" || $(MKDIR_P) "$(DESTDIR)$(channelsdir)"
116
@list='$(channels_DATA)'; test -n "$(channelsdir)" || list=; \
117
+ if test -n "$$list"; then \
118
+ echo " $(MKDIR_P) '$(DESTDIR)$(channelsdir)'"; \
119
+ $(MKDIR_P) "$(DESTDIR)$(channelsdir)" || exit 1; \
120
+ fi; \
121
for p in $$list; do \
122
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
123
echo "$$d$$p"; \
124
125
@list='$(channels_DATA)'; test -n "$(channelsdir)" || list=; \
126
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
127
dir='$(DESTDIR)$(channelsdir)'; $(am__uninstall_files_from_dir)
128
-tags: TAGS
129
-TAGS:
130
+tags TAGS:
131
+
132
+ctags CTAGS:
133
134
-ctags: CTAGS
135
-CTAGS:
136
+cscope cscopelist:
137
138
139
distdir: $(DISTFILES)
140
141
.MAKE: install-am install-strip
142
143
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
144
- distclean distclean-generic distclean-libtool distdir dvi \
145
- dvi-am html html-am info info-am install install-am \
146
- install-channelsDATA install-data install-data-am install-dvi \
147
- install-dvi-am install-exec install-exec-am install-html \
148
- install-html-am install-info install-info-am install-man \
149
- install-pdf install-pdf-am install-ps install-ps-am \
150
- install-strip installcheck installcheck-am installdirs \
151
- maintainer-clean maintainer-clean-generic mostlyclean \
152
- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
153
- uninstall uninstall-am uninstall-channelsDATA
154
+ cscopelist-am ctags-am distclean distclean-generic \
155
+ distclean-libtool distdir dvi dvi-am html html-am info info-am \
156
+ install install-am install-channelsDATA install-data \
157
+ install-data-am install-dvi install-dvi-am install-exec \
158
+ install-exec-am install-html install-html-am install-info \
159
+ install-info-am install-man install-pdf install-pdf-am \
160
+ install-ps install-ps-am install-strip installcheck \
161
+ installcheck-am installdirs maintainer-clean \
162
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
163
+ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
164
+ uninstall-am uninstall-channelsDATA
165
166
167
# Tell versions [3.59,3.63) of GNU make to not export all variables.
168
freetuxtv-0.6.5.tar.gz/data/images/groups/Makefile.in -> freetuxtv-0.6.6.tar.gz/data/images/groups/Makefile.in
Changed
146
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
16
@SET_MAKE@
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = data/images/groups
70
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
71
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
72
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
73
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
74
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
75
$(ACLOCAL_M4)
76
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
77
+mkinstalldirs = $(install_sh) -d
78
CONFIG_HEADER = $(top_builddir)/config.h
79
CONFIG_CLEAN_FILES =
80
CONFIG_CLEAN_VPATH_FILES =
81
+AM_V_P = $(am__v_P_@AM_V@)
82
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
83
+am__v_P_0 = false
84
+am__v_P_1 = :
85
+AM_V_GEN = $(am__v_GEN_@AM_V@)
86
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
87
+am__v_GEN_0 = @echo " GEN " $@;
88
+am__v_GEN_1 =
89
+AM_V_at = $(am__v_at_@AM_V@)
90
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
91
+am__v_at_0 = @
92
+am__v_at_1 =
93
SOURCES =
94
DIST_SOURCES =
95
+am__can_run_installinfo = \
96
+ case $$AM_UPDATE_INFO_DIR in \
97
+ n|no|NO) false;; \
98
+ *) (install-info --version) >/dev/null 2>&1;; \
99
+ esac
100
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
101
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
102
ACLOCAL = @ACLOCAL@
103
ALL_LINGUAS = @ALL_LINGUAS@
104
105
106
clean-libtool:
107
-rm -rf .libs _libs
108
-tags: TAGS
109
-TAGS:
110
+tags TAGS:
111
+
112
+ctags CTAGS:
113
114
-ctags: CTAGS
115
-CTAGS:
116
+cscope cscopelist:
117
118
119
distdir: $(DISTFILES)
120
121
.MAKE: install-am install-strip
122
123
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
124
- distclean distclean-generic distclean-libtool distdir dvi \
125
- dvi-am html html-am info info-am install install-am \
126
- install-data install-data-am install-dvi install-dvi-am \
127
- install-exec install-exec-am install-html install-html-am \
128
- install-info install-info-am install-man install-pdf \
129
- install-pdf-am install-ps install-ps-am install-strip \
130
- installcheck installcheck-am installdirs maintainer-clean \
131
- maintainer-clean-generic mostlyclean mostlyclean-generic \
132
- mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am
133
+ cscopelist-am ctags-am distclean distclean-generic \
134
+ distclean-libtool distdir dvi dvi-am html html-am info info-am \
135
+ install install-am install-data install-data-am install-dvi \
136
+ install-dvi-am install-exec install-exec-am install-html \
137
+ install-html-am install-info install-info-am install-man \
138
+ install-pdf install-pdf-am install-ps install-ps-am \
139
+ install-strip installcheck installcheck-am installdirs \
140
+ maintainer-clean maintainer-clean-generic mostlyclean \
141
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
142
+ tags-am uninstall uninstall-am
143
144
145
# Tell versions [3.59,3.63) of GNU make to not export all variables.
146
freetuxtv-0.6.5.tar.gz/data/menu/Makefile.in -> freetuxtv-0.6.6.tar.gz/data/menu/Makefile.in
Changed
168
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
@SET_MAKE@
16
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = data/menu
70
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
71
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
72
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
73
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
74
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
75
$(ACLOCAL_M4)
76
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
77
+mkinstalldirs = $(install_sh) -d
78
CONFIG_HEADER = $(top_builddir)/config.h
79
CONFIG_CLEAN_FILES =
80
CONFIG_CLEAN_VPATH_FILES =
81
+AM_V_P = $(am__v_P_@AM_V@)
82
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
83
+am__v_P_0 = false
84
+am__v_P_1 = :
85
+AM_V_GEN = $(am__v_GEN_@AM_V@)
86
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
87
+am__v_GEN_0 = @echo " GEN " $@;
88
+am__v_GEN_1 =
89
+AM_V_at = $(am__v_at_@AM_V@)
90
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
91
+am__v_at_0 = @
92
+am__v_at_1 =
93
SOURCES =
94
DIST_SOURCES =
95
+am__can_run_installinfo = \
96
+ case $$AM_UPDATE_INFO_DIR in \
97
+ n|no|NO) false;; \
98
+ *) (install-info --version) >/dev/null 2>&1;; \
99
+ esac
100
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
101
am__vpath_adj = case $$p in \
102
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
103
104
}
105
am__installdirs = "$(DESTDIR)$(desktopdir)"
106
DATA = $(desktop_DATA)
107
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
108
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
109
ACLOCAL = @ACLOCAL@
110
ALL_LINGUAS = @ALL_LINGUAS@
111
112
-rm -rf .libs _libs
113
install-desktopDATA: $(desktop_DATA)
114
@$(NORMAL_INSTALL)
115
- test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)"
116
@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
117
+ if test -n "$$list"; then \
118
+ echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \
119
+ $(MKDIR_P) "$(DESTDIR)$(desktopdir)" || exit 1; \
120
+ fi; \
121
for p in $$list; do \
122
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
123
echo "$$d$$p"; \
124
125
@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
126
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
127
dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir)
128
-tags: TAGS
129
-TAGS:
130
+tags TAGS:
131
+
132
+ctags CTAGS:
133
134
-ctags: CTAGS
135
-CTAGS:
136
+cscope cscopelist:
137
138
139
distdir: $(DISTFILES)
140
141
.MAKE: install-am install-strip
142
143
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
144
- distclean distclean-generic distclean-libtool distdir dvi \
145
- dvi-am html html-am info info-am install install-am \
146
- install-data install-data-am install-desktopDATA install-dvi \
147
- install-dvi-am install-exec install-exec-am install-html \
148
- install-html-am install-info install-info-am install-man \
149
- install-pdf install-pdf-am install-ps install-ps-am \
150
- install-strip installcheck installcheck-am installdirs \
151
- maintainer-clean maintainer-clean-generic mostlyclean \
152
- mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
153
- uninstall uninstall-am uninstall-desktopDATA
154
+ cscopelist-am ctags-am distclean distclean-generic \
155
+ distclean-libtool distdir dvi dvi-am html html-am info info-am \
156
+ install install-am install-data install-data-am \
157
+ install-desktopDATA install-dvi install-dvi-am install-exec \
158
+ install-exec-am install-html install-html-am install-info \
159
+ install-info-am install-man install-pdf install-pdf-am \
160
+ install-ps install-ps-am install-strip installcheck \
161
+ installcheck-am installdirs maintainer-clean \
162
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
163
+ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
164
+ uninstall-am uninstall-desktopDATA
165
166
@INTLTOOL_DESKTOP_RULE@
167
168
freetuxtv-0.6.5.tar.gz/data/ui/Makefile.in -> freetuxtv-0.6.6.tar.gz/data/ui/Makefile.in
Changed
169
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
@SET_MAKE@
16
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = data/ui
70
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
71
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
72
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
73
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
74
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
75
$(ACLOCAL_M4)
76
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
77
+mkinstalldirs = $(install_sh) -d
78
CONFIG_HEADER = $(top_builddir)/config.h
79
CONFIG_CLEAN_FILES =
80
CONFIG_CLEAN_VPATH_FILES =
81
+AM_V_P = $(am__v_P_@AM_V@)
82
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
83
+am__v_P_0 = false
84
+am__v_P_1 = :
85
+AM_V_GEN = $(am__v_GEN_@AM_V@)
86
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
87
+am__v_GEN_0 = @echo " GEN " $@;
88
+am__v_GEN_1 =
89
+AM_V_at = $(am__v_at_@AM_V@)
90
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
91
+am__v_at_0 = @
92
+am__v_at_1 =
93
SOURCES =
94
DIST_SOURCES =
95
+am__can_run_installinfo = \
96
+ case $$AM_UPDATE_INFO_DIR in \
97
+ n|no|NO) false;; \
98
+ *) (install-info --version) >/dev/null 2>&1;; \
99
+ esac
100
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
101
am__vpath_adj = case $$p in \
102
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
103
104
}
105
am__installdirs = "$(DESTDIR)$(freetuxtvuidir)"
106
DATA = $(freetuxtvui_DATA)
107
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
108
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
109
ACLOCAL = @ACLOCAL@
110
ALL_LINGUAS = @ALL_LINGUAS@
111
112
-rm -rf .libs _libs
113
install-freetuxtvuiDATA: $(freetuxtvui_DATA)
114
@$(NORMAL_INSTALL)
115
- test -z "$(freetuxtvuidir)" || $(MKDIR_P) "$(DESTDIR)$(freetuxtvuidir)"
116
@list='$(freetuxtvui_DATA)'; test -n "$(freetuxtvuidir)" || list=; \
117
+ if test -n "$$list"; then \
118
+ echo " $(MKDIR_P) '$(DESTDIR)$(freetuxtvuidir)'"; \
119
+ $(MKDIR_P) "$(DESTDIR)$(freetuxtvuidir)" || exit 1; \
120
+ fi; \
121
for p in $$list; do \
122
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
123
echo "$$d$$p"; \
124
125
@list='$(freetuxtvui_DATA)'; test -n "$(freetuxtvuidir)" || list=; \
126
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
127
dir='$(DESTDIR)$(freetuxtvuidir)'; $(am__uninstall_files_from_dir)
128
-tags: TAGS
129
-TAGS:
130
+tags TAGS:
131
+
132
+ctags CTAGS:
133
134
-ctags: CTAGS
135
-CTAGS:
136
+cscope cscopelist:
137
138
139
distdir: $(DISTFILES)
140
141
.MAKE: install-am install-strip
142
143
.PHONY: all all-am check check-am clean clean-generic clean-libtool \
144
- distclean distclean-generic distclean-libtool distdir dvi \
145
- dvi-am html html-am info info-am install install-am \
146
- install-data install-data-am install-dvi install-dvi-am \
147
- install-exec install-exec-am install-freetuxtvuiDATA \
148
- install-html install-html-am install-info install-info-am \
149
- install-man install-pdf install-pdf-am install-ps \
150
- install-ps-am install-strip installcheck installcheck-am \
151
- installdirs maintainer-clean maintainer-clean-generic \
152
- mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
153
- ps ps-am uninstall uninstall-am uninstall-freetuxtvuiDATA \
154
- uninstall-local
155
+ cscopelist-am ctags-am distclean distclean-generic \
156
+ distclean-libtool distdir dvi dvi-am html html-am info info-am \
157
+ install install-am install-data install-data-am install-dvi \
158
+ install-dvi-am install-exec install-exec-am \
159
+ install-freetuxtvuiDATA install-html install-html-am \
160
+ install-info install-info-am install-man install-pdf \
161
+ install-pdf-am install-ps install-ps-am install-strip \
162
+ installcheck installcheck-am installdirs maintainer-clean \
163
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
164
+ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \
165
+ uninstall-am uninstall-freetuxtvuiDATA uninstall-local
166
167
168
# Remove ui directory on uninstall
169
freetuxtv-0.6.5.tar.gz/depcomp -> freetuxtv-0.6.6.tar.gz/depcomp
Changed
201
1
2
#! /bin/sh
3
# depcomp - compile a program generating dependencies as side-effects
4
5
-scriptversion=2011-12-04.11; # UTC
6
+scriptversion=2013-05-30.07; # UTC
7
8
-# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009, 2010,
9
-# 2011 Free Software Foundation, Inc.
10
+# Copyright (C) 1999-2013 Free Software Foundation, Inc.
11
12
# This program is free software; you can redistribute it and/or modify
13
# it under the terms of the GNU General Public License as published by
14
15
16
case $1 in
17
'')
18
- echo "$0: No command. Try \`$0 --help' for more information." 1>&2
19
- exit 1;
20
- ;;
21
+ echo "$0: No command. Try '$0 --help' for more information." 1>&2
22
+ exit 1;
23
+ ;;
24
-h | --h*)
25
cat <<\EOF
26
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
27
28
29
Environment variables:
30
depmode Dependency tracking mode.
31
- source Source file read by `PROGRAMS ARGS'.
32
- object Object file output by `PROGRAMS ARGS'.
33
+ source Source file read by 'PROGRAMS ARGS'.
34
+ object Object file output by 'PROGRAMS ARGS'.
35
DEPDIR directory where to store dependencies.
36
depfile Dependency file to output.
37
tmpdepfile Temporary file to use when outputting dependencies.
38
39
;;
40
esac
41
42
+# Get the directory component of the given path, and save it in the
43
+# global variables '$dir'. Note that this directory component will
44
+# be either empty or ending with a '/' character. This is deliberate.
45
+set_dir_from ()
46
+{
47
+ case $1 in
48
+ */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
49
+ *) dir=;;
50
+ esac
51
+}
52
+
53
+# Get the suffix-stripped basename of the given path, and save it the
54
+# global variable '$base'.
55
+set_base_from ()
56
+{
57
+ base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
58
+}
59
+
60
+# If no dependency file was actually created by the compiler invocation,
61
+# we still have to create a dummy depfile, to avoid errors with the
62
+# Makefile "include basename.Plo" scheme.
63
+make_dummy_depfile ()
64
+{
65
+ echo "#dummy" > "$depfile"
66
+}
67
+
68
+# Factor out some common post-processing of the generated depfile.
69
+# Requires the auxiliary global variable '$tmpdepfile' to be set.
70
+aix_post_process_depfile ()
71
+{
72
+ # If the compiler actually managed to produce a dependency file,
73
+ # post-process it.
74
+ if test -f "$tmpdepfile"; then
75
+ # Each line is of the form 'foo.o: dependency.h'.
76
+ # Do two passes, one to just change these to
77
+ # $object: dependency.h
78
+ # and one to simply output
79
+ # dependency.h:
80
+ # which is needed to avoid the deleted-header problem.
81
+ { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
82
+ sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
83
+ } > "$depfile"
84
+ rm -f "$tmpdepfile"
85
+ else
86
+ make_dummy_depfile
87
+ fi
88
+}
89
+
90
+# A tabulation character.
91
+tab=' '
92
+# A newline character.
93
+nl='
94
+'
95
+# Character ranges might be problematic outside the C locale.
96
+# These definitions help.
97
+upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
98
+lower=abcdefghijklmnopqrstuvwxyz
99
+digits=0123456789
100
+alpha=${upper}${lower}
101
+
102
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
103
echo "depcomp: Variables source, object and depmode must be set" 1>&2
104
exit 1
105
106
107
rm -f "$tmpdepfile"
108
109
+# Avoid interferences from the environment.
110
+gccflag= dashmflag=
111
+
112
# Some modes work just like other modes, but use different flags. We
113
# parameterize here, but still list the modes in the big case below,
114
# to make depend.m4 easier to write. Note that we *cannot* use a case
115
116
fi
117
118
if test "$depmode" = dashXmstdout; then
119
- # This is just like dashmstdout with a different argument.
120
- dashmflag=-xM
121
- depmode=dashmstdout
122
+ # This is just like dashmstdout with a different argument.
123
+ dashmflag=-xM
124
+ depmode=dashmstdout
125
fi
126
127
cygpath_u="cygpath -u -f -"
128
if test "$depmode" = msvcmsys; then
129
- # This is just like msvisualcpp but w/o cygpath translation.
130
- # Just convert the backslash-escaped backslashes to single forward
131
- # slashes to satisfy depend.m4
132
- cygpath_u='sed s,\\\\,/,g'
133
- depmode=msvisualcpp
134
+ # This is just like msvisualcpp but w/o cygpath translation.
135
+ # Just convert the backslash-escaped backslashes to single forward
136
+ # slashes to satisfy depend.m4
137
+ cygpath_u='sed s,\\\\,/,g'
138
+ depmode=msvisualcpp
139
fi
140
141
if test "$depmode" = msvc7msys; then
142
- # This is just like msvc7 but w/o cygpath translation.
143
- # Just convert the backslash-escaped backslashes to single forward
144
- # slashes to satisfy depend.m4
145
- cygpath_u='sed s,\\\\,/,g'
146
- depmode=msvc7
147
+ # This is just like msvc7 but w/o cygpath translation.
148
+ # Just convert the backslash-escaped backslashes to single forward
149
+ # slashes to satisfy depend.m4
150
+ cygpath_u='sed s,\\\\,/,g'
151
+ depmode=msvc7
152
+fi
153
+
154
+if test "$depmode" = xlc; then
155
+ # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
156
+ gccflag=-qmakedep=gcc,-MF
157
+ depmode=gcc
158
fi
159
160
case "$depmode" in
161
162
done
163
"$@"
164
stat=$?
165
- if test $stat -eq 0; then :
166
- else
167
+ if test $stat -ne 0; then
168
rm -f "$tmpdepfile"
169
exit $stat
170
fi
171
172
;;
173
174
gcc)
175
+## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
176
+## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
177
+## (see the conditional assignment to $gccflag above).
178
## There are various ways to get dependency output from gcc. Here's
179
## why we pick this rather obscure method:
180
## - Don't want to use -MD because we'd like the dependencies to end
181
## up in a subdir. Having to rename by hand is ugly.
182
## (We might end up doing this anyway to support other compilers.)
183
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
184
-## -MM, not -M (despite what the docs say).
185
+## -MM, not -M (despite what the docs say). Also, it might not be
186
+## supported by the other compilers which use the 'gcc' depmode.
187
## - Using -M directly means running the compiler twice (even worse
188
## than renaming).
189
if test -z "$gccflag"; then
190
191
fi
192
"$@" -Wp,"$gccflag$tmpdepfile"
193
stat=$?
194
- if test $stat -eq 0; then :
195
- else
196
+ if test $stat -ne 0; then
197
rm -f "$tmpdepfile"
198
exit $stat
199
fi
200
rm -f "$depfile"
201
freetuxtv-0.6.5.tar.gz/install-sh -> freetuxtv-0.6.6.tar.gz/install-sh
Changed
64
1
2
#!/bin/sh
3
# install - install a program, script, or datafile
4
5
-scriptversion=2011-01-19.21; # UTC
6
+scriptversion=2011-11-20.07; # UTC
7
8
# This originates from X11R5 (mit/util/scripts/install.sh), which was
9
# later released in X11R6 (xc/config/util/install.sh) with the
10
11
# FSF changes to this file are in the public domain.
12
#
13
# Calling this script install-sh is preferred over install.sh, to prevent
14
-# `make' implicit rules from creating a file called install from it
15
+# 'make' implicit rules from creating a file called install from it
16
# when there is no Makefile.
17
#
18
# This script is compatible with the BSD install script, but was written
19
20
-s) stripcmd=$stripprog;;
21
22
-t) dst_arg=$2
23
- # Protect names problematic for `test' and other utilities.
24
+ # Protect names problematic for 'test' and other utilities.
25
case $dst_arg in
26
-* | [=\(\)!]) dst_arg=./$dst_arg;;
27
esac
28
29
fi
30
shift # arg
31
dst_arg=$arg
32
- # Protect names problematic for `test' and other utilities.
33
+ # Protect names problematic for 'test' and other utilities.
34
case $dst_arg in
35
-* | [=\(\)!]) dst_arg=./$dst_arg;;
36
esac
37
38
echo "$0: no input file specified." >&2
39
exit 1
40
fi
41
- # It's OK to call `install-sh -d' without argument.
42
+ # It's OK to call 'install-sh -d' without argument.
43
# This can happen when creating conditional directories.
44
exit 0
45
fi
46
47
48
for src
49
do
50
- # Protect names problematic for `test' and other utilities.
51
+ # Protect names problematic for 'test' and other utilities.
52
case $src in
53
-* | [=\(\)!]) src=./$src;;
54
esac
55
56
if test -z "$dir_arg" || {
57
# Check for POSIX incompatibilities with -m.
58
# HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
59
- # other-writeable bit of parent directory when it shouldn't.
60
+ # other-writable bit of parent directory when it shouldn't.
61
# FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
62
ls_ld_tmpdir=`ls -ld "$tmpdir"`
63
case $ls_ld_tmpdir in
64
freetuxtv-0.6.5.tar.gz/lib/Makefile.in -> freetuxtv-0.6.6.tar.gz/lib/Makefile.in
Changed
201
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
16
@SET_MAKE@
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = lib
70
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
71
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
72
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
73
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
74
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
75
$(ACLOCAL_M4)
76
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
77
+mkinstalldirs = $(install_sh) -d
78
CONFIG_HEADER = $(top_builddir)/config.h
79
CONFIG_CLEAN_FILES =
80
CONFIG_CLEAN_VPATH_FILES =
81
+AM_V_P = $(am__v_P_@AM_V@)
82
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
83
+am__v_P_0 = false
84
+am__v_P_1 = :
85
+AM_V_GEN = $(am__v_GEN_@AM_V@)
86
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
87
+am__v_GEN_0 = @echo " GEN " $@;
88
+am__v_GEN_1 =
89
+AM_V_at = $(am__v_at_@AM_V@)
90
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
91
+am__v_at_0 = @
92
+am__v_at_1 =
93
SOURCES =
94
DIST_SOURCES =
95
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
96
- html-recursive info-recursive install-data-recursive \
97
- install-dvi-recursive install-exec-recursive \
98
- install-html-recursive install-info-recursive \
99
- install-pdf-recursive install-ps-recursive install-recursive \
100
- installcheck-recursive installdirs-recursive pdf-recursive \
101
- ps-recursive uninstall-recursive
102
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
103
+ ctags-recursive dvi-recursive html-recursive info-recursive \
104
+ install-data-recursive install-dvi-recursive \
105
+ install-exec-recursive install-html-recursive \
106
+ install-info-recursive install-pdf-recursive \
107
+ install-ps-recursive install-recursive installcheck-recursive \
108
+ installdirs-recursive pdf-recursive ps-recursive \
109
+ tags-recursive uninstall-recursive
110
+am__can_run_installinfo = \
111
+ case $$AM_UPDATE_INFO_DIR in \
112
+ n|no|NO) false;; \
113
+ *) (install-info --version) >/dev/null 2>&1;; \
114
+ esac
115
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
116
distclean-recursive maintainer-clean-recursive
117
-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
118
- $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
119
+am__recursive_targets = \
120
+ $(RECURSIVE_TARGETS) \
121
+ $(RECURSIVE_CLEAN_TARGETS) \
122
+ $(am__extra_recursive_targets)
123
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
124
distdir
125
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
126
+# Read a list of newline-separated strings from the standard input,
127
+# and print each of them once, without duplicates. Input order is
128
+# *not* preserved.
129
+am__uniquify_input = $(AWK) '\
130
+ BEGIN { nonempty = 0; } \
131
+ { items[$$0] = 1; nonempty = 1; } \
132
+ END { if (nonempty) { for (i in items) print i; }; } \
133
+'
134
+# Make sure the list of sources is unique. This is necessary because,
135
+# e.g., the same source file might be shared among _SOURCES variables
136
+# for different programs/libraries.
137
+am__define_uniq_tagged_files = \
138
+ list='$(am__tagged_files)'; \
139
+ unique=`for i in $$list; do \
140
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
141
+ done | $(am__uniquify_input)`
142
ETAGS = etags
143
CTAGS = ctags
144
DIST_SUBDIRS = $(SUBDIRS)
145
146
-rm -rf .libs _libs
147
148
# This directory's subdirectories are mostly independent; you can cd
149
-# into them and run `make' without going through this Makefile.
150
-# To change the values of `make' variables: instead of editing Makefiles,
151
-# (1) if the variable is set in `config.status', edit `config.status'
152
-# (which will cause the Makefiles to be regenerated when you run `make');
153
-# (2) otherwise, pass the desired values on the `make' command line.
154
-$(RECURSIVE_TARGETS):
155
- @fail= failcom='exit 1'; \
156
- for f in x $$MAKEFLAGS; do \
157
- case $$f in \
158
- *=* | --[!k]*);; \
159
- *k*) failcom='fail=yes';; \
160
- esac; \
161
- done; \
162
+# into them and run 'make' without going through this Makefile.
163
+# To change the values of 'make' variables: instead of editing Makefiles,
164
+# (1) if the variable is set in 'config.status', edit 'config.status'
165
+# (which will cause the Makefiles to be regenerated when you run 'make');
166
+# (2) otherwise, pass the desired values on the 'make' command line.
167
+$(am__recursive_targets):
168
+ @fail=; \
169
+ if $(am__make_keepgoing); then \
170
+ failcom='fail=yes'; \
171
+ else \
172
+ failcom='exit 1'; \
173
+ fi; \
174
dot_seen=no; \
175
target=`echo $@ | sed s/-recursive//`; \
176
- list='$(SUBDIRS)'; for subdir in $$list; do \
177
+ case "$@" in \
178
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
179
+ *) list='$(SUBDIRS)' ;; \
180
+ esac; \
181
+ for subdir in $$list; do \
182
echo "Making $$target in $$subdir"; \
183
if test "$$subdir" = "."; then \
184
dot_seen=yes; \
185
186
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
187
fi; test -z "$$fail"
188
189
-$(RECURSIVE_CLEAN_TARGETS):
190
- @fail= failcom='exit 1'; \
191
- for f in x $$MAKEFLAGS; do \
192
- case $$f in \
193
- *=* | --[!k]*);; \
194
- *k*) failcom='fail=yes';; \
195
- esac; \
196
- done; \
197
- dot_seen=no; \
198
- case "$@" in \
199
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
200
- *) list='$(SUBDIRS)' ;; \
201
freetuxtv-0.6.5.tar.gz/lib/libdbevolution/Makefile.in -> freetuxtv-0.6.6.tar.gz/lib/libdbevolution/Makefile.in
Changed
201
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
16
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = lib/libdbevolution
70
-DIST_COMMON = $(libdbevolutioninclude_HEADERS) $(srcdir)/Makefile.am \
71
- $(srcdir)/Makefile.in
72
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
73
+ $(top_srcdir)/depcomp $(libdbevolutioninclude_HEADERS)
74
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
75
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
76
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
77
$(ACLOCAL_M4)
78
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
79
+mkinstalldirs = $(install_sh) -d
80
CONFIG_HEADER = $(top_builddir)/config.h
81
CONFIG_CLEAN_FILES =
82
CONFIG_CLEAN_VPATH_FILES =
83
84
libdbevolution_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
85
am_libdbevolution_la_OBJECTS = db-evolution-instance.lo
86
libdbevolution_la_OBJECTS = $(am_libdbevolution_la_OBJECTS)
87
-libdbevolution_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
88
- $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
89
- $(libdbevolution_la_LDFLAGS) $(LDFLAGS) -o $@
90
+AM_V_lt = $(am__v_lt_@AM_V@)
91
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
92
+am__v_lt_0 = --silent
93
+am__v_lt_1 =
94
+libdbevolution_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
95
+ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
96
+ $(AM_CFLAGS) $(CFLAGS) $(libdbevolution_la_LDFLAGS) $(LDFLAGS) \
97
+ -o $@
98
+AM_V_P = $(am__v_P_@AM_V@)
99
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
100
+am__v_P_0 = false
101
+am__v_P_1 = :
102
+AM_V_GEN = $(am__v_GEN_@AM_V@)
103
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
104
+am__v_GEN_0 = @echo " GEN " $@;
105
+am__v_GEN_1 =
106
+AM_V_at = $(am__v_at_@AM_V@)
107
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
108
+am__v_at_0 = @
109
+am__v_at_1 =
110
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
111
depcomp = $(SHELL) $(top_srcdir)/depcomp
112
am__depfiles_maybe = depfiles
113
am__mv = mv -f
114
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
115
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
116
-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
117
- --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
118
- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
119
+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
120
+ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
121
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
122
+ $(AM_CFLAGS) $(CFLAGS)
123
+AM_V_CC = $(am__v_CC_@AM_V@)
124
+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
125
+am__v_CC_0 = @echo " CC " $@;
126
+am__v_CC_1 =
127
CCLD = $(CC)
128
-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
129
- --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
130
- $(LDFLAGS) -o $@
131
+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
132
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
133
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
134
+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
135
+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
136
+am__v_CCLD_0 = @echo " CCLD " $@;
137
+am__v_CCLD_1 =
138
SOURCES = $(libdbevolution_la_SOURCES)
139
DIST_SOURCES = $(libdbevolution_la_SOURCES)
140
+am__can_run_installinfo = \
141
+ case $$AM_UPDATE_INFO_DIR in \
142
+ n|no|NO) false;; \
143
+ *) (install-info --version) >/dev/null 2>&1;; \
144
+ esac
145
HEADERS = $(libdbevolutioninclude_HEADERS)
146
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
147
+# Read a list of newline-separated strings from the standard input,
148
+# and print each of them once, without duplicates. Input order is
149
+# *not* preserved.
150
+am__uniquify_input = $(AWK) '\
151
+ BEGIN { nonempty = 0; } \
152
+ { items[$$0] = 1; nonempty = 1; } \
153
+ END { if (nonempty) { for (i in items) print i; }; } \
154
+'
155
+# Make sure the list of sources is unique. This is necessary because,
156
+# e.g., the same source file might be shared among _SOURCES variables
157
+# for different programs/libraries.
158
+am__define_uniq_tagged_files = \
159
+ list='$(am__tagged_files)'; \
160
+ unique=`for i in $$list; do \
161
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
162
+ done | $(am__uniquify_input)`
163
ETAGS = etags
164
CTAGS = ctags
165
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
166
167
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
168
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
169
$(am__aclocal_m4_deps):
170
+
171
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
172
@$(NORMAL_INSTALL)
173
- test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
174
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
175
list2=; for p in $$list; do \
176
if test -f $$p; then \
177
178
else :; fi; \
179
done; \
180
test -z "$$list2" || { \
181
+ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
182
+ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
183
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
184
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
185
}
186
187
188
clean-libLTLIBRARIES:
189
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
190
- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
191
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
192
- test "$$dir" != "$$p" || dir=.; \
193
- echo "rm -f \"$${dir}/so_locations\""; \
194
- rm -f "$${dir}/so_locations"; \
195
- done
196
+ @list='$(lib_LTLIBRARIES)'; \
197
+ locs=`for p in $$list; do echo $$p; done | \
198
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
199
+ sort -u`; \
200
+ test -z "$$locs" || { \
201
freetuxtv-0.6.5.tar.gz/lib/libvlc-gtk/Makefile.in -> freetuxtv-0.6.6.tar.gz/lib/libvlc-gtk/Makefile.in
Changed
201
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
16
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
build_triplet = @build@
68
host_triplet = @host@
69
subdir = lib/libvlc-gtk
70
-DIST_COMMON = $(libvlcgtkinclude_HEADERS) $(srcdir)/Makefile.am \
71
- $(srcdir)/Makefile.in
72
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
73
+ $(top_srcdir)/depcomp $(libvlcgtkinclude_HEADERS)
74
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
75
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
76
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
77
$(ACLOCAL_M4)
78
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
79
+mkinstalldirs = $(install_sh) -d
80
CONFIG_HEADER = $(top_builddir)/config.h
81
CONFIG_CLEAN_FILES =
82
CONFIG_CLEAN_VPATH_FILES =
83
84
am_libvlc_gtk_la_OBJECTS = gtk-libvlc-instance.lo gtk-libvlc-media.lo \
85
gtk-libvlc-media-player.lo
86
libvlc_gtk_la_OBJECTS = $(am_libvlc_gtk_la_OBJECTS)
87
-libvlc_gtk_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
88
+AM_V_lt = $(am__v_lt_@AM_V@)
89
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
90
+am__v_lt_0 = --silent
91
+am__v_lt_1 =
92
+libvlc_gtk_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
93
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
94
$(libvlc_gtk_la_LDFLAGS) $(LDFLAGS) -o $@
95
+AM_V_P = $(am__v_P_@AM_V@)
96
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
97
+am__v_P_0 = false
98
+am__v_P_1 = :
99
+AM_V_GEN = $(am__v_GEN_@AM_V@)
100
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
101
+am__v_GEN_0 = @echo " GEN " $@;
102
+am__v_GEN_1 =
103
+AM_V_at = $(am__v_at_@AM_V@)
104
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
105
+am__v_at_0 = @
106
+am__v_at_1 =
107
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
108
depcomp = $(SHELL) $(top_srcdir)/depcomp
109
am__depfiles_maybe = depfiles
110
am__mv = mv -f
111
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
112
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
113
-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
114
- --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
115
- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
116
+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
117
+ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
118
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
119
+ $(AM_CFLAGS) $(CFLAGS)
120
+AM_V_CC = $(am__v_CC_@AM_V@)
121
+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
122
+am__v_CC_0 = @echo " CC " $@;
123
+am__v_CC_1 =
124
CCLD = $(CC)
125
-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
126
- --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
127
- $(LDFLAGS) -o $@
128
+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
129
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
130
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
131
+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
132
+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
133
+am__v_CCLD_0 = @echo " CCLD " $@;
134
+am__v_CCLD_1 =
135
SOURCES = $(libvlc_gtk_la_SOURCES)
136
DIST_SOURCES = $(libvlc_gtk_la_SOURCES)
137
+am__can_run_installinfo = \
138
+ case $$AM_UPDATE_INFO_DIR in \
139
+ n|no|NO) false;; \
140
+ *) (install-info --version) >/dev/null 2>&1;; \
141
+ esac
142
HEADERS = $(libvlcgtkinclude_HEADERS)
143
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
144
+# Read a list of newline-separated strings from the standard input,
145
+# and print each of them once, without duplicates. Input order is
146
+# *not* preserved.
147
+am__uniquify_input = $(AWK) '\
148
+ BEGIN { nonempty = 0; } \
149
+ { items[$$0] = 1; nonempty = 1; } \
150
+ END { if (nonempty) { for (i in items) print i; }; } \
151
+'
152
+# Make sure the list of sources is unique. This is necessary because,
153
+# e.g., the same source file might be shared among _SOURCES variables
154
+# for different programs/libraries.
155
+am__define_uniq_tagged_files = \
156
+ list='$(am__tagged_files)'; \
157
+ unique=`for i in $$list; do \
158
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
159
+ done | $(am__uniquify_input)`
160
ETAGS = etags
161
CTAGS = ctags
162
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
163
164
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
165
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
166
$(am__aclocal_m4_deps):
167
+
168
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
169
@$(NORMAL_INSTALL)
170
- test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
171
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
172
list2=; for p in $$list; do \
173
if test -f $$p; then \
174
175
else :; fi; \
176
done; \
177
test -z "$$list2" || { \
178
+ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
179
+ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
180
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
181
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
182
}
183
184
185
clean-libLTLIBRARIES:
186
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
187
- @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
188
- dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
189
- test "$$dir" != "$$p" || dir=.; \
190
- echo "rm -f \"$${dir}/so_locations\""; \
191
- rm -f "$${dir}/so_locations"; \
192
- done
193
+ @list='$(lib_LTLIBRARIES)'; \
194
+ locs=`for p in $$list; do echo $$p; done | \
195
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
196
+ sort -u`; \
197
+ test -z "$$locs" || { \
198
+ echo rm -f $${locs}; \
199
+ rm -f $${locs}; \
200
+ }
201
freetuxtv-0.6.5.tar.gz/lib/libvlc-gtk/gtk-libvlc-instance.c -> freetuxtv-0.6.6.tar.gz/lib/libvlc-gtk/gtk-libvlc-instance.c
Changed
64
1
2
gtk_libvlc_instance_new (const gchar* vlc_args[], GLogFunc log_func, GError** error)
3
{
4
if(error != NULL){
5
- g_return_if_fail(*error == NULL);
6
+ g_return_val_if_fail(*error == NULL, NULL);
7
}
8
9
GError* pError = NULL;
10
11
libvlc_exception_init (&_vlcexcep);
12
#endif // LIBVLC_OLD_VLCEXCEPTION
13
14
+ int iVlcArgsCount = 0;
15
+
16
if(vlc_args){
17
szListOptions = g_strjoinv(" ", (gchar**)vlc_args);
18
+ iVlcArgsCount = g_strv_length((gchar**)vlc_args);
19
}
20
21
if(szListOptions){
22
g_log(GTK_LIBVLC_LOG_DOMAIN, G_LOG_LEVEL_INFO,
23
- "Using instance vlc options [%s]\n", szListOptions);
24
+ "Using instance vlc with %d options [%s]\n", iVlcArgsCount, szListOptions);
25
g_free(szListOptions);
26
szListOptions = NULL;
27
}
28
29
if(vlc_args == NULL){
30
priv->libvlc_instance = libvlc_new(0, NULL, &_vlcexcep);
31
}else{
32
- priv->libvlc_instance = libvlc_new(sizeof(vlc_args) / sizeof(vlc_args[0]), (gchar**)vlc_args, &_vlcexcep);
33
+ priv->libvlc_instance = libvlc_new(iVlcArgsCount, (gchar**)vlc_args, &_vlcexcep);
34
}
35
#else
36
#ifdef LIBVLC_OLD_VLCEXCEPTION
37
if(vlc_args == NULL){
38
priv->libvlc_instance = libvlc_new(0, NULL, &_vlcexcep);
39
}else{
40
- priv->libvlc_instance = libvlc_new(sizeof(vlc_args) / sizeof(vlc_args[0]), vlc_args, &_vlcexcep);
41
+ priv->libvlc_instance = libvlc_new(iVlcArgsCount, vlc_args, &_vlcexcep);
42
}
43
#else
44
if(vlc_args == NULL){
45
priv->libvlc_instance = libvlc_new(0, NULL);
46
}else{
47
- priv->libvlc_instance = libvlc_new(sizeof(vlc_args) / sizeof(vlc_args[0]), vlc_args);
48
+ priv->libvlc_instance = libvlc_new(iVlcArgsCount, vlc_args);
49
}
50
#endif // LIBVLC_OLD_VLCEXCEPTION
51
#endif // LIBVLC_OLD_INSTANCE
52
53
LIBVLC_INSTANCE_HANDLE
54
gtk_libvlc_instance_get_libvlc_instance(GtkLibvlcInstance* pLibvlcInstance, GError** error)
55
{
56
- g_return_if_fail(pLibvlcInstance != NULL);
57
+ g_return_val_if_fail(pLibvlcInstance != NULL, NULL);
58
if(error != NULL){
59
- g_return_if_fail(*error == NULL);
60
+ g_return_val_if_fail(*error == NULL, NULL);
61
}
62
63
LIBVLC_INSTANCE_HANDLE handle;
64
freetuxtv-0.6.5.tar.gz/lib/libvlc-gtk/gtk-libvlc-media-player.c -> freetuxtv-0.6.6.tar.gz/lib/libvlc-gtk/gtk-libvlc-media-player.c
Changed
201
1
2
raise_error(self, error, &_vlcexcep);
3
#else
4
libvlc_media_t *m;
5
- m = libvlc_media_new_path (libvlc_instance, media->mrl);
6
+ m = libvlc_media_new_location (libvlc_instance, media->mrl);
7
raise_error(self, error, NULL);
8
9
if(list_options != NULL){
10
11
static gboolean
12
idle_play_next_function(gpointer ptrdata){
13
GtkLibvlcMediaPlayer *self;
14
- g_return_if_fail(ptrdata != NULL);
15
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(ptrdata));
16
+ g_return_val_if_fail(ptrdata != NULL, FALSE);
17
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(ptrdata), FALSE);
18
19
self = GTK_LIBVLC_MEDIA_PLAYER(ptrdata);
20
21
22
GtkWidget *
23
gtk_libvlc_media_player_new (GtkLibvlcInstance* libvlc_instance, GError** error)
24
{
25
- g_return_if_fail(libvlc_instance != NULL);
26
- g_return_if_fail(GTK_IS_LIBVLC_INSTANCE(libvlc_instance));
27
+ g_return_val_if_fail(libvlc_instance != NULL, NULL);
28
+ g_return_val_if_fail(GTK_IS_LIBVLC_INSTANCE(libvlc_instance), NULL);
29
30
GtkLibvlcMediaPlayer *self = NULL;
31
32
33
GtkLibvlcMedia*
34
gtk_libvlc_media_player_get_current_media (GtkLibvlcMediaPlayer *self)
35
{
36
- g_return_if_fail(self != NULL);
37
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
38
+ g_return_val_if_fail(self != NULL, NULL);
39
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), NULL);
40
41
GtkLibvlcMediaPlayerPrivate* priv;
42
priv = GTK_LIBVLC_MEDIA_PLAYER_PRIVATE(self);
43
44
GtkLibvlcMedia*
45
gtk_libvlc_media_player_get_media_from_path (GtkLibvlcMediaPlayer *self, GtkTreePath *path)
46
{
47
- g_return_if_fail(self != NULL);
48
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
49
- g_return_if_fail(path != NULL);
50
+ g_return_val_if_fail(self != NULL, NULL);
51
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), NULL);
52
+ g_return_val_if_fail(path != NULL, NULL);
53
54
// Get the media from the path
55
GtkLibvlcMedia *media;
56
57
gboolean
58
gtk_libvlc_media_player_can_pause (GtkLibvlcMediaPlayer *self, GError** error)
59
{
60
- g_return_if_fail(self != NULL);
61
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
62
- g_return_if_fail(self->libvlc_instance != NULL);
63
+ g_return_val_if_fail(self != NULL, FALSE);
64
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), FALSE);
65
+ g_return_val_if_fail(self->libvlc_instance != NULL, FALSE);
66
if(error != NULL){
67
- g_return_if_fail(*error == NULL);
68
+ g_return_val_if_fail(*error == NULL, FALSE);
69
}
70
71
GError* pError = NULL;
72
73
74
// Create the media player if not initialized
75
gtk_libvlc_media_player_initialize (self, &pError);
76
- g_return_if_fail(priv->initialized == TRUE);
77
+ g_return_val_if_fail(priv->initialized == TRUE, FALSE);
78
79
#ifdef LIBVLC_OLD_VLCEXCEPTION
80
libvlc_exception_t _vlcexcep;
81
82
gboolean
83
gtk_libvlc_media_player_get_fullscreen (GtkLibvlcMediaPlayer *self)
84
{
85
- g_return_if_fail(self != NULL);
86
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
87
+ g_return_val_if_fail(self != NULL, FALSE);
88
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), FALSE);
89
90
GtkLibvlcMediaPlayerPrivate* priv;
91
priv = GTK_LIBVLC_MEDIA_PLAYER_PRIVATE(self);
92
93
gboolean
94
gtk_libvlc_media_player_is_playing (GtkLibvlcMediaPlayer *self, GError** error)
95
{
96
- g_return_if_fail(self != NULL);
97
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
98
- g_return_if_fail(self->libvlc_instance != NULL);
99
+ g_return_val_if_fail(self != NULL, FALSE);
100
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), FALSE);
101
+ g_return_val_if_fail(self->libvlc_instance != NULL, FALSE);
102
if(error != NULL){
103
- g_return_if_fail(*error == NULL);
104
+ g_return_val_if_fail(*error == NULL, FALSE);
105
}
106
107
GError* pError = NULL;
108
109
GtkLibvlcState
110
gtk_libvlc_media_player_get_state (GtkLibvlcMediaPlayer *self, GError** error)
111
{
112
- g_return_if_fail(self != NULL);
113
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
114
- g_return_if_fail(self->libvlc_instance != NULL);
115
+ GtkLibvlcState gtkstate = GTK_LIBVLC_STATE_NOTHING_SPECIAL;
116
+
117
+ g_return_val_if_fail(self != NULL, gtkstate);
118
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), gtkstate);
119
+ g_return_val_if_fail(self->libvlc_instance != NULL, gtkstate);
120
if(error != NULL){
121
- g_return_if_fail(*error == NULL);
122
+ g_return_val_if_fail(*error == NULL, gtkstate);
123
}
124
125
GError* pError = NULL;
126
127
gtk_libvlc_media_player_initialize (self, &pError);
128
g_return_if_fail(priv->initialized == TRUE);
129
130
- GtkLibvlcState gtkstate = GTK_LIBVLC_STATE_NOTHING_SPECIAL;
131
-
132
if(pError == NULL){
133
134
#ifdef LIBVLC_OLD_VLCEXCEPTION
135
136
libvlc_instance_t *libvlc_instance;
137
libvlc_instance = (libvlc_instance_t *)
138
gtk_libvlc_instance_get_libvlc_instance(self->libvlc_instance, &pError);
139
- g_return_if_fail(libvlc_instance != NULL);
140
+ g_return_val_if_fail(libvlc_instance != NULL, gtkstate);
141
142
libvlc_input_t *input_t;
143
if(libvlc_instance != NULL){
144
145
}
146
}
147
#else
148
- g_return_if_fail(priv->libvlc_mediaplayer != NULL);
149
+ g_return_val_if_fail(priv->libvlc_mediaplayer != NULL, gtkstate);
150
151
libvlc_state_t state;
152
153
154
case GTK_LIBVLC_STATE_ERROR:
155
return "GTK_LIBVLC_STATE_ERROR";
156
}
157
+ return "";
158
}
159
160
glong
161
gtk_libvlc_media_player_get_length(GtkLibvlcMediaPlayer *self, GError** error)
162
{
163
- g_return_if_fail(self != NULL);
164
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
165
+ g_return_val_if_fail(self != NULL, 0);
166
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), 0);
167
168
GtkLibvlcMediaPlayerPrivate* priv;
169
priv = GTK_LIBVLC_MEDIA_PLAYER_PRIVATE(self);
170
171
libvlc_instance_t *libvlc_instance;
172
libvlc_instance = (libvlc_instance_t *)
173
gtk_libvlc_instance_get_libvlc_instance(self->libvlc_instance, error);
174
- g_return_if_fail(libvlc_instance != NULL);
175
+ g_return_val_if_fail(libvlc_instance != NULL, 0);
176
177
libvlc_input_t *input_t;
178
input_t = libvlc_playlist_get_input(libvlc_instance,
179
180
glong
181
gtk_libvlc_media_player_get_time(GtkLibvlcMediaPlayer *self, GError** error)
182
{
183
- g_return_if_fail(self != NULL);
184
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self));
185
+ g_return_val_if_fail(self != NULL, 0);
186
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA_PLAYER(self), 0);
187
188
GtkLibvlcMediaPlayerPrivate* priv;
189
priv = GTK_LIBVLC_MEDIA_PLAYER_PRIVATE(self);
190
191
libvlc_instance_t *libvlc_instance;
192
libvlc_instance = (libvlc_instance_t *)
193
gtk_libvlc_instance_get_libvlc_instance(self->libvlc_instance, error);
194
- g_return_if_fail(libvlc_instance != NULL);
195
+ g_return_val_if_fail(libvlc_instance != NULL, 0);
196
197
libvlc_input_t *input_t;
198
input_t = libvlc_playlist_get_input(libvlc_instance,
199
200
gfloat
201
freetuxtv-0.6.5.tar.gz/lib/libvlc-gtk/gtk-libvlc-media.c -> freetuxtv-0.6.6.tar.gz/lib/libvlc-gtk/gtk-libvlc-media.c
Changed
21
1
2
GtkLibvlcMedia*
3
gtk_libvlc_media_new (gchar* mrl)
4
{
5
- g_return_if_fail(mrl != NULL);
6
+ g_return_val_if_fail(mrl != NULL, NULL);
7
8
GtkLibvlcMedia *self = NULL;
9
self = g_object_new (GTK_TYPE_LIBVLC_MEDIA, NULL);
10
11
const gchar**
12
gtk_libvlc_media_get_options (GtkLibvlcMedia* media)
13
{
14
- g_return_if_fail(media != NULL);
15
- g_return_if_fail(GTK_IS_LIBVLC_MEDIA(media));
16
+ g_return_val_if_fail(media != NULL, NULL);
17
+ g_return_val_if_fail(GTK_IS_LIBVLC_MEDIA(media), NULL);
18
19
GtkLibvlcMediaPrivate* priv;
20
gchar** options = NULL;
21
freetuxtv-0.6.5.tar.gz/ltmain.sh -> freetuxtv-0.6.6.tar.gz/ltmain.sh
Changed
19
1
2
# compiler: $LTCC
3
# compiler flags: $LTCFLAGS
4
# linker: $LD (gnu? $with_gnu_ld)
5
-# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1
6
+# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.3ubuntu1
7
# automake: $automake_version
8
# autoconf: $autoconf_version
9
#
10
11
12
PROGRAM=libtool
13
PACKAGE=libtool
14
-VERSION="2.4.2 Debian-2.4.2-1"
15
+VERSION="2.4.2 Debian-2.4.2-1.3ubuntu1"
16
TIMESTAMP=""
17
package_revision=1.3337
18
19
freetuxtv-0.6.5.tar.gz/missing -> freetuxtv-0.6.6.tar.gz/missing
Changed
201
1
2
#! /bin/sh
3
-# Common stub for a few missing GNU programs while installing.
4
+# Common wrapper for a few potentially missing GNU programs.
5
6
-scriptversion=2012-01-06.13; # UTC
7
+scriptversion=2012-06-26.16; # UTC
8
9
-# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
10
-# 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
11
-# Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
12
+# Copyright (C) 1996-2013 Free Software Foundation, Inc.
13
+# Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
14
15
# This program is free software; you can redistribute it and/or modify
16
# it under the terms of the GNU General Public License as published by
17
18
# the same distribution terms that you use for the rest of that program.
19
20
if test $# -eq 0; then
21
- echo 1>&2 "Try \`$0 --help' for more information"
22
+ echo 1>&2 "Try '$0 --help' for more information"
23
exit 1
24
fi
25
26
-run=:
27
-sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p'
28
-sed_minuso='s/.* -o \([^ ]*\).*/\1/p'
29
-
30
-# In the cases where this matters, `missing' is being run in the
31
-# srcdir already.
32
-if test -f configure.ac; then
33
- configure_ac=configure.ac
34
-else
35
- configure_ac=configure.in
36
-fi
37
+case $1 in
38
39
-msg="missing on your system"
40
+ --is-lightweight)
41
+ # Used by our autoconf macros to check whether the available missing
42
+ # script is modern enough.
43
+ exit 0
44
+ ;;
45
46
-case $1 in
47
---run)
48
- # Try to run requested program, and just exit if it succeeds.
49
- run=
50
- shift
51
- "$@" && exit 0
52
- # Exit code 63 means version mismatch. This often happens
53
- # when the user try to use an ancient version of a tool on
54
- # a file that requires a minimum version. In this case we
55
- # we should proceed has if the program had been absent, or
56
- # if --run hadn't been passed.
57
- if test $? = 63; then
58
- run=:
59
- msg="probably too old"
60
- fi
61
- ;;
62
+ --run)
63
+ # Back-compat with the calling convention used by older automake.
64
+ shift
65
+ ;;
66
67
-h|--h|--he|--hel|--help)
68
echo "\
69
$0 [OPTION]... PROGRAM [ARGUMENT]...
70
71
-Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
72
-error status if there is no known handling for PROGRAM.
73
+Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due
74
+to PROGRAM being missing or too old.
75
76
Options:
77
-h, --help display this help and exit
78
-v, --version output version information and exit
79
- --run try to run the given command, and emulate it if it fails
80
81
Supported PROGRAM values:
82
- aclocal touch file \`aclocal.m4'
83
- autoconf touch file \`configure'
84
- autoheader touch file \`config.h.in'
85
- autom4te touch the output file, or create a stub one
86
- automake touch all \`Makefile.in' files
87
- bison create \`y.tab.[ch]', if possible, from existing .[ch]
88
- flex create \`lex.yy.c', if possible, from existing .c
89
- help2man touch the output file
90
- lex create \`lex.yy.c', if possible, from existing .c
91
- makeinfo touch the output file
92
- yacc create \`y.tab.[ch]', if possible, from existing .[ch]
93
+ aclocal autoconf autoheader autom4te automake makeinfo
94
+ bison yacc flex lex help2man
95
96
-Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and
97
-\`g' are ignored when checking the name.
98
+Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and
99
+'g' are ignored when checking the name.
100
101
Send bug reports to <bug-automake@gnu.org>."
102
exit $?
103
104
;;
105
106
-*)
107
- echo 1>&2 "$0: Unknown \`$1' option"
108
- echo 1>&2 "Try \`$0 --help' for more information"
109
+ echo 1>&2 "$0: unknown '$1' option"
110
+ echo 1>&2 "Try '$0 --help' for more information"
111
exit 1
112
;;
113
114
esac
115
116
-# normalize program name to check for.
117
-program=`echo "$1" | sed '
118
- s/^gnu-//; t
119
- s/^gnu//; t
120
- s/^g//; t'`
121
-
122
-# Now exit if we have it, but it failed. Also exit now if we
123
-# don't have it and --version was passed (most likely to detect
124
-# the program). This is about non-GNU programs, so use $1 not
125
-# $program.
126
-case $1 in
127
- lex*|yacc*)
128
- # Not GNU programs, they don't have --version.
129
- ;;
130
-
131
- *)
132
- if test -z "$run" && ($1 --version) > /dev/null 2>&1; then
133
- # We have it, but it failed.
134
- exit 1
135
- elif test "x$2" = "x--version" || test "x$2" = "x--help"; then
136
- # Could not run --version or --help. This is probably someone
137
- # running `$TOOL --version' or `$TOOL --help' to check whether
138
- # $TOOL exists and not knowing $TOOL uses missing.
139
- exit 1
140
- fi
141
- ;;
142
-esac
143
-
144
-# If it does not exist, or fails to run (possibly an outdated version),
145
-# try to emulate it.
146
-case $program in
147
- aclocal*)
148
- echo 1>&2 "\
149
-WARNING: \`$1' is $msg. You should only need it if
150
- you modified \`acinclude.m4' or \`${configure_ac}'. You might want
151
- to install the \`Automake' and \`Perl' packages. Grab them from
152
- any GNU archive site."
153
- touch aclocal.m4
154
- ;;
155
-
156
- autoconf*)
157
- echo 1>&2 "\
158
-WARNING: \`$1' is $msg. You should only need it if
159
- you modified \`${configure_ac}'. You might want to install the
160
- \`Autoconf' and \`GNU m4' packages. Grab them from any GNU
161
- archive site."
162
- touch configure
163
- ;;
164
-
165
- autoheader*)
166
- echo 1>&2 "\
167
-WARNING: \`$1' is $msg. You should only need it if
168
- you modified \`acconfig.h' or \`${configure_ac}'. You might want
169
- to install the \`Autoconf' and \`GNU m4' packages. Grab them
170
- from any GNU archive site."
171
- files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
172
- test -z "$files" && files="config.h"
173
- touch_files=
174
- for f in $files; do
175
- case $f in
176
- *:*) touch_files="$touch_files "`echo "$f" |
177
- sed -e 's/^[^:]*://' -e 's/:.*//'`;;
178
- *) touch_files="$touch_files $f.in";;
179
- esac
180
- done
181
- touch $touch_files
182
- ;;
183
-
184
- automake*)
185
- echo 1>&2 "\
186
-WARNING: \`$1' is $msg. You should only need it if
187
- you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'.
188
- You might want to install the \`Automake' and \`Perl' packages.
189
- Grab them from any GNU archive site."
190
- find . -type f -name Makefile.am -print |
191
- sed 's/\.am$/.in/' |
192
- while read f; do touch "$f"; done
193
- ;;
194
-
195
- autom4te*)
196
- echo 1>&2 "\
197
-WARNING: \`$1' is needed, but is $msg.
198
- You might have modified some files without having the
199
- proper tools for further handling them.
200
- You can get \`$1' as part of \`Autoconf' from any GNU
201
freetuxtv-0.6.5.tar.gz/po/LINGUAS -> freetuxtv-0.6.6.tar.gz/po/LINGUAS
Changed
14
1
2
# please keep this list sorted alphabetically
3
#
4
de
5
+es
6
fr
7
+lt
8
+pl
9
pt
10
+ru
11
+tr
12
zh_CN
13
zh_TW
14
freetuxtv-0.6.5.tar.gz/po/POTFILES.in -> freetuxtv-0.6.6.tar.gz/po/POTFILES.in
Changed
10
1
2
src/freetuxtv-window-add-recording.h
3
src/freetuxtv-window-channel-properties.c
4
src/freetuxtv-window-channel-properties.h
5
+src/freetuxtv-window-tv-channels-database.c
6
+src/freetuxtv-window-tv-channels-database.h
7
src/freetuxtv-window-main.c
8
src/freetuxtv-window-main.h
9
src/lib-m3uparser.c
10
freetuxtv-0.6.5.tar.gz/po/de.po -> freetuxtv-0.6.6.tar.gz/po/de.po
Changed
201
1
2
msgstr ""
3
"Project-Id-Version: freetuxtv.HEAD\n"
4
"Report-Msgid-Bugs-To: \n"
5
-"POT-Creation-Date: 2011-11-24 21:41+0100\n"
6
+"POT-Creation-Date: 2013-03-05 20:38+0100\n"
7
"PO-Revision-Date: 2010-08-09 20:00+0200\n"
8
"Last-Translator: Benni <bestofbenni@@googlemail.com>\n"
9
"Language-Team: DE <DE@li.org>\n"
10
11
12
#: ../data/ui/addrecording.glade.h:1
13
#, fuzzy
14
-msgid "<b>Recording period</b>"
15
-msgstr "<b>Aufzeichnungszeitraum</b>"
16
+msgid "Add a recording"
17
+msgstr "Aufzeichnung hinzufügen"
18
19
#: ../data/ui/addrecording.glade.h:2
20
#, fuzzy
21
-msgid "Add a recording"
22
-msgstr "Aufzeichnung hinzufügen"
23
+msgid "Selected channel:"
24
+msgstr "Ausgewählter Sender:"
25
26
#: ../data/ui/addrecording.glade.h:3
27
#, fuzzy
28
-msgid "Duration:"
29
-msgstr "Dauer:"
30
+msgid "Title:"
31
+msgstr "Titel:"
32
33
#: ../data/ui/addrecording.glade.h:4
34
#, fuzzy
35
-msgid "End time:"
36
-msgstr "Endzeit:"
37
+msgid "Start time:"
38
+msgstr "Startzeit:"
39
40
#: ../data/ui/addrecording.glade.h:5
41
#, fuzzy
42
-msgid "Selected channel:"
43
-msgstr "Ausgewählter Sender:"
44
+msgid "Duration:"
45
+msgstr "Dauer:"
46
47
#: ../data/ui/addrecording.glade.h:6
48
#, fuzzy
49
-msgid "Start time:"
50
-msgstr "Startzeit:"
51
+msgid "End time:"
52
+msgstr "Endzeit:"
53
54
#: ../data/ui/addrecording.glade.h:7
55
#, fuzzy
56
-msgid "Title:"
57
-msgstr "Titel:"
58
-
59
-#: ../data/ui/addrecording.glade.h:8
60
-#, fuzzy
61
msgid "minutes"
62
msgstr "Minuten"
63
64
-#: ../data/ui/addchannelsgroups.glade.h:1 ../data/ui/freetuxtv.glade.h:10
65
+#: ../data/ui/addrecording.glade.h:8
66
#, fuzzy
67
-msgid "<b>Processing of channels' name</b>"
68
-msgstr "<b>Verarbeitung des Sendernamens</b>"
69
+msgid "<b>Recording period</b>"
70
+msgstr "<b>Aufzeichnungszeitraum</b>"
71
+
72
+#: ../data/ui/addchannelsgroups.glade.h:1
73
+msgid "Add a group"
74
+msgstr "Gruppe hinzufügen"
75
76
#: ../data/ui/addchannelsgroups.glade.h:2
77
#, fuzzy
78
-msgid "<b>Special group type:</b>"
79
-msgstr "<b>Spezieller Gruppentyp:</b>"
80
+msgid "Channels groups file:"
81
+msgstr "Sendergruppendatei: "
82
83
#: ../data/ui/addchannelsgroups.glade.h:3
84
-msgid "Add a group"
85
-msgstr "Gruppe hinzufügen"
86
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
87
+msgstr "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
88
89
#: ../data/ui/addchannelsgroups.glade.h:4
90
#, fuzzy
91
-msgid "Channels groups file:"
92
-msgstr "Sendergruppendatei: "
93
+msgid ""
94
+"Select one or several channels group you want to add and click on the add "
95
+"button."
96
+msgstr ""
97
+"Wähle einen oder mehrere Sendergruppen zum hinzufügen aus und klicke auf "
98
+"Hinzufügen."
99
100
#: ../data/ui/addchannelsgroups.glade.h:5
101
#, fuzzy
102
-msgid "Custom channels group"
103
-msgstr "Benutzerdefinierte Sendergruppe"
104
+msgid "Languages/Channels group"
105
+msgstr "Sprachen/Sendergruppe"
106
107
-#: ../data/ui/addchannelsgroups.glade.h:6 ../data/ui/freetuxtv.glade.h:20
108
+#: ../data/ui/addchannelsgroups.glade.h:6
109
#, fuzzy
110
-msgid "Delete this text before the name:"
111
-msgstr "Folgendes vor dem Namen löschen:"
112
+msgid "Required ISP"
113
+msgstr "Erforderlicher ISP"
114
115
-#: ../data/ui/addchannelsgroups.glade.h:7 ../data/ui/freetuxtv.glade.h:21
116
-#, fuzzy
117
-msgid "Delete this text behind the name:"
118
-msgstr "Folgendes hinter dem Namen löschen: "
119
+#: ../data/ui/addchannelsgroups.glade.h:7
120
+msgid "URI"
121
+msgstr "URI"
122
123
#: ../data/ui/addchannelsgroups.glade.h:8
124
msgid "Existing channels group"
125
msgstr "Bestehende Sendergruppe"
126
127
-#: ../data/ui/addchannelsgroups.glade.h:9
128
-msgid "Favourites"
129
-msgstr "Favoriten"
130
-
131
-#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:34
132
+#: ../data/ui/addchannelsgroups.glade.h:9 ../data/ui/freetuxtv.glade.h:7
133
#, fuzzy
134
msgid "Group's name:"
135
msgstr "Gruppenname:"
136
137
-#: ../data/ui/addchannelsgroups.glade.h:11
138
-#, fuzzy
139
-msgid "Languages/Channels group"
140
-msgstr "Sprachen/Sendergruppe"
141
-
142
-#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:41
143
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:9
144
msgid "Name of the group which will be added"
145
msgstr "Name der Gruppe die hinzugefügt wird"
146
147
-#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:51
148
-#, fuzzy
149
-msgid "Playlist's URI of the group which will be added"
150
-msgstr "URI der Wiedergabeliste der Gruppe die hinzugefügt wird"
151
-
152
-#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:52
153
+#: ../data/ui/addchannelsgroups.glade.h:11 ../data/ui/freetuxtv.glade.h:8
154
#, fuzzy
155
msgid "Playlist's URI:"
156
msgstr "URI der Wiedergabeliste:"
157
158
-#: ../data/ui/addchannelsgroups.glade.h:15
159
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:10
160
#, fuzzy
161
-msgid "Required ISP"
162
-msgstr "Erforderlicher ISP"
163
+msgid "Playlist's URI of the group which will be added"
164
+msgstr "URI der Wiedergabeliste der Gruppe die hinzugefügt wird"
165
166
-#: ../data/ui/addchannelsgroups.glade.h:16
167
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:11
168
#, fuzzy
169
-msgid ""
170
-"Select one or several channels group you want to add and click on the add "
171
-"button."
172
+msgid "Delete this text before the name:"
173
+msgstr "Folgendes vor dem Namen löschen:"
174
+
175
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:13
176
+#, fuzzy
177
+msgid "Text or regexp which must be deleted at the end of the channel's name"
178
msgstr ""
179
-"Wähle einen oder mehrere Sendergruppen zum hinzufügen aus und klicke auf "
180
-"Hinzufügen."
181
+"Text oder regulärer Ausdruck der hinter dem Sendernamen gelöscht werden soll"
182
183
-#: ../data/ui/addchannelsgroups.glade.h:17
184
+#: ../data/ui/addchannelsgroups.glade.h:15 ../data/ui/freetuxtv.glade.h:12
185
#, fuzzy
186
-msgid "Special group"
187
-msgstr "Spezielle Gruppe"
188
+msgid "Delete this text behind the name:"
189
+msgstr "Folgendes hinter dem Namen löschen: "
190
191
-#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:68
192
+#: ../data/ui/addchannelsgroups.glade.h:16 ../data/ui/freetuxtv.glade.h:14
193
#, fuzzy
194
msgid ""
195
"Text or regexp which must be deleted at the beginning of the channel's name"
196
msgstr ""
197
"Text oder regulärer Ausdruck der vor dem Sendernamen gelöscht werden soll"
198
199
-#: ../data/ui/addchannelsgroups.glade.h:19 ../data/ui/freetuxtv.glade.h:69
200
-#, fuzzy
201
freetuxtv-0.6.6.tar.gz/po/es.po
Added
201
1
2
+# SOME DESCRIPTIVE TITLE.
3
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
4
+# This file is distributed under the same license as the PACKAGE package.
5
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
6
+#
7
+#, fuzzy
8
+msgid ""
9
+msgstr ""
10
+"Project-Id-Version: freetuxtv.HEAD\n"
11
+"Report-Msgid-Bugs-To: \n"
12
+"POT-Creation-Date: 2013-03-05 20:38+0100\n"
13
+"PO-Revision-Date: 2012-11-3 16:22+GMT+4\n"
14
+"Last-Translator: Maximiliano Castañón Araneda <maximi89@gmail.com>\n"
15
+"Language-Team: Español <es@li.org>\n"
16
+"Language: \n"
17
+"MIME-Version: 1.0\n"
18
+"Content-Type: text/plain; charset=UTF-8\n"
19
+"Content-Transfer-Encoding: 8bit\n"
20
+
21
+#: ../data/ui/addrecording.glade.h:1
22
+msgid "Add a recording"
23
+msgstr "Agregar una grabación"
24
+
25
+#: ../data/ui/addrecording.glade.h:2
26
+msgid "Selected channel:"
27
+msgstr "Canal seleccionado:"
28
+
29
+#: ../data/ui/addrecording.glade.h:3
30
+msgid "Title:"
31
+msgstr "Título:"
32
+
33
+#: ../data/ui/addrecording.glade.h:4
34
+msgid "Start time:"
35
+msgstr "Tiempo inicio:"
36
+
37
+#: ../data/ui/addrecording.glade.h:5
38
+msgid "Duration:"
39
+msgstr "Duración:"
40
+
41
+#: ../data/ui/addrecording.glade.h:6
42
+msgid "End time:"
43
+msgstr "Término:"
44
+
45
+#: ../data/ui/addrecording.glade.h:7
46
+msgid "minutes"
47
+msgstr "minutos"
48
+
49
+#: ../data/ui/addrecording.glade.h:8
50
+msgid "<b>Recording period</b>"
51
+msgstr "<b>Período de grabación</b>"
52
+
53
+#: ../data/ui/addchannelsgroups.glade.h:1
54
+msgid "Add a group"
55
+msgstr "Agrega un grupo"
56
+
57
+#: ../data/ui/addchannelsgroups.glade.h:2
58
+msgid "Channels groups file:"
59
+msgstr "Archivo de grupos de canales:"
60
+
61
+#: ../data/ui/addchannelsgroups.glade.h:3
62
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
63
+msgstr ""
64
+
65
+#: ../data/ui/addchannelsgroups.glade.h:4
66
+msgid ""
67
+"Select one or several channels group you want to add and click on the add "
68
+"button."
69
+msgstr ""
70
+"Selecciona 1 o varios grupos de canales que quieras agregar y hace clic "
71
+"sobre el botón agregar."
72
+
73
+#: ../data/ui/addchannelsgroups.glade.h:5
74
+msgid "Languages/Channels group"
75
+msgstr "Grupo Idioma/Canales"
76
+
77
+#: ../data/ui/addchannelsgroups.glade.h:6
78
+msgid "Required ISP"
79
+msgstr "ISP Requerido"
80
+
81
+#: ../data/ui/addchannelsgroups.glade.h:7
82
+msgid "URI"
83
+msgstr ""
84
+
85
+#: ../data/ui/addchannelsgroups.glade.h:8
86
+msgid "Existing channels group"
87
+msgstr "Grupo existente de canales"
88
+
89
+#: ../data/ui/addchannelsgroups.glade.h:9 ../data/ui/freetuxtv.glade.h:7
90
+msgid "Group's name:"
91
+msgstr "Nombre grupo:"
92
+
93
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:9
94
+msgid "Name of the group which will be added"
95
+msgstr "Nombre del grupo que será agregado"
96
+
97
+#: ../data/ui/addchannelsgroups.glade.h:11 ../data/ui/freetuxtv.glade.h:8
98
+msgid "Playlist's URI:"
99
+msgstr "URI reproducción:"
100
+
101
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:10
102
+msgid "Playlist's URI of the group which will be added"
103
+msgstr "Lista de reproducción de URI que serán agregados"
104
+
105
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:11
106
+msgid "Delete this text before the name:"
107
+msgstr "Elimina este texto antes del nombre:"
108
+
109
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:13
110
+msgid "Text or regexp which must be deleted at the end of the channel's name"
111
+msgstr ""
112
+
113
+#: ../data/ui/addchannelsgroups.glade.h:15 ../data/ui/freetuxtv.glade.h:12
114
+msgid "Delete this text behind the name:"
115
+msgstr "Elimina este texto detrás del nombre:"
116
+
117
+#: ../data/ui/addchannelsgroups.glade.h:16 ../data/ui/freetuxtv.glade.h:14
118
+msgid ""
119
+"Text or regexp which must be deleted at the beginning of the channel's name"
120
+msgstr ""
121
+
122
+#: ../data/ui/addchannelsgroups.glade.h:17 ../data/ui/freetuxtv.glade.h:15
123
+msgid ""
124
+"You can easily use regular expressions to delete some text in the channel's "
125
+"name of the groupe. For example, if in your playlist, you have a name like "
126
+"\"11 - NT1\" or \"12 - NRJ 12\", FreetuxTV is able to remove the channel's "
127
+"number before the name, by using the regular expression \"[0-9]* - \"."
128
+msgstr ""
129
+
130
+#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:16
131
+msgid "<b>Processing of channels' name</b>"
132
+msgstr "<b>Nombre procesamiento de canales</b>"
133
+
134
+#: ../data/ui/addchannelsgroups.glade.h:19
135
+msgid "Custom channels group"
136
+msgstr "Grupo de canales personalizado"
137
+
138
+#: ../data/ui/addchannelsgroups.glade.h:20
139
+msgid "Favourites"
140
+msgstr "Favoritos"
141
+
142
+#: ../data/ui/addchannelsgroups.glade.h:21
143
+msgid "<b>Special group type:</b>"
144
+msgstr "<b>Tipo de grupo especial:</b>"
145
+
146
+#: ../data/ui/addchannelsgroups.glade.h:22
147
+msgid "Special group"
148
+msgstr "Grupo Especial"
149
+
150
+#: ../data/ui/channelproperties.glade.h:1
151
+msgid "Channel properties"
152
+msgstr "Propiedades del canal"
153
+
154
+#: ../data/ui/channelproperties.glade.h:2
155
+msgid "Channel's name:"
156
+msgstr "Nombre del canal:"
157
+
158
+#: ../data/ui/channelproperties.glade.h:3
159
+msgid "Channel's URI:"
160
+msgstr "URI del canal:"
161
+
162
+#: ../data/ui/channelproperties.glade.h:4
163
+msgid "<b>Channel VLC options:</b>"
164
+msgstr "<b>Opciones de canales VLC:</b>"
165
+
166
+#: ../data/ui/channelproperties.glade.h:5 ../data/ui/freetuxtv.glade.h:17
167
+msgid "General"
168
+msgstr ""
169
+
170
+#: ../data/ui/channelproperties.glade.h:6
171
+msgid "Deinterlacement:"
172
+msgstr ""
173
+
174
+#: ../data/ui/channelproperties.glade.h:7
175
+#: ../src/freetuxtv-window-channel-properties.c:176
176
+msgid "none"
177
+msgstr "ninguna"
178
+
179
+#: ../data/ui/channelproperties.glade.h:8
180
+msgid "Options"
181
+msgstr "Opciones"
182
+
183
+#: ../data/ui/freetuxtv.glade.h:1
184
+msgid "GNU General Public License v3"
185
+msgstr ""
186
+
187
+#: ../data/ui/freetuxtv.glade.h:2
188
+msgid "Web TV channels player"
189
+msgstr ""
190
+
191
+#: ../data/ui/freetuxtv.glade.h:3
192
+msgid "Project's Web Site"
193
+msgstr "Sitio web del proyecto"
194
+
195
+#. TRANSLATORS: Replace this string with your names, one name per line.
196
+#: ../data/ui/freetuxtv.glade.h:5
197
+msgid "translator-credits"
198
+msgstr "crédito traductores"
199
+
200
+#: ../data/ui/freetuxtv.glade.h:6
201
freetuxtv-0.6.5.tar.gz/po/fr.po -> freetuxtv-0.6.6.tar.gz/po/fr.po
Changed
201
1
2
msgstr ""
3
"Project-Id-Version: freetuxtv.HEAD\n"
4
"Report-Msgid-Bugs-To: \n"
5
-"POT-Creation-Date: 2011-11-24 21:41+0100\n"
6
+"POT-Creation-Date: 2013-03-05 20:38+0100\n"
7
"PO-Revision-Date: 2010-08-03 23:14+0200\n"
8
"Last-Translator: Yannick LE NY <yleny@laposte.net>\n"
9
"Language-Team: FR <eric.beuque@gmail.com>\n"
10
11
"Content-Transfer-Encoding: 8bit\n"
12
13
#: ../data/ui/addrecording.glade.h:1
14
-msgid "<b>Recording period</b>"
15
-msgstr "<b>Période d'enregistrement</b>"
16
-
17
-#: ../data/ui/addrecording.glade.h:2
18
msgid "Add a recording"
19
msgstr "Ajout d'un enregistrement"
20
21
+#: ../data/ui/addrecording.glade.h:2
22
+msgid "Selected channel:"
23
+msgstr "Chaîne séléctionné:"
24
+
25
#: ../data/ui/addrecording.glade.h:3
26
-msgid "Duration:"
27
-msgstr "Durée :"
28
+msgid "Title:"
29
+msgstr "Titre :"
30
31
#: ../data/ui/addrecording.glade.h:4
32
-msgid "End time:"
33
-msgstr "Heure de fin :"
34
+msgid "Start time:"
35
+msgstr "Heure de début :"
36
37
#: ../data/ui/addrecording.glade.h:5
38
-msgid "Selected channel:"
39
-msgstr "Chaîne séléctionné:"
40
+msgid "Duration:"
41
+msgstr "Durée :"
42
43
#: ../data/ui/addrecording.glade.h:6
44
-msgid "Start time:"
45
-msgstr "Heure de début :"
46
+msgid "End time:"
47
+msgstr "Heure de fin :"
48
49
#: ../data/ui/addrecording.glade.h:7
50
-msgid "Title:"
51
-msgstr "Titre :"
52
-
53
-#: ../data/ui/addrecording.glade.h:8
54
msgid "minutes"
55
msgstr "minutes"
56
57
-#: ../data/ui/addchannelsgroups.glade.h:1 ../data/ui/freetuxtv.glade.h:10
58
-msgid "<b>Processing of channels' name</b>"
59
-msgstr "<b>Traitement du nom des chaînes</b>"
60
-
61
-#: ../data/ui/addchannelsgroups.glade.h:2
62
-msgid "<b>Special group type:</b>"
63
-msgstr "<b>Type du groupe spécial :</b>"
64
+#: ../data/ui/addrecording.glade.h:8
65
+msgid "<b>Recording period</b>"
66
+msgstr "<b>Période d'enregistrement</b>"
67
68
-#: ../data/ui/addchannelsgroups.glade.h:3
69
+#: ../data/ui/addchannelsgroups.glade.h:1
70
msgid "Add a group"
71
msgstr "_Ajouter un groupe"
72
73
-#: ../data/ui/addchannelsgroups.glade.h:4
74
+#: ../data/ui/addchannelsgroups.glade.h:2
75
msgid "Channels groups file:"
76
msgstr "Fichier des groupes de chaînes :"
77
78
+#: ../data/ui/addchannelsgroups.glade.h:3
79
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
80
+msgstr "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
81
+
82
+#: ../data/ui/addchannelsgroups.glade.h:4
83
+msgid ""
84
+"Select one or several channels group you want to add and click on the add "
85
+"button."
86
+msgstr ""
87
+"Sélectionnez un ou plusieurs groupes de chaînes que vous voulez ajouter et "
88
+"cliquez sur le bouton Ajouter."
89
+
90
#: ../data/ui/addchannelsgroups.glade.h:5
91
-msgid "Custom channels group"
92
-msgstr "Groupe personnalisé de chaînes"
93
+msgid "Languages/Channels group"
94
+msgstr "Groupe Langues/Chaînes"
95
96
-#: ../data/ui/addchannelsgroups.glade.h:6 ../data/ui/freetuxtv.glade.h:20
97
-msgid "Delete this text before the name:"
98
-msgstr "Texte à enlever au début :"
99
+#: ../data/ui/addchannelsgroups.glade.h:6
100
+msgid "Required ISP"
101
+msgstr "FAI requis"
102
103
-#: ../data/ui/addchannelsgroups.glade.h:7 ../data/ui/freetuxtv.glade.h:21
104
-msgid "Delete this text behind the name:"
105
-msgstr "Texte à enlever à la fin :"
106
+#: ../data/ui/addchannelsgroups.glade.h:7
107
+msgid "URI"
108
+msgstr "URI"
109
110
#: ../data/ui/addchannelsgroups.glade.h:8
111
msgid "Existing channels group"
112
msgstr "Groupe des chaînes existantes"
113
114
-#: ../data/ui/addchannelsgroups.glade.h:9
115
-msgid "Favourites"
116
-msgstr "Favoris"
117
-
118
-#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:34
119
+#: ../data/ui/addchannelsgroups.glade.h:9 ../data/ui/freetuxtv.glade.h:7
120
msgid "Group's name:"
121
msgstr "Nom du groupe :"
122
123
-#: ../data/ui/addchannelsgroups.glade.h:11
124
-msgid "Languages/Channels group"
125
-msgstr "Groupe Langues/Chaînes"
126
-
127
-#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:41
128
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:9
129
msgid "Name of the group which will be added"
130
msgstr "Nom du groupe à ajouter"
131
132
-#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:51
133
-msgid "Playlist's URI of the group which will be added"
134
-msgstr "URI de la playlist du groupe à ajouter"
135
-
136
-#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:52
137
+#: ../data/ui/addchannelsgroups.glade.h:11 ../data/ui/freetuxtv.glade.h:8
138
msgid "Playlist's URI:"
139
msgstr "URI de la playlist :"
140
141
-#: ../data/ui/addchannelsgroups.glade.h:15
142
-msgid "Required ISP"
143
-msgstr "FAI requis"
144
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:10
145
+msgid "Playlist's URI of the group which will be added"
146
+msgstr "URI de la playlist du groupe à ajouter"
147
148
-#: ../data/ui/addchannelsgroups.glade.h:16
149
-msgid ""
150
-"Select one or several channels group you want to add and click on the add "
151
-"button."
152
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:11
153
+msgid "Delete this text before the name:"
154
+msgstr "Texte à enlever au début :"
155
+
156
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:13
157
+msgid "Text or regexp which must be deleted at the end of the channel's name"
158
msgstr ""
159
-"Sélectionnez un ou plusieurs groupes de chaînes que vous voulez ajouter et "
160
-"cliquez sur le bouton Ajouter."
161
+"Texte ou expression régulière qui sera retiré à la fin du nom de la chaîne"
162
163
-#: ../data/ui/addchannelsgroups.glade.h:17
164
-msgid "Special group"
165
-msgstr "Groupe spécial"
166
+#: ../data/ui/addchannelsgroups.glade.h:15 ../data/ui/freetuxtv.glade.h:12
167
+msgid "Delete this text behind the name:"
168
+msgstr "Texte à enlever à la fin :"
169
170
-#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:68
171
+#: ../data/ui/addchannelsgroups.glade.h:16 ../data/ui/freetuxtv.glade.h:14
172
msgid ""
173
"Text or regexp which must be deleted at the beginning of the channel's name"
174
msgstr ""
175
"Texte ou expression régulière qui sera retiré au début du nom de la chaîne"
176
177
-#: ../data/ui/addchannelsgroups.glade.h:19 ../data/ui/freetuxtv.glade.h:69
178
-msgid "Text or regexp which must be deleted at the end of the channel's name"
179
-msgstr ""
180
-"Texte ou expression régulière qui sera retiré à la fin du nom de la chaîne"
181
-
182
-#: ../data/ui/addchannelsgroups.glade.h:20
183
-msgid "URI"
184
-msgstr "URI"
185
-
186
-#: ../data/ui/addchannelsgroups.glade.h:21 ../data/ui/freetuxtv.glade.h:80
187
+#: ../data/ui/addchannelsgroups.glade.h:17 ../data/ui/freetuxtv.glade.h:15
188
msgid ""
189
"You can easily use regular expressions to delete some text in the channel's "
190
"name of the groupe. For example, if in your playlist, you have a name like "
191
192
"12\", FreetuxTV peut enlever automatiquement le numéro de chaînes devant, en "
193
"spécifiant l'expression \"[0-9]* - \"."
194
195
+#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:16
196
+msgid "<b>Processing of channels' name</b>"
197
+msgstr "<b>Traitement du nom des chaînes</b>"
198
+
199
+#: ../data/ui/addchannelsgroups.glade.h:19
200
+msgid "Custom channels group"
201
freetuxtv-0.6.6.tar.gz/po/lt.po
Added
201
1
2
+# SOME DESCRIPTIVE TITLE.
3
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
4
+# This file is distributed under the same license as the PACKAGE package.
5
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
6
+# Algimantas Margevičius <margevicius.algimantas@gmail.com>, 2013.
7
+#
8
+msgid ""
9
+msgstr ""
10
+"Project-Id-Version: PACKAGE VERSION\n"
11
+"Report-Msgid-Bugs-To: \n"
12
+"POT-Creation-Date: 2013-02-28 11:07+0200\n"
13
+"PO-Revision-Date: 2013-02-28 13:43+0200\n"
14
+"Last-Translator: Algimantas Margevičius <margevicius.algimantas@gmail.com>\n"
15
+"Language-Team: Lietuvių <>\n"
16
+"Language: \n"
17
+"MIME-Version: 1.0\n"
18
+"Content-Type: text/plain; charset=UTF-8\n"
19
+"Content-Transfer-Encoding: 8bit\n"
20
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
21
+"%100<10 || n%100>=20) ? 1 : 2)\n"
22
+"X-Generator: Gtranslator 2.91.5\n"
23
+
24
+#: ../data/ui/addrecording.glade.h:1
25
+msgid "Add a recording"
26
+msgstr "Pridėti įrašą"
27
+
28
+#: ../data/ui/addrecording.glade.h:2
29
+msgid "Selected channel:"
30
+msgstr "Pasirinktas kanalas:"
31
+
32
+#: ../data/ui/addrecording.glade.h:3
33
+msgid "Title:"
34
+msgstr "Pavadinimas:"
35
+
36
+#: ../data/ui/addrecording.glade.h:4
37
+msgid "Start time:"
38
+msgstr "Pradžios laikas:"
39
+
40
+#: ../data/ui/addrecording.glade.h:5
41
+msgid "Duration:"
42
+msgstr "Trukmė:"
43
+
44
+#: ../data/ui/addrecording.glade.h:6
45
+msgid "End time:"
46
+msgstr "Pabaigos laikas:"
47
+
48
+#: ../data/ui/addrecording.glade.h:7
49
+msgid "minutes"
50
+msgstr "minutės"
51
+
52
+#: ../data/ui/addrecording.glade.h:8
53
+msgid "<b>Recording period</b>"
54
+msgstr "<b>Įrašymo laikotarpis</b>"
55
+
56
+#: ../data/ui/addchannelsgroups.glade.h:1
57
+msgid "Add a group"
58
+msgstr "Pridėti grupę"
59
+
60
+#: ../data/ui/addchannelsgroups.glade.h:2
61
+msgid "Channels groups file:"
62
+msgstr "Kanalų grupės failas:"
63
+
64
+#: ../data/ui/addchannelsgroups.glade.h:3
65
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
66
+msgstr "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
67
+
68
+#: ../data/ui/addchannelsgroups.glade.h:4
69
+msgid ""
70
+"Select one or several channels group you want to add and click on the add "
71
+"button."
72
+msgstr ""
73
+"Pasirinkite vieną ar kelias kanalų grupes, kurias norite pridėti ir "
74
+"paspauskite mygtuką pridėti."
75
+
76
+#: ../data/ui/addchannelsgroups.glade.h:5
77
+msgid "Languages/Channels group"
78
+msgstr "Kalbos/Kanalų grupė"
79
+
80
+#: ../data/ui/addchannelsgroups.glade.h:6
81
+msgid "Required ISP"
82
+msgstr "Reikalingas ISP"
83
+
84
+#: ../data/ui/addchannelsgroups.glade.h:7
85
+msgid "URI"
86
+msgstr "URI"
87
+
88
+#: ../data/ui/addchannelsgroups.glade.h:8
89
+msgid "Existing channels group"
90
+msgstr "Esamos kanalų grupės"
91
+
92
+#: ../data/ui/addchannelsgroups.glade.h:9 ../data/ui/freetuxtv.glade.h:7
93
+msgid "Group's name:"
94
+msgstr "Grupės pavadinimas:"
95
+
96
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:9
97
+msgid "Name of the group which will be added"
98
+msgstr "Pridedamos grupės pavadinimas"
99
+
100
+#: ../data/ui/addchannelsgroups.glade.h:11 ../data/ui/freetuxtv.glade.h:8
101
+msgid "Playlist's URI:"
102
+msgstr "Grojaraščio URI:"
103
+
104
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:10
105
+msgid "Playlist's URI of the group which will be added"
106
+msgstr "Pridedamos grupės grojaraščio URI"
107
+
108
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:11
109
+msgid "Delete this text before the name:"
110
+msgstr "Prieš pavadinimą pašalinti šį tekstą:"
111
+
112
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:13
113
+msgid "Text or regexp which must be deleted at the end of the channel's name"
114
+msgstr ""
115
+"Kanalo pavadinimo pabaigoje tekstas ar regexp išraiška kuri turi būti "
116
+"pašalinta"
117
+
118
+#: ../data/ui/addchannelsgroups.glade.h:15 ../data/ui/freetuxtv.glade.h:12
119
+msgid "Delete this text behind the name:"
120
+msgstr "Pašalinti šį tekstą pavadinimo pradžioje:"
121
+
122
+#: ../data/ui/addchannelsgroups.glade.h:16 ../data/ui/freetuxtv.glade.h:14
123
+msgid ""
124
+"Text or regexp which must be deleted at the beginning of the channel's name"
125
+msgstr ""
126
+"Kanalo pavadinimo pradžioje tekstas ar regexp išraiška kuri turi būti "
127
+"pašalinta"
128
+
129
+#: ../data/ui/addchannelsgroups.glade.h:17 ../data/ui/freetuxtv.glade.h:15
130
+msgid ""
131
+"You can easily use regular expressions to delete some text in the channel's "
132
+"name of the groupe. For example, if in your playlist, you have a name like "
133
+"\"11 - NT1\" or \"12 - NRJ 12\", FreetuxTV is able to remove the channel's "
134
+"number before the name, by using the regular expression \"[0-9]* - \"."
135
+msgstr ""
136
+"Galite naudoti reguliariąsias išraiškas ir be didelio vargo pašalinti tekstą "
137
+"iš kanalo ar grupės pavadinimo. Pvz. jei jūsų grojaraštis pavadintas \"11 - "
138
+"NT1\" or \"12 - NRJ 12\", FreeetuxTV gali pašalinti kanalo numerį, naudojant "
139
+"reguliariąją išraišką „[0-9]* - “."
140
+
141
+#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:16
142
+msgid "<b>Processing of channels' name</b>"
143
+msgstr "<b>Apdorojamas kanalo pavadinimas</b>"
144
+
145
+#: ../data/ui/addchannelsgroups.glade.h:19
146
+msgid "Custom channels group"
147
+msgstr "Pasirinktinė kanalų grupė"
148
+
149
+#: ../data/ui/addchannelsgroups.glade.h:20
150
+msgid "Favourites"
151
+msgstr "Mėgstamiausi"
152
+
153
+#: ../data/ui/addchannelsgroups.glade.h:21
154
+msgid "<b>Special group type:</b>"
155
+msgstr "<b>Specialios grupės tipas:</b>"
156
+
157
+#: ../data/ui/addchannelsgroups.glade.h:22
158
+msgid "Special group"
159
+msgstr "Speciali grupė"
160
+
161
+#: ../data/ui/channelproperties.glade.h:1
162
+msgid "Channel properties"
163
+msgstr "Kanalo savybės"
164
+
165
+#: ../data/ui/channelproperties.glade.h:2
166
+msgid "Channel's name:"
167
+msgstr "Kanalo pavadinimas:"
168
+
169
+#: ../data/ui/channelproperties.glade.h:3
170
+msgid "Channel's URI:"
171
+msgstr "Kanalo URI:"
172
+
173
+#: ../data/ui/channelproperties.glade.h:4
174
+msgid "<b>Channel VLC options:</b>"
175
+msgstr "<b>Kanalo VLC parinktys:</b>"
176
+
177
+#: ../data/ui/channelproperties.glade.h:5 ../data/ui/freetuxtv.glade.h:17
178
+msgid "General"
179
+msgstr "Bendra"
180
+
181
+#: ../data/ui/channelproperties.glade.h:6
182
+msgid "Deinterlacement:"
183
+msgstr "Deinterliacija:"
184
+
185
+#: ../data/ui/channelproperties.glade.h:7
186
+#: ../src/freetuxtv-window-channel-properties.c:176
187
+msgid "none"
188
+msgstr "joks"
189
+
190
+#: ../data/ui/channelproperties.glade.h:8
191
+msgid "Options"
192
+msgstr "Parinktys"
193
+
194
+#: ../data/ui/freetuxtv.glade.h:1
195
+msgid "GNU General Public License v3"
196
+msgstr "GNU bendroji viešoji licencija, 3 versija"
197
+
198
+#: ../data/ui/freetuxtv.glade.h:2
199
+msgid "Web TV channels player"
200
+msgstr "Internetinės televizijos grotuvas"
201
freetuxtv-0.6.6.tar.gz/po/pl.po
Added
201
1
2
+# Polish translation of freetuxtv.
3
+# Copyright (C) 2013 GNU General Public License v3
4
+# This file is distributed under the same license as the freetuxtv package.
5
+# Eric Beuque <eric.beuque@gmail.com>, 2013. (From patch)
6
+#
7
+msgid ""
8
+msgstr ""
9
+"Project-Id-Version: PACKAGE VERSION\n"
10
+"Report-Msgid-Bugs-To: \n"
11
+"POT-Creation-Date: 2011-11-24 21:41+0100\n"
12
+"PO-Revision-Date: 2013-11-24 11:00+0100\n"
13
+"Last-Translator: Eric Beuque <eric.beuque@gmail.com>\n"
14
+"Language-Team: Polish <eric.beuque@gmail.com>\n"
15
+"Language: pl\n"
16
+"MIME-Version: 1.0\n"
17
+"Content-Type: text/plain; charset=UTF-8\n"
18
+"Content-Transfer-Encoding: 8bit\n"
19
+
20
+#: ../data/ui/addrecording.glade.h:1
21
+msgid "<b>Recording period</b>"
22
+msgstr "<b>okres nagrywania</b>"
23
+
24
+#: ../data/ui/addrecording.glade.h:2
25
+msgid "Add a recording"
26
+msgstr "Dodaj nagranie"
27
+
28
+#: ../data/ui/addrecording.glade.h:3
29
+msgid "Duration:"
30
+msgstr "Czas nagrywania"
31
+
32
+#: ../data/ui/addrecording.glade.h:4
33
+msgid "End time:"
34
+msgstr "Czas końcowy"
35
+
36
+#: ../data/ui/addrecording.glade.h:5
37
+msgid "Selected channel:"
38
+msgstr "Wybierz kanał"
39
+
40
+#: ../data/ui/addrecording.glade.h:6
41
+msgid "Start time:"
42
+msgstr "Czas początkowy"
43
+
44
+#: ../data/ui/addrecording.glade.h:7
45
+msgid "Title:"
46
+msgstr "Tytuł"
47
+
48
+#: ../data/ui/addrecording.glade.h:8
49
+msgid "minutes"
50
+msgstr "minuty"
51
+
52
+#: ../data/ui/addchannelsgroups.glade.h:1 ../data/ui/freetuxtv.glade.h:10
53
+msgid "<b>Processing of channels' name</b>"
54
+msgstr ""
55
+
56
+#: ../data/ui/addchannelsgroups.glade.h:2
57
+msgid "<b>Special group type:</b>"
58
+msgstr ""
59
+
60
+#: ../data/ui/addchannelsgroups.glade.h:3
61
+msgid "Add a group"
62
+msgstr "Dodaj grupę"
63
+
64
+#: ../data/ui/addchannelsgroups.glade.h:4
65
+msgid "Channels groups file:"
66
+msgstr "Plik grupy kanałów"
67
+
68
+#: ../data/ui/addchannelsgroups.glade.h:5
69
+msgid "Custom channels group"
70
+msgstr "Grupa kanałów użytkownika"
71
+
72
+#: ../data/ui/addchannelsgroups.glade.h:6 ../data/ui/freetuxtv.glade.h:20
73
+msgid "Delete this text before the name:"
74
+msgstr "Usuń tekst przed nazwą:"
75
+
76
+#: ../data/ui/addchannelsgroups.glade.h:7 ../data/ui/freetuxtv.glade.h:21
77
+msgid "Delete this text behind the name:"
78
+msgstr ""
79
+
80
+#: ../data/ui/addchannelsgroups.glade.h:8
81
+msgid "Existing channels group"
82
+msgstr "Istniejące grupy kanałów"
83
+
84
+#: ../data/ui/addchannelsgroups.glade.h:9
85
+msgid "Favourites"
86
+msgstr "Ulubione"
87
+
88
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:34
89
+msgid "Group's name:"
90
+msgstr "Nazwa grupy:"
91
+
92
+#: ../data/ui/addchannelsgroups.glade.h:11
93
+msgid "Languages/Channels group"
94
+msgstr "ęzyki/Grupy kanałów"
95
+
96
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:41
97
+msgid "Name of the group which will be added"
98
+msgstr "Nazwa grupy jaka ma być dodana"
99
+
100
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:51
101
+msgid "Playlist's URI of the group which will be added"
102
+msgstr "URI Listy odtwarzania jaka ma być dodana"
103
+
104
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:52
105
+msgid "Playlist's URI:"
106
+msgstr "URI Listy odtwarzania:"
107
+
108
+#: ../data/ui/addchannelsgroups.glade.h:15
109
+msgid "Required ISP"
110
+msgstr "Brakuje ISP"
111
+
112
+#: ../data/ui/addchannelsgroups.glade.h:16
113
+msgid ""
114
+"Select one or several channels group you want to add and click on the add "
115
+"button."
116
+msgstr "Wybierz jedną lub kilka grup kanałów jakie chcesz dodać i kliknij na "
117
+"przycisk."
118
+
119
+#: ../data/ui/addchannelsgroups.glade.h:17
120
+msgid "Special group"
121
+msgstr "Grupa specjalna"
122
+
123
+#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:68
124
+msgid ""
125
+"Text or regexp which must be deleted at the beginning of the channel's name"
126
+msgstr ""
127
+
128
+#: ../data/ui/addchannelsgroups.glade.h:19 ../data/ui/freetuxtv.glade.h:69
129
+msgid "Text or regexp which must be deleted at the end of the channel's name"
130
+msgstr ""
131
+
132
+#: ../data/ui/addchannelsgroups.glade.h:20
133
+msgid "URI"
134
+msgstr ""
135
+
136
+#: ../data/ui/addchannelsgroups.glade.h:21 ../data/ui/freetuxtv.glade.h:80
137
+msgid ""
138
+"You can easily use regular expressions to delete some text in the channel's "
139
+"name of the groupe. For example, if in your playlist, you have a name like "
140
+"\"11 - NT1\" or \"12 - NRJ 12\", FreetuxTV is able to remove the channel's "
141
+"number before the name, by using the regular expression \"[0-9]* - \"."
142
+msgstr ""
143
+
144
+#: ../data/ui/addchannelsgroups.glade.h:22
145
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
146
+msgstr ""
147
+
148
+#: ../data/ui/channelproperties.glade.h:1
149
+msgid "<b>Channel VLC options:</b>"
150
+msgstr ""
151
+
152
+#: ../data/ui/channelproperties.glade.h:2
153
+msgid "Channel properties"
154
+msgstr "Właściwości kanału"
155
+
156
+#: ../data/ui/channelproperties.glade.h:3
157
+msgid "Channel's URI:"
158
+msgstr "URI kanału:"
159
+
160
+#: ../data/ui/channelproperties.glade.h:4
161
+msgid "Channel's name:"
162
+msgstr "Nazwa kanału"
163
+
164
+#: ../data/ui/channelproperties.glade.h:5
165
+msgid "Deinterlacement:"
166
+msgstr ""
167
+
168
+#: ../data/ui/channelproperties.glade.h:6 ../data/ui/freetuxtv.glade.h:30
169
+msgid "General"
170
+msgstr "Ogólne"
171
+
172
+#: ../data/ui/channelproperties.glade.h:7
173
+msgid "Options"
174
+msgstr "Okcje"
175
+
176
+#: ../data/ui/channelproperties.glade.h:8
177
+#: ../src/freetuxtv-window-channel-properties.c:175
178
+msgid "none"
179
+msgstr ""
180
+
181
+#: ../data/ui/freetuxtv.glade.h:1
182
+msgid " channels"
183
+msgstr ""
184
+
185
+#: ../data/ui/freetuxtv.glade.h:2
186
+msgid "+"
187
+msgstr ""
188
+
189
+#: ../data/ui/freetuxtv.glade.h:3
190
+msgid "-"
191
+msgstr ""
192
+
193
+#: ../data/ui/freetuxtv.glade.h:4
194
+msgid "0"
195
+msgstr ""
196
+
197
+#: ../data/ui/freetuxtv.glade.h:5
198
+msgid "00:00:00"
199
+msgstr ""
200
+
201
freetuxtv-0.6.5.tar.gz/po/pt.po -> freetuxtv-0.6.6.tar.gz/po/pt.po
Changed
201
1
2
msgstr ""
3
"Project-Id-Version: \n"
4
"Report-Msgid-Bugs-To: \n"
5
-"POT-Creation-Date: 2011-11-24 21:41+0100\n"
6
+"POT-Creation-Date: 2013-03-05 20:38+0100\n"
7
"PO-Revision-Date: 2009-12-13 22:57+0100\n"
8
"Last-Translator: José JORGE <jjorge@free.fr>\n"
9
"Language-Team: Portuguese <kde-i18n-doc@kde.org>\n"
10
11
12
#: ../data/ui/addrecording.glade.h:1
13
#, fuzzy
14
-msgid "<b>Recording period</b>"
15
-msgstr "<b>Destino</b>"
16
+msgid "Add a recording"
17
+msgstr "Adicionar um grupo"
18
19
#: ../data/ui/addrecording.glade.h:2
20
#, fuzzy
21
-msgid "Add a recording"
22
-msgstr "Adicionar um grupo"
23
+msgid "Selected channel:"
24
+msgstr "canais"
25
26
#: ../data/ui/addrecording.glade.h:3
27
-msgid "Duration:"
28
+msgid "Title:"
29
msgstr ""
30
31
#: ../data/ui/addrecording.glade.h:4
32
-msgid "End time:"
33
+msgid "Start time:"
34
msgstr ""
35
36
#: ../data/ui/addrecording.glade.h:5
37
-#, fuzzy
38
-msgid "Selected channel:"
39
-msgstr "canais"
40
+msgid "Duration:"
41
+msgstr ""
42
43
#: ../data/ui/addrecording.glade.h:6
44
-msgid "Start time:"
45
+msgid "End time:"
46
msgstr ""
47
48
#: ../data/ui/addrecording.glade.h:7
49
-msgid "Title:"
50
-msgstr ""
51
-
52
-#: ../data/ui/addrecording.glade.h:8
53
msgid "minutes"
54
msgstr ""
55
56
-#: ../data/ui/addchannelsgroups.glade.h:1 ../data/ui/freetuxtv.glade.h:10
57
-msgid "<b>Processing of channels' name</b>"
58
-msgstr ""
59
-
60
-#: ../data/ui/addchannelsgroups.glade.h:2
61
+#: ../data/ui/addrecording.glade.h:8
62
#, fuzzy
63
-msgid "<b>Special group type:</b>"
64
-msgstr "Adicionar um grupo"
65
+msgid "<b>Recording period</b>"
66
+msgstr "<b>Destino</b>"
67
68
-#: ../data/ui/addchannelsgroups.glade.h:3
69
+#: ../data/ui/addchannelsgroups.glade.h:1
70
#, fuzzy
71
msgid "Add a group"
72
msgstr "Adicionar um grupo"
73
74
-#: ../data/ui/addchannelsgroups.glade.h:4
75
+#: ../data/ui/addchannelsgroups.glade.h:2
76
#, fuzzy
77
msgid "Channels groups file:"
78
msgstr "Ficheiro de grupos de canais :"
79
80
+#: ../data/ui/addchannelsgroups.glade.h:3
81
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
82
+msgstr ""
83
+
84
+#: ../data/ui/addchannelsgroups.glade.h:4
85
+msgid ""
86
+"Select one or several channels group you want to add and click on the add "
87
+"button."
88
+msgstr ""
89
+
90
#: ../data/ui/addchannelsgroups.glade.h:5
91
-msgid "Custom channels group"
92
+#, fuzzy
93
+msgid "Languages/Channels group"
94
msgstr "Grupos de canais personalizados"
95
96
-#: ../data/ui/addchannelsgroups.glade.h:6 ../data/ui/freetuxtv.glade.h:20
97
-msgid "Delete this text before the name:"
98
+#: ../data/ui/addchannelsgroups.glade.h:6
99
+msgid "Required ISP"
100
msgstr ""
101
102
-#: ../data/ui/addchannelsgroups.glade.h:7 ../data/ui/freetuxtv.glade.h:21
103
-msgid "Delete this text behind the name:"
104
+#: ../data/ui/addchannelsgroups.glade.h:7
105
+msgid "URI"
106
msgstr ""
107
108
#: ../data/ui/addchannelsgroups.glade.h:8
109
msgid "Existing channels group"
110
msgstr "Grupos de canais conhecidos"
111
112
-#: ../data/ui/addchannelsgroups.glade.h:9
113
-msgid "Favourites"
114
-msgstr ""
115
-
116
-#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:34
117
+#: ../data/ui/addchannelsgroups.glade.h:9 ../data/ui/freetuxtv.glade.h:7
118
msgid "Group's name:"
119
msgstr ""
120
121
-#: ../data/ui/addchannelsgroups.glade.h:11
122
-#, fuzzy
123
-msgid "Languages/Channels group"
124
-msgstr "Grupos de canais personalizados"
125
-
126
-#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:41
127
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:9
128
msgid "Name of the group which will be added"
129
msgstr ""
130
131
-#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:51
132
-msgid "Playlist's URI of the group which will be added"
133
-msgstr ""
134
-
135
-#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:52
136
+#: ../data/ui/addchannelsgroups.glade.h:11 ../data/ui/freetuxtv.glade.h:8
137
#, fuzzy
138
msgid "Playlist's URI:"
139
msgstr "Endereço URI da lista de leitura :"
140
141
-#: ../data/ui/addchannelsgroups.glade.h:15
142
-msgid "Required ISP"
143
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:10
144
+msgid "Playlist's URI of the group which will be added"
145
msgstr ""
146
147
-#: ../data/ui/addchannelsgroups.glade.h:16
148
-msgid ""
149
-"Select one or several channels group you want to add and click on the add "
150
-"button."
151
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:11
152
+msgid "Delete this text before the name:"
153
msgstr ""
154
155
-#: ../data/ui/addchannelsgroups.glade.h:17
156
-#, fuzzy
157
-msgid "Special group"
158
-msgstr "Adicionar um grupo"
159
-
160
-#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:68
161
-msgid ""
162
-"Text or regexp which must be deleted at the beginning of the channel's name"
163
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:13
164
+msgid "Text or regexp which must be deleted at the end of the channel's name"
165
msgstr ""
166
167
-#: ../data/ui/addchannelsgroups.glade.h:19 ../data/ui/freetuxtv.glade.h:69
168
-msgid "Text or regexp which must be deleted at the end of the channel's name"
169
+#: ../data/ui/addchannelsgroups.glade.h:15 ../data/ui/freetuxtv.glade.h:12
170
+msgid "Delete this text behind the name:"
171
msgstr ""
172
173
-#: ../data/ui/addchannelsgroups.glade.h:20
174
-msgid "URI"
175
+#: ../data/ui/addchannelsgroups.glade.h:16 ../data/ui/freetuxtv.glade.h:14
176
+msgid ""
177
+"Text or regexp which must be deleted at the beginning of the channel's name"
178
msgstr ""
179
180
-#: ../data/ui/addchannelsgroups.glade.h:21 ../data/ui/freetuxtv.glade.h:80
181
+#: ../data/ui/addchannelsgroups.glade.h:17 ../data/ui/freetuxtv.glade.h:15
182
msgid ""
183
"You can easily use regular expressions to delete some text in the channel's "
184
"name of the groupe. For example, if in your playlist, you have a name like "
185
186
"number before the name, by using the regular expression \"[0-9]* - \"."
187
msgstr ""
188
189
-#: ../data/ui/addchannelsgroups.glade.h:22
190
-msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
191
+#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:16
192
+msgid "<b>Processing of channels' name</b>"
193
msgstr ""
194
195
-#: ../data/ui/channelproperties.glade.h:1
196
+#: ../data/ui/addchannelsgroups.glade.h:19
197
+msgid "Custom channels group"
198
+msgstr "Grupos de canais personalizados"
199
+
200
+#: ../data/ui/addchannelsgroups.glade.h:20
201
freetuxtv-0.6.6.tar.gz/po/ru.po
Added
201
1
2
+# SOME DESCRIPTIVE TITLE.
3
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
4
+# This file is distributed under the same license as the PACKAGE package.
5
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
6
+#
7
+#, fuzzy
8
+msgid ""
9
+msgstr ""
10
+"Project-Id-Version: \n"
11
+"Report-Msgid-Bugs-To: \n"
12
+"POT-Creation-Date: 2013-03-05 20:38+0100\n"
13
+"PO-Revision-Date: 2013-02-15 21:00+GMT+3\n"
14
+"Last-Translator: Eugen Z.<cdxncdxn@gmail.com>\n"
15
+"Language-Team: Russian \n"
16
+"Language: ru\n"
17
+"MIME-Version: 1.0\n"
18
+"Content-Type: text/plain; charset=UTF-8\n"
19
+"Content-Transfer-Encoding: 8bit\n"
20
+
21
+#: ../data/ui/addrecording.glade.h:1
22
+msgid "Add a recording"
23
+msgstr "Добавить запись"
24
+
25
+#: ../data/ui/addrecording.glade.h:2
26
+msgid "Selected channel:"
27
+msgstr "Выбранный"
28
+
29
+#: ../data/ui/addrecording.glade.h:3
30
+msgid "Title:"
31
+msgstr "Название:"
32
+
33
+#: ../data/ui/addrecording.glade.h:4
34
+msgid "Start time:"
35
+msgstr "Время начала:"
36
+
37
+#: ../data/ui/addrecording.glade.h:5
38
+msgid "Duration:"
39
+msgstr "Продолжительность"
40
+
41
+#: ../data/ui/addrecording.glade.h:6
42
+msgid "End time:"
43
+msgstr "Конец времени"
44
+
45
+#: ../data/ui/addrecording.glade.h:7
46
+msgid "minutes"
47
+msgstr "минут(ы)"
48
+
49
+#: ../data/ui/addrecording.glade.h:8
50
+msgid "<b>Recording period</b>"
51
+msgstr "<b>Время записи</b>"
52
+
53
+#: ../data/ui/addchannelsgroups.glade.h:1
54
+msgid "Add a group"
55
+msgstr "Добавить список каналов"
56
+
57
+#: ../data/ui/addchannelsgroups.glade.h:2
58
+msgid "Channels groups file:"
59
+msgstr "XML Файл со списками каналов:"
60
+
61
+#: ../data/ui/addchannelsgroups.glade.h:3
62
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
63
+msgstr ""
64
+
65
+#: ../data/ui/addchannelsgroups.glade.h:4
66
+msgid ""
67
+"Select one or several channels group you want to add and click on the add "
68
+"button."
69
+msgstr ""
70
+"Выделите один или несколько списков с каналами и нажмите кнопку добавить."
71
+
72
+#: ../data/ui/addchannelsgroups.glade.h:5
73
+msgid "Languages/Channels group"
74
+msgstr "Язык/Список каналов"
75
+
76
+#: ../data/ui/addchannelsgroups.glade.h:6
77
+msgid "Required ISP"
78
+msgstr "Необходимый провайдер"
79
+
80
+#: ../data/ui/addchannelsgroups.glade.h:7
81
+msgid "URI"
82
+msgstr "Интернет адрес"
83
+
84
+#: ../data/ui/addchannelsgroups.glade.h:8
85
+msgid "Existing channels group"
86
+msgstr "Готовые списки каналов"
87
+
88
+#: ../data/ui/addchannelsgroups.glade.h:9 ../data/ui/freetuxtv.glade.h:7
89
+msgid "Group's name:"
90
+msgstr "Название списка"
91
+
92
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:9
93
+msgid "Name of the group which will be added"
94
+msgstr ""
95
+"Название списка с каналами который будет добавлен.\n"
96
+"Например: Мои список каналов"
97
+
98
+#: ../data/ui/addchannelsgroups.glade.h:11 ../data/ui/freetuxtv.glade.h:8
99
+msgid "Playlist's URI:"
100
+msgstr "Интернет адрес списка каналов:"
101
+
102
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:10
103
+msgid "Playlist's URI of the group which will be added"
104
+msgstr ""
105
+"Адрес содержащий список каналов который будет добавлен\n"
106
+"(ссылка на m3u файл или в другом читаемом формате)\n"
107
+"Например: http://database.freetuxtv.net/playlists/playlist_webtv_ru.m3u"
108
+
109
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:11
110
+msgid "Delete this text before the name:"
111
+msgstr "Удалить этот тест из начала названия:"
112
+
113
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:13
114
+msgid "Text or regexp which must be deleted at the end of the channel's name"
115
+msgstr ""
116
+"Текст или регулярное выражение удаляемые из начала строки названия канала"
117
+
118
+#: ../data/ui/addchannelsgroups.glade.h:15 ../data/ui/freetuxtv.glade.h:12
119
+msgid "Delete this text behind the name:"
120
+msgstr "Удалить этот тест из конца названия:"
121
+
122
+#: ../data/ui/addchannelsgroups.glade.h:16 ../data/ui/freetuxtv.glade.h:14
123
+msgid ""
124
+"Text or regexp which must be deleted at the beginning of the channel's name"
125
+msgstr "Текст или регулярное выражение удаляемые с конца названия канала"
126
+
127
+#: ../data/ui/addchannelsgroups.glade.h:17 ../data/ui/freetuxtv.glade.h:15
128
+msgid ""
129
+"You can easily use regular expressions to delete some text in the channel's "
130
+"name of the groupe. For example, if in your playlist, you have a name like "
131
+"\"11 - NT1\" or \"12 - NRJ 12\", FreetuxTV is able to remove the channel's "
132
+"number before the name, by using the regular expression \"[0-9]* - \"."
133
+msgstr ""
134
+"Вы можете использовать регулярные выражения, чтобы удалить текст в названиях "
135
+"каналов.\n"
136
+"Например, в списке воспроизведения названия:\n"
137
+"\"11 - Телеканал 2x2\". \n"
138
+"\"12 - Культура\". \n"
139
+"\"11 - \" и \"12 - \" перед именем канала удаляется с помощью фильтра: "
140
+"\"[0-9]* - \""
141
+
142
+#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:16
143
+msgid "<b>Processing of channels' name</b>"
144
+msgstr "<b>Обработка имен каналов</b>"
145
+
146
+#: ../data/ui/addchannelsgroups.glade.h:19
147
+msgid "Custom channels group"
148
+msgstr "Другой список каналов"
149
+
150
+#: ../data/ui/addchannelsgroups.glade.h:20
151
+msgid "Favourites"
152
+msgstr "Избранное"
153
+
154
+#: ../data/ui/addchannelsgroups.glade.h:21
155
+msgid "<b>Special group type:</b>"
156
+msgstr "<b>Тип списка:</b>"
157
+
158
+#: ../data/ui/addchannelsgroups.glade.h:22
159
+msgid "Special group"
160
+msgstr "Пустой список каналов"
161
+
162
+#: ../data/ui/channelproperties.glade.h:1
163
+msgid "Channel properties"
164
+msgstr "Параметры канала"
165
+
166
+#: ../data/ui/channelproperties.glade.h:2
167
+msgid "Channel's name:"
168
+msgstr "Название канала"
169
+
170
+#: ../data/ui/channelproperties.glade.h:3
171
+msgid "Channel's URI:"
172
+msgstr "Интернет адрес канала"
173
+
174
+#: ../data/ui/channelproperties.glade.h:4
175
+msgid "<b>Channel VLC options:</b>"
176
+msgstr "<b>VLC параметры канала:</b>"
177
+
178
+#: ../data/ui/channelproperties.glade.h:5 ../data/ui/freetuxtv.glade.h:17
179
+msgid "General"
180
+msgstr "Основные"
181
+
182
+#: ../data/ui/channelproperties.glade.h:6
183
+msgid "Deinterlacement:"
184
+msgstr "Устранение чересстрочности:"
185
+
186
+#: ../data/ui/channelproperties.glade.h:7
187
+#: ../src/freetuxtv-window-channel-properties.c:176
188
+msgid "none"
189
+msgstr "не задано"
190
+
191
+#: ../data/ui/channelproperties.glade.h:8
192
+msgid "Options"
193
+msgstr "Параметры"
194
+
195
+#: ../data/ui/freetuxtv.glade.h:1
196
+msgid "GNU General Public License v3"
197
+msgstr ""
198
+
199
+#: ../data/ui/freetuxtv.glade.h:2
200
+msgid "Web TV channels player"
201
freetuxtv-0.6.6.tar.gz/po/tr.po
Added
201
1
2
+# SOME DESCRIPTIVE TITLE.
3
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
4
+# This file is distributed under the same license as the PACKAGE package.
5
+# Şâkir Aşçı <sakirasci@gmail.com>, 2012.
6
+msgid ""
7
+msgstr ""
8
+"Project-Id-Version: PACKAGE VERSION\n"
9
+"Report-Msgid-Bugs-To: \n"
10
+"POT-Creation-Date: 2013-03-05 20:38+0100\n"
11
+"PO-Revision-Date: 2012-10-26 18:41+0300\n"
12
+"Last-Translator: Şâkir Aşçı <sakirasci@gmail.com>\n"
13
+"Language-Team: Ubuntu Türkçe Çeviri Takımı\n"
14
+"Language: tr\n"
15
+"MIME-Version: 1.0\n"
16
+"Content-Type: text/plain; charset=UTF-8\n"
17
+"Content-Transfer-Encoding: 8bit\n"
18
+"Plural-Forms: nplurals=1; plural=0;\n"
19
+"X-Generator: Virtaal 0.7.1\n"
20
+
21
+#: ../data/ui/addrecording.glade.h:1
22
+msgid "Add a recording"
23
+msgstr "Kayıt ekle"
24
+
25
+#: ../data/ui/addrecording.glade.h:2
26
+msgid "Selected channel:"
27
+msgstr "Seçilen kanal:"
28
+
29
+#: ../data/ui/addrecording.glade.h:3
30
+msgid "Title:"
31
+msgstr "Başlık:"
32
+
33
+#: ../data/ui/addrecording.glade.h:4
34
+msgid "Start time:"
35
+msgstr "Başlanguç zamânı:"
36
+
37
+#: ../data/ui/addrecording.glade.h:5
38
+msgid "Duration:"
39
+msgstr "Süre:"
40
+
41
+#: ../data/ui/addrecording.glade.h:6
42
+msgid "End time:"
43
+msgstr "Bitiş zamânı:"
44
+
45
+#: ../data/ui/addrecording.glade.h:7
46
+msgid "minutes"
47
+msgstr "dakîka"
48
+
49
+#: ../data/ui/addrecording.glade.h:8
50
+msgid "<b>Recording period</b>"
51
+msgstr "<b>Kaydetme aralığı</b>"
52
+
53
+#: ../data/ui/addchannelsgroups.glade.h:1
54
+msgid "Add a group"
55
+msgstr "Liste ekle"
56
+
57
+#: ../data/ui/addchannelsgroups.glade.h:2
58
+msgid "Channels groups file:"
59
+msgstr "Kanalların liste dosyası:"
60
+
61
+#: ../data/ui/addchannelsgroups.glade.h:3
62
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
63
+msgstr "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
64
+
65
+#: ../data/ui/addchannelsgroups.glade.h:4
66
+msgid ""
67
+"Select one or several channels group you want to add and click on the add "
68
+"button."
69
+msgstr ""
70
+"Eklemek istediğiniz bir ya da daha fazla kanal listesini seçin ve ekle "
71
+"düğmesine tıklayın."
72
+
73
+#: ../data/ui/addchannelsgroups.glade.h:5
74
+msgid "Languages/Channels group"
75
+msgstr "Dil/Kanal Listesi"
76
+
77
+#: ../data/ui/addchannelsgroups.glade.h:6
78
+msgid "Required ISP"
79
+msgstr "Sağlayıcı"
80
+
81
+#: ../data/ui/addchannelsgroups.glade.h:7
82
+msgid "URI"
83
+msgstr "Bulunak"
84
+
85
+#: ../data/ui/addchannelsgroups.glade.h:8
86
+msgid "Existing channels group"
87
+msgstr "Öntanımlı kanal listesi"
88
+
89
+#: ../data/ui/addchannelsgroups.glade.h:9 ../data/ui/freetuxtv.glade.h:7
90
+msgid "Group's name:"
91
+msgstr "Liste adı:"
92
+
93
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:9
94
+msgid "Name of the group which will be added"
95
+msgstr "Eklenecek liste adı"
96
+
97
+#: ../data/ui/addchannelsgroups.glade.h:11 ../data/ui/freetuxtv.glade.h:8
98
+msgid "Playlist's URI:"
99
+msgstr "Liste bulunağı:"
100
+
101
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:10
102
+msgid "Playlist's URI of the group which will be added"
103
+msgstr "Eklenecek listenin bulunağı"
104
+
105
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:11
106
+msgid "Delete this text before the name:"
107
+msgstr "Addan önceki şu metni sil:"
108
+
109
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:13
110
+msgid "Text or regexp which must be deleted at the end of the channel's name"
111
+msgstr "Kanal adının sonundan silinecek olan metin ya da düzenli ifâde"
112
+
113
+#: ../data/ui/addchannelsgroups.glade.h:15 ../data/ui/freetuxtv.glade.h:12
114
+msgid "Delete this text behind the name:"
115
+msgstr "Addan sonraki şu metni sil:"
116
+
117
+#: ../data/ui/addchannelsgroups.glade.h:16 ../data/ui/freetuxtv.glade.h:14
118
+msgid ""
119
+"Text or regexp which must be deleted at the beginning of the channel's name"
120
+msgstr "Kanal adının başından silinecek olan metin ya da düzenli ifâde"
121
+
122
+#: ../data/ui/addchannelsgroups.glade.h:17 ../data/ui/freetuxtv.glade.h:15
123
+msgid ""
124
+"You can easily use regular expressions to delete some text in the channel's "
125
+"name of the groupe. For example, if in your playlist, you have a name like "
126
+"\"11 - NT1\" or \"12 - NRJ 12\", FreetuxTV is able to remove the channel's "
127
+"number before the name, by using the regular expression \"[0-9]* - \"."
128
+msgstr ""
129
+"Listedeki kanal adından bâzı metinleri silmek için basit düzenli ifâdeler "
130
+"kullanabilirsiniz. Örneğin, ekleyeceğiniz listedeki kanalın \"54 - Kanal "
131
+"54\" ya da \"3 - TRT 3\" benzeri bir adı varsa, FreetuxTV kanalın adının "
132
+"öncesinde bulunan rakamları \"[0-9]*- \" düzenli ifâdesini kullanarak "
133
+"silebilir."
134
+
135
+#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:16
136
+msgid "<b>Processing of channels' name</b>"
137
+msgstr "<b>Kanalların adının işlenmesi</b>"
138
+
139
+#: ../data/ui/addchannelsgroups.glade.h:19
140
+msgid "Custom channels group"
141
+msgstr "Kişisel kanal listesi"
142
+
143
+#: ../data/ui/addchannelsgroups.glade.h:20
144
+msgid "Favourites"
145
+msgstr "Gözdeler"
146
+
147
+#: ../data/ui/addchannelsgroups.glade.h:21
148
+msgid "<b>Special group type:</b>"
149
+msgstr "<b>Özel liste biçimi:</b>"
150
+
151
+#: ../data/ui/addchannelsgroups.glade.h:22
152
+msgid "Special group"
153
+msgstr "Özel liste"
154
+
155
+#: ../data/ui/channelproperties.glade.h:1
156
+msgid "Channel properties"
157
+msgstr "Kanal özellikleri"
158
+
159
+#: ../data/ui/channelproperties.glade.h:2
160
+msgid "Channel's name:"
161
+msgstr "Kanal adı:"
162
+
163
+#: ../data/ui/channelproperties.glade.h:3
164
+msgid "Channel's URI:"
165
+msgstr "Kanal Bulunağı:"
166
+
167
+#: ../data/ui/channelproperties.glade.h:4
168
+msgid "<b>Channel VLC options:</b>"
169
+msgstr "<b>Kanal VLC seçenekleri:</b>"
170
+
171
+#: ../data/ui/channelproperties.glade.h:5 ../data/ui/freetuxtv.glade.h:17
172
+msgid "General"
173
+msgstr "Genel"
174
+
175
+#: ../data/ui/channelproperties.glade.h:6
176
+msgid "Deinterlacement:"
177
+msgstr "Görüntü ayrıştırma:"
178
+
179
+#: ../data/ui/channelproperties.glade.h:7
180
+#: ../src/freetuxtv-window-channel-properties.c:176
181
+msgid "none"
182
+msgstr "yok"
183
+
184
+#: ../data/ui/channelproperties.glade.h:8
185
+msgid "Options"
186
+msgstr "Seçenekler"
187
+
188
+#: ../data/ui/freetuxtv.glade.h:1
189
+msgid "GNU General Public License v3"
190
+msgstr "GNU Genel Kamu Lisansu Sürüm 3"
191
+
192
+#: ../data/ui/freetuxtv.glade.h:2
193
+msgid "Web TV channels player"
194
+msgstr "Genelağ TV kanalları oynatıcısı"
195
+
196
+#: ../data/ui/freetuxtv.glade.h:3
197
+msgid "Project's Web Site"
198
+msgstr "Proje Genelağ Sayfası"
199
+
200
+#. TRANSLATORS: Replace this string with your names, one name per line.
201
freetuxtv-0.6.5.tar.gz/po/zh_CN.po -> freetuxtv-0.6.6.tar.gz/po/zh_CN.po
Changed
201
1
2
msgstr ""
3
"Project-Id-Version: freetuxtv\n"
4
"Report-Msgid-Bugs-To: \n"
5
-"POT-Creation-Date: 2011-11-24 21:41+0100\n"
6
+"POT-Creation-Date: 2013-03-05 20:38+0100\n"
7
"PO-Revision-Date: 2011-12-14 17:53+0800\n"
8
"Last-Translator: Dean Lee <xslidian@gmail.com>\n"
9
"Language-Team: Chinese Simplified <xslidian+freetuxtv@gmail.com>\n"
10
11
"X-Poedit-Language: Chinese\n"
12
13
#: ../data/ui/addrecording.glade.h:1
14
-msgid "<b>Recording period</b>"
15
-msgstr "<b>录制间隔</b>"
16
-
17
-#: ../data/ui/addrecording.glade.h:2
18
msgid "Add a recording"
19
msgstr "添加录像任务"
20
21
+#: ../data/ui/addrecording.glade.h:2
22
+msgid "Selected channel:"
23
+msgstr "选中频道:"
24
+
25
#: ../data/ui/addrecording.glade.h:3
26
-msgid "Duration:"
27
-msgstr "时长:"
28
+msgid "Title:"
29
+msgstr "标题:"
30
31
#: ../data/ui/addrecording.glade.h:4
32
-msgid "End time:"
33
-msgstr "终止时间:"
34
+msgid "Start time:"
35
+msgstr "起始时间:"
36
37
#: ../data/ui/addrecording.glade.h:5
38
-msgid "Selected channel:"
39
-msgstr "选中频道:"
40
+msgid "Duration:"
41
+msgstr "时长:"
42
43
#: ../data/ui/addrecording.glade.h:6
44
-msgid "Start time:"
45
-msgstr "起始时间:"
46
+msgid "End time:"
47
+msgstr "终止时间:"
48
49
#: ../data/ui/addrecording.glade.h:7
50
-msgid "Title:"
51
-msgstr "标题:"
52
-
53
-#: ../data/ui/addrecording.glade.h:8
54
msgid "minutes"
55
msgstr "分钟"
56
57
+#: ../data/ui/addrecording.glade.h:8
58
+msgid "<b>Recording period</b>"
59
+msgstr "<b>录制间隔</b>"
60
+
61
#: ../data/ui/addchannelsgroups.glade.h:1
62
-#: ../data/ui/freetuxtv.glade.h:10
63
-msgid "<b>Processing of channels' name</b>"
64
-msgstr "<b>正在处理频道名称</b>"
65
+msgid "Add a group"
66
+msgstr "添加组"
67
68
#: ../data/ui/addchannelsgroups.glade.h:2
69
-msgid "<b>Special group type:</b>"
70
-msgstr "<b>特殊组类:</b>"
71
+msgid "Channels groups file:"
72
+msgstr "频道组文件:"
73
74
#: ../data/ui/addchannelsgroups.glade.h:3
75
-msgid "Add a group"
76
-msgstr "添加组"
77
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
78
+msgstr "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
79
80
#: ../data/ui/addchannelsgroups.glade.h:4
81
-msgid "Channels groups file:"
82
-msgstr "频道组文件:"
83
+msgid ""
84
+"Select one or several channels group you want to add and click on the add "
85
+"button."
86
+msgstr "选择希望添加的一个或多个频道组并点击添加按钮。"
87
88
#: ../data/ui/addchannelsgroups.glade.h:5
89
-msgid "Custom channels group"
90
-msgstr "自定义频道组"
91
+msgid "Languages/Channels group"
92
+msgstr "语言/频道组"
93
94
#: ../data/ui/addchannelsgroups.glade.h:6
95
-#: ../data/ui/freetuxtv.glade.h:20
96
-msgid "Delete this text before the name:"
97
-msgstr "删除名称前的这些文字:"
98
+msgid "Required ISP"
99
+msgstr "所需 ISP"
100
101
#: ../data/ui/addchannelsgroups.glade.h:7
102
-#: ../data/ui/freetuxtv.glade.h:21
103
-msgid "Delete this text behind the name:"
104
-msgstr "删除名称后的这些文字:"
105
+msgid "URI"
106
+msgstr "URI"
107
108
#: ../data/ui/addchannelsgroups.glade.h:8
109
msgid "Existing channels group"
110
msgstr "现有频道组"
111
112
-#: ../data/ui/addchannelsgroups.glade.h:9
113
-msgid "Favourites"
114
-msgstr "收藏"
115
-
116
-#: ../data/ui/addchannelsgroups.glade.h:10
117
-#: ../data/ui/freetuxtv.glade.h:34
118
+#: ../data/ui/addchannelsgroups.glade.h:9 ../data/ui/freetuxtv.glade.h:7
119
msgid "Group's name:"
120
msgstr "组名:"
121
122
-#: ../data/ui/addchannelsgroups.glade.h:11
123
-msgid "Languages/Channels group"
124
-msgstr "语言/频道组"
125
-
126
-#: ../data/ui/addchannelsgroups.glade.h:12
127
-#: ../data/ui/freetuxtv.glade.h:41
128
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:9
129
msgid "Name of the group which will be added"
130
msgstr "将添加的组名"
131
132
-#: ../data/ui/addchannelsgroups.glade.h:13
133
-#: ../data/ui/freetuxtv.glade.h:51
134
-msgid "Playlist's URI of the group which will be added"
135
-msgstr "将添加组的播放列表 URI"
136
-
137
-#: ../data/ui/addchannelsgroups.glade.h:14
138
-#: ../data/ui/freetuxtv.glade.h:52
139
+#: ../data/ui/addchannelsgroups.glade.h:11 ../data/ui/freetuxtv.glade.h:8
140
msgid "Playlist's URI:"
141
msgstr "播放列表 URI:"
142
143
-#: ../data/ui/addchannelsgroups.glade.h:15
144
-msgid "Required ISP"
145
-msgstr "所需 ISP"
146
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:10
147
+msgid "Playlist's URI of the group which will be added"
148
+msgstr "将添加组的播放列表 URI"
149
150
-#: ../data/ui/addchannelsgroups.glade.h:16
151
-msgid "Select one or several channels group you want to add and click on the add button."
152
-msgstr "选择希望添加的一个或多个频道组并点击添加按钮。"
153
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:11
154
+msgid "Delete this text before the name:"
155
+msgstr "删除名称前的这些文字:"
156
157
-#: ../data/ui/addchannelsgroups.glade.h:17
158
-msgid "Special group"
159
-msgstr "特殊组"
160
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:13
161
+msgid "Text or regexp which must be deleted at the end of the channel's name"
162
+msgstr "频道名称末尾必须删除的文本或正则表达式"
163
164
-#: ../data/ui/addchannelsgroups.glade.h:18
165
-#: ../data/ui/freetuxtv.glade.h:68
166
-msgid "Text or regexp which must be deleted at the beginning of the channel's name"
167
+#: ../data/ui/addchannelsgroups.glade.h:15 ../data/ui/freetuxtv.glade.h:12
168
+msgid "Delete this text behind the name:"
169
+msgstr "删除名称后的这些文字:"
170
+
171
+#: ../data/ui/addchannelsgroups.glade.h:16 ../data/ui/freetuxtv.glade.h:14
172
+msgid ""
173
+"Text or regexp which must be deleted at the beginning of the channel's name"
174
msgstr "频道名称开头必须删除的文本或正则表达式"
175
176
+#: ../data/ui/addchannelsgroups.glade.h:17 ../data/ui/freetuxtv.glade.h:15
177
+msgid ""
178
+"You can easily use regular expressions to delete some text in the channel's "
179
+"name of the groupe. For example, if in your playlist, you have a name like "
180
+"\"11 - NT1\" or \"12 - NRJ 12\", FreetuxTV is able to remove the channel's "
181
+"number before the name, by using the regular expression \"[0-9]* - \"."
182
+msgstr ""
183
+"您可以使用正则表达式删除组中频道名称的部分文字。例如,如果您的播放列表中有类"
184
+"似 \"11 - NT1\" 或 \"12 - NRJ 12\" 的名称,FreetuxTV 可以使用正则表达式 "
185
+"\"[0-9]* - \" 移除名称前的频道号。"
186
+
187
+#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:16
188
+msgid "<b>Processing of channels' name</b>"
189
+msgstr "<b>正在处理频道名称</b>"
190
+
191
#: ../data/ui/addchannelsgroups.glade.h:19
192
-#: ../data/ui/freetuxtv.glade.h:69
193
-msgid "Text or regexp which must be deleted at the end of the channel's name"
194
-msgstr "频道名称末尾必须删除的文本或正则表达式"
195
+msgid "Custom channels group"
196
+msgstr "自定义频道组"
197
198
#: ../data/ui/addchannelsgroups.glade.h:20
199
-msgid "URI"
200
-msgstr "URI"
201
freetuxtv-0.6.5.tar.gz/po/zh_TW.po -> freetuxtv-0.6.6.tar.gz/po/zh_TW.po
Changed
201
1
2
msgstr ""
3
"Project-Id-Version: freetuxtv 0.6.2\n"
4
"Report-Msgid-Bugs-To: \n"
5
-"POT-Creation-Date: 2011-11-24 21:41+0100\n"
6
+"POT-Creation-Date: 2013-03-05 20:38+0100\n"
7
"PO-Revision-Date: 2011-11-25 10:59+0800\n"
8
"Last-Translator: Wei-Lun Chao <william.chao@ossii.com.tw>\n"
9
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
10
+"Language: zh_TW\n"
11
"MIME-Version: 1.0\n"
12
"Content-Type: text/plain; charset=UTF-8\n"
13
"Content-Transfer-Encoding: 8bit\n"
14
-"Language: zh_TW\n"
15
"Plural-Forms: nplurals=1; plural=0;\n"
16
17
#: ../data/ui/addrecording.glade.h:1
18
-msgid "<b>Recording period</b>"
19
-msgstr "<b>錄製時段</b>"
20
-
21
-#: ../data/ui/addrecording.glade.h:2
22
msgid "Add a recording"
23
msgstr "加入錄製"
24
25
+#: ../data/ui/addrecording.glade.h:2
26
+msgid "Selected channel:"
27
+msgstr "所選頻道"
28
+
29
#: ../data/ui/addrecording.glade.h:3
30
-msgid "Duration:"
31
-msgstr "時間:"
32
+msgid "Title:"
33
+msgstr "標題:"
34
35
#: ../data/ui/addrecording.glade.h:4
36
-msgid "End time:"
37
-msgstr "終止時間:"
38
+msgid "Start time:"
39
+msgstr "起始時間:"
40
41
#: ../data/ui/addrecording.glade.h:5
42
-msgid "Selected channel:"
43
-msgstr "所選頻道"
44
+msgid "Duration:"
45
+msgstr "時間:"
46
47
#: ../data/ui/addrecording.glade.h:6
48
-msgid "Start time:"
49
-msgstr "起始時間:"
50
+msgid "End time:"
51
+msgstr "終止時間:"
52
53
#: ../data/ui/addrecording.glade.h:7
54
-msgid "Title:"
55
-msgstr "標題:"
56
-
57
-#: ../data/ui/addrecording.glade.h:8
58
msgid "minutes"
59
msgstr "分鐘"
60
61
-#: ../data/ui/addchannelsgroups.glade.h:1 ../data/ui/freetuxtv.glade.h:10
62
-msgid "<b>Processing of channels' name</b>"
63
-msgstr "<b>正在處理頻道名稱</b>"
64
-
65
-#: ../data/ui/addchannelsgroups.glade.h:2
66
-msgid "<b>Special group type:</b>"
67
-msgstr "<b>特殊群組類別:</b>"
68
+#: ../data/ui/addrecording.glade.h:8
69
+msgid "<b>Recording period</b>"
70
+msgstr "<b>錄製時段</b>"
71
72
-#: ../data/ui/addchannelsgroups.glade.h:3
73
+#: ../data/ui/addchannelsgroups.glade.h:1
74
msgid "Add a group"
75
msgstr "加入群組"
76
77
-#: ../data/ui/addchannelsgroups.glade.h:4
78
+#: ../data/ui/addchannelsgroups.glade.h:2
79
msgid "Channels groups file:"
80
msgstr "頻道群組檔案:"
81
82
+#: ../data/ui/addchannelsgroups.glade.h:3
83
+msgid "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
84
+msgstr "http://freetuxtv.googlecode.com/svn/trunk/data/channels_groups.xml"
85
+
86
+#: ../data/ui/addchannelsgroups.glade.h:4
87
+msgid ""
88
+"Select one or several channels group you want to add and click on the add "
89
+"button."
90
+msgstr "選擇希望加入的一個或多個頻道群組並點擊加入按鈕。"
91
+
92
#: ../data/ui/addchannelsgroups.glade.h:5
93
-msgid "Custom channels group"
94
-msgstr "自訂頻道群組"
95
+msgid "Languages/Channels group"
96
+msgstr "語言/頻道群組"
97
98
-#: ../data/ui/addchannelsgroups.glade.h:6 ../data/ui/freetuxtv.glade.h:20
99
-msgid "Delete this text before the name:"
100
-msgstr "刪除名稱前的這些文字:"
101
+#: ../data/ui/addchannelsgroups.glade.h:6
102
+msgid "Required ISP"
103
+msgstr "所需 ISP"
104
105
-#: ../data/ui/addchannelsgroups.glade.h:7 ../data/ui/freetuxtv.glade.h:21
106
-msgid "Delete this text behind the name:"
107
-msgstr "刪除名稱後的這些文字:"
108
+#: ../data/ui/addchannelsgroups.glade.h:7
109
+msgid "URI"
110
+msgstr "URI"
111
112
#: ../data/ui/addchannelsgroups.glade.h:8
113
msgid "Existing channels group"
114
msgstr "現有頻道群組"
115
116
-#: ../data/ui/addchannelsgroups.glade.h:9
117
-msgid "Favourites"
118
-msgstr "收藏"
119
-
120
-#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:34
121
+#: ../data/ui/addchannelsgroups.glade.h:9 ../data/ui/freetuxtv.glade.h:7
122
msgid "Group's name:"
123
msgstr "群組名稱:"
124
125
-#: ../data/ui/addchannelsgroups.glade.h:11
126
-msgid "Languages/Channels group"
127
-msgstr "語言/頻道群組"
128
-
129
-#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:41
130
+#: ../data/ui/addchannelsgroups.glade.h:10 ../data/ui/freetuxtv.glade.h:9
131
msgid "Name of the group which will be added"
132
msgstr "將加入的群組名稱"
133
134
-#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:51
135
-msgid "Playlist's URI of the group which will be added"
136
-msgstr "將加入群組的播放清單 URI"
137
-
138
-#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:52
139
+#: ../data/ui/addchannelsgroups.glade.h:11 ../data/ui/freetuxtv.glade.h:8
140
msgid "Playlist's URI:"
141
msgstr "播放清單 URI:"
142
143
-#: ../data/ui/addchannelsgroups.glade.h:15
144
-msgid "Required ISP"
145
-msgstr "所需 ISP"
146
+#: ../data/ui/addchannelsgroups.glade.h:12 ../data/ui/freetuxtv.glade.h:10
147
+msgid "Playlist's URI of the group which will be added"
148
+msgstr "將加入群組的播放清單 URI"
149
150
-#: ../data/ui/addchannelsgroups.glade.h:16
151
-msgid ""
152
-"Select one or several channels group you want to add and click on the add "
153
-"button."
154
-msgstr "選擇希望加入的一個或多個頻道群組並點擊加入按鈕。"
155
+#: ../data/ui/addchannelsgroups.glade.h:13 ../data/ui/freetuxtv.glade.h:11
156
+msgid "Delete this text before the name:"
157
+msgstr "刪除名稱前的這些文字:"
158
159
-#: ../data/ui/addchannelsgroups.glade.h:17
160
-msgid "Special group"
161
-msgstr "特殊群組"
162
+#: ../data/ui/addchannelsgroups.glade.h:14 ../data/ui/freetuxtv.glade.h:13
163
+msgid "Text or regexp which must be deleted at the end of the channel's name"
164
+msgstr "頻道名稱末尾必須刪除的文字或正規表示式"
165
+
166
+#: ../data/ui/addchannelsgroups.glade.h:15 ../data/ui/freetuxtv.glade.h:12
167
+msgid "Delete this text behind the name:"
168
+msgstr "刪除名稱後的這些文字:"
169
170
-#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:68
171
+#: ../data/ui/addchannelsgroups.glade.h:16 ../data/ui/freetuxtv.glade.h:14
172
msgid ""
173
"Text or regexp which must be deleted at the beginning of the channel's name"
174
msgstr "頻道名稱開頭必須刪除的文字或正規表示式"
175
176
-#: ../data/ui/addchannelsgroups.glade.h:19 ../data/ui/freetuxtv.glade.h:69
177
-msgid "Text or regexp which must be deleted at the end of the channel's name"
178
-msgstr "頻道名稱末尾必須刪除的文字或正規表示式"
179
-
180
-#: ../data/ui/addchannelsgroups.glade.h:20
181
-msgid "URI"
182
-msgstr "URI"
183
-
184
-#: ../data/ui/addchannelsgroups.glade.h:21 ../data/ui/freetuxtv.glade.h:80
185
+#: ../data/ui/addchannelsgroups.glade.h:17 ../data/ui/freetuxtv.glade.h:15
186
msgid ""
187
"You can easily use regular expressions to delete some text in the channel's "
188
"name of the groupe. For example, if in your playlist, you have a name like "
189
190
"類似「11 - NT1」或「12 - NRJ 12」的名稱,FreetuxTV 可以使用正規表示式「[0-9]"
191
"* - 」移除名稱前的頻道號。"
192
193
+#: ../data/ui/addchannelsgroups.glade.h:18 ../data/ui/freetuxtv.glade.h:16
194
+msgid "<b>Processing of channels' name</b>"
195
+msgstr "<b>正在處理頻道名稱</b>"
196
+
197
+#: ../data/ui/addchannelsgroups.glade.h:19
198
+msgid "Custom channels group"
199
+msgstr "自訂頻道群組"
200
+
201
freetuxtv-0.6.5.tar.gz/src/Makefile.am -> freetuxtv-0.6.6.tar.gz/src/Makefile.am
Changed
18
1
2
freetuxtv-utils.h \
3
freetuxtv-window-add-channels-group.c \
4
freetuxtv-window-add-channels-group.h \
5
+ freetuxtv-window-add-recording.c \
6
+ freetuxtv-window-add-recording.h \
7
freetuxtv-window-channel-properties.c \
8
freetuxtv-window-channel-properties.h \
9
freetuxtv-window-main.c \
10
freetuxtv-window-main.h \
11
- freetuxtv-window-add-recording.c \
12
- freetuxtv-window-add-recording.h \
13
+ freetuxtv-window-tv-channels-database.c \
14
+ freetuxtv-window-tv-channels-database.h \
15
lib-gmmkeys.c \
16
lib-gmmkeys.h \
17
lib-m3uparser.c \
18
freetuxtv-0.6.5.tar.gz/src/Makefile.in -> freetuxtv-0.6.6.tar.gz/src/Makefile.in
Changed
201
1
2
-# Makefile.in generated by automake 1.11.3 from Makefile.am.
3
+# Makefile.in generated by automake 1.13.3 from Makefile.am.
4
# @configure_input@
5
6
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
7
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
8
-# Foundation, Inc.
9
+# Copyright (C) 1994-2013 Free Software Foundation, Inc.
10
+
11
# This Makefile.in is free software; the Free Software Foundation
12
# gives unlimited permission to copy and/or distribute it,
13
# with or without modifications, as long as this notice is preserved.
14
15
@SET_MAKE@
16
17
VPATH = @srcdir@
18
+am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
19
+am__make_running_with_option = \
20
+ case $${target_option-} in \
21
+ ?) ;; \
22
+ *) echo "am__make_running_with_option: internal error: invalid" \
23
+ "target option '$${target_option-}' specified" >&2; \
24
+ exit 1;; \
25
+ esac; \
26
+ has_opt=no; \
27
+ sane_makeflags=$$MAKEFLAGS; \
28
+ if $(am__is_gnu_make); then \
29
+ sane_makeflags=$$MFLAGS; \
30
+ else \
31
+ case $$MAKEFLAGS in \
32
+ *\\[\ \ ]*) \
33
+ bs=\\; \
34
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
35
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
36
+ esac; \
37
+ fi; \
38
+ skip_next=no; \
39
+ strip_trailopt () \
40
+ { \
41
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
42
+ }; \
43
+ for flg in $$sane_makeflags; do \
44
+ test $$skip_next = yes && { skip_next=no; continue; }; \
45
+ case $$flg in \
46
+ *=*|--*) continue;; \
47
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
48
+ -*I?*) strip_trailopt 'I';; \
49
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
50
+ -*O?*) strip_trailopt 'O';; \
51
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
52
+ -*l?*) strip_trailopt 'l';; \
53
+ -[dEDm]) skip_next=yes;; \
54
+ -[JT]) skip_next=yes;; \
55
+ esac; \
56
+ case $$flg in \
57
+ *$$target_option*) has_opt=yes; break;; \
58
+ esac; \
59
+ done; \
60
+ test $$has_opt = yes
61
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
62
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
63
pkgdatadir = $(datadir)/@PACKAGE@
64
pkgincludedir = $(includedir)/@PACKAGE@
65
pkglibdir = $(libdir)/@PACKAGE@
66
67
host_triplet = @host@
68
bin_PROGRAMS = freetuxtv$(EXEEXT)
69
subdir = src
70
-DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
71
+DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
72
+ $(top_srcdir)/depcomp
73
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
74
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
75
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
76
$(ACLOCAL_M4)
77
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
78
+mkinstalldirs = $(install_sh) -d
79
CONFIG_HEADER = $(top_builddir)/config.h
80
CONFIG_CLEAN_FILES =
81
CONFIG_CLEAN_VPATH_FILES =
82
83
freetuxtv-tv-channel-infos.$(OBJEXT) \
84
freetuxtv-tv-channels-list.$(OBJEXT) freetuxtv-utils.$(OBJEXT) \
85
freetuxtv-window-add-channels-group.$(OBJEXT) \
86
+ freetuxtv-window-add-recording.$(OBJEXT) \
87
freetuxtv-window-channel-properties.$(OBJEXT) \
88
freetuxtv-window-main.$(OBJEXT) \
89
- freetuxtv-window-add-recording.$(OBJEXT) lib-gmmkeys.$(OBJEXT) \
90
- lib-m3uparser.$(OBJEXT) main.$(OBJEXT)
91
+ freetuxtv-window-tv-channels-database.$(OBJEXT) \
92
+ lib-gmmkeys.$(OBJEXT) lib-m3uparser.$(OBJEXT) main.$(OBJEXT)
93
freetuxtv_OBJECTS = $(am_freetuxtv_OBJECTS)
94
am__DEPENDENCIES_1 =
95
freetuxtv_DEPENDENCIES = $(am__DEPENDENCIES_1) \
96
../lib/libvlc-gtk/libvlc-gtk.la \
97
../lib/libdbevolution/libdbevolution.la
98
-freetuxtv_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
99
+AM_V_lt = $(am__v_lt_@AM_V@)
100
+am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
101
+am__v_lt_0 = --silent
102
+am__v_lt_1 =
103
+freetuxtv_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
104
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
105
$(freetuxtv_LDFLAGS) $(LDFLAGS) -o $@
106
+AM_V_P = $(am__v_P_@AM_V@)
107
+am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
108
+am__v_P_0 = false
109
+am__v_P_1 = :
110
+AM_V_GEN = $(am__v_GEN_@AM_V@)
111
+am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
112
+am__v_GEN_0 = @echo " GEN " $@;
113
+am__v_GEN_1 =
114
+AM_V_at = $(am__v_at_@AM_V@)
115
+am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
116
+am__v_at_0 = @
117
+am__v_at_1 =
118
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
119
depcomp = $(SHELL) $(top_srcdir)/depcomp
120
am__depfiles_maybe = depfiles
121
am__mv = mv -f
122
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
123
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
124
-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
125
- --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
126
- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
127
+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
128
+ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
129
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
130
+ $(AM_CFLAGS) $(CFLAGS)
131
+AM_V_CC = $(am__v_CC_@AM_V@)
132
+am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
133
+am__v_CC_0 = @echo " CC " $@;
134
+am__v_CC_1 =
135
CCLD = $(CC)
136
-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
137
- --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
138
- $(LDFLAGS) -o $@
139
+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
140
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
141
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
142
+AM_V_CCLD = $(am__v_CCLD_@AM_V@)
143
+am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
144
+am__v_CCLD_0 = @echo " CCLD " $@;
145
+am__v_CCLD_1 =
146
SOURCES = $(freetuxtv_SOURCES)
147
DIST_SOURCES = $(freetuxtv_SOURCES)
148
+am__can_run_installinfo = \
149
+ case $$AM_UPDATE_INFO_DIR in \
150
+ n|no|NO) false;; \
151
+ *) (install-info --version) >/dev/null 2>&1;; \
152
+ esac
153
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
154
+# Read a list of newline-separated strings from the standard input,
155
+# and print each of them once, without duplicates. Input order is
156
+# *not* preserved.
157
+am__uniquify_input = $(AWK) '\
158
+ BEGIN { nonempty = 0; } \
159
+ { items[$$0] = 1; nonempty = 1; } \
160
+ END { if (nonempty) { for (i in items) print i; }; } \
161
+'
162
+# Make sure the list of sources is unique. This is necessary because,
163
+# e.g., the same source file might be shared among _SOURCES variables
164
+# for different programs/libraries.
165
+am__define_uniq_tagged_files = \
166
+ list='$(am__tagged_files)'; \
167
+ unique=`for i in $$list; do \
168
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
169
+ done | $(am__uniquify_input)`
170
ETAGS = etags
171
CTAGS = ctags
172
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
173
174
freetuxtv-utils.h \
175
freetuxtv-window-add-channels-group.c \
176
freetuxtv-window-add-channels-group.h \
177
+ freetuxtv-window-add-recording.c \
178
+ freetuxtv-window-add-recording.h \
179
freetuxtv-window-channel-properties.c \
180
freetuxtv-window-channel-properties.h \
181
freetuxtv-window-main.c \
182
freetuxtv-window-main.h \
183
- freetuxtv-window-add-recording.c \
184
- freetuxtv-window-add-recording.h \
185
+ freetuxtv-window-tv-channels-database.c \
186
+ freetuxtv-window-tv-channels-database.h \
187
lib-gmmkeys.c \
188
lib-gmmkeys.h \
189
lib-m3uparser.c \
190
191
$(am__aclocal_m4_deps):
192
install-binPROGRAMS: $(bin_PROGRAMS)
193
@$(NORMAL_INSTALL)
194
- test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
195
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
196
+ if test -n "$$list"; then \
197
+ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
198
+ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
199
+ fi; \
200
for p in $$list; do echo "$$p $$p"; done | \
201
freetuxtv-0.6.5.tar.gz/src/freetuxtv-fileutils.c -> freetuxtv-0.6.6.tar.gz/src/freetuxtv-fileutils.c
Changed
10
1
2
}
3
4
void
5
-freetuxtv_fileutils_get_file (gchar* url, gchar* dst_file, const GProxyStruct* pProxySctruct, int timeout, GError **error)
6
+freetuxtv_fileutils_get_file (const gchar* url, const gchar* dst_file, const GProxyStruct* pProxySctruct, int timeout, GError **error)
7
{
8
g_return_if_fail(url != NULL);
9
g_return_if_fail(dst_file != NULL);
10
freetuxtv-0.6.5.tar.gz/src/freetuxtv-fileutils.h -> freetuxtv-0.6.6.tar.gz/src/freetuxtv-fileutils.h
Changed
10
1
2
} GProxyStruct;
3
4
void
5
-freetuxtv_fileutils_get_file (gchar* url, gchar* dst_file, const GProxyStruct* pProxySctruct, int timeout, GError **error);
6
+freetuxtv_fileutils_get_file (const gchar* url, const gchar* dst_file, const GProxyStruct* pProxySctruct, int timeout, GError **error);
7
8
gchar*
9
gproxystruct_to_string(const GProxyStruct* pProxySctruct, gboolean protocol, gboolean server, gboolean auth);
10
freetuxtv-0.6.5.tar.gz/src/freetuxtv-gladexml.h -> freetuxtv-0.6.6.tar.gz/src/freetuxtv-gladexml.h
Changed
10
1
2
#define FREETUXTV_GUIFILE_ADDRECORDING "addrecording.glade"
3
#define FREETUXTV_GUIFILE_ADDCHANNELSGROUPS "addchannelsgroups.glade"
4
#define FREETUXTV_GUIFILE_CHANNELPROPERTIES "channelproperties.glade"
5
+#define FREETUXTV_GUIFILE_TVCHANNELSDATABASE "tvchannelsdatabase.glade"
6
7
// List of windows and dialogs
8
#define FREETUXTV_GUI_DIALOG_ADDRECORDING "dialogaddrecording"
9
\ No newline at end of file
10
freetuxtv-0.6.5.tar.gz/src/freetuxtv-player-error-dialog.c -> freetuxtv-0.6.6.tar.gz/src/freetuxtv-player-error-dialog.c
Changed
10
1
2
//gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(pScroll), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
3
4
GtkWidget* vbox;
5
- vbox = gtk_vbox_new(FALSE, 5);
6
+ vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 5);
7
gtk_box_pack_start (GTK_BOX (vbox),
8
GTK_WIDGET(pScroll), TRUE, TRUE, 5);
9
10
freetuxtv-0.6.5.tar.gz/src/freetuxtv-tv-channels-list.c -> freetuxtv-0.6.6.tar.gz/src/freetuxtv-tv-channels-list.c
Changed
150
1
2
#include "freetuxtv-window-main.h"
3
#include "freetuxtv-tv-channel-infos.h"
4
#include "freetuxtv-channels-list.h"
5
+#include "freetuxtv-utils.h"
6
7
typedef struct _CBXMLData
8
{
9
FreetuxTVApp *app;
10
DBSync *dbsync;
11
FreetuxTVTvChannelInfos *tv_channels_infos;
12
+ const gchar* szLogosURL;
13
+ SynchronizeProgressCB progressCB;
14
+ void* progressCBUserData;
15
} CBXMLData;
16
17
static void
18
19
20
void
21
tvchannels_list_synchronize (FreetuxTVApp *app, DBSync *dbsync,
22
- GError** error)
23
+ const gchar* szLogosURL,
24
+ SynchronizeProgressCB funcCB, void* user_data, GError** error)
25
{
26
g_return_if_fail(dbsync != NULL);
27
g_return_if_fail(error != NULL);
28
29
cbxmldata.app = app;
30
cbxmldata.dbsync = dbsync;
31
cbxmldata.tv_channels_infos = NULL;
32
+ cbxmldata.szLogosURL = szLogosURL,
33
+ cbxmldata.progressCB = funcCB;
34
+ cbxmldata.progressCBUserData = user_data;
35
36
gsize filelen;
37
static GMarkupParser parser = { xml_start_cb, xml_end_cb, xml_text_cb,
38
39
G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG,
40
&cbxmldata, NULL);
41
gchar *xml_data;
42
- gchar *filename;
43
- filename = g_build_filename(app->paths.datadir, "tv_channels.xml", NULL);
44
- g_file_get_contents (filename, &xml_data, &filelen, NULL);
45
- g_free(filename);
46
- filename = NULL;
47
+ gchar *szFileName = NULL;
48
+
49
+ szFileName = g_build_filename(g_get_user_cache_dir(), "freetuxtv", "tv_channels.dat", NULL);
50
+ if(szFileName){
51
+ if(!g_file_test(szFileName, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR)){
52
+ g_free(szFileName);
53
+ szFileName = NULL;
54
+ }
55
+ }
56
+ if(!szFileName){
57
+ szFileName = g_build_filename(app->paths.datadir, "tv_channels.xml", NULL);
58
+ }
59
+ g_file_get_contents (szFileName, &xml_data, &filelen, NULL);
60
+ g_free(szFileName);
61
+ szFileName = NULL;
62
g_markup_parse_context_parse (context, xml_data, -1, error);
63
}
64
65
windowmain_statusbar_pop (app, "UpdateMsg");
66
}
67
68
+static gchar* tvchannels_list_get_usr_img_path()
69
+{
70
+ return g_build_filename(g_get_user_data_dir(), "freetuxtv", "images", "channels", NULL);
71
+}
72
73
static gchar*
74
tvchannels_list_get_tvchannel_logo_path(FreetuxTVApp *app,
75
76
gchar *szUserImgChannelsDir;
77
gboolean bFound = FALSE;
78
79
- szUserImgChannelsDir = g_build_filename(g_get_user_data_dir(),
80
- "freetuxtv", "images", "channels", NULL);
81
+ szUserImgChannelsDir = tvchannels_list_get_usr_img_path();
82
83
if(szLogoName != NULL){
84
// We look in the user logo directory
85
86
87
return tvchannels_list_get_tvchannel_logo_path_for_channel(app, pChannelInfos, bNoneIcon);
88
}
89
+static void tvchannels_list_download_logos(FreetuxTVApp *app, const gchar* szLogosDirectoryURL, const gchar* szUserImgChannelsDir, const char* szLogoName)
90
+{
91
+ gchar* szLogoURL = NULL;
92
+ gchar* szDstFile = NULL;
93
+ if(g_str_has_suffix(szLogosDirectoryURL, "/")){
94
+ szLogoURL = g_strconcat (szLogosDirectoryURL, szLogoName, NULL);
95
+ }else{
96
+ szLogoURL = g_strconcat (szLogosDirectoryURL, "/", szLogoName, NULL);
97
+ }
98
+
99
+ GError* error = NULL;
100
+ szDstFile = g_build_filename(szUserImgChannelsDir, szLogoName, NULL);
101
+
102
+ g_log(FREETUXTV_LOG_DOMAIN, G_LOG_LEVEL_INFO, "Downloading file : %s\n", szLogoURL);
103
+ freetuxtv_fileutils_get_file (szLogoURL, szDstFile, &(app->prefs.proxy), app->prefs.timeout, &error);
104
+
105
+ if(error != NULL){
106
+ g_log(FREETUXTV_LOG_DOMAIN, G_LOG_LEVEL_WARNING, "Error : %s\n", error->message);
107
+ g_error_free(error);
108
+ }
109
+}
110
111
static void
112
xml_start_cb(GMarkupParseContext *context,
113
114
115
if(g_ascii_strcasecmp(element_name, "tvchannel") == 0){
116
name = (gchar*)attribute_values[0];
117
+ cbxmldata->progressCB(name, cbxmldata->progressCBUserData);
118
cbxmldata->tv_channels_infos = freetuxtv_tv_channel_infos_new(name);
119
}
120
121
122
CBXMLData* cbxmldata = (CBXMLData*)user_data;
123
124
FreetuxTVTvChannelInfos *tv_channels_infos = NULL;
125
+ gchar* szUserImgChannelsDir;
126
127
if(g_ascii_strcasecmp(element_name, "tvchannel") == 0){
128
tv_channels_infos = cbxmldata->tv_channels_infos;
129
130
// We have a channel pending, we add it in database
131
dbsync_add_tvchannel (cbxmldata->dbsync, tv_channels_infos, error);
132
133
+ const gchar* szLogoName = freetuxtv_tv_channel_infos_get_logo_filename(tv_channels_infos);
134
+
135
+ // Download logo for the channel if required
136
+ if(szLogoName && cbxmldata->szLogosURL){
137
+ szUserImgChannelsDir = tvchannels_list_get_usr_img_path();
138
+
139
+ tvchannels_list_download_logos(cbxmldata->app, cbxmldata->szLogosURL, szUserImgChannelsDir, szLogoName);
140
+
141
+ if(szUserImgChannelsDir){
142
+ g_free(szUserImgChannelsDir);
143
+ szUserImgChannelsDir = NULL;
144
+ }
145
+ }
146
+
147
g_object_unref(cbxmldata->tv_channels_infos);
148
cbxmldata->tv_channels_infos = NULL;
149
}
150
freetuxtv-0.6.5.tar.gz/src/freetuxtv-tv-channels-list.h -> freetuxtv-0.6.6.tar.gz/src/freetuxtv-tv-channels-list.h
Changed
14
1
2
#include "freetuxtv-app.h"
3
#include "freetuxtv-db-sync.h"
4
5
+typedef void (*SynchronizeProgressCB)(gchar* szTVChannelName, void* user_data);
6
+
7
void
8
tvchannels_list_synchronize (FreetuxTVApp *app, DBSync *dbsync,
9
+ const gchar* szLogosURL,
10
+ SynchronizeProgressCB funcCB, void* user_data,
11
GError** error);
12
13
gchar*
14
freetuxtv-0.6.5.tar.gz/src/freetuxtv-window-main.c -> freetuxtv-0.6.6.tar.gz/src/freetuxtv-window-main.c
Changed
38
1
2
#include "freetuxtv-window-main.h"
3
#include "freetuxtv-window-add-recording.h"
4
#include "freetuxtv-window-add-channels-group.h"
5
+#include "freetuxtv-window-tv-channels-database.h"
6
7
#include "freetuxtv-app.h"
8
#include "freetuxtv-i18n.h"
9
10
FreetuxTVApp *app = (FreetuxTVApp *) user_data;
11
12
GError* error = NULL;
13
+
14
+ GtkWindow* pWindow;
15
+ GtkWidget* pParent;
16
+ pParent = (GtkWidget *) gtk_builder_get_object (app->gui, "windowmain");
17
18
- DBSync dbsync;
19
- dbsync_open_db (&dbsync, &error);
20
-
21
- if(error == NULL){
22
- tvchannels_list_synchronize (app, &dbsync, &error);
23
- }
24
+ FreetuxTVWindowTVChannelsDatabase* pWindowTVChannelsDatabase;
25
+ pWindowTVChannelsDatabase = freetuxtv_window_tv_channels_database_new(GTK_WINDOW(pParent), app);
26
27
if(error == NULL){
28
- channels_list_load_channels (app, &dbsync, &error);
29
+ pWindow = gtk_builder_window_get_top_window (GTK_BUILDER_WINDOW(pWindowTVChannelsDatabase));
30
+ gtk_widget_show(GTK_WIDGET(pWindow));
31
}
32
33
- dbsync_close_db(&dbsync);
34
-
35
if(error != NULL){
36
windowmain_show_gerror (app, error);
37
g_error_free (error);
38
freetuxtv-0.6.6.tar.gz/src/freetuxtv-window-tv-channels-database.c
Added
201
1
2
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
3
+/*
4
+ * freetuxtv
5
+ * Copyright (C) Eric Beuque 2012 <eric.beuque@gmail.com>
6
+ *
7
+freetuxtv is free software: you can redistribute it and/or modify it
8
+ * under the terms of the GNU General Public License as published by the
9
+ * Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * freetuxtv is distributed in the hope that it will be useful, but
13
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15
+ * See the GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License along
18
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#include "freetuxtv-window-tv-channels-database.h"
22
+
23
+#include "freetuxtv-gladexml.h"
24
+#include "freetuxtv-db-sync.h"
25
+#include "freetuxtv-channels-list.h"
26
+#include "freetuxtv-tv-channels-list.h"
27
+#include "freetuxtv-window-main.h"
28
+
29
+#include "freetuxtv-fileutils.h"
30
+
31
+#include "gtk-progress-dialog.h"
32
+
33
+typedef struct _FreetuxTVWindowTVChannelsDatabasePrivate FreetuxTVWindowTVChannelsDatabasePrivate;
34
+struct _FreetuxTVWindowTVChannelsDatabasePrivate
35
+{
36
+ FreetuxTVApp* app;
37
+};
38
+
39
+#define FREETUXTV_WINDOW_TV_CHANNELS_DATABASE_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), FREETUXTV_TYPE_WINDOW_TV_CHANNELS_DATABASE, FreetuxTVWindowTVChannelsDatabasePrivate))
40
+
41
+G_DEFINE_TYPE (FreetuxTVWindowTVChannelsDatabase, freetuxtv_window_tv_channels_database, GTK_TYPE_BUILDER_WINDOW);
42
+
43
+static void
44
+freetuxtv_window_tv_channels_database_init (FreetuxTVWindowTVChannelsDatabase *pWindowTVChannelsDatabase)
45
+{
46
+
47
+}
48
+
49
+static void
50
+freetuxtv_window_tv_channels_database_finalize (GObject *object)
51
+{
52
+ G_OBJECT_CLASS (freetuxtv_window_tv_channels_database_parent_class)->finalize (object);
53
+}
54
+
55
+static void
56
+freetuxtv_window_tv_channels_database_class_init (FreetuxTVWindowTVChannelsDatabaseClass *klass)
57
+{
58
+ GObjectClass* object_class = G_OBJECT_CLASS (klass);
59
+ //GtkBuilderDialogClass* parent_class = GTK_BUILDER_DIALOG_CLASS (klass);
60
+
61
+ g_type_class_add_private (klass, sizeof (FreetuxTVWindowTVChannelsDatabasePrivate));
62
+
63
+ object_class->finalize = freetuxtv_window_tv_channels_database_finalize;
64
+}
65
+
66
+static gboolean
67
+do_idle_destroy_window (gpointer user_data)
68
+{
69
+ g_return_val_if_fail(GTK_IS_BUILDER_WIDGET(user_data), FALSE);
70
+ gtk_builder_widget_destroy (GTK_BUILDER_WIDGET(user_data));
71
+
72
+ return FALSE;
73
+}
74
+
75
+static void
76
+on_buttonclose_clicked (GtkButton *button, gpointer user_data)
77
+{
78
+ // We do the destruction after the button clicked event is finished
79
+ g_idle_add (do_idle_destroy_window, user_data);
80
+}
81
+
82
+static void synchronize_progress_cb(gchar* szTVChannelName, void* user_data)
83
+{
84
+ GtkProgressDialog* pProgressDialog = (GtkProgressDialog*)user_data;
85
+
86
+ gchar* szTmp = g_strdup_printf(_("Updating TV channel: %s"), szTVChannelName);
87
+
88
+ gtk_progress_dialog_set_text(pProgressDialog, szTmp);
89
+ gtk_progress_dialog_pulse(pProgressDialog);
90
+
91
+ if(szTmp){
92
+ g_free(szTmp);
93
+ szTmp = NULL;
94
+ }
95
+}
96
+
97
+static void
98
+on_buttonapply_clicked (GtkButton *button, gpointer user_data)
99
+{
100
+ FreetuxTVWindowTVChannelsDatabase* pWindowTVChannelsDatabase;
101
+ FreetuxTVWindowTVChannelsDatabasePrivate* priv;
102
+
103
+ pWindowTVChannelsDatabase = (FreetuxTVWindowTVChannelsDatabase*)user_data;
104
+ priv = FREETUXTV_WINDOW_TV_CHANNELS_DATABASE_PRIVATE(pWindowTVChannelsDatabase);
105
+
106
+ GError* error = NULL;
107
+
108
+ GtkBuilder *builder;
109
+ builder = gtk_builder_object_get_builder(GTK_BUILDER_OBJECT(pWindowTVChannelsDatabase));
110
+
111
+ DBSync dbsync;
112
+
113
+ gchar* szTmp = NULL;
114
+
115
+ gboolean bSynchronize = FALSE;
116
+ gboolean bDownloadFile = FALSE;
117
+ gboolean bUpdateLogos = FALSE;
118
+
119
+ const gchar *szDatabaseUrl;
120
+ const gchar *szLogosUrl;
121
+ gchar *szDstFile = NULL;
122
+
123
+ GtkWidget* pWidget;
124
+ GtkWindow* pParent;
125
+
126
+ // Check if must synchronize
127
+ pWidget = (GtkWidget *) gtk_builder_get_object (builder, "checkbutton_synchronize");
128
+ bSynchronize = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(pWidget));
129
+
130
+ // Check if must update file
131
+ pWidget = (GtkWidget *) gtk_builder_get_object (builder, "checkbutton_download");
132
+ bDownloadFile = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(pWidget));
133
+ pWidget = (GtkWidget *) gtk_builder_get_object (builder, "entry_url");
134
+ szDatabaseUrl = gtk_entry_get_text(GTK_ENTRY(pWidget));
135
+
136
+ // Check if must update logos
137
+ pWidget = (GtkWidget *) gtk_builder_get_object (builder, "checkbutton_logos");
138
+ bUpdateLogos = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(pWidget));
139
+ pWidget = (GtkWidget *) gtk_builder_get_object (builder, "entry_logosurl");
140
+ szLogosUrl = gtk_entry_get_text(GTK_ENTRY(pWidget));
141
+
142
+ pParent = gtk_builder_window_get_top_window(GTK_BUILDER_WINDOW(pWindowTVChannelsDatabase));
143
+
144
+ // Start progress dialog
145
+ GtkProgressDialog* pProgressDialog = NULL;
146
+ gdouble progress = 0.0;
147
+ if(bSynchronize){
148
+ pProgressDialog = gtk_progress_dialog_new(pParent);
149
+ gtk_progress_dialog_set_title(pProgressDialog, _("TV channels synchronisation"));
150
+ gtk_progress_dialog_set_percent(pProgressDialog, progress);
151
+ gtk_widget_show(GTK_WIDGET(pProgressDialog));
152
+ }
153
+
154
+ // Do download file
155
+ if(bDownloadFile && (error == NULL)){
156
+ szDstFile = g_build_filename(g_get_user_cache_dir(), "freetuxtv", "tv_channels.dat", NULL);
157
+
158
+ szTmp = g_strdup_printf(_("Downloading the file '%s'"), szDatabaseUrl);
159
+ g_log(FREETUXTV_LOG_DOMAIN, G_LOG_LEVEL_INFO,
160
+ "Downloading the file '%s'\n", szDatabaseUrl);
161
+
162
+ gtk_progress_dialog_set_text(pProgressDialog, szTmp);
163
+ if(szTmp){
164
+ g_free(szTmp);
165
+ szTmp = NULL;
166
+ }
167
+
168
+ freetuxtv_fileutils_get_file (szDatabaseUrl, szDstFile, &(priv->app->prefs.proxy), priv->app->prefs.timeout, &error);
169
+ }
170
+
171
+ // Do synchronize
172
+ if(bSynchronize && (error == NULL)){
173
+ gtk_progress_dialog_set_text(pProgressDialog, _("Synchronizing TV channels from file"));
174
+ dbsync_open_db (&dbsync, &error);
175
+
176
+ if(error == NULL){
177
+ tvchannels_list_synchronize (priv->app, &dbsync,
178
+ (bUpdateLogos ? szLogosUrl : NULL),
179
+ synchronize_progress_cb, (void*)pProgressDialog, &error);
180
+ }
181
+
182
+ if(error == NULL){
183
+ channels_list_load_channels (priv->app, &dbsync, &error);
184
+ }
185
+
186
+ dbsync_close_db(&dbsync);
187
+
188
+ gtk_progress_dialog_set_percent(pProgressDialog, 0.90);
189
+ }
190
+
191
+ if(szDstFile){
192
+ g_free(szDstFile);
193
+ szDstFile = NULL;
194
+ }
195
+
196
+ // On error we destroy the progress dialog view
197
+ if(pProgressDialog){
198
+ if(error != NULL){
199
+ gtk_widget_destroy (GTK_WIDGET(pProgressDialog));
200
+ pProgressDialog = NULL;
201
freetuxtv-0.6.6.tar.gz/src/freetuxtv-window-tv-channels-database.h
Added
61
1
2
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
3
+/*
4
+ * freetuxtv
5
+ * Copyright (C) Eric Beuque 2012 <eric.beuque@gmail.com>
6
+ *
7
+freetuxtv is free software: you can redistribute it and/or modify it
8
+ * under the terms of the GNU General Public License as published by the
9
+ * Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * freetuxtv is distributed in the hope that it will be useful, but
13
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15
+ * See the GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License along
18
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#ifndef _FREETUXTV_WINDOW_TV_CHANNELS_DATABASE_H_
22
+#define _FREETUXTV_WINDOW_TV_CHANNELS_DATABASE_H_
23
+
24
+#include <glib-object.h>
25
+
26
+#include "gtk-builder-window.h"
27
+#include "freetuxtv-app.h"
28
+
29
+G_BEGIN_DECLS
30
+
31
+#define FREETUXTV_TYPE_WINDOW_TV_CHANNELS_DATABASE (freetuxtv_window_tv_channels_database_get_type ())
32
+#define FREETUXTV_WINDOW_TV_CHANNELS_DATABASE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), FREETUXTV_TYPE_WINDOW_TV_CHANNELS_DATABASE, FreetuxTVWindowTVChannelsDatabase))
33
+#define FREETUXTV_WINDOW_TV_CHANNELS_DATABASE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), FREETUXTV_TYPE_WINDOW_TV_CHANNELS_DATABASE, FreetuxTVWindowTVChannelsDatabaseClass))
34
+#define FREETUXTV_IS_WINDOW_TV_CHANNELS_DATABASE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), FREETUXTV_TYPE_WINDOW_TV_CHANNELS_DATABASE))
35
+#define FREETUXTV_IS_WINDOW_TV_CHANNELS_DATABASE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), FREETUXTV_TYPE_WINDOW_TV_CHANNELS_DATABASE))
36
+#define FREETUXTV_WINDOW_TV_CHANNELS_DATABASE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), FREETUXTV_TYPE_WINDOW_TV_CHANNELS_DATABASE, FreetuxTVWindowTVChannelsDatabaseClass))
37
+
38
+typedef struct _FreetuxTVWindowTVChannelsDatabaseClass FreetuxTVWindowTVChannelsDatabaseClass;
39
+typedef struct _FreetuxTVWindowTVChannelsDatabase FreetuxTVWindowTVChannelsDatabase;
40
+
41
+
42
+
43
+struct _FreetuxTVWindowTVChannelsDatabaseClass
44
+{
45
+ GtkBuilderWindowClass parent_class;
46
+};
47
+
48
+struct _FreetuxTVWindowTVChannelsDatabase
49
+{
50
+ GtkBuilderWindow parent_instance;
51
+};
52
+
53
+GType freetuxtv_window_tv_channels_database_get_type (void) G_GNUC_CONST;
54
+
55
+FreetuxTVWindowTVChannelsDatabase*
56
+freetuxtv_window_tv_channels_database_new (GtkWindow *parent, FreetuxTVApp* app);
57
+
58
+G_END_DECLS
59
+
60
+#endif /* _FREETUXTV_WINDOW_TV_CHANNELS_DATABASE_H_ */
61
freetuxtv-0.6.5.tar.gz/src/gtk-date-time-picker.c -> freetuxtv-0.6.6.tar.gz/src/gtk-date-time-picker.c
Changed
10
1
2
NULL);*/
3
4
// Hour
5
- hbox_time = gtk_hbox_new(FALSE, 0);
6
+ hbox_time = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0);
7
gtk_widget_show(hbox_time);
8
gtk_box_pack_start(GTK_BOX(object), hbox_time, FALSE, FALSE, 0);
9
10
freetuxtv-0.6.5.tar.gz/src/gtk-progress-dialog.c -> freetuxtv-0.6.6.tar.gz/src/gtk-progress-dialog.c
Changed
41
1
2
3
// Construct the dialog
4
GtkWidget* vbox;
5
- vbox = gtk_vbox_new(FALSE, 5);
6
+ vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 5);
7
gtk_container_set_border_width (GTK_CONTAINER(vbox), 10);
8
9
priv->title_widget = gtk_label_new("");
10
11
12
priv->progress_widget = gtk_progress_bar_new();
13
gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(priv->progress_widget), 0.0);
14
+ gtk_progress_bar_set_pulse_step(GTK_PROGRESS_BAR(priv->progress_widget), 1.0);
15
gtk_progress_bar_set_text (GTK_PROGRESS_BAR(priv->progress_widget), "0 %");
16
gtk_box_pack_start (GTK_BOX(vbox), priv->progress_widget, FALSE, FALSE, 0);
17
18
19
}
20
21
void
22
+gtk_progress_dialog_pulse(GtkProgressDialog* dialog)
23
+{
24
+ g_return_if_fail(dialog!=NULL);
25
+ g_return_if_fail(GTK_IS_PROGRESS_DIALOG(dialog));
26
+
27
+ GtkProgressDialogPrivate* priv;
28
+ priv = GTK_PROGRESS_DIALOG_PRIVATE(dialog);
29
+
30
+ gtk_progress_bar_pulse (GTK_PROGRESS_BAR(priv->progress_widget));
31
+
32
+ while (gtk_events_pending()) {
33
+ gtk_main_iteration();
34
+ }
35
+}
36
+
37
+void
38
gtk_progress_dialog_set_button_close_enabled(GtkProgressDialog* dialog, gboolean enabled)
39
{
40
g_return_if_fail(dialog!=NULL);
41
freetuxtv-0.6.5.tar.gz/src/gtk-progress-dialog.h -> freetuxtv-0.6.6.tar.gz/src/gtk-progress-dialog.h
Changed
11
1
2
gtk_progress_dialog_set_percent(GtkProgressDialog* dialog, gdouble percent);
3
4
void
5
+gtk_progress_dialog_pulse(GtkProgressDialog* dialog);
6
+
7
+void
8
gtk_progress_dialog_set_button_close_enabled(GtkProgressDialog* dialog, gboolean enabled);
9
10
#endif /* _GTK_PROGRESS_DIALOG_H_ */
11
freetuxtv-0.6.5.tar.gz/src/main.c -> freetuxtv-0.6.6.tar.gz/src/main.c
Changed
82
1
2
}
3
}
4
5
+static void synchronize_progress_cb(gchar* szTVChannelName, void* user_data)
6
+{
7
+ FreetuxTVApp* app = (FreetuxTVApp*)user_data;
8
+
9
+ gchar* szTmp = g_strdup_printf(_("Synchronizing the list of tv channels: %s..."), szTVChannelName);
10
+
11
+ splashscreen_statusbar_pop (app);
12
+ splashscreen_statusbar_push (app, szTmp);
13
+
14
+ if(szTmp){
15
+ g_free(szTmp);
16
+ szTmp = NULL;
17
+ }
18
+}
19
+
20
static gboolean
21
splashscreen_app_init(gpointer data)
22
{
23
24
25
gint major, minor;
26
gtk_libvlc_get_libvlc_version(&major, &minor, NULL);
27
+ //list_options_add_option(&options, "-vvv"); // verbose mode
28
if(major>=1 || (major == 1 && minor>= 1)){
29
list_options_add_option(&options, "--no-xlib"); // Tell VLC to not use Xlib
30
}
31
32
filename = g_build_filename(app->paths.datadir, "tv_channels.xml", NULL);
33
if(g_stat (filename, &file_stat) == 0){
34
if(app->config.logosfiledate < (gint)file_stat.st_mtime){
35
- tvchannels_list_synchronize(app, &dbsync, &error);
36
+ tvchannels_list_synchronize(app, &dbsync, NULL, &synchronize_progress_cb, app, &error);
37
if(error == NULL){
38
app->config.logosfiledate = (gint)file_stat.st_mtime;
39
}
40
41
szMode = NULL;
42
}
43
44
- if(g_strcasecmp (pChannelInfos->deinterlace_mode, "blend") == 0){
45
+ if(g_ascii_strcasecmp (pChannelInfos->deinterlace_mode, "blend") == 0){
46
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM(app->widget.pMenuDeinterlaceBlend), TRUE);
47
- }else if(g_strcasecmp (pChannelInfos->deinterlace_mode, "bob") == 0){
48
+ }else if(g_ascii_strcasecmp (pChannelInfos->deinterlace_mode, "bob") == 0){
49
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM(app->widget.pMenuDeinterlaceBob), TRUE);
50
- }else if(g_strcasecmp (pChannelInfos->deinterlace_mode, "discard") == 0){
51
+ }else if(g_ascii_strcasecmp (pChannelInfos->deinterlace_mode, "discard") == 0){
52
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM(app->widget.pMenuDeinterlaceDiscard), TRUE);
53
- }else if(g_strcasecmp (pChannelInfos->deinterlace_mode, "linear") == 0){
54
+ }else if(g_ascii_strcasecmp (pChannelInfos->deinterlace_mode, "linear") == 0){
55
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM(app->widget.pMenuDeinterlaceLinear), TRUE);
56
- }else if(g_strcasecmp (pChannelInfos->deinterlace_mode, "mean") == 0){
57
+ }else if(g_ascii_strcasecmp (pChannelInfos->deinterlace_mode, "mean") == 0){
58
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM(app->widget.pMenuDeinterlaceMean), TRUE);
59
- }else if(g_strcasecmp (pChannelInfos->deinterlace_mode, "x") == 0){
60
+ }else if(g_ascii_strcasecmp (pChannelInfos->deinterlace_mode, "x") == 0){
61
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM(app->widget.pMenuDeinterlaceX), TRUE);
62
}
63
}else{
64
65
if(app->prefs.proxy.proxy_mode == G_PROXY_MODE_MANUAL){
66
gchar* szUser = NULL;
67
68
- if(g_strcasecmp ("0", app->prefs.proxy.proxy_type) == 0){
69
+ if(g_ascii_strcasecmp ("0", app->prefs.proxy.proxy_type) == 0){
70
// Mode HTTP
71
if(app->prefs.proxy.proxy_use_auth){
72
szUser = g_strconcat(app->prefs.proxy.proxy_username, "@", NULL);
73
74
g_free(text);
75
text = NULL;
76
}
77
- }else if(g_strcasecmp ("1", app->prefs.proxy.proxy_type) == 0){
78
+ }else if(g_ascii_strcasecmp ("1", app->prefs.proxy.proxy_type) == 0){
79
// Mode SOCK
80
text = g_strdup_printf(":socks=%s:%s", app->prefs.proxy.proxy_server, app->prefs.proxy.proxy_port);
81
list_options_add_option(&options, text);
82