pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/misc/gkrellm2-flynn Initial import of gkrellm-flynn, v...
details: https://anonhg.NetBSD.org/pkgsrc/rev/b7935a7d7c29
branches: trunk
changeset: 469559:b7935a7d7c29
user: cube <cube%pkgsrc.org@localhost>
date: Wed Feb 25 00:40:50 2004 +0000
description:
Initial import of gkrellm-flynn, version 0.8 into the NetBSD Package
Collection. Yes, this is the DooM marine plugin.
Flynn is a tiny system load meter for gkrellm. I've picked
this idea from Timm Mueller's Amiga application which was
derived from a WindowMaker appicon. GKrellFlynn was
written by Henryk Richter.
Flynn is a guy who suffers from your activity, i.e. the
applications consuming precious processor time. Hurt him
plenty!
To make Flynn smile, just click onto his face.
diffstat:
misc/gkrellm2-flynn/DESCR | 10 ++++++++
misc/gkrellm2-flynn/Makefile | 19 +++++++++++++++
misc/gkrellm2-flynn/PLIST | 2 +
misc/gkrellm2-flynn/distinfo | 5 ++++
misc/gkrellm2-flynn/patches/patch-aa | 43 ++++++++++++++++++++++++++++++++++++
5 files changed, 79 insertions(+), 0 deletions(-)
diffs (99 lines):
diff -r dfe8604dde44 -r b7935a7d7c29 misc/gkrellm2-flynn/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/gkrellm2-flynn/DESCR Wed Feb 25 00:40:50 2004 +0000
@@ -0,0 +1,10 @@
+Flynn is a tiny system load meter for gkrellm. I've picked
+this idea from Timm Mueller's Amiga application which was
+derived from a WindowMaker appicon. GKrellFlynn was
+written by Henryk Richter.
+
+Flynn is a guy who suffers from your activity, i.e. the
+applications consuming precious processor time. Hurt him
+plenty!
+
+To make Flynn smile, just click onto his face.
diff -r dfe8604dde44 -r b7935a7d7c29 misc/gkrellm2-flynn/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/gkrellm2-flynn/Makefile Wed Feb 25 00:40:50 2004 +0000
@@ -0,0 +1,19 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/02/25 00:40:50 cube Exp $
+#
+
+DISTNAME= gkrellflynn-0.8
+PKGNAME= ${DISTNAME:S/gkrell/gkrellm-/}
+CATEGORIES= misc
+MASTER_SITES= http://horus.comlab.uni-rostock.de/flynn/
+
+MAINTAINER= cube%NetBSD.org@localhost
+HOMEPAGE= http://horus.comlab.uni-rostock.de/flynn/
+COMMENT= GKrellM2 plugin that shows system load with a DooM marine
+
+USE_BUILDLINK3= YES
+USE_GNU_TOOLS+= make
+ALL_TARGET= gkrellm2
+INSTALL_TARGET= installgkrellm2
+
+.include "../../sysutils/gkrellm/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r dfe8604dde44 -r b7935a7d7c29 misc/gkrellm2-flynn/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/gkrellm2-flynn/PLIST Wed Feb 25 00:40:50 2004 +0000
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/02/25 00:40:50 cube Exp $
+lib/gkrellm2/plugins/gkrellflynn.so
diff -r dfe8604dde44 -r b7935a7d7c29 misc/gkrellm2-flynn/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/gkrellm2-flynn/distinfo Wed Feb 25 00:40:50 2004 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/02/25 00:40:50 cube Exp $
+
+SHA1 (gkrellflynn-0.8.tar.gz) = 8fc8ab477572ca8a858d19d5903f9a2b7c3b2d31
+Size (gkrellflynn-0.8.tar.gz) = 26722 bytes
+SHA1 (patch-aa) = e7274faa1982713925aa5c68e34170997cb9d613
diff -r dfe8604dde44 -r b7935a7d7c29 misc/gkrellm2-flynn/patches/patch-aa
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/gkrellm2-flynn/patches/patch-aa Wed Feb 25 00:40:50 2004 +0000
@@ -0,0 +1,43 @@
+$NetBSD: patch-aa,v 1.1.1.1 2004/02/25 00:40:50 cube Exp $
+
+--- Makefile.orig 2002-05-07 10:04:49.000000000 +0200
++++ Makefile
+@@ -3,12 +3,12 @@
+ #
+ # updated for gkrellm2.0
+
+-CC = gcc
+-CFLAGS = -c -O -Wall -fPIC `${EXTRACONF}`
++#CC = gcc
++CFLAGS += -c -Wall -fPIC `${EXTRACONF}`
+
+ LD = $(CC)
+-LDFLAGS = -shared -Wl -o
+-INCPATH = -I.
++LDFLAGS += -shared -Wl -o
++INCPATH = -I. -I${BUILDLINK_DIR}/include
+ INCPATH += ${GKRELL_INC}
+
+ TARGET = gkrellflynn.so
+@@ -22,10 +22,10 @@ all:
+ @echo " make gkrellm2"
+
+ gkrellm:
+- (make GKRELL_INC=-DGKRELLM EXTRACONF="gtk-config --cflags;imlib-config --cflags-gdk" ${TARGET})
++ (${MAKE} GKRELL_INC=-DGKRELLM EXTRACONF="gtk-config --cflags;imlib-config --cflags-gdk" ${TARGET})
+
+ gkrellm2:
+- (make GKRELL_INC=-DGKRELLM2 EXTRACONF="pkg-config --cflags gtk+-2.0 gthread-2.0" ${TARGET})
++ (${MAKE} GKRELL_INC=-DGKRELLM2 EXTRACONF="pkg-config --cflags gtk+-2.0 gthread-2.0" ${TARGET})
+
+ ${TARGET}: ${OBJS}
+ ${LD} ${DEBUG} ${LDFLAGS} ${TARGET} ${OBJS}
+@@ -44,7 +44,7 @@ installgkrellm:
+ ./install-sub.sh ${TARGET} gkrellm
+
+ installgkrellm2:
+- ./install-sub.sh ${TARGET} gkrellm2
++ install -c -s -m 644 ${TARGET} ${PREFIX}/lib/gkrellm2/plugins
+
+ %.o : %.c
+ ${CC} ${CFLAGS} $(INCPATH) -o $@ $<
Home |
Main Index |
Thread Index |
Old Index