blob: 209bc551295432b94e43b5b0cb1597bf5085e07f (
plain)
1 diff -ru wmdiscotux-1.3-orig/Makefile wmdiscotux-1.3/Makefile
2 --- wmdiscotux-1.3-orig/Makefile 2000-11-15 20:33:43.000000000 +0200
3 +++ wmdiscotux-1.3/Makefile 2006-01-29 13:11:51.000000000 +0200
4 @@ -1,6 +1,6 @@
5 CC = gcc
6 -INCLUDEDIR = -I/usr/include -I/usr/X11R6/include -I/usr/local/include
7 -CFLAGS = -O2 -Wall $(INCLUDEDIR) -fPIC `glib-config --cflags`
8 +INCLUDEDIR = -I/usr/include/gtk-1.2 -I/usr/include -I/usr/X11R6/include
9 +CFLAGS += -Wall $(INCLUDEDIR) -fPIC `glib-config --cflags`
10 LFLAGS = -shared -fPIC -lpthread -L/usr/lib -ldl -lm -L/usr/X11R6/lib -lXpm -lX11
11
12 libwmdiscotux.so: wmdiscotux.o wmgeneral.o
13 @@ -10,5 +10,5 @@
14 rm -f *.o core *.so*
15
16 install: libwmdiscotux.so
17 - cp libwmdiscotux.so `xmms-config --visualization-plugin-dir`
18 + /usr/bin/install -D -o 0 -g 0 -s -m 755 libwmdiscotux.so $(PKG)`xmms-config --visualization-plugin-dir`/libwmdiscotux.so
19
20 diff -ru wmdiscotux-1.3-orig/wmdiscotux.c wmdiscotux-1.3/wmdiscotux.c
21 --- wmdiscotux-1.3-orig/wmdiscotux.c 2000-11-16 16:51:52.000000000 +0200
22 +++ wmdiscotux-1.3/wmdiscotux.c 2006-01-29 12:56:57.000000000 +0200
23 @@ -359,16 +359,10 @@
24 gtk_container_border_width(GTK_CONTAINER(dialog), 5);
25
26
27 - label = gtk_label_new ("
28 -wmDiscoTux\n\
29 -v " VERSION "\n\
30 -
31 -by Antti Takala <fragment@nic.fi>\n\
32 -
33 -get the newest version from:\n\
34 -http://wmdiscotux.stc.cx/\n\
35 -
36 -");
37 + label = gtk_label_new ("\nwmDiscoTux\n\\n\
38 +v " VERSION "\n\\n\nby Antti Takala <fragment@nic.fi>\n\\n\n\
39 +get the newest version from:\n\\n\
40 +http://wmdiscotux.stc.cx/\n\\n\n");
41
42 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), label, FALSE, FALSE, 0);
43 gtk_widget_show(label);
|