summaryrefslogtreecommitdiff
path: root/x11-plugins/gkrellshoot
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/gkrellshoot
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'x11-plugins/gkrellshoot')
-rw-r--r--x11-plugins/gkrellshoot/Manifest1
-rw-r--r--x11-plugins/gkrellshoot/files/gkrellshoot-0.4.4-r4-pkgconfig.patch19
-rw-r--r--x11-plugins/gkrellshoot/files/gkrellshoot-0.4.4-r5-fix-implicit-int.patch19
-rw-r--r--x11-plugins/gkrellshoot/files/makefile-respect-flags.patch26
-rw-r--r--x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r5.ebuild34
-rw-r--r--x11-plugins/gkrellshoot/metadata.xml9
6 files changed, 0 insertions, 108 deletions
diff --git a/x11-plugins/gkrellshoot/Manifest b/x11-plugins/gkrellshoot/Manifest
deleted file mode 100644
index ede0643f0e62..000000000000
--- a/x11-plugins/gkrellshoot/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gkrellshoot-0.4.4.tar.gz 16556 BLAKE2B 417217ffa500d8b0cc4ddd80849b2da83e3e55bc489db83fd7c8992f42af9ebb385c1ece17cae65cb7393bffadaaffd70e11a4dea16aa4d2b2f19e0b828a6833 SHA512 9363c045a99c23f8fedf95ac82c7bab4ce21acb675fdabdd831f174d9816a14a22ed6d7048d475b4c4199b9e6a88f3f663702ac2f9304f08860339beb323322a
diff --git a/x11-plugins/gkrellshoot/files/gkrellshoot-0.4.4-r4-pkgconfig.patch b/x11-plugins/gkrellshoot/files/gkrellshoot-0.4.4-r4-pkgconfig.patch
deleted file mode 100644
index 1f3186f652f4..000000000000
--- a/x11-plugins/gkrellshoot/files/gkrellshoot-0.4.4-r4-pkgconfig.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-From 47a80a178b4ab0225ff0540376be5b5c740530a7 Mon Sep 17 00:00:00 2001
-From: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
-Date: Sat, 26 Mar 2022 10:32:18 +0100
-Subject: [PATCH] pkgconfig
-
---- a/Makefile
-+++ b/Makefile
-@@ -1,5 +1,6 @@
--GTK_INCLUDE = `pkg-config gtk+-2.0 --cflags`
--GTK_LIB = `pkg-config gtk+-2.0 --libs`
-+PKG_CONFIG ?= pkg-config
-+GTK_INCLUDE = $(shell ${PKG_CONFIG} gtk+-2.0 --cflags)
-+GTK_LIB = $(shell ${PKG_CONFIG} gtk+-2.0 --libs)
-
- FLAGS = -fPIC $(GTK_INCLUDE)
- LIBS = $(GTK_LIB)
---
-2.34.1
-
diff --git a/x11-plugins/gkrellshoot/files/gkrellshoot-0.4.4-r5-fix-implicit-int.patch b/x11-plugins/gkrellshoot/files/gkrellshoot-0.4.4-r5-fix-implicit-int.patch
deleted file mode 100644
index f9ee064b0a73..000000000000
--- a/x11-plugins/gkrellshoot/files/gkrellshoot-0.4.4-r5-fix-implicit-int.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-By default clang16 will not allow implicit integer declarations in function parameters.
-
-Bug: https://bugs.gentoo.org/874891
-
-Signed-off-by: Pascal Jäger <pascal.jaeger@leimstift.de>
---- a/gkrellshoot.c
-+++ b/gkrellshoot.c
-@@ -436,7 +436,7 @@ double star_screenx[NUM_STARS];
- double star_screeny[NUM_STARS];
-
- static void
--draw_starfield ( chart_index )
-+draw_starfield ( size_t chart_index )
- {
- gint i;
- guchar b;
---
-2.38.1
-
diff --git a/x11-plugins/gkrellshoot/files/makefile-respect-flags.patch b/x11-plugins/gkrellshoot/files/makefile-respect-flags.patch
deleted file mode 100644
index 9b3dd81c3d1b..000000000000
--- a/x11-plugins/gkrellshoot/files/makefile-respect-flags.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -1,16 +1,20 @@
- GTK_INCLUDE = `pkg-config gtk+-2.0 --cflags`
- GTK_LIB = `pkg-config gtk+-2.0 --libs`
-
--FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE)
-+FLAGS = -fPIC $(GTK_INCLUDE)
- LIBS = $(GTK_LIB)
- LFLAGS = -shared
-
--CC = gcc $(CFLAGS) $(FLAGS)
-
- OBJS = gkrellshoot.o
-
-+all: gkrellshoot.so
-+
-+%.o: %.c
-+ $(CC) $(CFLAGS) $(LDFLAGS) $(FLAGS) -c -o $@ $<
-+
- gkrellshoot.so: $(OBJS)
-- $(CC) $(OBJS) -o gkrellshoot.so $(LFLAGS) $(LIBS)
-+ $(CC) $(CFLAGS) $(LDFLAGS) $(FLAGS) $(OBJS) -o gkrellshoot.so $(LFLAGS) $(LIBS)
-
- clean:
- rm -f *.o core *.so* *.bak *~
diff --git a/x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r5.ebuild b/x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r5.ebuild
deleted file mode 100644
index b2940307f324..000000000000
--- a/x11-plugins/gkrellshoot/gkrellshoot-0.4.4-r5.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gkrellm-plugin toolchain-funcs flag-o-matic
-
-DESCRIPTION="GKrellm2 plugin to take screen shots and lock screen"
-HOMEPAGE="http://gkrellshoot.sourceforge.net/"
-SRC_URI="https://downloads.sourceforge.net/gkrellshoot/${P}.tar.gz"
-S="${WORKDIR}/${P/s/S}"
-
-LICENSE="GPL-2"
-SLOT="2"
-KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
-
-DEPEND="app-admin/gkrellm:2[X]"
-RDEPEND="
- ${DEPEND}
- virtual/imagemagick-tools"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/makefile-respect-flags.patch
- "${FILESDIR}/${P}"-r4-pkgconfig.patch
- "${FILESDIR}/${P}"-r5-fix-implicit-int.patch
-)
-
-src_compile() {
- append-cflags -std=gnu17 #944389
-
- tc-export PKG_CONFIG
- default
-}
diff --git a/x11-plugins/gkrellshoot/metadata.xml b/x11-plugins/gkrellshoot/metadata.xml
deleted file mode 100644
index d9201802d6c5..000000000000
--- a/x11-plugins/gkrellshoot/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>