forked from nandhp/multiload-nandhp
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
91 additions
and
0 deletions.
There are no files selected for viewing
91 changes: 91 additions & 0 deletions
91
extras/portage/x11-plugins/multiload-ng/multiload-ng-1.5.2.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
inherit autotools eutils | ||
|
||
DESCRIPTION="Modern graphical system monitor for any panel" | ||
HOMEPAGE="https://github.com/udda/multiload-ng" | ||
|
||
SRC_URI="https://github.com/udda/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
KEYWORDS="amd64 x86" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
IUSE="-debug +autostart -experimental gtk2 +gtk3 -awn +indicator +lxde +mate +standalone +systray +xfce4" | ||
|
||
LANGS="de es fr it lt ru zh_CN" | ||
for lang in ${LANGS} ; do IUSE+=" linguas_${lang}"; done | ||
|
||
RDEPEND=" | ||
gtk2? ( >=x11-libs/gtk+-2.20:2 ) | ||
gtk3? ( x11-libs/gtk+:3 ) | ||
x11-libs/cairo:= | ||
awn? ( | ||
>=gnome-extra/avant-window-navigator-0.3.9 | ||
>=dev-cpp/glibmm-2.16.0:2 | ||
>=dev-cpp/gtkmm-2.20:2.4 | ||
) | ||
indicator? ( | ||
gtk2? ( >=dev-libs/libappindicator-0.4.92:2 ) | ||
gtk3? ( >=dev-libs/libappindicator-0.4.92:3 ) | ||
) | ||
lxde? ( | ||
>=lxde-base/lxpanel-0.5.8 | ||
) | ||
mate? ( | ||
gtk2? ( >=mate-base/mate-panel-1.7.0 ) | ||
gtk3? ( >=mate-base/mate-panel-1.7.0[gtk3(-)] ) | ||
) | ||
xfce4? ( | ||
gtk2? ( | ||
>=xfce-base/libxfce4util-4.6.0 | ||
>=xfce-base/xfce4-panel-4.6.0 | ||
) | ||
gtk3? ( | ||
>=xfce-base/libxfce4util-4.12.0 | ||
>=xfce-base/xfce4-panel-4.12.0 | ||
) | ||
)" | ||
|
||
DEPEND="${RDEPEND} | ||
dev-util/intltool | ||
sys-devel/gettext | ||
virtual/pkgconfig" | ||
|
||
DOCS="AUTHORS README.md" | ||
|
||
REQUIRED_USE=" | ||
^^ ( gtk2 gtk3 ) | ||
|| ( awn indicator lxde mate standalone systray xfce4 ) | ||
awn? ( gtk2 experimental )" | ||
|
||
src_prepare() { | ||
eautoreconf | ||
eapply_user | ||
} | ||
|
||
src_configure() { | ||
if use gtk2; then | ||
GTK_CONF="--with-gtk=2.0" | ||
else | ||
GTK_CONF="--with-gtk=3.0 --disable-deprecations" | ||
fi | ||
econf \ | ||
$(use_enable experimental) \ | ||
$(use_enable debug) \ | ||
$(use_enable autostart) \ | ||
$GTK_CONF \ | ||
$(use_with standalone) \ | ||
$(use_with awn) \ | ||
$(use_with indicator) \ | ||
$(use_with lxde lxpanel) \ | ||
$(use_with mate) \ | ||
$(use_with systray) \ | ||
$(use_with xfce4) | ||
|
||
if use experimental; then | ||
elog "You are enabling experimental code. Please note that this can be really unstable." | ||
fi | ||
} |