diff options
author | pav <pav@FreeBSD.org> | 2005-02-26 03:12:02 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-02-26 03:12:02 +0800 |
commit | 35270efd1767979850513b4a4366981fc2b1b719 (patch) | |
tree | 8e79271aa4da790a969b2289c07f5e38b3957ac9 /games | |
parent | 83273367f02607fa0046a185be760078359ce20d (diff) | |
download | freebsd-ports-gnome-35270efd1767979850513b4a4366981fc2b1b719.tar.gz freebsd-ports-gnome-35270efd1767979850513b4a4366981fc2b1b719.tar.zst freebsd-ports-gnome-35270efd1767979850513b4a4366981fc2b1b719.zip |
xdesktopwaves is a cellular automata setting the background
of your X Window System under water. Windows and mouse are
like ships on the sea. Each movement of these ends up in
moving water waves. You can even have rain and/or storm
stirring up the water.
PR: ports/78047
Submitted by: User & <ericyu@mail2000.com.tw>
Diffstat (limited to 'games')
-rw-r--r-- | games/Makefile | 1 | ||||
-rw-r--r-- | games/xdesktopwaves/Makefile | 23 | ||||
-rw-r--r-- | games/xdesktopwaves/distinfo | 2 | ||||
-rw-r--r-- | games/xdesktopwaves/files/patch-makefile | 28 | ||||
-rw-r--r-- | games/xdesktopwaves/pkg-descr | 7 |
5 files changed, 61 insertions, 0 deletions
diff --git a/games/Makefile b/games/Makefile index 2ec50dc9d3bc..6e60b9690913 100644 --- a/games/Makefile +++ b/games/Makefile @@ -548,6 +548,7 @@ SUBDIR += xcubes SUBDIR += xdeblock SUBDIR += xdemineur + SUBDIR += xdesktopwaves SUBDIR += xdigger SUBDIR += xdino SUBDIR += xeji diff --git a/games/xdesktopwaves/Makefile b/games/xdesktopwaves/Makefile new file mode 100644 index 000000000000..5f7feba6e9b5 --- /dev/null +++ b/games/xdesktopwaves/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: xdesktopwaves +# Date created: 24 February 2005 +# Whom: ericyu@mail2000.com.tw +# +# $FreeBSD$ +# + +PORTNAME= xdesktopwaves +PORTVERSION= 1.3 +CATEGORIES= games +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Simulation of water waves on the desktop + +USE_X_PREFIX= yes + +MAN1= xdesktopwaves.1 + +PLIST_FILES= bin/xdesktopwaves + +.include <bsd.port.mk> diff --git a/games/xdesktopwaves/distinfo b/games/xdesktopwaves/distinfo new file mode 100644 index 000000000000..e7605cb7ecbf --- /dev/null +++ b/games/xdesktopwaves/distinfo @@ -0,0 +1,2 @@ +MD5 (xdesktopwaves-1.3.tar.gz) = 4ef1233527cb3bbf06b8fdc407b04ebe +SIZE (xdesktopwaves-1.3.tar.gz) = 49302 diff --git a/games/xdesktopwaves/files/patch-makefile b/games/xdesktopwaves/files/patch-makefile new file mode 100644 index 000000000000..ab57a74ad54d --- /dev/null +++ b/games/xdesktopwaves/files/patch-makefile @@ -0,0 +1,28 @@ +--- Makefile.orig Sat Dec 18 13:47:40 2004 ++++ Makefile Wed Feb 23 22:28:56 2005 +@@ -11,19 +11,19 @@ + + #=========================== C compiler configuration ========================== + +-CC = gcc +-CFLAGS = -I/usr/X11R6/include -O2 ++#CC = gcc ++CFLAGS += -I$(X11BASE)/include + + #============================= Linker configuration ============================ + +-LINK = gcc +-LFLAGS = -L/usr/X11R6/lib ++LINK = $(CC) ++LFLAGS = -L$(X11BASE)/lib + LIBS = -lm -lX11 -lXext + + #============================ Installer configuration ========================== + +-BINDIR = /usr/X11R6/bin +-MAN1DIR = /usr/X11R6/man/man1 ++BINDIR = $(X11BASE)/bin ++MAN1DIR = $(X11BASE)/man/man1 + INSTALL = install + RM = rm -f -v + diff --git a/games/xdesktopwaves/pkg-descr b/games/xdesktopwaves/pkg-descr new file mode 100644 index 000000000000..766ac44fcd75 --- /dev/null +++ b/games/xdesktopwaves/pkg-descr @@ -0,0 +1,7 @@ +xdesktopwaves is a cellular automata setting the background +of your X Window System under water. Windows and mouse are +like ships on the sea. Each movement of these ends up in +moving water waves. You can even have rain and/or storm +stirring up the water. + +WWW: http://xdesktopwaves.sourceforge.net/ |