* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-imonlcd/files/, media-plugins/vdr-imonlcd/
@ 2018-07-24 11:06 Lars Wendler
0 siblings, 0 replies; 2+ messages in thread
From: Lars Wendler @ 2018-07-24 11:06 UTC (permalink / raw
To: gentoo-commits
commit: fd52499959f722329caecf12c8ca58e04400e2c4
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 24 11:06:07 2018 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Jul 24 11:06:31 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd524999
media-plugins/vdr-imonlcd: Bump to version 1.0.2
Also fix detection of freetype (via pkg-config)
Closes: https://bugs.gentoo.org/661590
Package-Manager: Portage-2.3.43, Repoman-2.3.10
media-plugins/vdr-imonlcd/Manifest | 1 +
.../vdr-imonlcd-1.0.2-freetype_pkgconfig.patch | 29 ++++++++++++++++
media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.2.ebuild | 40 ++++++++++++++++++++++
3 files changed, 70 insertions(+)
diff --git a/media-plugins/vdr-imonlcd/Manifest b/media-plugins/vdr-imonlcd/Manifest
index 957ad8b942c..4f14d9242b6 100644
--- a/media-plugins/vdr-imonlcd/Manifest
+++ b/media-plugins/vdr-imonlcd/Manifest
@@ -1,2 +1,3 @@
DIST vdr-imonlcd-0.0.5.tgz 43380 BLAKE2B fad5f62bc15a02819508157a07326ccfc2bf8afcd903f7b3b53d94321bf7fcd512b75ff9dfc3e469114d52d6f290c19ae04686205fc0b14aee33f345816d5638 SHA512 89082591c953d8f5883efc1d6e65d8c5fa54087b8baaff70b2de264323086cc76b33d9aa16e0bbe39c4f23ce94f5f1c31649c286b2034ea0d91fe8d8aa26edd6
DIST vdr-imonlcd-1.0.1.tgz 44423 BLAKE2B 82351e2b13fb8f932057f38ab6075e90ea020afeb8f32c4cae1411683ffa3770cc48af079c6078d7a923445137e04285800b4a002eb468db05c6c7fc586c3ffa SHA512 5912a51d01eab45c7a71cf9939e3947bde69ebbe413aefd5601734b60fb853bff6b2ae7a4c3e68aba7f5bd75b33921fec664d66128942ce0f223d4a2bbe53512
+DIST vdr-imonlcd-1.0.2.tgz 44517 BLAKE2B 1cc675978ca2c8270592c552ca383468628382c28aca08f74c55aa40dfc4154797f0e49e038cb2a8c07d66dbbf9d3fed190256809e08c4dea9b379a29cd96acf SHA512 ad1f70c3c3f4754251bd47d23ac2c56503860461edfb6e91d8dfa8e1d585da9fdd36ad300821eb29ef727e5a0875aa41d5def5f6f89f36f06efbd4a5da2b2fae
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
new file mode 100644
index 00000000000..3c35846608f
--- /dev/null
+++ b/media-plugins/vdr-imonlcd/files/vdr-imonlcd-1.0.2-freetype_pkgconfig.patch
@@ -0,0 +1,29 @@
+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
new file mode 100644
index 00000000000..d67f1e90c8a
--- /dev/null
+++ b/media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vdr-plugin-2 linux-info udev
+
+VERSION="2086" # every bump, new version
+
+DESCRIPTION="VDR Plugin: shows information about the current state of VDR on iMON LCD"
+HOMEPAGE="http://projects.vdr-developer.org/wiki/plg-imonlcd"
+SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-libs/freetype"
+DEPEND="${RDEPEND}
+ media-video/vdr"
+
+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_install() {
+ rm -f README.git
+ vdr-plugin-2_src_install
+
+ insinto $(get_udevdir)/rules.d
+ doins "${FILESDIR}"/99-imonlcd.rules || die
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-imonlcd/files/, media-plugins/vdr-imonlcd/
@ 2022-07-03 8:57 Joonas Niilola
0 siblings, 0 replies; 2+ messages in thread
From: Joonas Niilola @ 2022-07-03 8:57 UTC (permalink / raw
To: gentoo-commits
commit: 5ae827ae3db7f34f7e2724727b41b62b2200cea1
Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Mon Jun 20 18:09:01 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jul 3 08:57:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ae827ae
media-plugins/vdr-imonlcd: remove old vdr-imonlcd-1.0.2
Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
media-plugins/vdr-imonlcd/Manifest | 1 -
.../vdr-imonlcd-1.0.2-freetype_pkgconfig.patch | 29 -----------
media-plugins/vdr-imonlcd/vdr-imonlcd-1.0.2.ebuild | 56 ----------------------
3 files changed, 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
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-07-03 8:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-03 8:57 [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-imonlcd/files/, media-plugins/vdr-imonlcd/ Joonas Niilola
-- strict thread matches above, loose matches on Subject: below --
2018-07-24 11:06 Lars Wendler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox