1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-04-20 08:33:31 +02:00

initial import

This commit is contained in:
root
2010-02-09 21:25:29 +01:00
commit b2719dc011
1080 changed files with 41656 additions and 0 deletions
@@ -0,0 +1 @@
MD5 8043c73f29f1305446594a0353ad7839 wmdiscotux-1.3.tar.gz 83180
@@ -0,0 +1,20 @@
--- wmdiscotux.c.old 2000-11-16 09:51:52.000000000 -0500
+++ wmdiscotux.c 2003-09-15 16:03:54.000000000 -0400
@@ -359,16 +359,7 @@
gtk_container_border_width(GTK_CONTAINER(dialog), 5);
- label = gtk_label_new ("
-wmDiscoTux\n\
-v " VERSION "\n\
-
-by Antti Takala <fragment@nic.fi>\n\
-
-get the newest version from:\n\
-http://wmdiscotux.stc.cx/\n\
-
-");
+ label = gtk_label_new ("wmDiscoTux\nv " VERSION "\nby Antti Takala <fragment@nic.fi>\nget the newest version from:\nhttp://wmdiscotux.stc.cx/\n");
gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), label, FALSE, FALSE, 0);
gtk_widget_show(label);
@@ -0,0 +1,27 @@
--- Makefile.old 2000-11-15 13:33:43.000000000 -0500
+++ Makefile 2003-08-16 22:16:19.000000000 -0400
@@ -1,14 +1,17 @@
+
CC = gcc
-INCLUDEDIR = -I/usr/include -I/usr/X11R6/include -I/usr/local/include
-CFLAGS = -O2 -Wall $(INCLUDEDIR) -fPIC `glib-config --cflags`
-LFLAGS = -shared -fPIC -lpthread -L/usr/lib -ldl -lm -L/usr/X11R6/lib -lXpm -lX11
+OPT = -O2
+INCLUDEDIR = -I/usr/include -I/usr/X11R6/include -I/usr/local/include `gtk-config --cflags` `glib-config --cflags`
+CFLAGS = $(OPT) -Wall $(INCLUDEDIR) -fPIC
+LFLAGS = -shared -fPIC -lpthread -L/usr/lib -ldl -lm -L/usr/X11R6/lib -lXpm -lX11
+INSTALL-DIR = `xmms-config --visualization-plugin-dir`
libwmdiscotux.so: wmdiscotux.o wmgeneral.o
- $(CC) -o libwmdiscotux.so wmdiscotux.o wmgeneral.o $(LFLAGS)
+ $(CC) -o libwmdiscotux.so wmdiscotux.o wmgeneral.o $(LFLAGS)
clean:
- rm -f *.o core *.so*
+ rm -f *.o core *.so*
install: libwmdiscotux.so
- cp libwmdiscotux.so `xmms-config --visualization-plugin-dir`
-
+ mkdir -p $(DESTDIR)/$(INSTALL-DIR)
+ install libwmdiscotux.so $(DESTDIR)/$(INSTALL-DIR)