summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Dummer <martin.dummer@gmx.net>2022-06-20 20:09:01 +0200
committerJoonas Niilola <juippis@gentoo.org>2022-07-03 11:57:53 +0300
commit5ae827ae3db7f34f7e2724727b41b62b2200cea1 (patch)
tree40e71755627bc0c093d25bbf0228048a7d43b141
parentdev-cpp/doctest: add 2.4.9 (diff)
downloadgentoo-5ae827ae3db7f34f7e2724727b41b62b2200cea1.tar.gz
gentoo-5ae827ae3db7f34f7e2724727b41b62b2200cea1.tar.bz2
gentoo-5ae827ae3db7f34f7e2724727b41b62b2200cea1.zip
media-plugins/vdr-imonlcd: remove old vdr-imonlcd-1.0.2
Signed-off-by: Martin Dummer <martin.dummer@gmx.net> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r--media-plugins/vdr-imonlcd/Manifest1
-rw-r--r--media-plugins/vdr-imonlcd/files/vdr-imonlcd-1.0.2-freetype_pkgconfig.patch29
-rw-r--r--media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.2.ebuild56
3 files changed, 0 insertions, 86 deletions
diff --git a/media-plugins/vdr-imonlcd/Manifest b/media-plugins/vdr-imonlcd/Manifest
index eb48939a12ef..d3ba8bd25dc5 100644
--- a/media-plugins/vdr-imonlcd/Manifest
+++ b/media-plugins/vdr-imonlcd/Manifest
@@ -1,2 +1 @@
-DIST vdr-imonlcd-1.0.2.tgz 44517 BLAKE2B 1cc675978ca2c8270592c552ca383468628382c28aca08f74c55aa40dfc4154797f0e49e038cb2a8c07d66dbbf9d3fed190256809e08c4dea9b379a29cd96acf SHA512 ad1f70c3c3f4754251bd47d23ac2c56503860461edfb6e91d8dfa8e1d585da9fdd36ad300821eb29ef727e5a0875aa41d5def5f6f89f36f06efbd4a5da2b2fae
DIST vdr-imonlcd-1.0.3.tar.gz 42969 BLAKE2B 443ebe901950f69df084207118ae314f9e91695372cbc6794ea3f37c5f7517100816682519cd8cfba7d44c0aebaefdee85fca002a70e0ea1bfca564410695187 SHA512 74e895dbb97bf20f5795848cbf00a752403909f0ceb0192601e43512d630d5cf4fd66550b91e3c5fa45329e0c7cf31b2aa366cbd1748dc9928592811c3f444b9
diff --git a/media-plugins/vdr-imonlcd/files/vdr-imonlcd-1.0.2-freetype_pkgconfig.patch b/media-plugins/vdr-imonlcd/files/vdr-imonlcd-1.0.2-freetype_pkgconfig.patch
deleted file mode 100644
index 2e570b89f8ac..000000000000
--- a/media-plugins/vdr-imonlcd/files/vdr-imonlcd-1.0.2-freetype_pkgconfig.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 2168f20fb6b00f7ae2104c6f4eafae2402cb1d92 Mon Sep 17 00:00:00 2001
-From: Lars Wendler <polynomial-c@gentoo.org>
-Date: Tue, 24 Jul 2018 13:00:40 +0200
-Subject: [PATCH] Makefile: Use pkg-config to query freetype
-
-As of freetype-2.9.1 the freetype-config file no longer gets installed
-by default.
----
- Makefile | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index fc165e9..36fc681 100644
---- a/Makefile
-+++ b/Makefile
-@@ -55,8 +55,8 @@ SOFILE = libvdr-$(PLUGIN).so
-
- ### Includes and Defines (add further entries here):
-
--INCLUDES += $(shell freetype-config --cflags)
--LIBS += $(shell freetype-config --libs)
-+INCLUDES += $(shell ${PKG_CONFIG} --cflags freetype2)
-+LIBS += $(shell ${PKG_CONFIG} --libs freetype2)
-
- DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
-
---
-2.18.0
-
diff --git a/media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.2.ebuild b/media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.2.ebuild
deleted file mode 100644
index 75f9c6b555b3..000000000000
--- a/media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info toolchain-funcs udev vdr-plugin-2
-
-VERSION="2086" # every bump, new version
-
-DESCRIPTION="VDR Plugin: shows information about the current state of VDR on iMON LCD"
-HOMEPAGE="https://projects.vdr-developer.org/projects/plg-imonlcd/wiki"
-SRC_URI="https://projects.vdr-developer.org/attachments/download/${VERSION}/${P}.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- media-libs/freetype
- virtual/udev"
-DEPEND="${RDEPEND}
- media-video/vdr"
-BDEPEND="virtual/pkgconfig"
-QA_FLAGS_IGNORED="
- usr/lib/vdr/plugins/libvdr-.*
- usr/lib64/vdr/plugins/libvdr-.*"
-
-DOCS=(
- HISTORY
- README
-)
-PATCHES=(
- "${FILESDIR}/${PN}-1.0.2-freetype_pkgconfig.patch"
-)
-CONFIG_CHECK="~IR_IMON"
-
-pkg_setup() {
- linux-info_pkg_setup
- vdr-plugin-2_pkg_setup
-}
-
-src_configure() {
- tc-export PKG_CONFIG
- default
-}
-
-src_install() {
- rm -f README.git
- vdr-plugin-2_src_install
-
- udev_dorules "${FILESDIR}"/99-imonlcd.rules
-}
-
-pkg_postinst() {
- udev_reload
-}