commit: 5beed706e023d81ac6ae07bd1308e10b31f6f79e Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net> AuthorDate: Thu Jun 20 18:59:14 2024 +0000 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org> CommitDate: Sat Jun 22 19:09:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5beed706
media-plugins/vdr-ffnetdev: drop 0.1.2 Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net> Closes: https://github.com/gentoo/gentoo/pull/37231 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org> media-plugins/vdr-ffnetdev/Manifest | 1 - .../files/vdr-ffnetdev-0.1.2_gettext.diff | 126 --------------------- .../vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild | 22 ---- 3 files changed, 149 deletions(-) diff --git a/media-plugins/vdr-ffnetdev/Manifest b/media-plugins/vdr-ffnetdev/Manifest index 1c3a7ba66343..d9e4d39ee285 100644 --- a/media-plugins/vdr-ffnetdev/Manifest +++ b/media-plugins/vdr-ffnetdev/Manifest @@ -1,2 +1 @@ -DIST vdr-ffnetdev-0.1.2.tar.bz2 56059 BLAKE2B 09995e26dcc193be26ea82b061ea638f026129bb778fc250fed51596a5cb0e9776bf2590fc98fe31f229ecc05a1c67550a1619a9015cb63d585eb29e7f5420b8 SHA512 5583a0c1ea7a421a745704a4440f25c9b35ed72686baeacaa67324e0c1a51f7a4a2d0ff4840ffb0b7086b4d310f48141cd001889692a1c1987a246d999c9afd6 DIST vdr-ffnetdev-0.1.3.tar.gz 64652 BLAKE2B a35391ad0b132124af1ee177a07268108b69aa98a5ea6daeb8faef945755b55c240a45695f722056e3e6ef2c76f2b59b2d538432ee7fb04e64a50177e0d412f4 SHA512 0052d27c67d9fde05b02c10d38c793c33f3f819bf8b48c1dfcfcca3efcebd5de925a142bc418161a33d9b74cce127f129ed6408a7a9352134ba96f572f64e44a diff --git a/media-plugins/vdr-ffnetdev/files/vdr-ffnetdev-0.1.2_gettext.diff b/media-plugins/vdr-ffnetdev/files/vdr-ffnetdev-0.1.2_gettext.diff deleted file mode 100644 index 061ac40bcede..000000000000 --- a/media-plugins/vdr-ffnetdev/files/vdr-ffnetdev-0.1.2_gettext.diff +++ /dev/null @@ -1,126 +0,0 @@ -converting to gettext -https://bugs.gentoo.org/show_bug.cgi?id=439970 -Signed-of-by: Joerg Bornkessel <[email protected]> -diff -Naur vdr-ffnetdev-0.1.2.orig/ffnetdev.c vdr-ffnetdev-0.1.2/ffnetdev.c ---- vdr-ffnetdev-0.1.2.orig/ffnetdev.c 2012-10-31 18:32:09.000000000 +0100 -+++ vdr-ffnetdev-0.1.2/ffnetdev.c 2012-10-31 18:34:05.000000000 +0100 -@@ -10,7 +10,7 @@ - - #include <vdr/tools.h> - --#include "i18n.h" -+#include <vdr/i18n.h> - #include "tsworker.h" - #include "netosd.h" - #include "ffnetdev.h" -@@ -22,7 +22,7 @@ - - - const char *cPluginFFNetDev::VERSION = "0.1.2"; --const char *cPluginFFNetDev::DESCRIPTION = "Full Featured Network Device for Streaming"; -+const char *cPluginFFNetDev::DESCRIPTION = trNOOP("Full Featured Network Device for Streaming"); - //const char *cOSDWorker::MAINMENUENTRY = "FFNetDev"; - - // --- cNetOSDProvider ----------------------------------------------- -@@ -163,9 +163,6 @@ - bool cPluginFFNetDev::Start(void) - { - // Start any background activities the plugin shall perform. -- RegisterI18n(Phrases); -- -- - cOSDWorker::Init(OSDPort, this); - cTSWorker::Init(m_StreamDevice, TSPort, this); - cClientControl::Init(ControlPort, this); -diff -Naur vdr-ffnetdev-0.1.2.orig/Makefile vdr-ffnetdev-0.1.2/Makefile ---- vdr-ffnetdev-0.1.2.orig/Makefile 2012-10-31 18:32:09.000000000 +0100 -+++ vdr-ffnetdev-0.1.2/Makefile 2012-10-31 18:37:10.000000000 +0100 -@@ -50,9 +50,7 @@ - - ### The object files (add further files here): - --COMMONOBJS = i18n.o \ -- \ -- tools/source.o tools/select.o tools/socket.o tools/tools.o -+COMMONOBJS = tools/source.o tools/select.o tools/socket.o tools/tools.o - - - SERVEROBJS = $(PLUGIN).o \ -@@ -95,9 +93,34 @@ - - -include $(DEPFILE) - -+### Internationalization (I18N): -+ -+PODIR = po -+LOCALEDIR = $(VDRDIR)/locale -+I18Npo = $(wildcard $(PODIR)/*.po) -+I18Nmo = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file)))) -+I18Ndirs = $(notdir $(foreach file, $(I18Npo), $(basename $(file)))) -+I18Npot = $(PODIR)/$(PLUGIN).pot -+ -+%.mo: %.po -+ msgfmt -c -o $@ $< -+ -+$(I18Npot): $(wildcard *.c) -+ xgettext -C -cTRANSLATORS --no-wrap -F -k -ktr -ktrNOOP --msgid-bugs-address='<[email protected]>' -o $@ $(wildcard *.c) -+ -+$(I18Npo): $(I18Npot) -+ msgmerge -U --no-wrap -F --backup=none -q $@ $< -+ -+i18n: $(I18Nmo) -+ @mkdir -p $(LOCALEDIR) -+ for i in $(I18Ndirs); do\ -+ mkdir -p $(LOCALEDIR)/$$i/LC_MESSAGES;\ -+ cp $(PODIR)/$$i.mo $(LOCALEDIR)/$$i/LC_MESSAGES/vdr-$(PLUGIN).mo;\ -+ done -+ - ### Targets: - --all: libvdr-$(PLUGIN).so -+all: libvdr-$(PLUGIN).so i18n - - libvdr-$(PLUGIN).so: $(SERVEROBJS) $(COMMONOBJS) - -@@ -106,6 +129,7 @@ - @cp $@ $(LIBDIR)/$@.$(APIVERSION) - - dist: clean -+ @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot - @-rm -rf $(TMPDIR)/$(ARCHIVE) - @mkdir $(TMPDIR)/$(ARCHIVE) - @cp -a * $(TMPDIR)/$(ARCHIVE) -diff -Naur vdr-ffnetdev-0.1.2.orig/po/de_DE.po vdr-ffnetdev-0.1.2/po/de_DE.po ---- vdr-ffnetdev-0.1.2.orig/po/de_DE.po 1970-01-01 01:00:00.000000000 +0100 -+++ vdr-ffnetdev-0.1.2/po/de_DE.po 2012-10-31 18:38:02.000000000 +0100 -@@ -0,0 +1,30 @@ -+# VDR plugin language source file. -+# Copyright (C) 2007 Klaus Schmidinger <[email protected]> -+# This file is distributed under the same license as the VDR package. -+# Klaus Schmidinger <[email protected]>, 2000 -+# Erich Seifert <[email protected]>, 2012 -+# -+msgid "" -+msgstr "" -+"Project-Id-Version: VDR 1.7.27\n" -+"Report-Msgid-Bugs-To: [email protected]\n" -+"POT-Creation-Date: 2012-10-30 14:31+0100\n" -+"PO-Revision-Date: 2012-10-30 14:37+0100\n" -+"Last-Translator: Klaus Schmidinger <[email protected]>\n" -+"Language-Team: <[email protected]>\n" -+"Language: \n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=ISO-8859-15\n" -+"Content-Transfer-Encoding: 8bit\n" -+ -+#: ffnetdevsetup.c:18 -+msgid "auto set as primary device" -+msgstr "Automatisch als prim�res Ger�t festlegen" -+ -+#: ffnetdevsetup.c:18 -+msgid "no" -+msgstr "nein" -+ -+#: ffnetdevsetup.c:18 -+msgid "yes" -+msgstr "ja" diff --git a/media-plugins/vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild b/media-plugins/vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild deleted file mode 100644 index a1438f6197f0..000000000000 --- a/media-plugins/vdr-ffnetdev/vdr-ffnetdev-0.1.2.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit vdr-plugin-2 - -VERSION="837" # every bump, new version - -DESCRIPTION="VDR Plugin: Provides an easy way of connecting possible streaming clients to VDR" -HOMEPAGE="https://projects.vdr-developer.org/projects/plg-ffnetdev" -SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tar.bz2" -S="${WORKDIR}/${P}" # override eclass default - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND=">=media-video/vdr-1.6.0" -RDEPEND="${DEPEND}" - -PATCHES=( "${FILESDIR}/${P}_gettext.diff" )
