Fix build of Looper
This commit is contained in:
parent
1dc7ec0e70
commit
67e7231058
4 changed files with 8105 additions and 1 deletions
27
lxqt-base/lxqt-wayland-session/files/default-wayfire.patch
Normal file
27
lxqt-base/lxqt-wayland-session/files/default-wayfire.patch
Normal file
|
@ -0,0 +1,27 @@
|
|||
diff --git a/startlxqtwayland.in b/startlxqtwayland.in
|
||||
index c2e14d5..6fe60d0 100644
|
||||
--- a/startlxqtwayland.in
|
||||
+++ b/startlxqtwayland.in
|
||||
@@ -83,18 +83,10 @@ valid_layouts=$(grep -A98 '! layout' /usr/share/X11/xkb/rules/base.lst | awk '{p
|
||||
trylayout=$(echo $LANG | cut -c 1,2)
|
||||
|
||||
if [ -z "$COMPOSITOR" ]; then
|
||||
- echo "No compositor configured yet in Session Settings, trying labwc..."
|
||||
- COMPOSITOR=labwc
|
||||
- export XDG_CURRENT_DESKTOP="LXQt:wlroots"
|
||||
-
|
||||
- # enable cursor on VM (systemd only)
|
||||
- if type systemd-detect-virt > /dev/null 2>&1 && systemd-detect-virt --quiet; then
|
||||
- export WLR_NO_HARDWARE_CURSORS=1
|
||||
- echo "Running on virtualized hardware"
|
||||
- fi
|
||||
- exec $COMPOSITOR -C "$share_dir"/lxqt/wayland/firstrun -S lxqt-config-session
|
||||
-
|
||||
-elif [ "$COMPOSITOR" = "labwc" ]; then
|
||||
+ echo "No compositor configured yet in Session Settings, trying wayfire..."
|
||||
+ export COMPOSITOR=wayfire
|
||||
+fi
|
||||
+if [ "$COMPOSITOR" = "labwc" ]; then
|
||||
# Copy default configuration if not existing and set keyboard layout if different from us
|
||||
if [ ! -d "$XDG_CONFIG_HOME/labwc" ]; then
|
||||
cp -av "$share_dir"/lxqt/wayland/labwc "$XDG_CONFIG_HOME"/ # use default location here
|
|
@ -0,0 +1,24 @@
|
|||
# Copyright 2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit git-r3 cmake
|
||||
|
||||
DESCRIPTION="LXQt wayland session"
|
||||
HOMEPAGE="https://github.com/lxqt/lxqt-wayland-session"
|
||||
EGIT_REPO_URI="https://github.com/lxqt/lxqt-wayland-session.git"
|
||||
#SRC_URI=""
|
||||
|
||||
IUSE="compositor"
|
||||
|
||||
LICENSE="GPL3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
PATCHES=(
|
||||
"default-wayfire.patch"
|
||||
)
|
||||
|
||||
DEPEND="lxqt-base/lxqt-session app-misc/qtxdg-tools kde-plasma/layer-shell-qt compositor? ( gui-wm/wayfire )"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="dev-util/lxqt-build-tools"
|
8052
media-sound/looper/files/vgmstream.patch
Normal file
8052
media-sound/looper/files/vgmstream.patch
Normal file
File diff suppressed because it is too large
Load diff
|
@ -32,6 +32,7 @@ HOMEPAGE="https://complecwaft.com/catmeow/looper/"
|
|||
# Portage.
|
||||
EGIT_REPO_URI="https://complecwaft.com/catmeow/looper.git"
|
||||
EGIT_SUBMODULES=(subprojects/vgmstream subprojects/SDL-Mixer-X backends/ui/imgui/imgui backends/imgui/IconFontsCppHeaders subprojects/jsoncpp subprojects/soundtouch subprojects/protobuf-c)
|
||||
PATCHES=( ${FILESDIR}/vgmstream.patch )
|
||||
# Source directory; the dir where the sources can be found (automatically
|
||||
# unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P}
|
||||
# If you don't need to change it, leave the S= line out of the ebuild
|
||||
|
@ -107,7 +108,7 @@ BDEPEND="virtual/pkgconfig"
|
|||
# The following src_configure function is implemented as default by portage, so
|
||||
# you only need to call it if you need a different behaviour.
|
||||
src_configure() {
|
||||
declare -a mycmakeargs=( -DDISABLE_GTK_UI=ON -DBUILD_SOUNDTOUCH=ON -DBUILD_SHARED_LIBS=OFF -DSOUNDSTRETCH=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo )
|
||||
declare -a mycmakeargs=( -DDISABLE_GTK_UI=ON -DBUILD_SOUNDTOUCH=ON -DBUILD_SHARED_LIBS=OFF -DSOUNDSTRETCH=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -DUSE_VORBIS=OFF -DUSE_CELT=OFF -DUSE_ATRAC9=OFF -DUSE_G719=OFF )
|
||||
# Most open-source packages use GNU autoconf for configuration.
|
||||
cmake_src_configure
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue