Сравнение wf-recorder-0.3.0-r2 с wf-recorder-9999
| /usr/portage/gui-apps/wf-recorder/wf-recorder-9999.ebuild 2024-12-25 14:59:49.659270104 +0300 | ||
|---|---|---|
| 1 |
# Copyright 2020-2023 Gentoo Authors |
|
| 1 |
# Copyright 2020-2024 Gentoo Authors |
|
| 2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 | 3 | |
| 4 | 4 |
EAPI=8 |
| ... | ... | |
| 18 | 18 | |
| 19 | 19 |
LICENSE="MIT" |
| 20 | 20 |
SLOT="0" |
| 21 |
IUSE="pipewire pulseaudio" |
|
| 21 | 22 | |
| 22 | 23 |
DEPEND=" |
| 23 | 24 |
dev-libs/wayland |
| 24 |
media-libs/libpulse |
|
| 25 |
media-video/ffmpeg[pulseaudio,x264] |
|
| 25 |
media-libs/mesa[opengl,wayland] |
|
| 26 |
media-video/ffmpeg[pulseaudio?,x264] |
|
| 27 |
x11-libs/libdrm |
|
| 28 |
pipewire? ( >=media-video/pipewire-1.0.5:= ) |
|
| 29 |
pulseaudio? ( media-libs/libpulse ) |
|
| 26 | 30 |
" |
| 27 | 31 |
RDEPEND="${DEPEND}"
|
| 28 | 32 |
BDEPEND=" |
| ... | ... | |
| 30 | 34 |
dev-util/wayland-scanner |
| 31 | 35 |
virtual/pkgconfig |
| 32 | 36 |
" |
| 37 | ||
| 38 |
src_configure() {
|
|
| 39 |
local emesonargs=( |
|
| 40 |
$(meson_feature pulseaudio pulse) |
|
| 41 |
$(meson_feature pipewire) |
|
| 42 |
) |
|
| 43 |
meson_src_configure |
|
| 44 |
} |
|