diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-06-27 09:04:35 +0800 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-06-27 09:04:35 +0800 |
commit | f92fd847c9309c6ba9ed805391f283677429e7d8 (patch) | |
tree | e618347d6300ee8c7cdf32a8b73264b639eff85f /games/wmtictactoe | |
parent | 9baf821d3988f6cd5c78b45b3bb1de74a1ae355a (diff) | |
download | freebsd-ports-gnome-f92fd847c9309c6ba9ed805391f283677429e7d8.tar.gz freebsd-ports-gnome-f92fd847c9309c6ba9ed805391f283677429e7d8.tar.zst freebsd-ports-gnome-f92fd847c9309c6ba9ed805391f283677429e7d8.zip |
Update to version 1.0
PR: 12402
Submitted by: maintainer
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 |