diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2022-06-19 10:56:41 +0200 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-06-19 10:56:41 +0200 |
commit | 33373ca70bed174d18255f023f5404ac8351084a (patch) | |
tree | 96d3683b41c28d7f304d0906f608e5b3a7269783 /media-libs/avidemux-core | |
parent | profiles/arch/amd64: Remove nvidia_video_sdk use mask (diff) | |
download | gentoo-33373ca70bed174d18255f023f5404ac8351084a.tar.gz gentoo-33373ca70bed174d18255f023f5404ac8351084a.tar.bz2 gentoo-33373ca70bed174d18255f023f5404ac8351084a.zip |
media-libs/avidemux-core: Remove nvenc flag
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'media-libs/avidemux-core')
-rw-r--r-- | media-libs/avidemux-core/avidemux-core-2.7.8.ebuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/media-libs/avidemux-core/avidemux-core-2.7.8.ebuild b/media-libs/avidemux-core/avidemux-core-2.7.8.ebuild index f1b9a125c6c1..7d5a2d52c24c 100644 --- a/media-libs/avidemux-core/avidemux-core-2.7.8.ebuild +++ b/media-libs/avidemux-core/avidemux-core-2.7.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,12 +15,11 @@ SRC_URI="https://github.com/mean00/avidemux2/archive/${PV}.tar.gz -> avidemux-${ LICENSE="GPL-1 GPL-2 MIT PSF-2 public-domain" SLOT="2.7" KEYWORDS="~amd64 ~x86" -IUSE="debug nls nvenc sdl system-ffmpeg vaapi vdpau xv" +IUSE="debug nls sdl system-ffmpeg vaapi vdpau xv" # Trying to use virtual; ffmpeg misses aac,cpudetection USE flags now though, are they needed? DEPEND=" dev-db/sqlite:3 - nvenc? ( media-video/nvidia_video_sdk ) sdl? ( media-libs/libsdl:0 ) system-ffmpeg? ( >=media-video/ffmpeg-9:0[mp3,theora] ) vaapi? ( x11-libs/libva:0= ) @@ -78,7 +77,7 @@ src_configure() { local mycmakeargs=( -DAVIDEMUX_SOURCE_DIR='${S}' -DGETTEXT="$(usex nls)" - -DNVENC="$(usex nvenc)" + -DNVENC=no -DSDL="$(usex sdl)" -DLIBVA="$(usex vaapi)" -DVDPAU="$(usex vdpau)" |