commit:     0e00824f2d410836611edf28ae7c73557b391218
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  8 14:31:13 2024 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Mon Jan  8 14:31:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e00824f

x11-wm/lumina: DEPEND on x11-libs/libXdamage

Closes: https://bugs.gentoo.org/show_bug.cgi?id=921602
Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>

 x11-wm/lumina/lumina-1.6.2-r1.ebuild | 87 ++++++++++++++++++++++++++++++++++++
 1 file changed, 87 insertions(+)

diff --git a/x11-wm/lumina/lumina-1.6.2-r1.ebuild 
b/x11-wm/lumina/lumina-1.6.2-r1.ebuild
new file mode 100644
index 000000000000..872926704b7a
--- /dev/null
+++ b/x11-wm/lumina/lumina-1.6.2-r1.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PLOCALES="af ar az bg bn bs ca cs cy da de el en_AU en_GB en_ZA es et eu fa fi 
fr fr_CA fur gl he hi hr hu id is it ja ka ko lt lv mk mn ms mt nb ne nl pa pl 
pt pt_BR ro ru sa sk sl sr sv sw ta tg th tr uk ur uz vi zh_CN zh_HK zh_TW zu"
+inherit plocale qmake-utils xdg
+
+DESCRIPTION="Lumina desktop environment"
+HOMEPAGE="https://lumina-desktop.org/";
+SRC_URI="https://github.com/trueos/${PN}/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="desktop-utils"
+
+DEPEND="
+       dev-qt/qtconcurrent:5
+       dev-qt/qtcore:5
+       dev-qt/qtdbus:5
+       dev-qt/qtdeclarative:5
+       dev-qt/qtgui:5
+       dev-qt/qtmultimedia:5[widgets]
+       dev-qt/qtnetwork:5[ssl]
+       dev-qt/qtprintsupport:5
+       dev-qt/qtsvg:5
+       dev-qt/qtwidgets:5
+       dev-qt/qtx11extras:5
+       x11-libs/libxcb
+       x11-libs/libXdamage
+       x11-libs/xcb-util
+       x11-libs/xcb-util-image
+       x11-libs/xcb-util-wm
+       desktop-utils? ( app-text/poppler[qt5] )"
+
+RDEPEND="${DEPEND}
+       app-admin/sysstat
+       media-sound/alsa-utils
+       sys-fs/inotify-tools
+       sys-power/acpi
+       || (
+               x11-apps/xbacklight
+               sys-power/acpilight
+       )
+       x11-misc/numlockx
+       x11-wm/fluxbox"
+
+BDEPEND="
+       dev-qt/linguist-tools:5"
+
+S="${WORKDIR}/${P/_/-}"
+
+PATCHES=(
+       "${FILESDIR}/1.6.1-desktop-files.patch"
+)
+
+DOCS=( README.md )
+
+src_prepare() {
+       default
+
+       if ! use desktop-utils ; then
+               rm -rf src-qt5/desktop-utils || die
+               sed -e "/desktop-utils/d" -i src-qt5/src-qt5.pro || die
+       fi
+
+       plocale_find_changes "${S}/src-qt5/core/${PN}-desktop/i18n" 
"${PN}-desktop_" '.ts'
+}
+
+src_configure() {
+       eqmake5 PREFIX="${EPREFIX}/usr" 
LIBPREFIX="${EPREFIX}/usr/$(get_libdir)" \
+               CONFIG+=WITH_I18N QMAKE_CFLAGS_ISYSTEM=
+}
+
+src_install() {
+       emake install INSTALL_ROOT="${D}"
+       einstalldocs
+       exeinto /etc/X11/Sessions
+       newexe "${FILESDIR}/lumina-session" lumina ||die
+
+       remove_locale() {
+               rm -f "${ED}"/usr/share/${PN}-desktop/i18n/l*_${1}.qm
+
+       }
+       plocale_for_each_disabled_locale remove_locale
+}

Reply via email to