diff options
author | krion <krion@FreeBSD.org> | 2004-01-22 22:20:35 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-01-22 22:20:35 +0000 |
commit | 6e342d8eff09efd9ec4caa1c9fd948fe97194d5d (patch) | |
tree | da342d0fc44ab14db3b49a98a3708a9de7f2e684 /x11-clocks/wmbday/files | |
parent | 6c9cdf4d0908578351f67d1f4b84f3fceea4d52d (diff) | |
download | FreeBSD-ports-6e342d8eff09efd9ec4caa1c9fd948fe97194d5d.zip FreeBSD-ports-6e342d8eff09efd9ec4caa1c9fd948fe97194d5d.tar.gz |
Add wmbday 0.2a,
wmbday is a Window Maker dock app for Linux und FreeBSD that
will remind you of birthdays. It can show up to four persons
whose birthday is next. On a birthday it will notify you by
blinking the concerning person. Background color, normal and
notification font color can be changed. The data is loaded from
a simple text file.
PR: 61735
Submitted by: Ulrich Spoerlein <q@uni.de>
Diffstat (limited to 'x11-clocks/wmbday/files')
-rw-r--r-- | x11-clocks/wmbday/files/patch-Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/x11-clocks/wmbday/files/patch-Makefile b/x11-clocks/wmbday/files/patch-Makefile new file mode 100644 index 0000000..33f5cda --- /dev/null +++ b/x11-clocks/wmbday/files/patch-Makefile @@ -0,0 +1,24 @@ +--- Makefile.orig Sun Jul 27 15:11:38 2003 ++++ Makefile Tue Jan 6 00:39:09 2004 +@@ -1,16 +1,15 @@ +-CC = gcc + OBJS = date.c ring.c main.c +-INCDIR = -I/usr/X11R6/include +-LIBDIR = -L/usr/X11R6/lib ++INCDIR = -I$(X11BASE)/include ++LIBDIR = -L$(X11BASE)/lib + LIBS = -lX11 -lXext +-BIN_DESTDIR = /usr/local/bin +-MAN_DESTDIR = /usr/local/man/man1 ++BIN_DESTDIR = $(PREFIX)/local/bin ++MAN_DESTDIR = $(PREFIX)/man/man1 + PACKAGE = wmbday + VERSION = 0.1 + + + all: +- $(CC) $(OBJS) -o wmbday -Wall $(LIBDIR) $(LIBS) $(INCDIR) ++ $(CC) $(CFLAGS) $(OBJS) -o wmbday -Wall $(LIBDIR) $(LIBS) $(INCDIR) + + debug: + $(CC) -g $(OBJS) -o wmbday -Wall $(LIBDIR) $(LIBS) $(INCDIR) |