gui-wm/wayfire: New packages for wayfire and its dependency ebuilds

gui-apps:
  wcm: new package, gui configuration manager for wayfire using wf-config
  wf-config: new package, cli configuration manager for wayfire
  wf-shell: new package, basic desktop environment for wayfire

gui-wm:
  wayfire: new package, compiz like window manager for wayland

gui-libs:
  gtk-layer-shell: new package, library for creating DE windows

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
This commit is contained in:
Aisha Tammy
2020-03-22 12:55:41 -04:00
parent 1936684614
commit 0c5023b87b
20 changed files with 608 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST wf-shell-0.4.0.tar.gz 8948473 BLAKE2B 3ac0d6a31ea830bcc69f930c2c49fdb54f5dc167b9913866d99414e0de411bee294e86c3beece215406c95986cb0e5a9c2e4861b8caa0c11b07fdea227596d56 SHA512 76753287f81ea67a9c8983ac25c2e5e2b8fe836549e98496c4cbd41b67e712284bb5018a7a566b81ec52578074f56c73d3f98c2c89419feb5aafdb4da1be6cd6

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gentoo@aisha.cc</email>
<name>Aisha Tammy</name>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,47 @@
# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson
DESCRIPTION="A compiz like 3D wayland compositor"
HOMEPAGE="https://github.com/WayfireWM/wf-shell"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
KEYWORDS=""
else
SRC_URI="https://github.com/WayfireWM/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
IUSE="pulseaudio"
DEPEND="
~gui-apps/wf-config-${PV}
dev-cpp/gtkmm:3.0=[wayland]
dev-libs/gobject-introspection
pulseaudio? ( media-sound/pulseaudio )
~gui-wm/wayfire-${PV}
>=gui-libs/gtk-layer-shell-0.1
"
RDEPEND="
${DEPEND}
"
BDEPEND="
virtual/pkgconfig
dev-libs/wayland-protocols
"
src_configure () {
local emesonargs=(
"-Dpulse=$(usex pulseaudio enabled disabled)"
)
meson_src_configure
}

View File

@@ -0,0 +1,47 @@
# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson
DESCRIPTION="A compiz like 3D wayland compositor"
HOMEPAGE="https://github.com/WayfireWM/wf-shell"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
KEYWORDS=""
else
SRC_URI="https://github.com/WayfireWM/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
IUSE="pulseaudio"
DEPEND="
~gui-apps/wf-config-${PV}
dev-cpp/gtkmm:3.0=[wayland]
dev-libs/gobject-introspection
pulseaudio? ( media-sound/pulseaudio )
~gui-wm/wayfire-${PV}
>=gui-libs/gtk-layer-shell-0.1
"
RDEPEND="
${DEPEND}
"
BDEPEND="
virtual/pkgconfig
dev-libs/wayland-protocols
"
src_configure () {
local emesonargs=(
"-Dpulse=$(usex pulseaudio enabled disabled)"
)
meson_src_configure
}