commit:     24892b5a059da26820e7dff0bb99143629a8b16b
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Tue Apr 29 19:46:57 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Apr 30 14:24:47 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24892b5a

dev-libs/libcec: add 7.0.0

Bug: https://bugs.gentoo.org/952307
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/41853
Closes: https://github.com/gentoo/gentoo/pull/41853
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/libcec/Manifest            |   1 +
 dev-libs/libcec/libcec-7.0.0.ebuild | 118 ++++++++++++++++++++++++++++++++++++
 2 files changed, 119 insertions(+)

diff --git a/dev-libs/libcec/Manifest b/dev-libs/libcec/Manifest
index a67ecd5cbf8e..28f9fbfee912 100644
--- a/dev-libs/libcec/Manifest
+++ b/dev-libs/libcec/Manifest
@@ -1 +1,2 @@
 DIST libcec-6.0.2.tar.gz 355807 BLAKE2B 
007530d839493355f283992a4390550d6ddd432977d7489c17087f7e5bb6f503c35e967ed6a620d55e2e7c25ce10814f360d146a28b860cdcdd108fae152f896
 SHA512 
c16ac268e67b01d4e35fad644e5927e1d9fc7bcaeff698ac5f0eadd31ec63a0bef2a2b2bc37860d1571e1e0cdc55911c2de468c661c7c7ae1d492f80188035cb
+DIST libcec-7.0.0.tar.gz 362134 BLAKE2B 
ce1f49360d0560945757655ecbbfe8d4b776c8ac3d1014f2f176ac14c6e6d8847d853aa0aeed955fa218fafc4fd45b505ad4256a2ce47cdebd439f497a4f6cae
 SHA512 
76e6686252dd53fca72130fadcc90d88f6b255a6fed12330d68ef0cc3f34906053ecfc23c6570991614c49857e13bbb37963fea5803560a19a97f097f4b0ae60

diff --git a/dev-libs/libcec/libcec-7.0.0.ebuild 
b/dev-libs/libcec/libcec-7.0.0.ebuild
new file mode 100644
index 000000000000..25686fccbef0
--- /dev/null
+++ b/dev-libs/libcec/libcec-7.0.0.ebuild
@@ -0,0 +1,118 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+MY_PV=${PV/_p/-}
+MY_P=${PN}-${MY_PV}
+
+inherit cmake linux-info python-single-r1 udev
+
+DESCRIPTION="Library for communicating with the Pulse-Eight USB HDMI-CEC 
Adaptor"
+HOMEPAGE="https://libcec.pulse-eight.com";
+SRC_URI="https://github.com/Pulse-Eight/${PN}/archive/${MY_P}.tar.gz";
+S="${WORKDIR}/${PN}-${MY_P}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+IUSE="cubox exynos kernel-cec python tools udev +xrandr"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND=">=dev-libs/libplatform-2.0.0
+       python? ( ${PYTHON_DEPS} )
+       udev? ( virtual/udev )
+       xrandr? (
+               x11-libs/libX11
+               x11-libs/libXrandr
+       )
+
+"
+DEPEND="${RDEPEND}
+       python? ( dev-lang/swig )"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~USB_ACM"
+
+pkg_pretend() {
+       use udev || CONFIG_CHECK+=" ~SYSFS"
+       ERROR_SYSFS="When using libcec build without udev, kernel config option 
CONFIG_SYSFS is required to automatically detect P8 USB-CEC adapter port number"
+
+       linux-info_pkg_setup
+}
+
+pkg_setup() {
+       linux-info_pkg_setup
+       use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+       cmake_src_prepare
+
+       sed -Ee 's|[ ~]?#DIST#;?||g' debian/changelog.in > ChangeLog || die
+
+       (use tools && use python) || cmake_comment_add_subdirectory 
"src/pyCecClient"
+
+       if ! use tools; then
+               cmake_comment_add_subdirectory "src/cec-client"
+               cmake_comment_add_subdirectory "src/cecc-client"
+               sed -i -Ee 's|add_dependencies\(cecc?-client cec\)|#DO NOT 
BUILD \0|' \
+                       CMakeLists.txt || die
+       fi
+}
+
+src_configure() {
+       local mycmakeargs=(
+               -DSKIP_PYTHON_WRAPPER=$(usex !python)
+
+               # Same order as in src/libcec/cmake/CheckPlatformSupport.cmake
+               -DHAVE_DRM_EDID_PARSER=ON
+               -DHAVE_LIBUDEV=$(usex udev)
+               -DHAVE_RANDR=$(usex xrandr)
+               -DHAVE_RPI_API=OFF
+               -DHAVE_TDA995X_API=$(usex cubox)
+               -DHAVE_EXYNOS_API=$(usex exynos)
+               -DHAVE_LINUX_API=$(usex kernel-cec)
+
+       )
+
+       if linux_config_exists && linux_chkconfig_present SYSFS; then
+               mycmakeargs+=( -DHAVE_P8_USB_DETECT=ON )
+       fi
+
+       cmake_src_configure
+}
+
+src_compile() {
+       cmake_src_compile
+
+       if use udev ; then
+               sed '/2548/ s/SUBSYSTEM/SUBSYSTEMS/; s/$/, GROUP="video"/;' 
"${S}/debian/pulse-eight-usb-cec.udev" > \
+                       "${BUILD_DIR}/65-pulse-eight-usb-cec.rules" || die
+       fi
+}
+
+src_install() {
+       cmake_src_install
+
+       use python && python_optimize "${D}$(python_get_sitedir)"
+
+       use tools && doman debian/cec-client.1
+
+       if use udev; then
+               udev_dorules "${BUILD_DIR}/65-pulse-eight-usb-cec.rules"
+       fi
+}
+
+pkg_postrm() {
+       use udev && udev_reload
+}
+
+pkg_postinst() {
+       use udev && udev_reload
+
+       elog "You will need to ensure the user running your CEC client has"
+       elog "read/write access to the device. You can ensure this by adding"
+       elog "them to the video group"
+}

Reply via email to