forked from ceres-sees-all/ceres-ebuilds
Add packages
This commit is contained in:
parent
d915b47bfd
commit
1bc850f4eb
10 changed files with 585 additions and 1 deletions
58
gui-apps/fuzzel/fuzzel-9999.ebuild
Normal file
58
gui-apps/fuzzel/fuzzel-9999.ebuild
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
# Copyright 2021 Aisha Tammy
|
||||
# Copyright 2021 Erik Rodriguez
|
||||
# Copyright 2022 Ryan Fox
|
||||
# Distributed under the terms of the ISC License
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit meson xdg
|
||||
|
||||
DESCRIPTION="Application launcher similar to rofi's 'drun' mode"
|
||||
HOMEPAGE="https://codeberg.org/dnkl/fuzzel"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://codeberg.org/dnkl/fuzzel.git"
|
||||
else
|
||||
SRC_URI="https://codeberg.org/dnkl/fuzzel/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}"/${PN}
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="cairo png svg"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/wayland
|
||||
media-libs/fcft
|
||||
x11-libs/libxkbcommon
|
||||
cairo? ( x11-libs/cairo )
|
||||
png? ( media-libs/libpng )
|
||||
svg? ( gnome-base/librsvg )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
dev-libs/tllist
|
||||
"
|
||||
BDEPEND="
|
||||
app-text/scdoc
|
||||
dev-libs/wayland-protocols
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local emesonargs=(
|
||||
-Dwerror=false
|
||||
-Dpng-backend=$(usex png libpng none)
|
||||
-Dsvg-backend=$(usex svg librsvg none)
|
||||
$(meson_feature cairo enable-cairo)
|
||||
)
|
||||
meson_src_configure
|
||||
}
|
||||
|
||||
src_install() {
|
||||
meson_src_install
|
||||
rm -r "${ED}/usr/share/doc/fuzzel" || die
|
||||
local -x DOCS=( LICENSE README.md CHANGELOG.md )
|
||||
einstalldocs
|
||||
}
|
||||
84
gui-apps/quickshell/quickshell-9999.ebuild
Normal file
84
gui-apps/quickshell/quickshell-9999.ebuild
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake
|
||||
|
||||
DESCRIPTION="Toolkit for building desktop widgets using QtQuick"
|
||||
HOMEPAGE="https://quickshell.org/"
|
||||
|
||||
if [[ "${PV}" = *9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/quickshell-mirror/${PN^}.git"
|
||||
else
|
||||
SRC_URI="https://github.com/quickshell-mirror/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
# Upstream recommends leaving all build options enabled by default
|
||||
IUSE="+breakpad +jemalloc +sockets +wayland +layer-shell +session-lock +toplevel-management +screencopy +X +pipewire +tray +mpris +pam +hyprland +hyprland-global-shortcuts +hyprland-focus-grab +i3 +i3-ipc +bluetooth"
|
||||
|
||||
RDEPEND="
|
||||
dev-qt/qtbase:6
|
||||
dev-qt/qtsvg:6
|
||||
jemalloc? ( dev-libs/jemalloc )
|
||||
wayland? (
|
||||
dev-libs/wayland
|
||||
dev-qt/qtwayland:6
|
||||
)
|
||||
screencopy? (
|
||||
x11-libs/libdrm
|
||||
media-libs/mesa
|
||||
)
|
||||
X? ( x11-libs/libxcb )
|
||||
pipewire? ( media-video/pipewire )
|
||||
mpris? ( dev-qt/qtdbus )
|
||||
pam? ( sys-libs/pam )
|
||||
bluetooth? ( net-wireless/bluez )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
|| ( >=sys-devel/gcc-14:* >=llvm-core/clang-17:* )
|
||||
dev-build/cmake
|
||||
dev-build/ninja
|
||||
virtual/pkgconfig
|
||||
dev-cpp/cli11
|
||||
dev-util/spirv-tools
|
||||
dev-qt/qtshadertools:6
|
||||
breakpad? ( dev-util/breakpad )
|
||||
wayland? (
|
||||
dev-util/wayland-scanner
|
||||
dev-libs/wayland-protocols
|
||||
)
|
||||
"
|
||||
|
||||
src_configure(){
|
||||
mycmakeargs=(
|
||||
-DCMAKE_BUILD_TYPE=RelWithDebInfo
|
||||
-DDISTRIBUTOR="Gentoo GURU"
|
||||
-DINSTALL_QML_PREFIX="lib64/qt6/qml"
|
||||
-DCRASH_REPORTER=$(usex breakpad ON OFF)
|
||||
-DUSE_JEMALLOC=$(usex jemalloc ON OFF)
|
||||
-DSOCKETS=$(usex sockets ON OFF)
|
||||
-DWAYLAND=$(usex wayland ON OFF)
|
||||
-DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
|
||||
-DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
|
||||
-DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
|
||||
-DSCREENCOPY=$(usex screencopy ON OFF)
|
||||
-DX11=$(usex X ON OFF)
|
||||
-DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
|
||||
-DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
|
||||
-DSERVICE_MPRIS=$(usex mpris ON OFF)
|
||||
-DSERVICE_PAM=$(usex pam ON OFF)
|
||||
-DHYPRLAND=$(usex hyprland ON OFF)
|
||||
-DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
|
||||
-DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
|
||||
-DI3=$(usex i3 ON OFF)
|
||||
-DI3_IPC=$(usex i3-ipc ON OFF)
|
||||
-DBLUETOOTH=$(usex bluetooth ON OFF)
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue