diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-30 19:28:38 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-31 18:23:36 +0100 |
commit | 7b0e0aecbcb9b247681a2c87be51d5e43404f7e5 (patch) | |
tree | f02c8f546715d9dd8b66099bd6c7e1536ee0e828 /media-libs/avidemux-core | |
parent | */*: Switch graphics proj packages to cmake.eclass (diff) | |
download | gentoo-7b0e0aecbcb9b247681a2c87be51d5e43404f7e5.tar.gz gentoo-7b0e0aecbcb9b247681a2c87be51d5e43404f7e5.tar.bz2 gentoo-7b0e0aecbcb9b247681a2c87be51d5e43404f7e5.zip |
*/*: Switch media-video proj packages to cmake.eclass
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/avidemux-core')
-rw-r--r-- | media-libs/avidemux-core/avidemux-core-2.7.3.ebuild | 10 | ||||
-rw-r--r-- | media-libs/avidemux-core/avidemux-core-2.7.4.ebuild | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/media-libs/avidemux-core/avidemux-core-2.7.3.ebuild b/media-libs/avidemux-core/avidemux-core-2.7.3.ebuild index 5f88c831da3c..1ed1591e1a59 100644 --- a/media-libs/avidemux-core/avidemux-core-2.7.3.ebuild +++ b/media-libs/avidemux-core/avidemux-core-2.7.3.ebuild @@ -5,7 +5,7 @@ EAPI=7 CMAKE_MAKEFILE_GENERATOR="emake" -inherit cmake-utils +inherit cmake DESCRIPTION="Core libraries for simple video cutting, filtering and encoding tasks" HOMEPAGE="http://fixounet.free.fr/avidemux" @@ -42,7 +42,7 @@ CMAKE_USE_DIR="${S}/${PN/-/_}" PATCHES=( "${FILESDIR}"/${P}-permissions.patch ) src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare if use system-ffmpeg ; then # Preparations to support the system ffmpeg. Currently fails because @@ -76,13 +76,13 @@ src_configure() { mycmakeargs+=( -DVERBOSE=1 -DADM_DEBUG=1 ) fi - cmake-utils_src_configure + cmake_src_configure } src_compile() { - cmake-utils_src_compile + cmake_src_compile } src_install() { - cmake-utils_src_install + cmake_src_install } diff --git a/media-libs/avidemux-core/avidemux-core-2.7.4.ebuild b/media-libs/avidemux-core/avidemux-core-2.7.4.ebuild index b47c3bc01646..1143e35d737b 100644 --- a/media-libs/avidemux-core/avidemux-core-2.7.4.ebuild +++ b/media-libs/avidemux-core/avidemux-core-2.7.4.ebuild @@ -5,7 +5,7 @@ EAPI=7 CMAKE_MAKEFILE_GENERATOR="emake" -inherit cmake-utils +inherit cmake DESCRIPTION="Core libraries for simple video cutting, filtering and encoding tasks" HOMEPAGE="http://fixounet.free.fr/avidemux" @@ -40,7 +40,7 @@ S="${WORKDIR}/avidemux2-${PV}" CMAKE_USE_DIR="${S}/${PN/-/_}" src_prepare() { - cmake-utils_src_prepare + cmake_src_prepare if use system-ffmpeg ; then # Preparations to support the system ffmpeg. Currently fails because @@ -72,13 +72,13 @@ src_configure() { use debug && mycmakeargs+=( -DVERBOSE=1 -DADM_DEBUG=1 ) - cmake-utils_src_configure + cmake_src_configure } src_compile() { - cmake-utils_src_compile + cmake_src_compile } src_install() { - cmake-utils_src_install + cmake_src_install } |