summaryrefslogtreecommitdiff
path: root/lxde-base
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-09-12 06:52:34 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-09-12 06:52:34 +0000
commit29d16742fb77e300dfeadf7b6f3472bb4fa072c2 (patch)
tree7545614c3c25651a777f56b8deabf1300ad1db30 /lxde-base
parenta05bbd84ec1b8b0e28a98cf2b924dd9c3180ad4d (diff)
downloadbaldeagleos-repo-29d16742fb77e300dfeadf7b6f3472bb4fa072c2.tar.gz
baldeagleos-repo-29d16742fb77e300dfeadf7b6f3472bb4fa072c2.tar.xz
baldeagleos-repo-29d16742fb77e300dfeadf7b6f3472bb4fa072c2.zip
Adding metadata
Diffstat (limited to 'lxde-base')
-rw-r--r--lxde-base/lxpanel/lxpanel-0.10.1.ebuild71
-rw-r--r--lxde-base/lxsession/lxsession-0.5.5.ebuild61
-rw-r--r--lxde-base/lxterminal/Manifest1
-rw-r--r--lxde-base/lxterminal/lxterminal-0.4.0.ebuild43
4 files changed, 0 insertions, 176 deletions
diff --git a/lxde-base/lxpanel/lxpanel-0.10.1.ebuild b/lxde-base/lxpanel/lxpanel-0.10.1.ebuild
deleted file mode 100644
index 3e6b44717597..000000000000
--- a/lxde-base/lxpanel/lxpanel-0.10.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit readme.gentoo-r1 xdg
-
-DESCRIPTION="Lightweight X11 desktop panel for LXDE"
-HOMEPAGE="https://wiki.lxde.org/en/LXPanel"
-SRC_URI="https://downloads.sourceforge.net/lxde/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux"
-IUSE="+alsa wifi"
-
-RDEPEND="
- dev-libs/keybinder:3
- lxde-base/lxmenu-data
- >=lxde-base/menu-cache-1.1.0-r1
- x11-libs/cairo
- x11-libs/gdk-pixbuf
- x11-libs/gtk+:3
- >=x11-libs/libfm-1.3.2[gtk]
- x11-libs/libwnck:3
- x11-libs/libX11
- x11-libs/libXmu
- x11-libs/libXpm
- alsa? ( media-libs/alsa-lib )
- wifi? ( net-wireless/wireless-tools )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- sys-devel/gettext
- virtual/pkgconfig
- dev-util/intltool
-"
-
-DOC_CONTENTS="If you have problems with broken icons shown in the main panel,
-you will have to configure panel settings via its menu.
-This will not be an issue with first time installations."
-
-PATCHES=(
- # https://sourceforge.net/p/lxde/bugs/773/
- "${FILESDIR}/${P}-fix-pager-panel-width.patch"
-)
-
-src_configure() {
- local plugins="netstatus,volume,cpu,deskno,batt,kbled,xkb,thermal,cpufreq,monitors"
-
- use wifi && plugins+=",netstat"
- use alsa && plugins+=",volumealsa"
-
- econf \
- $(use_enable alsa) \
- --enable-gtk3 \
- --with-x \
- --with-plugins="${plugins}"
- # the gtk+ dep already pulls in libX11, so we might as well hardcode with-x
-}
-
-src_install() {
- default
- find "${ED}" -name '*.la' -delete || die
-
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
diff --git a/lxde-base/lxsession/lxsession-0.5.5.ebuild b/lxde-base/lxsession/lxsession-0.5.5.ebuild
deleted file mode 100644
index 943dbf23c0da..000000000000
--- a/lxde-base/lxsession/lxsession-0.5.5.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vala autotools
-
-DESCRIPTION="LXDE session manager"
-HOMEPAGE="https://wiki.lxde.org/en/LXSession"
-SRC_URI="https://downloads.sourceforge.net/lxde/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~riscv ~x86 ~x86-linux"
-IUSE="nls upower"
-
-COMMON_DEPEND="
- dev-libs/dbus-glib
- dev-libs/glib:2
- >=lxde-base/lxde-common-0.99.2-r1
- sys-apps/dbus
- sys-auth/polkit
- x11-libs/cairo
- x11-libs/gdk-pixbuf:2
- x11-libs/gtk+:3
- x11-libs/libX11
-"
-RDEPEND="${COMMON_DEPEND}
- !lxde-base/lxsession-edit
- sys-apps/lsb-release
- upower? ( sys-power/upower )
-"
-DEPEND="${COMMON_DEPEND}
- x11-base/xorg-proto
-"
-BDEPEND="
- $(vala_depend)
- dev-util/intltool
- sys-devel/gettext
- virtual/pkgconfig
-"
-
-PATCHES=(
- # Fedora patches
- "${FILESDIR}"/${PN}-0.5.2-reload.patch
- "${FILESDIR}"/${PN}-0.5.2-notify-daemon-default.patch
-)
-
-src_prepare() {
- rm *.stamp || die
- vala_src_prepare
- default
- eautoreconf
-}
-
-src_configure() {
- # dbus is used for restart/shutdown (logind), and suspend/hibernate (UPower)
- econf \
- $(use_enable nls) \
- --enable-gtk3
-}
diff --git a/lxde-base/lxterminal/Manifest b/lxde-base/lxterminal/Manifest
index abb7216fdee3..54dd6f9bb61c 100644
--- a/lxde-base/lxterminal/Manifest
+++ b/lxde-base/lxterminal/Manifest
@@ -1,2 +1 @@
-DIST lxterminal-0.4.0.tar.xz 201856 BLAKE2B 2fe72007e36c5324b868b9dfc54b04422f85f93f71265126f65eb0b6e0510e60eefb0a2a53acadee6f2c44adcd3c498117b709c9eaa1eb2241dd9016558b9e5c SHA512 d1462bf9739c5e9022cbabe9f9c8f70bbb882c0aba7a39d1f87d804f4002056151165d7555cace6f439c0acfbdcd3c959a420993379f646d066f5d30af71232e
DIST lxterminal-0.4.0_p20230917.tar.gz 163085 BLAKE2B c26051fdf814da3989d74a14ad726b72e45afb1189c01ac6f3897daecc2473c3cfe1574976ab96bfe08ce7e2b84652471b6e839a17dd0c44932244c5936bd8c1 SHA512 4d00e979add7c2322703d0761707d9a935bb839ffcc981a61c51f28cb37466768c373dc03b9d8ae159e0e919d824c7d7f20bb9b2abda465092016c3692449c9d
diff --git a/lxde-base/lxterminal/lxterminal-0.4.0.ebuild b/lxde-base/lxterminal/lxterminal-0.4.0.ebuild
deleted file mode 100644
index 36187dbcb679..000000000000
--- a/lxde-base/lxterminal/lxterminal-0.4.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools xdg
-
-DESCRIPTION="Lightweight vte-based tabbed terminal emulator for LXDE"
-HOMEPAGE="https://wiki.lxde.org/en/LXTerminal"
-SRC_URI="https://downloads.sourceforge.net/lxde/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND="
- dev-libs/glib:2
- x11-libs/gdk-pixbuf:2
- x11-libs/gtk+:3
- x11-libs/libX11
- x11-libs/pango
- x11-libs/vte:2.91
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
- >=dev-util/intltool-0.40.0
- sys-devel/gettext
- virtual/pkgconfig
-"
-
-src_prepare() {
- xdg_src_prepare
-
- # Avoid maintainer mode, bug #818211
- rm aclocal.m4 || die
-
- eautoreconf
-}
-
-src_configure() {
- econf --enable-man --enable-gtk3
-}