summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2012-06-05 19:55:18 +0000
committerMichael Weber <xmw@gentoo.org>2012-06-05 19:55:18 +0000
commitfe325856a05715296024a2ba5671e73141f0f416 (patch)
tree629209937136f075518f0426f92f36298f696565 /app-text
parentremove old version (diff)
downloadgentoo-2-fe325856a05715296024a2ba5671e73141f0f416.tar.gz
gentoo-2-fe325856a05715296024a2ba5671e73141f0f416.tar.bz2
gentoo-2-fe325856a05715296024a2ba5671e73141f0f416.zip
remove old version
(Portage version: 2.1.10.63/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/llpp/ChangeLog5
-rw-r--r--app-text/llpp/files/llpp-WM_CLASS.patch42
2 files changed, 4 insertions, 43 deletions
diff --git a/app-text/llpp/ChangeLog b/app-text/llpp/ChangeLog
index 6eabd366103b..63ec6538f11a 100644
--- a/app-text/llpp/ChangeLog
+++ b/app-text/llpp/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/llpp
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/ChangeLog,v 1.28 2012/06/05 19:47:10 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/llpp/ChangeLog,v 1.29 2012/06/05 19:55:18 xmw Exp $
+
+ 05 Jun 2012; Michael Weber <xmw@gentoo.org> -files/llpp-WM_CLASS.patch:
+ remove old version
05 Jun 2012; Michael Weber <xmw@gentoo.org> -llpp-7.ebuild:
remove old version
diff --git a/app-text/llpp/files/llpp-WM_CLASS.patch b/app-text/llpp/files/llpp-WM_CLASS.patch
deleted file mode 100644
index ead8310c4099..000000000000
--- a/app-text/llpp/files/llpp-WM_CLASS.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- llpp-7/link.c
-+++ llpp-7/link.c
-@@ -1982,6 +1982,32 @@
- CAMLreturn (caml_copy_double (w));
- }
-
-+#if !defined (_WIN32) && !defined (__APPLE__)
-+#undef pixel
-+#include <X11/X.h>
-+#include <X11/Xlib.h>
-+#include <X11/Xutil.h>
-+#include <GL/glx.h>
-+
-+static void set_wm_class (void)
-+{
-+ Display *dpy;
-+ Window win;
-+ int screen;
-+ XClassHint hint;
-+
-+ dpy = XOpenDisplay (getenv ("DISPLAY"));
-+ screen = DefaultScreen (dpy);
-+ hint.res_name = "llpp";
-+ hint.res_class = "llpp";
-+ win = glXGetCurrentDrawable ();
-+ XSetClassHint (dpy, win, &hint);
-+ XCloseDisplay (dpy);
-+}
-+#else
-+#define set_wm_class()
-+#endif
-+
- CAMLprim value ml_init (value sock_v, value params_v)
- {
- CAMLparam2 (sock_v, params_v);
-@@ -2044,5 +2070,6 @@
- }
- #endif
-
-+ set_wm_class ();
- CAMLreturn (Val_unit);
- }