From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8146015800A for ; Sun, 16 Jul 2023 06:18:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B582E0884; Sun, 16 Jul 2023 06:18:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 104DDE0884 for ; Sun, 16 Jul 2023 06:18:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 95210340D49 for ; Sun, 16 Jul 2023 06:18:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 251F6B5B for ; Sun, 16 Jul 2023 06:18:39 +0000 (UTC) From: "Haelwenn Monnier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Haelwenn Monnier" Message-ID: <1689344575.174629c695641891c65572c4de5c35864702a366.lanodan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-libs/libdecor/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-libs/libdecor/Manifest gui-libs/libdecor/libdecor-0.1.1.ebuild gui-libs/libdecor/libdecor-9999.ebuild gui-libs/libdecor/metadata.xml X-VCS-Directories: gui-libs/libdecor/ X-VCS-Committer: lanodan X-VCS-Committer-Name: Haelwenn Monnier X-VCS-Revision: 174629c695641891c65572c4de5c35864702a366 X-VCS-Branch: master Date: Sun, 16 Jul 2023 06:18:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b1733794-6ad3-458e-a825-f210f76b9783 X-Archives-Hash: cfc51a9321de29b8f270f8f68b38dca9 commit: 174629c695641891c65572c4de5c35864702a366 Author: Gonçalo Negrier Duarte gmail com> AuthorDate: Fri Jul 14 14:22:39 2023 +0000 Commit: Haelwenn Monnier hacktivis me> CommitDate: Fri Jul 14 14:22:55 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=174629c6 gui-libs/libdecor: new package, add 0.1.1, 9999 Signed-off-by: Gonçalo Negrier Duarte gmail.com> gui-libs/libdecor/Manifest | 1 + gui-libs/libdecor/libdecor-0.1.1.ebuild | 42 +++++++++++++++++++++++++++++++++ gui-libs/libdecor/libdecor-9999.ebuild | 41 ++++++++++++++++++++++++++++++++ gui-libs/libdecor/metadata.xml | 11 +++++++++ 4 files changed, 95 insertions(+) diff --git a/gui-libs/libdecor/Manifest b/gui-libs/libdecor/Manifest new file mode 100644 index 000000000..c0eb0f853 --- /dev/null +++ b/gui-libs/libdecor/Manifest @@ -0,0 +1 @@ +DIST libdecor-0.1.1.tar.bz2 37286 BLAKE2B 32a0ef9711fc0b830f2b2997a05e2ac8ce60ef6f972d8a4c17cebe987b49828c81f3888e42dde0627ce71dbc825ddfd336be3f591ca1f76168c3efd13c2e24ae SHA512 3a5a293a58d40a1d5377912c90ede7670caffbb6b4539ffb00f33667fd84ecaf8a90e05100ddc22c4af34482aac8d2deb67ba25ddbede67e7952b1054e359409 diff --git a/gui-libs/libdecor/libdecor-0.1.1.ebuild b/gui-libs/libdecor/libdecor-0.1.1.ebuild new file mode 100644 index 000000000..031c89080 --- /dev/null +++ b/gui-libs/libdecor/libdecor-0.1.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson + +DESCRIPTION="A client-side decorations library for Wayland clients" +HOMEPAGE="https://gitlab.freedesktop.org/libdecor/libdecor" +SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+dbus examples" + +DEPEND=" + >=dev-libs/wayland-1.18 + >=dev-libs/wayland-protocols-1.15 + x11-libs/pango + dbus? ( sys-apps/dbus ) + examples? ( + virtual/opengl + media-libs/mesa[egl(+)] + x11-libs/libxkbcommon + ) +" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_configure() { + local emesonargs=( + # Avoid auto-magic, built-in feature of meson + -Dauto_features=disabled + + $(meson_feature dbus) + $(meson_use examples demo) + -Dinstall_demo=true + ) + + meson_src_configure +} diff --git a/gui-libs/libdecor/libdecor-9999.ebuild b/gui-libs/libdecor/libdecor-9999.ebuild new file mode 100644 index 000000000..3dcc9ad2c --- /dev/null +++ b/gui-libs/libdecor/libdecor-9999.ebuild @@ -0,0 +1,41 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson git-r3 + +DESCRIPTION="A client-side decorations library for Wayland clients" +HOMEPAGE="https://gitlab.freedesktop.org/libdecor/libdecor" +EGIT_REPO_URI="https://gitlab.freedesktop.org/libdecor/libdecor.git" + +LICENSE="MIT" +SLOT="0" +IUSE="+dbus examples" + +DEPEND=" + >=dev-libs/wayland-1.18 + >=dev-libs/wayland-protocols-1.15 + x11-libs/pango + dbus? ( sys-apps/dbus ) + examples? ( + virtual/opengl + media-libs/mesa[egl(+)] + x11-libs/libxkbcommon + ) +" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_configure() { + local emesonargs=( + # Avoid auto-magic, built-in feature of meson + -Dauto_features=disabled + + $(meson_feature dbus) + $(meson_use examples demo) + -Dinstall_demo=true + ) + + meson_src_configure +} diff --git a/gui-libs/libdecor/metadata.xml b/gui-libs/libdecor/metadata.xml new file mode 100644 index 000000000..fce105305 --- /dev/null +++ b/gui-libs/libdecor/metadata.xml @@ -0,0 +1,11 @@ + + + + + Enable dbus to query current cursor theme + Build and install examples + + + libdecor/libdecor + + \ No newline at end of file