public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: gui-libs/libdecor/
@ 2024-04-04 10:09 Florian Schmaus
  0 siblings, 0 replies; 7+ messages in thread
From: Florian Schmaus @ 2024-04-04 10:09 UTC (permalink / raw
  To: gentoo-commits

commit:     149e826a188a1746eb0aa7f59635be02534e0821
Author:     Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail <DOT> com>
AuthorDate: Wed Apr  3 20:46:24 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Apr  3 20:46:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=149e826a

gui-libs/libdecor: fix metadata identation

Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail.com>

 gui-libs/libdecor/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/metadata.xml b/gui-libs/libdecor/metadata.xml
index 64bfaa7369..b6c1fcacb0 100644
--- a/gui-libs/libdecor/metadata.xml
+++ b/gui-libs/libdecor/metadata.xml
@@ -2,7 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<use>
-    <flag name="dbus">Enable dbus to query current cursor theme </flag>
+		<flag name="dbus">Enable dbus to query current cursor theme </flag>
 		<flag name="gtk">Build GTK plugin</flag>
 		<flag name="examples">Build and install examples</flag>
 	</use>


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-libs/libdecor/
@ 2024-04-11 11:11 Julien Roy
  0 siblings, 0 replies; 7+ messages in thread
From: Julien Roy @ 2024-04-11 11:11 UTC (permalink / raw
  To: gentoo-commits

commit:     b31ee0ef17efde6f51b304d73a0d09965c75802e
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Apr 11 03:32:05 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Thu Apr 11 03:32:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b31ee0ef

gui-libs/libdecor: treeclean, moved to ::gentoo

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 gui-libs/libdecor/Manifest              |  1 -
 gui-libs/libdecor/libdecor-0.2.2.ebuild | 47 ---------------------------------
 gui-libs/libdecor/libdecor-9999.ebuild  | 47 ---------------------------------
 gui-libs/libdecor/metadata.xml          | 16 -----------
 4 files changed, 111 deletions(-)

diff --git a/gui-libs/libdecor/Manifest b/gui-libs/libdecor/Manifest
deleted file mode 100644
index cb5c2e5a09..0000000000
--- a/gui-libs/libdecor/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST libdecor-0.2.2.tar.bz2 45375 BLAKE2B 86e78ce5017b0babc627b5f9ce75b7e2cca38929e3c382828e0453329efed707e2c010fb51522b7b5077a616d54cf2f9af70d5b3d68d2b2aa1d6d36b7a834b8d SHA512 f9761a8c59dc85dd92c871f73192ab05eb56ea34e85a38b5a7222822173f9fd71b5bfb5cffe2782e8c0a6275100e32b6761143cb1469dbcc6988d046a09f1b9a

diff --git a/gui-libs/libdecor/libdecor-0.2.2.ebuild b/gui-libs/libdecor/libdecor-0.2.2.ebuild
deleted file mode 100644
index 1adc093e6b..0000000000
--- a/gui-libs/libdecor/libdecor-0.2.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2023-2024 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"
-if [[ ${PV} == "9999" ]]; then
-	EGIT_REPO_URI="https://gitlab.freedesktop.org/libdecor/libdecor.git"
-	inherit git-r3
-else
-	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64"
-fi
-LICENSE="MIT"
-SLOT="0"
-IUSE="+dbus +gtk examples"
-
-DEPEND="
-	>=dev-libs/wayland-1.18
-	>=dev-libs/wayland-protocols-1.15
-	x11-libs/pango
-	x11-libs/cairo
-	x11-libs/gtk+
-	dbus? ( sys-apps/dbus )
-	examples? (
-		virtual/opengl
-		media-libs/mesa[opengl(+)]
-		x11-libs/libxkbcommon
-	)
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-	local emesonargs=(
-		# Avoid auto-magic, built-in feature of meson
-		-Dauto_features=disabled
-		$(meson_feature gtk)
-		$(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
deleted file mode 100644
index 1adc093e6b..0000000000
--- a/gui-libs/libdecor/libdecor-9999.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2023-2024 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"
-if [[ ${PV} == "9999" ]]; then
-	EGIT_REPO_URI="https://gitlab.freedesktop.org/libdecor/libdecor.git"
-	inherit git-r3
-else
-	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64"
-fi
-LICENSE="MIT"
-SLOT="0"
-IUSE="+dbus +gtk examples"
-
-DEPEND="
-	>=dev-libs/wayland-1.18
-	>=dev-libs/wayland-protocols-1.15
-	x11-libs/pango
-	x11-libs/cairo
-	x11-libs/gtk+
-	dbus? ( sys-apps/dbus )
-	examples? (
-		virtual/opengl
-		media-libs/mesa[opengl(+)]
-		x11-libs/libxkbcommon
-	)
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-	local emesonargs=(
-		# Avoid auto-magic, built-in feature of meson
-		-Dauto_features=disabled
-		$(meson_feature gtk)
-		$(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
deleted file mode 100644
index b6c1fcacb0..0000000000
--- a/gui-libs/libdecor/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<use>
-		<flag name="dbus">Enable dbus to query current cursor theme </flag>
-		<flag name="gtk">Build GTK plugin</flag>
-		<flag name="examples">Build and install examples</flag>
-	</use>
-	<maintainer type="person">
-		<email>gonegrier.duarte@gmail.com</email>
-		<name>Gonçalo Negrier Duarte</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="freedesktop-gitlab">libdecor/libdecor</remote-id>
-	</upstream>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-libs/libdecor/
@ 2024-04-04 10:09 Florian Schmaus
  0 siblings, 0 replies; 7+ messages in thread
From: Florian Schmaus @ 2024-04-04 10:09 UTC (permalink / raw
  To: gentoo-commits

commit:     5c768a1dea6b69284dfc0f5fb540070f633196fd
Author:     Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail <DOT> com>
AuthorDate: Wed Apr  3 20:44:28 2024 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Wed Apr  3 20:45:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5c768a1d

gui-libs/libdecor: update maintainers

Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail.com>

 gui-libs/libdecor/metadata.xml | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/gui-libs/libdecor/metadata.xml b/gui-libs/libdecor/metadata.xml
index 954491ca9b..64bfaa7369 100644
--- a/gui-libs/libdecor/metadata.xml
+++ b/gui-libs/libdecor/metadata.xml
@@ -6,14 +6,6 @@
 		<flag name="gtk">Build GTK plugin</flag>
 		<flag name="examples">Build and install examples</flag>
 	</use>
-	<maintainer type="person">
-		<email>chewi@gentoo.org</email>
-		<name>James Le Cuirot</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Gentoo Proxy Maintainers</name>
-	</maintainer>
 	<maintainer type="person">
 		<email>gonegrier.duarte@gmail.com</email>
 		<name>Gonçalo Negrier Duarte</name>


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-libs/libdecor/
@ 2024-04-03 20:20 Julien Roy
  0 siblings, 0 replies; 7+ messages in thread
From: Julien Roy @ 2024-04-03 20:20 UTC (permalink / raw
  To: gentoo-commits

commit:     111df125781f2206940359a27f26358e1a887dcd
Author:     Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail <DOT> com>
AuthorDate: Wed Apr  3 14:20:44 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed Apr  3 14:21:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=111df125

gui-libs/libdecor: add missing gtk useflag
* improve ebuild

Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail.com>

 gui-libs/libdecor/libdecor-0.2.2.ebuild | 20 +++++++++++++-------
 gui-libs/libdecor/libdecor-9999.ebuild  | 21 ++++++++++++++-------
 gui-libs/libdecor/metadata.xml          | 13 +++++++++++--
 3 files changed, 38 insertions(+), 16 deletions(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2.ebuild b/gui-libs/libdecor/libdecor-0.2.2.ebuild
index 7a320ed516..1adc093e6b 100644
--- a/gui-libs/libdecor/libdecor-0.2.2.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -7,21 +7,27 @@ 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"
-
+if [[ ${PV} == "9999" ]]; then
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/libdecor/libdecor.git"
+	inherit git-r3
+else
+	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
+	KEYWORDS="~amd64"
+fi
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+dbus examples"
+IUSE="+dbus +gtk examples"
 
 DEPEND="
 	>=dev-libs/wayland-1.18
 	>=dev-libs/wayland-protocols-1.15
 	x11-libs/pango
+	x11-libs/cairo
+	x11-libs/gtk+
 	dbus? ( sys-apps/dbus )
 	examples? (
 		virtual/opengl
-		media-libs/mesa[egl(+)]
+		media-libs/mesa[opengl(+)]
 		x11-libs/libxkbcommon
 	)
 "
@@ -31,7 +37,7 @@ src_configure() {
 	local emesonargs=(
 		# Avoid auto-magic, built-in feature of meson
 		-Dauto_features=disabled
-
+		$(meson_feature gtk)
 		$(meson_feature dbus)
 		$(meson_use examples demo)
 		-Dinstall_demo=true

diff --git a/gui-libs/libdecor/libdecor-9999.ebuild b/gui-libs/libdecor/libdecor-9999.ebuild
index bbcd2b2e3d..1adc093e6b 100644
--- a/gui-libs/libdecor/libdecor-9999.ebuild
+++ b/gui-libs/libdecor/libdecor-9999.ebuild
@@ -1,26 +1,33 @@
-# Copyright 2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit meson git-r3
+inherit meson
 
 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"
-
+if [[ ${PV} == "9999" ]]; then
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/libdecor/libdecor.git"
+	inherit git-r3
+else
+	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
+	KEYWORDS="~amd64"
+fi
 LICENSE="MIT"
 SLOT="0"
-IUSE="+dbus examples"
+IUSE="+dbus +gtk examples"
 
 DEPEND="
 	>=dev-libs/wayland-1.18
 	>=dev-libs/wayland-protocols-1.15
 	x11-libs/pango
+	x11-libs/cairo
+	x11-libs/gtk+
 	dbus? ( sys-apps/dbus )
 	examples? (
 		virtual/opengl
-		media-libs/mesa[egl(+)]
+		media-libs/mesa[opengl(+)]
 		x11-libs/libxkbcommon
 	)
 "
@@ -30,7 +37,7 @@ src_configure() {
 	local emesonargs=(
 		# Avoid auto-magic, built-in feature of meson
 		-Dauto_features=disabled
-
+		$(meson_feature gtk)
 		$(meson_feature dbus)
 		$(meson_use examples demo)
 		-Dinstall_demo=true

diff --git a/gui-libs/libdecor/metadata.xml b/gui-libs/libdecor/metadata.xml
index 67df2efa9f..954491ca9b 100644
--- a/gui-libs/libdecor/metadata.xml
+++ b/gui-libs/libdecor/metadata.xml
@@ -2,9 +2,18 @@
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<use>
-		<flag name="dbus">Enable dbus to query current cursor theme </flag>
+    <flag name="dbus">Enable dbus to query current cursor theme </flag>
+		<flag name="gtk">Build GTK plugin</flag>
 		<flag name="examples">Build and install examples</flag>
 	</use>
+	<maintainer type="person">
+		<email>chewi@gentoo.org</email>
+		<name>James Le Cuirot</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Gentoo Proxy Maintainers</name>
+	</maintainer>
 	<maintainer type="person">
 		<email>gonegrier.duarte@gmail.com</email>
 		<name>Gonçalo Negrier Duarte</name>
@@ -12,4 +21,4 @@
 	<upstream>
 		<remote-id type="freedesktop-gitlab">libdecor/libdecor</remote-id>
 	</upstream>
-</pkgmetadata>
\ No newline at end of file
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-libs/libdecor/
@ 2024-04-02 22:48 Julien Roy
  0 siblings, 0 replies; 7+ messages in thread
From: Julien Roy @ 2024-04-02 22:48 UTC (permalink / raw
  To: gentoo-commits

commit:     a31294cb3bfbe96f8238a3b0c278fa551c0cfe09
Author:     Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail <DOT> com>
AuthorDate: Tue Apr  2 18:59:38 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue Apr  2 19:00:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a31294cb

gui-libs/libdecor: add 0.2.2, drop 0.1.1

Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail.com>

 gui-libs/libdecor/Manifest                                         | 2 +-
 gui-libs/libdecor/{libdecor-0.1.1.ebuild => libdecor-0.2.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/Manifest b/gui-libs/libdecor/Manifest
index c0eb0f8534..cb5c2e5a09 100644
--- a/gui-libs/libdecor/Manifest
+++ b/gui-libs/libdecor/Manifest
@@ -1 +1 @@
-DIST libdecor-0.1.1.tar.bz2 37286 BLAKE2B 32a0ef9711fc0b830f2b2997a05e2ac8ce60ef6f972d8a4c17cebe987b49828c81f3888e42dde0627ce71dbc825ddfd336be3f591ca1f76168c3efd13c2e24ae SHA512 3a5a293a58d40a1d5377912c90ede7670caffbb6b4539ffb00f33667fd84ecaf8a90e05100ddc22c4af34482aac8d2deb67ba25ddbede67e7952b1054e359409
+DIST libdecor-0.2.2.tar.bz2 45375 BLAKE2B 86e78ce5017b0babc627b5f9ce75b7e2cca38929e3c382828e0453329efed707e2c010fb51522b7b5077a616d54cf2f9af70d5b3d68d2b2aa1d6d36b7a834b8d SHA512 f9761a8c59dc85dd92c871f73192ab05eb56ea34e85a38b5a7222822173f9fd71b5bfb5cffe2782e8c0a6275100e32b6761143cb1469dbcc6988d046a09f1b9a

diff --git a/gui-libs/libdecor/libdecor-0.1.1.ebuild b/gui-libs/libdecor/libdecor-0.2.2.ebuild
similarity index 100%
rename from gui-libs/libdecor/libdecor-0.1.1.ebuild
rename to gui-libs/libdecor/libdecor-0.2.2.ebuild


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-libs/libdecor/
@ 2023-07-27 12:04 David Roman
  0 siblings, 0 replies; 7+ messages in thread
From: David Roman @ 2023-07-27 12:04 UTC (permalink / raw
  To: gentoo-commits

commit:     ef0dfd79ec90c892e64949d32308754de7d46d10
Author:     Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail <DOT> com>
AuthorDate: Wed Jul 26 11:31:03 2023 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Jul 26 13:03:00 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ef0dfd79

gui-libs/libdecor: add myself as a maintainer

Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail.com>

 gui-libs/libdecor/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gui-libs/libdecor/metadata.xml b/gui-libs/libdecor/metadata.xml
index fce1053054..67df2efa9f 100644
--- a/gui-libs/libdecor/metadata.xml
+++ b/gui-libs/libdecor/metadata.xml
@@ -5,6 +5,10 @@
 		<flag name="dbus">Enable dbus to query current cursor theme </flag>
 		<flag name="examples">Build and install examples</flag>
 	</use>
+	<maintainer type="person">
+		<email>gonegrier.duarte@gmail.com</email>
+		<name>Gonçalo Negrier Duarte</name>
+	</maintainer>
 	<upstream>
 		<remote-id type="freedesktop-gitlab">libdecor/libdecor</remote-id>
 	</upstream>


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: gui-libs/libdecor/
@ 2023-07-16  6:18 Haelwenn Monnier
  0 siblings, 0 replies; 7+ messages in thread
From: Haelwenn Monnier @ 2023-07-16  6:18 UTC (permalink / raw
  To: gentoo-commits

commit:     174629c695641891c65572c4de5c35864702a366
Author:     Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail <DOT> com>
AuthorDate: Fri Jul 14 14:22:39 2023 +0000
Commit:     Haelwenn Monnier <contact <AT> hacktivis <DOT> 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 <gonegrier.duarte <AT> 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<use>
+		<flag name="dbus">Enable dbus to query current cursor theme </flag>
+		<flag name="examples">Build and install examples</flag>
+	</use>
+	<upstream>
+		<remote-id type="freedesktop-gitlab">libdecor/libdecor</remote-id>
+	</upstream>
+</pkgmetadata>
\ No newline at end of file


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-04-11 11:11 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-04 10:09 [gentoo-commits] repo/proj/guru:master commit in: gui-libs/libdecor/ Florian Schmaus
  -- strict thread matches above, loose matches on Subject: below --
2024-04-11 11:11 Julien Roy
2024-04-04 10:09 Florian Schmaus
2024-04-03 20:20 Julien Roy
2024-04-02 22:48 Julien Roy
2023-07-27 12:04 David Roman
2023-07-16  6:18 Haelwenn Monnier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox