diff options
author | Sam James <sam@gentoo.org> | 2020-11-06 08:31:25 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-11-06 08:32:56 +0000 |
commit | 55d28585cd3bd086ea50d969f6d24084fad8d2d4 (patch) | |
tree | 1d58676458a7608e6b8de3425e94b5de41806a78 /dev-libs/libcec | |
parent | dev-libs/libcec: bump to 6.0.2 (diff) | |
download | gentoo-55d28585cd3bd086ea50d969f6d24084fad8d2d4.tar.gz gentoo-55d28585cd3bd086ea50d969f6d24084fad8d2d4.tar.bz2 gentoo-55d28585cd3bd086ea50d969f6d24084fad8d2d4.zip |
dev-libs/libcec: cmake-utils -> cmake
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-libs/libcec')
-rw-r--r-- | dev-libs/libcec/libcec-4.0.4-r1.ebuild | 6 | ||||
-rw-r--r-- | dev-libs/libcec/libcec-4.0.7.ebuild | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/dev-libs/libcec/libcec-4.0.4-r1.ebuild b/dev-libs/libcec/libcec-4.0.4-r1.ebuild index d89298c497b1..4f1dbb82397b 100644 --- a/dev-libs/libcec/libcec-4.0.4-r1.ebuild +++ b/dev-libs/libcec/libcec-4.0.4-r1.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python{3_6,3_7,3_8} ) MY_PV=${PV/_p/-} MY_P=${PN}-${MY_PV} -inherit cmake-utils linux-info python-single-r1 toolchain-funcs +inherit cmake linux-info python-single-r1 toolchain-funcs DESCRIPTION="Library for communicating with the Pulse-Eight USB HDMI-CEC Adaptor" HOMEPAGE="http://libcec.pulse-eight.com" @@ -43,7 +43,7 @@ pkg_setup() { } src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare # Do not hardcode the python libpath #577612 sed -i \ @@ -68,7 +68,7 @@ src_configure() { -DRPI_LIB_DIR=$( $(tc-getPKG_CONFIG) --variable=libdir bcm_host) ) - cmake-utils_src_configure + cmake_src_configure } pkg_postinst() { diff --git a/dev-libs/libcec/libcec-4.0.7.ebuild b/dev-libs/libcec/libcec-4.0.7.ebuild index 0e2d7d2ec95a..55442c3f1e34 100644 --- a/dev-libs/libcec/libcec-4.0.7.ebuild +++ b/dev-libs/libcec/libcec-4.0.7.ebuild @@ -7,7 +7,7 @@ PYTHON_COMPAT=( python{3_6,3_7,3_8} ) MY_PV=${PV/_p/-} MY_P=${PN}-${MY_PV} -inherit cmake-utils linux-info python-single-r1 toolchain-funcs +inherit cmake linux-info python-single-r1 toolchain-funcs DESCRIPTION="Library for communicating with the Pulse-Eight USB HDMI-CEC Adaptor" HOMEPAGE="http://libcec.pulse-eight.com" @@ -51,7 +51,7 @@ pkg_setup() { } src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare # Do not hardcode the python libpath #577612 sed -i \ @@ -91,20 +91,20 @@ src_configure() { -DRPI_LIB_DIR=$( $(tc-getPKG_CONFIG) --variable=libdir bcm_host) ) - cmake-utils_src_configure + cmake_src_configure } src_compile() { - cmake-utils_src_compile + cmake_src_compile - if use udev ; then + if use udev; then cp "${S}/debian/pulse-eight-usb-cec.udev" \ "${BUILD_DIR}/65-pulse-eight-usb-cec.udev" || die fi } src_install() { - cmake-utils_src_install + cmake_src_install use python && python_optimize "${D}$(python_get_sitedir)" |