public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/zvbi/
Date: Fri, 14 Mar 2025 08:41:20 +0000 (UTC)	[thread overview]
Message-ID: <1741941659.1210a708317f63ab7bd35a07b6d4327ff6f54cad.sam@gentoo> (raw)

commit:     1210a708317f63ab7bd35a07b6d4327ff6f54cad
Author:     Nicolas PARLANT <nicolas.parlant <AT> parhuet <DOT> fr>
AuthorDate: Mon Feb 10 10:42:03 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 14 08:40:59 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1210a708

media-libs/zvbi: add 0.2.44

project moved to github
use eautoreconf for libtoolize and aclocal

deps : remove zlib

useflags :
add test
add proxy

licenses :
add BSD-2, LGPL-2.1+ and MIT (see COPYING.md)

Signed-off-by: Nicolas PARLANT <nicolas.parlant <AT> parhuet.fr>
Closes: https://github.com/gentoo/gentoo/pull/40510
Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-libs/zvbi/Manifest           |  1 +
 media-libs/zvbi/metadata.xml       |  6 +++-
 media-libs/zvbi/zvbi-0.2.44.ebuild | 66 ++++++++++++++++++++++++++++++++++++++
 3 files changed, 72 insertions(+), 1 deletion(-)

diff --git a/media-libs/zvbi/Manifest b/media-libs/zvbi/Manifest
index 8a4f4a33460b..126199c52c5a 100644
--- a/media-libs/zvbi/Manifest
+++ b/media-libs/zvbi/Manifest
@@ -1 +1,2 @@
 DIST zvbi-0.2.35.tar.bz2 1047761 BLAKE2B 5fa5fec7e39c9adc6590f3f6841a40ca723ffb6a017854f71f92f32232103672a6f48678b244a84f0cad742c378ffdb247fe33e5e3cdb1ee4d737e92f650a548 SHA512 3d73eb0a7d05fdf1e3f8a74cc9d4fcb2a0287285904d59230c832f42b91afb072e96bda7e396ef07f268348061a51242925746db124bbb713cf56bdfabdada5d
+DIST zvbi-0.2.44.tar.gz 942350 BLAKE2B 1e032acb376f29fbf15a63892d44d24e5a49e834bd0503331b8b86ae67934eeb0736e8a8f8ffa054dc0a096cc2ceccf117e2523654b28aacd7639e8500e88e5c SHA512 74b7d44faf42f919ebd3ccb69f8567f56909075d3acf4a3b4dfcbdf85489492f27d8a04173e0010f59706356e4078cd10911945f87e2596de2b897672d1e55cb

diff --git a/media-libs/zvbi/metadata.xml b/media-libs/zvbi/metadata.xml
index 3a6775a70376..ec73fb51d77a 100644
--- a/media-libs/zvbi/metadata.xml
+++ b/media-libs/zvbi/metadata.xml
@@ -2,7 +2,11 @@
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<!-- maintainer-needed -->
+	<use>
+		<flag name="proxy">Share V4L and V4L2 VBI devices between multiple applications</flag>
+	</use>
 	<upstream>
-		<remote-id type="sourceforge">zapping</remote-id>
+		<remote-id type="sourceforge">zapping</remote-id><!-- old -->
+		<remote-id type="github">zapping-vbi/zvbi</remote-id>
 	</upstream>
 </pkgmetadata>

diff --git a/media-libs/zvbi/zvbi-0.2.44.ebuild b/media-libs/zvbi/zvbi-0.2.44.ebuild
new file mode 100644
index 000000000000..1457dcbb6b7c
--- /dev/null
+++ b/media-libs/zvbi/zvbi-0.2.44.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools multilib-minimal
+
+DESCRIPTION="VBI Decoding Library for Zapping"
+HOMEPAGE="https://github.com/zapping-vbi/zvbi/"
+SRC_URI="https://github.com/zapping-vbi/zvbi/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+ LGPL-2+ LGPL-2.1+ MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="doc dvb nls proxy test v4l X"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	media-libs/libpng:=[${MULTILIB_USEDEP}]
+	nls? ( virtual/libintl[${MULTILIB_USEDEP}] )
+	X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+	virtual/os-headers
+	X? ( x11-libs/libXt )
+"
+BDEPEND="
+	doc? ( app-text/doxygen )
+	nls? ( sys-devel/gettext )
+"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+multilib_src_configure() {
+	ECONF_SOURCE="${S}" econf \
+		$(use_enable dvb) \
+		$(use_enable nls) \
+		$(use_enable proxy) \
+		$(use_enable test tests) \
+		$(use_enable v4l) \
+		$(use_with X x) \
+		$(multilib_native_use_with doc doxygen)
+}
+
+multilib_src_install() {
+	emake DESTDIR="${D}" install
+
+	if multilib_is_native_abi; then
+		if use doc; then
+			local HTML_DOCS=( doc/html/*.{css,gif,html,js,png,svg} )
+			einstalldocs
+		fi
+	fi
+}
+
+multilib_src_install_all() {
+	# examples are not built but used as doc
+	local DOCS=( AUTHORS BUGS ChangeLog NEWS README.md TODO examples )
+	docompress -x /usr/share/doc/${PF}/examples
+	einstalldocs
+
+	find "${ED}" -name '*.la' -delete
+}


             reply	other threads:[~2025-03-14  8:41 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-14  8:41 Sam James [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-26  7:50 [gentoo-commits] repo/gentoo:master commit in: media-libs/zvbi/ Arthur Zamarin
2025-04-26  1:54 Sam James
2025-04-26  1:25 Sam James
2025-04-26  1:06 Sam James
2025-04-26  0:43 Sam James
2025-04-26  0:43 Sam James
2023-03-10  6:05 Viorel Munteanu
2022-12-09  6:54 Joonas Niilola
2021-12-16 18:15 Jakov Smolić
2021-12-16 18:06 Jakov Smolić
2021-12-16  7:42 Agostino Sarubbo
2021-12-16  7:41 Agostino Sarubbo
2021-12-15 17:36 Arthur Zamarin
2021-12-15 17:20 Arthur Zamarin
2021-12-15 16:57 Arthur Zamarin
2021-12-15 16:42 Jakov Smolić
2021-11-25 14:45 Marek Szuba
2021-08-21  8:44 Marek Szuba
2017-06-22 19:12 Alexis Ballier
2017-02-02 11:39 Michael Palimaka
2017-02-02 11:39 Michael Palimaka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1741941659.1210a708317f63ab7bd35a07b6d4327ff6f54cad.sam@gentoo \
    --to=sam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox