summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2002-10-04 15:38:19 +0000
committerNick Hadaway <raker@gentoo.org>2002-10-04 15:38:19 +0000
commit44603a70f5436881ece98bfad2fee34c7a782d9e (patch)
tree29f580f0730a9a45e4c443ba549d5d1ee7935d94 /x11-plugins/wmitime/files
parentInitial add of ebuild to portage. Again, no homepage. This time I (diff)
downloadhistorical-44603a70f5436881ece98bfad2fee34c7a782d9e.tar.gz
historical-44603a70f5436881ece98bfad2fee34c7a782d9e.tar.bz2
historical-44603a70f5436881ece98bfad2fee34c7a782d9e.zip
Initial ebuild added to portage.
Diffstat (limited to 'x11-plugins/wmitime/files')
-rw-r--r--x11-plugins/wmitime/files/digest-wmitime-0.31
-rw-r--r--x11-plugins/wmitime/files/makefile.diff26
2 files changed, 27 insertions, 0 deletions
diff --git a/x11-plugins/wmitime/files/digest-wmitime-0.3 b/x11-plugins/wmitime/files/digest-wmitime-0.3
new file mode 100644
index 000000000000..da3642d97897
--- /dev/null
+++ b/x11-plugins/wmitime/files/digest-wmitime-0.3
@@ -0,0 +1 @@
+MD5 7168e9d6b5930d510727530a309d812c wmitime-0.3.tar.gz 21442
diff --git a/x11-plugins/wmitime/files/makefile.diff b/x11-plugins/wmitime/files/makefile.diff
new file mode 100644
index 000000000000..97ed3b5c54c1
--- /dev/null
+++ b/x11-plugins/wmitime/files/makefile.diff
@@ -0,0 +1,26 @@
+diff -urN wmitime/wmitime/Makefile wmitime-modified/wmitime/Makefile
+--- wmitime/wmitime/Makefile 1999-03-28 21:51:39.000000000 -0600
++++ wmitime-modified/wmitime/Makefile 2002-10-04 10:35:16.000000000 -0500
+@@ -1,7 +1,6 @@
+-#LANG = fr
+ LIBDIR = -L/usr/X11R6/lib
+ LIBS = -lXpm -lXext -lX11 -lm
+-FLAGS = -O2
++FLAGS = $(CFLAGS)
+ OBJS = wmitime.o \
+ ../wmgeneral/wmgeneral.o \
+ ../wmgeneral/misc.o \
+@@ -9,11 +8,10 @@
+
+
+ .c.o:
+- cc -I/usr/X11R6/share/include $(FLAGS) -D$(LANG) -c -Wall $< -o $*.o
++ gcc -I/usr/X11R6/share/include $(FLAGS) -c -Wall $< -o $*.o
+
+ wmtime: $(OBJS)
+- cc $(FLAGS) -D$(LANG) -o wmitime $^ -lXext $(LIBDIR) $(LIBS)
+-
++ gcc $(FLAGS) -o wmitime $^ -lXext $(LIBDIR) $(LIBS)
+ all:: wmtime
+
+ clean::