summaryrefslogtreecommitdiff
path: root/x11-clocks
diff options
context:
space:
mode:
authorKevin Lo <kevlo@FreeBSD.org>2000-08-12 07:43:15 +0000
committerKevin Lo <kevlo@FreeBSD.org>2000-08-12 07:43:15 +0000
commit9a06384187b5086e7ff7f23e48e240f544eac919 (patch)
tree0c1b3478cb7ecb4b52cd2e84c38cfc8169434651 /x11-clocks
parent(1) xemacs-faq.info-6 doesn't exist. (diff)
- Support X11BASE properly
- Remove USE_GMAKE - WindowMaker -> Window Maker PR: 20552 Submitted by: Ports Fury
Notes
Notes: svn path=/head/; revision=31559
Diffstat (limited to 'x11-clocks')
-rw-r--r--x11-clocks/wmitime/Makefile8
-rw-r--r--x11-clocks/wmitime/files/patch-aa24
2 files changed, 14 insertions, 18 deletions
diff --git a/x11-clocks/wmitime/Makefile b/x11-clocks/wmitime/Makefile
index 65e7cb69eabf..562b286876c8 100644
--- a/x11-clocks/wmitime/Makefile
+++ b/x11-clocks/wmitime/Makefile
@@ -12,13 +12,9 @@ MASTER_SITES= http://www.neotokyo.org/illusion/downloads/
MAINTAINER= jim@FreeBSD.org
-USE_GMAKE= yes
-USE_X_PREFIX= yes
-USE_XPM= yes
-
WRKSRC= ${WRKDIR}/wmitime/wmitime
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/wmitime ${PREFIX}/bin
+USE_X_PREFIX= yes
+USE_XPM= yes
.include <bsd.port.mk>
diff --git a/x11-clocks/wmitime/files/patch-aa b/x11-clocks/wmitime/files/patch-aa
index 394b444f13c2..7a8b2d6f4813 100644
--- a/x11-clocks/wmitime/files/patch-aa
+++ b/x11-clocks/wmitime/files/patch-aa
@@ -1,32 +1,32 @@
---- Makefile.orig Thu Apr 1 17:38:14 1999
-+++ Makefile Thu Apr 1 17:41:17 1999
-@@ -1,7 +1,10 @@
+--- Makefile.orig Mon Mar 29 12:51:39 1999
++++ Makefile Sat Aug 12 01:03:21 2000
+@@ -1,7 +1,9 @@
-#LANG = fr
+-LIBDIR = -L/usr/X11R6/lib
+CC ?= gcc
+CFLAGS ?= -O2
-+CFLAGS += -Wall
-+INCDIR = -I/usr/X11R6/include/X11 -I/usr/X11R6/include
-+DESTDIR = /usr/X11R6
- LIBDIR = -L/usr/X11R6/lib
++INCDIR = -I${X11BASE}/include
++DESTDIR = ${PREFIX}
++LIBDIR = -L${X11BASE}/lib
LIBS = -lXpm -lXext -lX11 -lm
-FLAGS = -O2
OBJS = wmitime.o \
../wmgeneral/wmgeneral.o \
../wmgeneral/misc.o \
-@@ -9,10 +12,10 @@
+@@ -9,10 +11,10 @@
.c.o:
- cc -I/usr/X11R6/share/include $(FLAGS) -D$(LANG) -c -Wall $< -o $*.o
-+ $(CC) $(CFLAGS) -D$(shell echo `uname -s`) -c $< -o $*.o $(INCDIR)
++ $(CC) $(CFLAGS) -D$(OPSYS) -c $< -o $@ $(INCDIR)
wmtime: $(OBJS)
- cc $(FLAGS) -D$(LANG) -o wmitime $^ -lXext $(LIBDIR) $(LIBS)
-+ $(CC) $(CFLAGS) $(SYSTEM) -o wmitime $^ $(INCDIR) $(LIBDIR) $(LIBS)
++ $(CC) $(CFLAGS) $(SYSTEM) -o wmitime $(OBJS) $(LIBDIR) $(LIBS)
all:: wmtime
-@@ -24,24 +27,5 @@
+@@ -24,24 +26,5 @@
rm -f *~
install:: wmitime
@@ -37,7 +37,7 @@
-# chmod 600 $(HOME)/.wminetrc
-# cp wminetrc /etc/wminetrc
-# chmod 644 /etc/wminetrc
-+ install -s -m 0755 wmitime $(DESTDIR)/bin
++ ${BSD_INSTALL_PROGRAM} wmitime $(DESTDIR)/bin
@echo "wmitime Installation finished..."
-
-