summaryrefslogtreecommitdiff
path: root/x11-plugins/gkwebmon
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /x11-plugins/gkwebmon
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'x11-plugins/gkwebmon')
-rw-r--r--x11-plugins/gkwebmon/Manifest1
-rw-r--r--x11-plugins/gkwebmon/files/gkwebmon-0.2-cc-cflags-ldflags.patch42
-rw-r--r--x11-plugins/gkwebmon/files/gkwebmon-0.2-fno-common.patch38
-rw-r--r--x11-plugins/gkwebmon/gkwebmon-0.2.1.ebuild35
-rw-r--r--x11-plugins/gkwebmon/metadata.xml9
5 files changed, 0 insertions, 125 deletions
diff --git a/x11-plugins/gkwebmon/Manifest b/x11-plugins/gkwebmon/Manifest
deleted file mode 100644
index 5e9a20f7cd6e..000000000000
--- a/x11-plugins/gkwebmon/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gkwebmon-0.2.1.tgz 14576 BLAKE2B 12014eef1f73c4b398aeb7e5f5e7821561dd01c2de7d1705f567d60252ce7ce376266612602b58f90bc16dc587d8c5449d791dfd01a9c810fe9c6fb6d05970ce SHA512 f71a106372018c55ca1e31140aedd669df66cb6c3e9613fe5341831fad55e8bdd23c46281c38c553c09d350436bc1e44cee07602a24fc637c7f21f4e0d50cc39
diff --git a/x11-plugins/gkwebmon/files/gkwebmon-0.2-cc-cflags-ldflags.patch b/x11-plugins/gkwebmon/files/gkwebmon-0.2-cc-cflags-ldflags.patch
deleted file mode 100644
index 4c5c786cfed6..000000000000
--- a/x11-plugins/gkwebmon/files/gkwebmon-0.2-cc-cflags-ldflags.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From ef7dcbf8495d03c8cf96d4fb30adf38b15e1ca74 Mon Sep 17 00:00:00 2001
-From: Michael Orlitzky <michael@orlitzky.com>
-Date: Mon, 29 Aug 2016 20:44:45 -0400
-Subject: [PATCH 1/1] Clean up variable usage in Makefile to support LDFLAGS
- and friends.
-
---- a/Makefile
-+++ b/Makefile
-@@ -3,23 +3,19 @@
-
- PLUGIN_DIR = /usr/local/lib/gkrellm2/plugins
-
--GTK_INCLUDE = `pkg-config gtk+-2.0 --cflags`
--GTK_LIB = `pkg-config gtk+-2.0 --libs`
-+GTK_INCLUDE = $(shell ${PKG_CONFIG} gtk+-2.0 --cflags)
-+GTK_LIB = $(shell ${PKG_CONFIG} gtk+-2.0 --libs)
-
-
--#FLAGS = -O2 -Wall -fPIC -std=c99 -pedantic $(GTK_INCLUDE)
--FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE)
--LIBS = $(GTK_LIB)
--
--LFLAGS = -shared -lssl -lpthread
--
--CC = gcc $(CFLAGS) $(FLAGS)
--#CC = gcc -DDEBUG $(CFLAGS) $(FLAGS)
-+CFLAGS += -Wall -fPIC
-+CPPFLAGS += $(GTK_INCLUDE)
-+LDLIBS += $(GTK_LIB) -lssl -lpthread
-+LDFLAGS += -shared
-
- OBJS = webmon.o gk.o
-
- gkwebmon.so: $(OBJS)
-- $(CC) $(OBJS) -o gkwebmon.so $(LFLAGS) $(LIBS)
-+ $(CC) $(OBJS) -o $(@) $(LDFLAGS) $(LDLIBS)
-
- install: gkwebmon.so
- install gkwebmon.so $(PLUGIN_DIR)
---
-2.7.3
-
diff --git a/x11-plugins/gkwebmon/files/gkwebmon-0.2-fno-common.patch b/x11-plugins/gkwebmon/files/gkwebmon-0.2-fno-common.patch
deleted file mode 100644
index 9738177db6fe..000000000000
--- a/x11-plugins/gkwebmon/files/gkwebmon-0.2-fno-common.patch
+++ /dev/null
@@ -1,38 +0,0 @@
---- a/webmon.c
-+++ b/webmon.c
-@@ -7,6 +7,8 @@
- #include <openssl/md5.h>
- #include <pthread.h>
-
-+int updatetime;
-+
-
- void clear_entry(int i)
- {
---- a/webmon.h
-+++ b/webmon.h
-@@ -6,7 +6,7 @@
-
- /* this is included in the saved config file */
-
--int updatetime; /* how often to check webpages (in hours) */
-+extern int updatetime; /* how often to check webpages (in hours) */
-
- struct webinfo {
- char *urlData; /* full url, pointed into by pointers below, internal '\0' */
-@@ -21,11 +21,13 @@ struct webinfo {
- char use;
- char updated; /* new md5 checksum in place */
- char flagged; /* a changed has been posted to tooltips for this entry */
--} wi[20];
-+};
-+
-+extern struct webinfo wi[20];
-
- /* end of data for config file */
-
--char wheretostore; /* 0 == webinfo.init_md5, 1 == webinfo.new_md5 */
-+extern char wheretostore; /* 0 == webinfo.init_md5, 1 == webinfo.new_md5 */
-
- void parse_url_to_config_struct(int i, gchar *instr); /* parse URL and store data in webinfo struct */
- char *make_url_from_config_struct(int i);
diff --git a/x11-plugins/gkwebmon/gkwebmon-0.2.1.ebuild b/x11-plugins/gkwebmon/gkwebmon-0.2.1.ebuild
deleted file mode 100644
index 49e90ed9d3a0..000000000000
--- a/x11-plugins/gkwebmon/gkwebmon-0.2.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gkrellm-plugin toolchain-funcs
-
-DESCRIPTION="A web monitor plugin for GKrellM2"
-HOMEPAGE="http://gkwebmon.sourceforge.net/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc x86"
-
-# The Makefile links with -lssl.
-RDEPEND="
- app-admin/gkrellm:2[X]
- dev-libs/glib:2
- dev-libs/openssl:=
- x11-libs/gtk+:2
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.2-cc-cflags-ldflags.patch
- "${FILESDIR}"/${PN}-0.2-fno-common.patch
-)
-
-src_compile() {
- tc-export PKG_CONFIG
-
- emake CC="$(tc-getCC)"
-}
diff --git a/x11-plugins/gkwebmon/metadata.xml b/x11-plugins/gkwebmon/metadata.xml
deleted file mode 100644
index d9201802d6c5..000000000000
--- a/x11-plugins/gkwebmon/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>sam@gentoo.org</email>
- <name>Sam James</name>
- </maintainer>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>