]> git.pld-linux.org Git - packages/ekg2.git/commitdiff
- orphaned, outdated
authorJan Rękorajski <baggins@pld-linux.org>
Fri, 21 Apr 2006 23:40:33 +0000 (23:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    ekg2-gcc4.patch -> 1.2
    ekg2-nolibs.patch -> 1.2
    ekg2-shadow_colour.patch -> 1.2

ekg2-gcc4.patch [deleted file]
ekg2-nolibs.patch [deleted file]
ekg2-shadow_colour.patch [deleted file]

diff --git a/ekg2-gcc4.patch b/ekg2-gcc4.patch
deleted file mode 100644 (file)
index 8dc1081..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
---- ekg2-20050405/ekg/userlist.h.orig  2004-10-04 22:07:26.000000000 +0200
-+++ ekg2-20050405/ekg/userlist.h       2005-05-04 22:48:01.000000000 +0200
-@@ -116,13 +116,14 @@
- };
- #define       IGNORE_LABELS_MAX 7
--struct ignore_label ignore_labels[IGNORE_LABELS_MAX];
- struct ignore_label {
-       int level;
-       char *name;
- };
-+struct ignore_label ignore_labels[IGNORE_LABELS_MAX];
-+
- //list_t userlist;
- int userlist_read(session_t* session);
diff --git a/ekg2-nolibs.patch b/ekg2-nolibs.patch
deleted file mode 100644 (file)
index 81518e0..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
---- ekg2-20041006/configure.ac.orig    2004-10-06 22:17:31.000000000 +0200
-+++ ekg2-20041006/configure.ac 2004-10-17 10:47:37.859548023 +0200
-@@ -33,11 +33,11 @@
- AC_NEED_STDINT_H
- dnl  SunOS
--AC_CHECK_LIB(nsl, t_accept, LIBS="$LIBS -lnsl")
--AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")
-+AC_CHECK_FUNC(gethostbyname, [], [AC_CHECK_LIB(nsl, gethostbyname, LIBS="$LIBS -lnsl")])
-+AC_CHECK_FUNC(socket, [], [AC_CHECK_LIB(socket, socket, LIBS="$LIBS -lsocket")])
- dnl  BeOS
--AC_CHECK_LIB(bind, __inet_addr, LIBS="$LIBS -lbind")
-+AC_CHECK_FUNC(inet_addr, [], [AC_CHECK_LIB(bind, __inet_addr, LIBS="$LIBS -lbind")])
- dnl  sprawdzamy, czy system ma getopt_long
- AC_CHECK_FUNC(getopt_long, , [COMPAT="$COMPAT getopt.o getopt1.o"])
diff --git a/ekg2-shadow_colour.patch b/ekg2-shadow_colour.patch
deleted file mode 100644 (file)
index 74c081a..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-diff -urN plugins/xosd/osd.h plugins/xosd.new/osd.h
---- plugins/xosd/osd.h 2004-12-24 12:02:05.545131496 +0100
-+++ plugins/xosd.new/osd.h     2004-12-24 12:26:01.202878344 +0100
-@@ -1,6 +1,7 @@
- /* variables */
- char *xosd_font;
- char *xosd_colour;
-+char *xosd_shadow_colour;
- int xosd_shadow_offset;
- int xosd_vertical_position;
-diff -urN plugins/xosd/vars.txt plugins/xosd.new/vars.txt
---- plugins/xosd/vars.txt      2004-12-23 18:00:23.000000000 +0100
-+++ plugins/xosd.new/vars.txt  2004-12-24 12:31:17.084856984 +0100
-@@ -21,6 +21,12 @@
-       wielko¶æ wektora (podana w pikselach), o który ma byæ przesuniêty 
-       cieñ komunikatu wzglêdem samego napisu. warto¶æ 0 wy³±cza cieñ.
-+shadow_colour
-+      typ: tekst
-+      domy¶lna warto¶æ: "#000000"
-+
-+      kolor cienia 
-+
- vertical_position
-       typ: liczba
-       domy¶lna warto¶æ: 2
-diff -urN plugins/xosd/xosd.c plugins/xosd.new/xosd.c
---- plugins/xosd/xosd.c        2004-12-24 11:27:46.843101776 +0100
-+++ plugins/xosd.new/xosd.c    2004-12-24 12:26:01.203878192 +0100
-@@ -42,6 +42,8 @@
-       xosd_set_font(osd, xosd_font); 
-       
-       xosd_set_shadow_offset(osd, xosd_shadow_offset);
-+
-+      xosd_set_shadow_colour(osd, xosd_shadow_colour);
-       
-       xosd_set_colour(osd, xosd_colour);
-@@ -200,11 +202,14 @@
- {
-       xfree(xosd_font);
-       xfree(xosd_colour);
-+      xfree(xosd_shadow_colour);
-       xosd_font = xstrdup("-adobe-helvetica-bold-r-normal-*-*-120-*-*-p-*-iso8859-2");
-       xosd_colour = xstrdup("#00dd00");
-       
-       xosd_shadow_offset = 2;
-+      xosd_shadow_colour = xstrdup("#000000");
-+      
-       xosd_vertical_position = 2;
-       xosd_vertical_offset = 48;
-       xosd_horizontal_position = 0;
-@@ -234,6 +239,7 @@
-       variable_add(&xosd_plugin, "font", VAR_STR, 1, &xosd_font, NULL, NULL, NULL);
-       variable_add(&xosd_plugin, "colour", VAR_STR, 1, &xosd_colour, NULL, NULL, NULL);
-       variable_add(&xosd_plugin, "shadow_offset", VAR_INT, 1, &xosd_shadow_offset, NULL, NULL, NULL);
-+      variable_add(&xosd_plugin, "shadow_colour", VAR_STR, 1, &xosd_shadow_colour, NULL, NULL, NULL);
-       variable_add(&xosd_plugin, "vertical_position", VAR_INT, 1, &xosd_vertical_position, NULL, NULL, NULL);
-       variable_add(&xosd_plugin, "vertical_offset", VAR_INT, 1, &xosd_vertical_offset, NULL, NULL, NULL);
-       variable_add(&xosd_plugin, "horizontal_position", VAR_INT, 1, &xosd_horizontal_position, NULL, NULL, NULL);
This page took 0.035689 seconds and 4 git commands to generate.