2020-10-26 03:36:17 -05:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
2020-10-26 03:43:19 -05:00
|
|
|
DESCRIPTION="A workspace switcher plugin for xfce4-panel which can be used for the i3wm."
|
2020-10-26 03:36:17 -05:00
|
|
|
|
|
|
|
HOMEPAGE="https://github.com/denesb/xfce4-i3-workspaces-plugin"
|
|
|
|
|
|
|
|
SRC_URI="https://github.com/denesb/xfce4-i3-workspaces-plugin/archive/1.3.2.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
>=dev-libs/glib-2.0.0
|
2020-10-26 04:03:23 -05:00
|
|
|
>=x11-libs/gtk+-2.0.0
|
2021-02-20 20:19:08 -06:00
|
|
|
=xfce-base/libxfce4ui-4.8.0
|
2020-10-26 04:03:23 -05:00
|
|
|
>=xfce-base/libxfce4util-4.8.0
|
|
|
|
>=xfce-base/xfce4-panel-4.8.0
|
|
|
|
>=x11-misc/i3ipc-glib-1.0.1
|
2020-10-26 03:36:17 -05:00
|
|
|
"
|
|
|
|
|
|
|
|
BDEPEND="
|
|
|
|
dev-util/xfce4-dev-tools
|
2020-10-26 04:03:23 -05:00
|
|
|
virtual/pkgconfig
|
2020-10-26 03:36:17 -05:00
|
|
|
"
|
|
|
|
|
2020-10-26 03:51:46 -05:00
|
|
|
src_configure() {
|
2020-10-26 04:03:23 -05:00
|
|
|
./autogen.sh \
|
2020-10-26 03:51:46 -05:00
|
|
|
--host=${CHOST} \
|
2020-10-26 04:03:23 -05:00
|
|
|
--prefix=/usr \
|
|
|
|
--libdir='${prefix}/lib64' \
|
|
|
|
--infodir=/usr/share/info \
|
|
|
|
--mandir=/usr/share/man || die
|
2021-02-20 20:19:08 -06:00
|
|
|
}
|