diff options
author | Chris Piazza <cpiazza@FreeBSD.org> | 1999-06-27 01:04:35 +0000 |
---|---|---|
committer | Chris Piazza <cpiazza@FreeBSD.org> | 1999-06-27 01:04:35 +0000 |
commit | bfdab59fe1e877ec510a01afe77611b5b31e62f9 (patch) | |
tree | a707fe29a8fbaed7f82da070583764a89ecff994 /games/wmtictactoe | |
parent | a34a75aba7589ca9e13652c92055b0ac4c6a459b (diff) | |
download | ports-bfdab59fe1e877ec510a01afe77611b5b31e62f9.tar.gz ports-bfdab59fe1e877ec510a01afe77611b5b31e62f9.zip |
Notes
Diffstat (limited to 'games/wmtictactoe')
-rw-r--r-- | games/wmtictactoe/Makefile | 8 | ||||
-rw-r--r-- | games/wmtictactoe/distinfo | 2 | ||||
-rw-r--r-- | games/wmtictactoe/files/patch-aa | 20 |
3 files changed, 19 insertions, 11 deletions
diff --git a/games/wmtictactoe/Makefile b/games/wmtictactoe/Makefile index 554d05c4f2c8..1d434bceab74 100644 --- a/games/wmtictactoe/Makefile +++ b/games/wmtictactoe/Makefile @@ -1,14 +1,14 @@ # New ports collection makefile for: wmtictactoe -# Version required: 0.4 +# Version required: 1.0 # Date created: 28 Apr 1999 # Whom: Jim Mock <jim@phrantic.phear.net> # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1999/05/03 04:31:13 steve Exp $ # -DISTNAME= wmtictactoe-0.4 +DISTNAME= wmtictactoe-1.0 CATEGORIES= games windowmaker afterstep -MASTER_SITES= http://atlas.ucpel.tche.br/~acamargo/ +MASTER_SITES= http://www.cs.mun.ca/~gstarkes/wmaker/dockapps/files/ MAINTAINER= jim@phrantic.phear.net diff --git a/games/wmtictactoe/distinfo b/games/wmtictactoe/distinfo index ee721ad6053b..15c1bbb4c18d 100644 --- a/games/wmtictactoe/distinfo +++ b/games/wmtictactoe/distinfo @@ -1 +1 @@ -MD5 (wmtictactoe-0.4.tar.gz) = dd96623a1748f50d62cc7c94deacdfea +MD5 (wmtictactoe-1.0.tar.gz) = a1a614a2bd779ceda40516edd16e031e diff --git a/games/wmtictactoe/files/patch-aa b/games/wmtictactoe/files/patch-aa index 64085be503a2..634a6e7d67b4 100644 --- a/games/wmtictactoe/files/patch-aa +++ b/games/wmtictactoe/files/patch-aa @@ -1,7 +1,9 @@ ---- Makefile.orig Mon Mar 29 09:41:40 1999 -+++ Makefile Sat May 1 21:48:22 1999 -@@ -1,9 +1,10 @@ +--- Makefile.orig Mon Mar 29 07:41:40 1999 ++++ Makefile Sat Jun 26 18:00:10 1999 +@@ -1,14 +1,17 @@ -LIBDIR = -L/usr/X11R6/lib ++CC ?= gcc ++CFLAGS += -c -Wall +INCLUDES = -I${X11BASE}/include +LIBDIR = -L${X11BASE}/lib LIBS = -lXpm -lXext -lX11 @@ -9,14 +11,20 @@ .c.o: - cc -c -g -O2 -Wall $< -o $*.o -+ cc -c -g -O2 -Wall $(INCLUDES) $< -o $*.o ++ ${CC} ${CFLAGS} ${INCLUDES} $< -o $*.o all: wmtictactoe -@@ -17,5 +18,4 @@ + wmtictactoe: $(OBJS) +- cc -o wmtictactoe $^ $(LIBDIR) $(LIBS) ++ ${CC} -o wmtictactoe $^ ${LIBDIR} ${LIBS} + + clean: + for i in $(OBJS) ; do \ +@@ -17,5 +20,4 @@ rm wmtictactoe install: - /usr/bin/install -c -o 0 -g 0 -s -m 755 wmtictactoe /usr/local/bin/wmtictactoe - -+ /usr/bin/install -c -o 0 -g 0 -s -m 755 wmtictactoe ${PREFIX}/bin/wmtictactoe ++ @/usr/bin/install -c -o 0 -g 0 -s -m 755 wmtictactoe ${PREFIX}/bin/wmtictactoe |