From: f_l_k@t-online.de
To: openembedded-devel@lists.openembedded.org
Subject: Re: [oe] [meta-gnome][PATCHv2] freerdp3: add recipe
Date: Tue, 19 Mar 2024 10:29:49 +0100 [thread overview]
Message-ID: <P19LAS.XNJ0HDKLN7IM@t-online.de> (raw)
In-Reply-To: <17BE205582F63951.29196@lists.openembedded.org>
[-- Attachment #1: Type: text/plain, Size: 4318 bytes --]
v2 removes fuse3 as a hard dependency. ffmpeg is still needed in any
case because of swscale
On Tue, Mar 19 2024 at 10:27:58 AM +01:00:00, Markus Volk
<f_l_k@t-online.de> wrote:
> freerdp3 is required to build gnome-remote-desktop-46.0
>
> Signed-off-by: Markus Volk <f_l_k@t-online.de
> <mailto:f_l_k@t-online.de>>
> ---
> .../recipes-support/freerdp/freerdp3_3.4.0.bb | 59
> +++++++++++++++++++
> 1 file changed, 59 insertions(+)
> create mode 100644 meta-oe/recipes-support/freerdp/freerdp3_3.4.0.bb
>
> diff --git a/meta-oe/recipes-support/freerdp/freerdp3_3.4.0.bb
> b/meta-oe/recipes-support/freerdp/freerdp3_3.4.0.bb
> new file mode 100644
> index 000000000..f04be56c6
> --- /dev/null
> +++ b/meta-oe/recipes-support/freerdp/freerdp3_3.4.0.bb
> @@ -0,0 +1,59 @@
> +DESCRIPTION = "FreeRDP RDP client & server library"
> +HOMEPAGE = "http://www.freerdp.com <http://www.freerdp.com/>"
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM =
> "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
> <file://license;md5=3b83ef96387f14655fc854ddc3c6bd57/>
> +
> +DEPENDS = "openssl ffmpeg libusb1 uriparser cairo icu pkcs11-helper
> zlib jpeg"
> +
> +inherit pkgconfig cmake
> +
> +SRCREV = "708f3764897e06297469a7b0507b3c9ecc041ad7"
> +SRC_URI =
> "git://github.com/FreeRDP/FreeRDP.git;branch=master;protocol=https"
> +
> +S = "${WORKDIR}/git"
> +
> +PACKAGECONFIG ??= " \
> + ${@bb.utils.filter
> <mailto:${@bb.utils.filter>('DISTRO_FEATURES', 'pam pulseaudio
> wayland x11', d)} \
> + gstreamer cups pcsc \
> +"
> +
> +EXTRA_OECMAKE = " \
> + -DRDTK_FORCE_STATIC_BUILD=ON \
> + -DUWAC_FORCE_STATIC_BUILD=ON \
> + -DWITH_ADD=ON \
> + -DWITH_BINARY_VERSIONING=ON \
> + -DWITH_CHANNELS=ON \
> + -DWITH_CLIENT_CHANNELS=ON \
> + -DWITH_JPEG=ON \
> + -DWITH_PKCS11=ON \
> + -DWITH_SERVER_CHANNELS=ON \
> + -DWITH_SERVER=ON \
> + -DPKG_CONFIG_RELOCATABLE=OFF \
> + -DWITH_ALSA=OFF \
> + -DWITH_CLIENT_SDL=OFF \
> + -DWITH_SAMPLE=OFF \
> + "
> +
> +X11_DEPS = "virtual/libx11 libxinerama libxext libxcursor libxv
> libxi libxrender libxfixes libxdamage libxrandr libxkbfile"
> +PACKAGECONFIG[x11] = "-DWITH_X11=ON -DWITH_XINERAMA=ON
> -DWITH_XEXT=ON -DWITH_XCURSOR=ON -DWITH_XV=ON -DWITH_XI=ON
> -DWITH_XRENDER=ON -DWITH_XFIXES=ON -DWITH_XDAMAGE=ON -DWITH_XRANDR=ON
> -DWITH_XKBFILE=ON,-DWITH_X11=OFF,${X11_DEPS}"
> +PACKAGECONFIG[wayland] =
> "-DWITH_WAYLAND=ON,-DWITH_WAYLAND=OFF,wayland wayland-native
> libxkbcommon"
> +PACKAGECONFIG[pam] = "-DWITH_PAM=ON,-DWITH_PAM=OFF,libpam"
> +PACKAGECONFIG[pulseaudio] =
> "-DWITH_PULSEAUDIO=ON,-DWITH_PULSEAUDIO=OFF,pulseaudio"
> +PACKAGECONFIG[gstreamer] =
> "-DWITH_GSTREAMER_1_0=ON,-DWITH_GSTREAMER_1_0=OFF,gstreamer1.0
> gstreamer1.0-plugins-base"
> +PACKAGECONFIG[cups] = "-DWITH_CUPS=ON,-DWITH_CUPS=OFF,cups"
> +PACKAGECONFIG[fuse] = "-DWITH_FUSE=ON,-DWITH_FUSE=OFF,fuse3,fuse3"
> +PACKAGECONFIG[pcsc] = "-DWITH_PCSC=ON,-DWITH_PCSC=OFF,pcsc-lite"
> +PACKAGECONFIG[manpages] = "-DWITH_MANPAGES=ON,-DWITH_MANPAGES=OFF,
> libxslt-native docbook-xsl-stylesheets-native"
> +PACKAGECONFIG[ffmpeg] = "-DWITH_DSP_FFMPEG=ON -DWITH_FFMPEG=ON,
> -DWITH_DSP_FFMPEG=OFF -DWITH_FFMPEG=OFF"
> +PACKAGECONFIG[openh264] =
> "-DWITH_OPENH264=ON,-DWITH_OPENH264=OFF,openh264"
> +PACKAGECONFIG[opencl] =
> "-DWITH_OPENCL=ON,-DWITH_OPENCL=OFF,opencl-icd-loader"
> +PACKAGECONFIG[lame] = "-DWITH_LAME=ON,-DWITH_LAME=OFF,lame"
> +PACKAGECONFIG[faad] = "-DWITH_FAAD=ON,-DWITH_FAAD=OFF,faad2"
> +PACKAGECONFIG[faac] = "-DWITH_FAAD=ON,-DWITH_FAAD=OFF,faac"
> +
> +do_configure:append() {
> + sed -i -e 's|${WORKDIR}||g' ${B}/include/freerdp/buildflags.h
> + sed -i -e 's|${WORKDIR}||g' ${B}/winpr/include/winpr/buildflags.h
> +}
> +
> +FILES:${PN} += "${datadir}"
> --
> 2.44.0
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#109476):
> <https://lists.openembedded.org/g/openembedded-devel/message/109476>
> Mute This Topic: <https://lists.openembedded.org/mt/105020833/3618223>
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> <mailto:openembedded-devel+owner@lists.openembedded.org>
> Unsubscribe:
> <https://lists.openembedded.org/g/openembedded-devel/unsub>
> [f_l_k@t-online.de <mailto:f_l_k@t-online.de>]
> -=-=-=-=-=-=-=-=-=-=-=-
>
[-- Attachment #2: Type: text/html, Size: 4641 bytes --]
next parent reply other threads:[~2024-03-19 9:29 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <17BE205582F63951.29196@lists.openembedded.org>
2024-03-19 9:29 ` f_l_k [this message]
2024-03-20 14:34 ` [oe] [meta-gnome][PATCHv2] freerdp3: add recipe Khem Raj
2024-03-20 16:22 ` Khem Raj
2024-03-20 17:28 ` f_l_k
2024-03-20 17:31 ` Khem Raj
2024-03-20 17:49 ` f_l_k
[not found] ` <17BE8A4D584EEFD1.29196@lists.openembedded.org>
2024-03-20 18:10 ` f_l_k
2024-03-22 6:17 ` Martin Jansa
2024-03-22 7:46 ` f_l_k
2024-03-20 16:59 ` f_l_k
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=P19LAS.XNJ0HDKLN7IM@t-online.de \
--to=f_l_k@t-online.de \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.