diff --git a/.cvsignore b/.cvsignore deleted file mode 100644 index 9b4d134..0000000 --- a/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -vdr-text2skin-1.3.tgz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..17d6b36 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/*.tgz diff --git a/Makefile b/Makefile deleted file mode 100644 index d247620..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: vdr-text2skin -# $Id: Makefile,v 1.1 2007/04/23 17:04:59 wtogami Exp $ -NAME := vdr-text2skin -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5e32ab9 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +This package was retired on 2013-03-11 due to a lack of a willing Fedora maintainer. diff --git a/sources b/sources deleted file mode 100644 index 5b08a7f..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -39f3354b5ae04ee41cb45543de858ec2 vdr-text2skin-1.3.tgz diff --git a/vdr-text2skin-1.3-skindir.patch b/vdr-text2skin-1.3-skindir.patch deleted file mode 100644 index acdaf5c..0000000 --- a/vdr-text2skin-1.3-skindir.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff -up text2skin-1.3/common.c~ text2skin-1.3/common.c ---- text2skin-1.3/common.c~ 2009-07-17 02:18:57.000000000 +0300 -+++ text2skin-1.3/common.c 2009-10-07 23:19:34.000000000 +0300 -@@ -14,7 +14,7 @@ - const std::string &SkinPath(void) - { - // should never change -- static std::string path = cPlugin::ConfigDirectory(PLUGIN_NAME_I18N); -+ static std::string path = "/usr/share/vdr/text2skin"; - return path; - } - -diff -up text2skin-1.3/README~ text2skin-1.3/README ---- text2skin-1.3/README~ 2009-07-17 02:16:35.000000000 +0300 -+++ text2skin-1.3/README 2009-10-07 23:19:34.000000000 +0300 -@@ -68,6 +68,9 @@ root@linux # ./vdr -P text2skin - Where to put the skins: - ----------------------- - -+*** rpm package note: this text2skin package has been patched to load skins -+*** from /usr/share/vdr/text2skin instead of the path documented below. -+ - As you might know, VDR has a subfolder "plugins" inside it's configuration - folder, where all plugin-related files should reside. If you don't know, where - this could be, look into the folder you gave to VDR with the -v parameter -diff -up text2skin-1.3/README.de~ text2skin-1.3/README.de ---- text2skin-1.3/README.de~ 2009-09-06 18:31:27.000000000 +0300 -+++ text2skin-1.3/README.de 2009-10-07 23:19:34.000000000 +0300 -@@ -73,6 +73,9 @@ root@linux # ./vdr -P text2skin - Wo die Skins hingehören: - ------------------------ - -+*** rpm package note: this text2skin package has been patched to load skins -+*** from /usr/share/vdr/text2skin instead of the path documented below. -+ - Wie Sie vielleicht wissen, hat VDR einen Unterordner "plugins" innerhalb seines - Konfigurationsordners, in dem alle Dateien, die zu Plugins gehören, enthalten - sein sollten. Wenn Sie nicht wissen, wo das sein könnte, schauen Sie in dem diff --git a/vdr-text2skin.conf b/vdr-text2skin.conf deleted file mode 100644 index dd76ad0..0000000 --- a/vdr-text2skin.conf +++ /dev/null @@ -1,5 +0,0 @@ -# Configuration snippet for vdr-text2skin -*- sh -*- -# -# Add command line options to pass to the text2skin plugin to PLUGIN_OPTIONS. - -PLUGIN_OPTIONS="" diff --git a/vdr-text2skin.spec b/vdr-text2skin.spec deleted file mode 100644 index 011b6fe..0000000 --- a/vdr-text2skin.spec +++ /dev/null @@ -1,154 +0,0 @@ -%global pname text2skin -%global plugindir %(vdr-config --plugindir 2>/dev/null || echo ERROR) -%global datadir %(vdr-config --datadir 2>/dev/null || echo ERROR) -%global apiver %(vdr-config --apiversion 2>/dev/null || echo ERROR) -# imagelib: imagemagick, graphicsmagick, imlib2 or %{nil} -%{!?imagelib: %global imagelib graphicsmagick} - -Name: vdr-%{pname} -Version: 1.3 -Release: 1%{?dist} -Summary: OSD skin plugin for VDR - -Group: Applications/Multimedia -License: GPL+ -URL: http://projects.vdr-developer.org/projects/show/plg-text2skin -Source0: http://projects.vdr-developer.org/attachments/download/127/%{name}-%{version}.tgz -Source1: %{name}.conf -Patch0: %{name}-1.3-skindir.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -%if "%{imagelib}" == "imagemagick" -BuildRequires: ImageMagick-c++-devel -%endif -%if "%{imagelib}" == "graphicsmagick" -BuildRequires: GraphicsMagick-c++-devel -# Dependency missing in GraphicsMagick-devel <= 1.1.14-4.fc11 -BuildRequires: freetype-devel -%endif -%if "%{imagelib}" == "imlib2" -BuildRequires: imlib2-devel -%endif -BuildRequires: vdr-devel >= 1.6.0 -BuildRequires: gawk -BuildRequires: gettext -Requires: vdr(abi)%{?_isa} = %{apiver} - -%{?filter_setup: -%filter_provides_in %{plugindir}/.*\.so -%filter_setup} - -%description -This plugin is designed to load and interpret a set of files -describing the layout of VDR's on screen display and to make this -"skin" available to VDR via Setup -> OSD in the main menu. Of course -it is possible to load more than one text based skin this way and to -choose between them while running VDR. All skins may be themeable -(you can create your own color theme) and translatable as the author -of the skin wishes. - - -%prep -%setup -q -n %{pname}-%{version} -sed -e 's|/usr/share/vdr/|%{datadir}/|' %{PATCH0} | patch -p1 -chmod -x contrib/*.pl - - -%build -make %{?_smp_mflags} STRIP=: IMAGELIB=%{?imagelib} LIBDIR=. LOCALEDIR=./locale \ - VDRDIR=%{_libdir}/vdr all - - -%install -rm -rf $RPM_BUILD_ROOT - -install -dm 755 $RPM_BUILD_ROOT%{plugindir} -install -pm 755 libvdr-%{pname}.so.%{apiver} $RPM_BUILD_ROOT%{plugindir} - -install -Dpm 644 %{SOURCE1} \ - $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/vdr-plugins.d/%{pname}.conf - -install -dm 755 $RPM_BUILD_ROOT%{datadir}/text2skin - -install -dm 755 $RPM_BUILD_ROOT%{_datadir}/locale -cp -pR locale/* $RPM_BUILD_ROOT%{_datadir}/locale -%find_lang %{name} - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -f %{name}.lang -%defattr(-,root,root,-) -%doc CONTRIBUTORS COPYING HISTORY README Docs/*.txt contrib/skin_to_10.pl -%lang(de) %doc README.de -%config(noreplace) %{_sysconfdir}/sysconfig/vdr-plugins.d/%{pname}.conf -%{plugindir}/libvdr-%{pname}.so.%{apiver} -%{datadir}/text2skin/ - - -%changelog -* Wed Oct 7 2009 Ville Skyttä - 1.3-1 -- Update to 1.3 (#527682). -- Filter out autoprovided libvdr-*.so.* (if %%filter_setup is available). - -* Tue Sep 1 2009 Ville Skyttä - 1.2-3.git97c95bc -- Update to git revision 97c95bc for several bugfixes and better fonts handling. -- Build with GraphicsMagick instead of imlib2 by default. -- Make vdr(abi) dependency ISA qualified. -- Install translations. -- Use %%global instead of %%define. - -* Sun Jul 26 2009 Fedora Release Engineering - 1.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Thu Jul 9 2009 Ville Skyttä - 1.2-1 -- Update to 1.2. -- Specfile cleanups. -- Fix spelling errors in description. - -* Wed Feb 25 2009 Fedora Release Engineering - 1.1-24.cvsext0.10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Mon Apr 7 2008 Ville Skyttä - 1.1-23.cvsext0.10 -- Update to 1.1-cvs_ext-0.10. -- Build for VDR 1.6.0. - -* Sun Apr 6 2008 Ville Skyttä - 1.1-22.20051217cvs -- Apply VDR 1.5+ patches from e-tobi.net Debian package. - -* Fri Jan 4 2008 Ville Skyttä - 1.1-21.20051217cvs -- Fix build with gcc 4.3's cleaned up C++ headers. - -* Wed Aug 22 2007 Ville Skyttä - 1.1-20.20051217cvs -- BuildRequires: gawk for extracting APIVERSION. - -* Tue Aug 7 2007 Ville Skyttä - 1.1-19.20051217cvs -- License: GPL+ - -* Sun Apr 8 2007 Ville Skyttä - 1.1-18.20051217cvs -- Grab potential XML parse buffer overflow fix from upstream CVS. - -* Sun Nov 19 2006 Ville Skyttä - 1.1-16.20051217cvs -- Migrate real skins directory to /usr/share/vdr/text2skin. -- Patch for freetype 2.2 compatibility. - -* Sat Nov 4 2006 Ville Skyttä - 1.1-15.20051217 -- Build with imlib2 instead of imagemagick by default due to #212478. -- Build for VDR 1.4.4. - -* Fri Oct 06 2006 Thorsten Leemhuis 1.1-14 -- rebuilt for unwind info generation, broken in gcc-4.1.1-21 - -* Sat Sep 23 2006 Ville Skyttä - 1.1-13.20051217 -- Rebuild for VDR 1.4.3. - -* Sun Aug 6 2006 Ville Skyttä - 1.1-12.20051217 -- Rebuild for VDR 1.4.1-3. - -* Sun Jun 11 2006 Ville Skyttä - 1.1-11.20051217 -- Rebuild for VDR 1.4.1. - -* Sun Apr 30 2006 Ville Skyttä - 1.1-10.20051217 -- Rebuild for VDR 1.4.0.