diff options
author | pav <pav@FreeBSD.org> | 2004-05-05 07:09:08 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-05-05 07:09:08 +0800 |
commit | 36e00580a3452a70b817af0d9b4f1bed45de4791 (patch) | |
tree | 0e00bdc50798cff7ab260000f55fafc8cf134098 /net/gkrellm-gift/files | |
parent | 0143b4a45f93413e901afa727bbd326613e50bf8 (diff) | |
download | freebsd-ports-graphics-36e00580a3452a70b817af0d9b4f1bed45de4791.tar.gz freebsd-ports-graphics-36e00580a3452a70b817af0d9b4f1bed45de4791.tar.zst freebsd-ports-graphics-36e00580a3452a70b817af0d9b4f1bed45de4791.zip |
Add gkrellm-gift, a GKrellM plugin that monitors your active giFT transfers
and their progress. Each transfer is displayed in a panel showing the filename
and the percentage of transmitted bytes.
PR: ports/66204
Submitted by: Tobias Roth <ports@fsck.ch>
Diffstat (limited to 'net/gkrellm-gift/files')
-rw-r--r-- | net/gkrellm-gift/files/patch-configure | 27 | ||||
-rw-r--r-- | net/gkrellm-gift/files/patch-io.c | 10 |
2 files changed, 37 insertions, 0 deletions
diff --git a/net/gkrellm-gift/files/patch-configure b/net/gkrellm-gift/files/patch-configure new file mode 100644 index 00000000000..4273108c086 --- /dev/null +++ b/net/gkrellm-gift/files/patch-configure @@ -0,0 +1,27 @@ +--- configure.orig Mon May 3 08:53:37 2004 ++++ configure Mon May 3 08:56:01 2004 +@@ -18994,10 +18994,11 @@ + echo "${ECHO_T}no" >&6 + fi + +- +-cat >>confdefs.h <<\_ACEOF +-#define GTK_DISABLE_DEPRECATED 1 +-_ACEOF ++# restore gtk 2.4 compatibility ++# author promised to fix this in the next version ++#cat >>confdefs.h <<\_ACEOF ++##define GTK_DISABLE_DEPRECATED 1 ++#_ACEOF + + + if test x$prefix = xNONE; then +@@ -19005,7 +19006,7 @@ + + fi + +-plugindir=${prefix}/lib/gkrellm2/plugins ++plugindir=${prefix}/libexec/gkrellm2/plugins + + + ac_config_files="$ac_config_files Makefile pixmaps/Makefile src/Makefile" diff --git a/net/gkrellm-gift/files/patch-io.c b/net/gkrellm-gift/files/patch-io.c new file mode 100644 index 00000000000..19f28c4d429 --- /dev/null +++ b/net/gkrellm-gift/files/patch-io.c @@ -0,0 +1,10 @@ +--- src/io.c.orig Sat Dec 20 10:42:39 2003 ++++ src/io.c Wed May 5 00:58:19 2004 +@@ -16,6 +16,7 @@ + * + */ + ++#include <sys/types.h> + #include <sys/socket.h> + #include <arpa/inet.h> + #include <netdb.h> |