app-admin/conky: add ebuild
Package-Manager: Portage-2.3.24, Repoman-2.3.6
This commit is contained in:
parent
b568144ca9
commit
4cc98279d7
4 changed files with 259 additions and 0 deletions
4
app-admin/conky/Manifest
Normal file
4
app-admin/conky/Manifest
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
AUX conky-1.10.4-x11-build.patch 944 BLAKE2B eafeab1078e1c1c96190dce1207f49272a86fb964b153cd971d3e773ddfb8094a55b0c8e77f0d152c5cc4ec77f0863b694fca8d776208f2aae26d6366cc898ef SHA512 4ef0fb7467101befd1adbc0ae43268d69ceaa35af0185ade1f3b8ce4ebe8d8083cc6c71ddabae73bae1c5f92f5f95b0a4595dd92dd55bd9ffc4a34d10af26afa
|
||||||
|
DIST conky-1.10.4.tar.gz 365145 BLAKE2B 60f6f53ef67a9958d4dd4c3f1ab53886235927ed457ad3e98d2f6f61568a14baa7cd2afa0d3ddde9ed5e16aae17891213d906f49c308269f678adf37ea627329 SHA512 665a3c2a9b150576d7c29964dafb7030f5aa5955530142cf0d00f0f49f4a3b320924d389b3a833ef6eb18468000f5c62d918e8f067c7b40cd9e205d0bf0d8e0c
|
||||||
|
EBUILD conky-1.10.4.ebuild 4818 BLAKE2B d5be733009e6db494ed711b7213b973cd291f842f41f95ce3c3b2cd03732c14000854346cda37b593ae365f7a6a65fc3234f8666a85256bf72610cf42f926259 SHA512 82f5cb31913ee19b98faf1bdca9f388f81dbe9b3c92d5232df1a5ab52561838003651c47d1cd2966ae52bde1554f1ea3eb881ef105b407464d8a349ac747b467
|
||||||
|
MISC metadata.xml 2525 BLAKE2B 805fd872d69f00911fa599d87f2c638b1126c438fd0c8ccdda84ff5cbddecbca882b74fa1828e703c32a4035a4223606a1da75bb27cc63ac19b8dd61f5f90b42 SHA512 ccfe5718005f521aa00e7a66429493ea1301f7691acf0cca2faa5372c5f1349ba62d5046b85059f395fe51b30130a06f6867e0736b80cf4b76f9388b05fa76bb
|
||||||
184
app-admin/conky/conky-1.10.4.ebuild
Normal file
184
app-admin/conky/conky-1.10.4.ebuild
Normal file
|
|
@ -0,0 +1,184 @@
|
||||||
|
# Copyright 1999-2018 Gentoo Foundation
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=6
|
||||||
|
|
||||||
|
inherit cmake-utils linux-info readme.gentoo-r1
|
||||||
|
|
||||||
|
DESCRIPTION="An advanced, highly configurable system monitor for X"
|
||||||
|
HOMEPAGE="https://github.com/brndnmtthws/conky"
|
||||||
|
SRC_URI="https://github.com/brndnmtthws/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="GPL-3 BSD LGPL-2.1 MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
IUSE="apcupsd audacious cmus curl eve hddtemp ical iconv imlib iostats ipv6 irc
|
||||||
|
lua-cairo lua-imlib lua-rsvg math moc mpd mysql nano-syntax ncurses
|
||||||
|
nvidia +portmon pulseaudio rss systemd thinkpad truetype vim-syntax
|
||||||
|
weather-metar weather-xoap webserver wifi X xmms2"
|
||||||
|
|
||||||
|
DEPEND_COMMON="
|
||||||
|
X? (
|
||||||
|
imlib? ( media-libs/imlib2[X] )
|
||||||
|
lua-cairo? (
|
||||||
|
>=dev-lua/toluapp-1.0.93
|
||||||
|
x11-libs/cairo[X] )
|
||||||
|
lua-imlib? (
|
||||||
|
>=dev-lua/toluapp-1.0.93
|
||||||
|
media-libs/imlib2[X] )
|
||||||
|
lua-rsvg? (
|
||||||
|
>=dev-lua/toluapp-1.0.93
|
||||||
|
gnome-base/librsvg )
|
||||||
|
nvidia? ( || ( x11-drivers/nvidia-drivers[tools,static-libs] media-video/nvidia-settings ) )
|
||||||
|
truetype? ( x11-libs/libXft >=media-libs/freetype-2 )
|
||||||
|
x11-libs/libX11
|
||||||
|
x11-libs/libXdamage
|
||||||
|
x11-libs/libXinerama
|
||||||
|
x11-libs/libXfixes
|
||||||
|
x11-libs/libXext
|
||||||
|
audacious? ( >=media-sound/audacious-1.5 dev-libs/glib:2 )
|
||||||
|
xmms2? ( media-sound/xmms2 )
|
||||||
|
)
|
||||||
|
cmus? ( media-sound/cmus )
|
||||||
|
curl? ( net-misc/curl )
|
||||||
|
eve? ( net-misc/curl dev-libs/libxml2 )
|
||||||
|
ical? ( dev-libs/libical )
|
||||||
|
iconv? ( virtual/libiconv )
|
||||||
|
irc? ( net-libs/libircclient )
|
||||||
|
mysql? ( >=virtual/mysql-5.0 )
|
||||||
|
ncurses? ( sys-libs/ncurses:= )
|
||||||
|
pulseaudio? ( media-sound/pulseaudio )
|
||||||
|
rss? ( dev-libs/libxml2 net-misc/curl dev-libs/glib:2 )
|
||||||
|
systemd? ( sys-apps/systemd )
|
||||||
|
wifi? ( net-wireless/wireless-tools )
|
||||||
|
weather-metar? ( net-misc/curl )
|
||||||
|
weather-xoap? ( dev-libs/libxml2 net-misc/curl )
|
||||||
|
webserver? ( net-libs/libmicrohttpd )
|
||||||
|
>=dev-lang/lua-5.1.4-r8
|
||||||
|
"
|
||||||
|
RDEPEND="
|
||||||
|
${DEPEND_COMMON}
|
||||||
|
apcupsd? ( sys-power/apcupsd )
|
||||||
|
hddtemp? ( app-admin/hddtemp )
|
||||||
|
moc? ( media-sound/moc )
|
||||||
|
nano-syntax? ( app-editors/nano )
|
||||||
|
vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
|
||||||
|
"
|
||||||
|
DEPEND="
|
||||||
|
${DEPEND_COMMON}
|
||||||
|
app-text/docbook2X
|
||||||
|
"
|
||||||
|
|
||||||
|
CONFIG_CHECK=~IPV6
|
||||||
|
|
||||||
|
DOCS=( README.md TODO ChangeLog NEWS AUTHORS )
|
||||||
|
|
||||||
|
PATCHES=( "${FILESDIR}"/${P}-x11-build.patch )
|
||||||
|
|
||||||
|
DISABLE_AUTOFORMATTING="yes"
|
||||||
|
DOC_CONTENTS="You can find sample configurations at ${ROOT%/}/usr/share/doc/${PF}.
|
||||||
|
To customize, copy to ${XDG_CONFIG_HOME}/conky/conky.conf
|
||||||
|
and edit it to your liking.
|
||||||
|
|
||||||
|
There are pretty html docs available at the conky homepage
|
||||||
|
or in ${ROOT%/}/usr/share/doc/${PF}/html.
|
||||||
|
|
||||||
|
Also see https://wiki.gentoo.org/wiki/Conky/HOWTO"
|
||||||
|
|
||||||
|
pkg_setup() {
|
||||||
|
use ipv6 && linux-info_pkg_setup
|
||||||
|
}
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
local mycmakeargs
|
||||||
|
|
||||||
|
if use X; then
|
||||||
|
mycmakeargs=(
|
||||||
|
-DBUILD_X11=ON
|
||||||
|
-DOWN_WINDOW=ON
|
||||||
|
-DBUILD_XDAMAGE=ON
|
||||||
|
-DBUILD_XINERAMA=ON
|
||||||
|
-DBUILD_XDBE=ON
|
||||||
|
-DBUILD_XFT=$(usex truetype)
|
||||||
|
-DBUILD_IMLIB2=$(usex imlib)
|
||||||
|
-DBUILD_XSHAPE=ON
|
||||||
|
-DBUILD_ARGB=ON
|
||||||
|
-DBUILD_LUA_CAIRO=$(usex lua-cairo)
|
||||||
|
-DBUILD_LUA_IMLIB2=$(usex lua-imlib)
|
||||||
|
-DBUILD_LUA_RSVG=$(usex lua-rsvg)
|
||||||
|
-DBUILD_NVIDIA=$(usex nvidia)
|
||||||
|
-DBUILD_AUDACIOUS=$(usex audacious)
|
||||||
|
-DBUILD_XMMS2=$(usex xmms2)
|
||||||
|
)
|
||||||
|
else
|
||||||
|
mycmakeargs=(
|
||||||
|
-DBUILD_X11=OFF
|
||||||
|
-DBUILD_NVIDIA=OFF
|
||||||
|
-DBUILD_LUA_CAIRO=OFF
|
||||||
|
-DBUILD_LUA_IMLIB2=OFF
|
||||||
|
-DBUILD_LUA_RSVG=OFF
|
||||||
|
-DBUILD_AUDACIOUS=OFF
|
||||||
|
-DBUILD_XMMS2=OFF
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
|
mycmakeargs+=(
|
||||||
|
-DBUILD_APCUPSD=$(usex apcupsd)
|
||||||
|
-DBUILD_CMUS=$(usex cmus)
|
||||||
|
-DBUILD_CURL=$(usex curl)
|
||||||
|
-DBUILD_EVE=$(usex eve)
|
||||||
|
-DBUILD_HDDTEMP=$(usex hddtemp)
|
||||||
|
-DBUILD_IOSTATS=$(usex iostats)
|
||||||
|
-DBUILD_ICAL=$(usex ical)
|
||||||
|
-DBUILD_ICONV=$(usex iconv)
|
||||||
|
-DBUILD_IPV6=$(usex ipv6)
|
||||||
|
-DBUILD_IRC=$(usex irc)
|
||||||
|
-DBUILD_MATH=$(usex math)
|
||||||
|
-DBUILD_MOC=$(usex moc)
|
||||||
|
-DBUILD_MPD=$(usex mpd)
|
||||||
|
-DBUILD_MYSQL=$(usex mysql)
|
||||||
|
-DBUILD_NCURSES=$(usex ncurses)
|
||||||
|
-DBUILD_PORT_MONITORS=$(usex portmon)
|
||||||
|
-DBUILD_PULSEAUDIO=$(usex pulseaudio)
|
||||||
|
-DBUILD_RSS=$(usex rss)
|
||||||
|
-DBUILD_JOURNAL=$(usex systemd)
|
||||||
|
-DBUILD_IBM=$(usex thinkpad)
|
||||||
|
-DBUILD_WEATHER_METAR=$(usex weather-metar)
|
||||||
|
-DBUILD_WEATHER_XOAP=$(usex weather-xoap)
|
||||||
|
-DBUILD_HTTP=$(usex webserver)
|
||||||
|
-DBUILD_WLAN=$(usex wifi)
|
||||||
|
-DBUILD_BUILTIN_CONFIG=ON
|
||||||
|
-DBUILD_OLD_CONFIG=ON
|
||||||
|
-DBUILD_I18N=ON
|
||||||
|
-DMAINTAINER_MODE=OFF
|
||||||
|
-DRELEASE=ON
|
||||||
|
-DBUILD_BMPX=OFF
|
||||||
|
-DDOC_PATH=/usr/share/doc/${PF}
|
||||||
|
)
|
||||||
|
# -DMAINTAINER_MODE=OFF disables building documentation and fixes bug #486270
|
||||||
|
|
||||||
|
cmake-utils_src_configure
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
cmake-utils_src_install
|
||||||
|
|
||||||
|
if use vim-syntax; then
|
||||||
|
insinto /usr/share/vim/vimfiles/ftdetect
|
||||||
|
doins "${S}"/extras/vim/ftdetect/conkyrc.vim
|
||||||
|
|
||||||
|
insinto /usr/share/vim/vimfiles/syntax
|
||||||
|
doins "${S}"/extras/vim/syntax/conkyrc.vim
|
||||||
|
fi
|
||||||
|
|
||||||
|
if use nano-syntax; then
|
||||||
|
insinto /usr/share/nano/
|
||||||
|
doins "${S}"/extras/nano/conky.nanorc
|
||||||
|
fi
|
||||||
|
|
||||||
|
readme.gentoo_create_doc
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postinst() {
|
||||||
|
readme.gentoo_print_elog
|
||||||
|
}
|
||||||
31
app-admin/conky/files/conky-1.10.4-x11-build.patch
Normal file
31
app-admin/conky/files/conky-1.10.4-x11-build.patch
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
From 178015a9495b7d40031ed7459e4f6b6731633a7c Mon Sep 17 00:00:00 2001
|
||||||
|
From: shizeeg <shizeeque@gmail.com>
|
||||||
|
Date: Thu, 8 Sep 2016 18:24:29 +0300
|
||||||
|
Subject: [PATCH] Fix build without X11 (#317)
|
||||||
|
|
||||||
|
---
|
||||||
|
src/conky.cc | 4 ++++
|
||||||
|
1 file changed, 4 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/conky.cc b/src/conky.cc
|
||||||
|
index 0a812fc..4c5da94 100644
|
||||||
|
--- a/src/conky.cc
|
||||||
|
+++ b/src/conky.cc
|
||||||
|
@@ -1404,6 +1404,9 @@ static void draw_string(const char *s)
|
||||||
|
|
||||||
|
int draw_each_line_inner(char *s, int special_index, int last_special_applied)
|
||||||
|
{
|
||||||
|
+#ifndef BUILD_X11
|
||||||
|
+ static int cur_x, cur_y; /* current x and y for drawing */
|
||||||
|
+#endif
|
||||||
|
#ifdef BUILD_X11
|
||||||
|
int font_h = 0;
|
||||||
|
int cur_y_add = 0;
|
||||||
|
@@ -1934,6 +1937,7 @@ static void draw_text(void)
|
||||||
|
|
||||||
|
static void draw_stuff(void)
|
||||||
|
{
|
||||||
|
+ static int text_offset_x, text_offset_y; /* offset for start position */
|
||||||
|
text_offset_x = text_offset_y = 0;
|
||||||
|
#ifdef BUILD_IMLIB2
|
||||||
|
cimlib_render(text_start_x, text_start_y, window.width, window.height);
|
||||||
40
app-admin/conky/metadata.xml
Normal file
40
app-admin/conky/metadata.xml
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>billie@gentoo.org</email>
|
||||||
|
<name>Daniel Pielmeier</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<maintainer>
|
||||||
|
<email>brenden@rty.ca</email>
|
||||||
|
<name>Brenden Matthews</name>
|
||||||
|
</maintainer>
|
||||||
|
<remote-id type="sourceforge">conky</remote-id>
|
||||||
|
<remote-id type="github">brndnmtthws/conky</remote-id>
|
||||||
|
</upstream>
|
||||||
|
<longdescription>Conky is a system monitor that sits in the corner of your desktop. It is a fork of Torsmo that is actually maintained.</longdescription>
|
||||||
|
<use>
|
||||||
|
<flag name="apcupsd">Enable support for <pkg>sys-power/apcupsd</pkg></flag>
|
||||||
|
<flag name="audacious">Enable monitoring of music played by <pkg>media-sound/audacious</pkg></flag>
|
||||||
|
<flag name="cmus">Enable monitoring of music played by <pkg>media-sound/cmus</pkg></flag>
|
||||||
|
<flag name="eve">Enable support for the eve-online skill monitor</flag>
|
||||||
|
<flag name="ical">Enable support for events from iCalendar (RFC 5545) files using <pkg>dev-libs/libical</pkg></flag>
|
||||||
|
<flag name="iostats">Enable support for per-task I/O statistics</flag>
|
||||||
|
<flag name="irc">Enable support for displaying everything from an irc channel using <pkg>net-libs/libircclient</pkg></flag>
|
||||||
|
<flag name="lua-cairo">Enable if you want Lua Cairo bindings</flag>
|
||||||
|
<flag name="lua-imlib">Enable if you want Lua Imlib2 bindings</flag>
|
||||||
|
<flag name="lua-rsvg">Enable if you want Lua RSVG bindings</flag>
|
||||||
|
<flag name="math">Enable support for glibc's libm math library</flag>
|
||||||
|
<flag name="moc">Enable monitoring of music played by <pkg>media-sound/moc</pkg></flag>
|
||||||
|
<flag name="mpd">Enable monitoring of music controlled by <pkg>media-sound/mpd</pkg></flag>
|
||||||
|
<flag name="nano-syntax">Enable syntax highlighting for <pkg>app-editors/nano</pkg></flag>
|
||||||
|
<flag name="nvidia">Enable reading of nvidia card temperature sensors via <pkg>media-video/nvidia-settings</pkg></flag>
|
||||||
|
<flag name="portmon">Enable support for tcp (ip4) port monitoring</flag>
|
||||||
|
<flag name="thinkpad">Enable support for IBM/Lenovo notebooks</flag>
|
||||||
|
<flag name="weather-metar">Enable support for metar weather service</flag>
|
||||||
|
<flag name="weather-xoap">Enable support for metar and xoap weather service</flag>
|
||||||
|
<flag name="webserver">Enable support to act as a webserver serving conkys output using <pkg>net-libs/libmicrohttpd</pkg></flag>
|
||||||
|
<flag name="xmms2">Enable monitoring of music played by <pkg>media-sound/xmms2</pkg></flag>
|
||||||
|
</use>
|
||||||
|
</pkgmetadata>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue