summaryrefslogtreecommitdiff
path: root/dev-libs
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2019-02-09 15:48:03 +0100
committerKarel Kočí <cynerd@email.cz>2019-02-09 15:48:03 +0100
commit3fa07d13c512cfcc709b58ecce8ef3cd194f2c26 (patch)
tree3e5e151ed0a48f102dd24527bc0084e76e134277 /dev-libs
parent04288a6093131730c3e6f04a44b111149d47fca4 (diff)
downloadgentoo-personal-overlay-3fa07d13c512cfcc709b58ecce8ef3cd194f2c26.tar.gz
gentoo-personal-overlay-3fa07d13c512cfcc709b58ecce8ef3cd194f2c26.tar.bz2
gentoo-personal-overlay-3fa07d13c512cfcc709b58ecce8ef3cd194f2c26.zip
dev-libs/sway: drop and use upstream rc
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/sway/Manifest1
-rw-r--r--dev-libs/sway/sway-1.0-r2.ebuild49
2 files changed, 0 insertions, 50 deletions
diff --git a/dev-libs/sway/Manifest b/dev-libs/sway/Manifest
deleted file mode 100644
index 3c8b960..0000000
--- a/dev-libs/sway/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sway-1.0-b2.tar.gz 5454362 BLAKE2B 2cb7f3042a53879c962e7204917765b4a7a2e90f2a6a7eb6bbb63383e31d7526e71ad7ac4edd708c47a31f3166f70c1633719c9cddf5b751327da79b523d6780 SHA512 532acb6f1510578b7d9d222f04ff8104c836428ef215ddb6d7181839231d65101b3d47c8389a38f14cf59692116495b60759062ebd797edf83cf77aebaac379f
diff --git a/dev-libs/sway/sway-1.0-r2.ebuild b/dev-libs/sway/sway-1.0-r2.ebuild
deleted file mode 100644
index ad035f0..0000000
--- a/dev-libs/sway/sway-1.0-r2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eutils meson ninja-utils
-
-DESCRIPTION="i3-compatible Wayland window manager"
-HOMEPAGE="http://swaywm.org/"
-
-SRC_URI="https://github.com/swaywm/sway/archive/1.0-beta.2.tar.gz -> ${P}-b2.tar.gz"
-S="${WORKDIR}/sway-1.0-beta.2"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-# TODO
-IUSE="wallpapers bash-completion zsh-completion +xwayland"
-
-RDEPEND="
- >=dev-libs/wlroots-0.2
- xwayland? ( dev-libs/wlroots[x11-backend] )
- dev-libs/wayland
- x11-base/xorg-server[wayland]
- >=dev-libs/libinput-1.6.0
- sys-libs/libcap
- dev-libs/libpcre
- >=dev-libs/json-c-0.13:0=
- x11-libs/pango
- x11-libs/cairo
- x11-libs/gdk-pixbuf[jpeg]
- virtual/pam
- >=sys-apps/dbus-1.10
- "
-
-DEPEND="${RDEPEND}
- dev-util/meson
- app-text/scdoc
- virtual/pkgconfig"
-
-src_configure() {
- local emesonargs=(
- -Ddefault-wallpaper=$(usex wallpapers true false)
- -Dzsh-completions=$(usex zsh-completion true false)
- -Dbash-completions=$(usex bash-completion true false)
- -Denable-xwayland=$(usex xwayland true false)
- )
- meson_src_configure
-}