aboutsummaryrefslogtreecommitdiff
path: root/misc/gkrellshoot
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2014-06-30 08:37:49 +0000
committerRene Ladan <rene@FreeBSD.org>2014-06-30 08:37:49 +0000
commita1334cc5336a99e37ca77595c60f68012e2bb0bc (patch)
treedf4588a3eebe74807d57f164b1c860b1243ffb47 /misc/gkrellshoot
parent253b88d8be9b64b5c3997611b2748738f6050bda (diff)
downloadports-a1334cc5336a99e37ca77595c60f68012e2bb0bc.tar.gz
ports-a1334cc5336a99e37ca77595c60f68012e2bb0bc.zip
Notes
Diffstat (limited to 'misc/gkrellshoot')
-rw-r--r--misc/gkrellshoot/Makefile25
-rw-r--r--misc/gkrellshoot/distinfo2
-rw-r--r--misc/gkrellshoot/files/patch-Makefile61
-rw-r--r--misc/gkrellshoot/pkg-descr5
4 files changed, 0 insertions, 93 deletions
diff --git a/misc/gkrellshoot/Makefile b/misc/gkrellshoot/Makefile
deleted file mode 100644
index 172c318438b4..000000000000
--- a/misc/gkrellshoot/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-# Created by: Andrew Stuart <elitetek@tekrealm.net>
-# $FreeBSD$
-
-PORTNAME= gkrellshoot
-PORTVERSION= 0.3.2
-PORTREVISION= 9
-CATEGORIES= misc
-MASTER_SITES= SF
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Screen locking and screen capture plugin for GKrellM
-
-DEPRECATED= GKrellM 1.X is no longer being developed, consider using 2.X.
-EXPIRATION_DATE=2014-06-30
-
-BUILD_DEPENDS= ${LOCALBASE}/include/gkrellm/gkrellm.h:${PORTSDIR}/sysutils/gkrellm
-RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm \
- import:${PORTSDIR}/graphics/ImageMagick
-
-PLIST_FILES= libexec/gkrellm/plugins/gkrellshoot.so
-WRKSRC= ${WRKDIR}/gkrellShoot-${PORTVERSION}
-USE_GNOME= imlib
-
-NO_STAGE= yes
-.include <bsd.port.mk>
diff --git a/misc/gkrellshoot/distinfo b/misc/gkrellshoot/distinfo
deleted file mode 100644
index 13d18db0df28..000000000000
--- a/misc/gkrellshoot/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (gkrellshoot-0.3.2.tar.gz) = 75529104dfc43dcfa58ddbf2785ae1ef56b72983260724b9cc17b4f36f2618b3
-SIZE (gkrellshoot-0.3.2.tar.gz) = 14929
diff --git a/misc/gkrellshoot/files/patch-Makefile b/misc/gkrellshoot/files/patch-Makefile
deleted file mode 100644
index cb2f9e62691c..000000000000
--- a/misc/gkrellshoot/files/patch-Makefile
+++ /dev/null
@@ -1,61 +0,0 @@
---- Makefile.orig Mon Oct 21 17:31:33 2002
-+++ Makefile Mon Oct 21 17:37:34 2002
-@@ -1,20 +1,20 @@
--GTK_INCLUDE = `gtk-config --cflags`
--GTK_LIB = `gtk-config --libs`
-+GTK_INCLUDE = `$(GTK_CONFIG) --cflags`
-+GTK_LIB = `$(GTK_CONFIG) --libs`
-
--IMLIB_INCLUDE = `imlib-config --cflags-gdk`
--IMLIB_LIB = `imlib-config --libs-gdk`
-+IMLIB_INCLUDE = `${IMLIB_CONFIG} --cflags-gdk`
-+IMLIB_LIB = `${IMLIB_CONFIG} --libs-gdk`
-
-
--FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE) $(IMLIB_INCLUDE)
-+CFLAGS+= -Wall -fPIC $(GTK_INCLUDE) $(IMLIB_INCLUDE)
- LIBS = $(GTK_LIB) $(IMLIB_LIB)
- LFLAGS = -shared
-
--CC = gcc $(CFLAGS) $(FLAGS)
-+CC ?= gcc $(CFLAGS)
-
- OBJS = gkrellshoot.o
-
- gkrellshoot.so: $(OBJS)
-- $(CC) $(OBJS) -o gkrellshoot.so $(LFLAGS) $(LIBS) -lpthread
-+ $(CC) $(OBJS) -o gkrellshoot.so $(LFLAGS) $(LIBS)
-
- clean:
- rm -f *.o core *.so* *.bak *~
-@@ -22,17 +22,7 @@
- gkrellshoot.o: gkrellshoot.c
-
- install:
-- if [ -d /usr/lib/gkrellm/plugins/ ] ; then \
-- install -c -s -m 644 gkrellshoot.so /usr/lib/gkrellm/plugins/ ; \
-- elif [ -d /usr/share/gkrellm/plugins/ ] ; then \
-- install -c -s -m 644 gkrellshoot.so /usr/share/gkrellm/plugins/ ; \
-- elif [ -d /usr/local/lib/gkrellm/plugins/ ] ; then \
-- install -c -s -m 644 gkrellshoot.so /usr/local/lib/gkrellm/plugins/ ; \
-- elif [ -d /usr/lib/gkrellm/plugins/ ] ; then \
-- install -c -s -m 644 gkrellshoot.so /usr/lib/gkrellm/plugins/ ; \
-- else \
-- install -D -c -s -m 644 gkrellshoot.so /usr/lib/gkrellm/plugins/gkrellshoot.so ; \
-- fi
-+ install -c -s gkrellshoot.so ${PREFIX}/libexec/gkrellm/plugins
- userinstall:
- if [ -d $(HOME)/.gkrellm/plugins/ ] ; then \
- install -C -s -m 644 gkrellshoot.so $(HOME)/.gkrellm/plugins/ ; \
-@@ -41,9 +31,6 @@
- fi
-
- uninstall:
-- rm -f /usr/lib/gkrellm/plugins/gkrellshoot.so
-- rm -f /usr/share/gkrellm/plugins/gkrellshoot.so
-- rm -f /usr/local/lib/gkrellm/plugins/gkrellshoot.so
-- rm -f /usr/lib/gkrellm/plugins/gkrellshoot.so
-- rm -f $(HOME)/.gkrellm/plugins/gkrellshoot.so
-+ rm -f $(PLUGIN_DIR)/gkrellshoot.so
-
-+all: gkrellshoot.so
diff --git a/misc/gkrellshoot/pkg-descr b/misc/gkrellshoot/pkg-descr
deleted file mode 100644
index 7e0051b598f9..000000000000
--- a/misc/gkrellshoot/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-This plugin puts a lock and shoot button on your GKrellM, It uses
-ImageMagick for screen capture and can be configured for your screen
-saver program. Known to work with either Xlock or xscreensaver.
-
-WWW: http://gkrellshoot.sourceforge.net/