diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2002-05-31 12:58:43 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2002-05-31 12:58:43 +0000 |
commit | 503873a8702462812bcbf00e89f55009446fcc0e (patch) | |
tree | 52e1ecac424adb4a75339b8964b7efbb10176625 /misc/wmfirew | |
parent | Add wmjulia 0.40, a dockapp that creates an animated Julia set. (diff) |
Add wmfirew 0.20, a dockapp that shows fireworks in action.
PR: 38137
Submitted by: Alexey Dokuchaev <danfe@regency.nsu.ru>
Notes
Notes:
svn path=/head/; revision=60379
Diffstat (limited to 'misc/wmfirew')
-rw-r--r-- | misc/wmfirew/Makefile | 23 | ||||
-rw-r--r-- | misc/wmfirew/distinfo | 1 | ||||
-rw-r--r-- | misc/wmfirew/files/patch-Makefile | 38 | ||||
-rw-r--r-- | misc/wmfirew/pkg-comment | 1 | ||||
-rw-r--r-- | misc/wmfirew/pkg-descr | 4 | ||||
-rw-r--r-- | misc/wmfirew/pkg-plist | 1 |
6 files changed, 68 insertions, 0 deletions
diff --git a/misc/wmfirew/Makefile b/misc/wmfirew/Makefile new file mode 100644 index 000000000000..bcc2bf9dfdcd --- /dev/null +++ b/misc/wmfirew/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: wmfirew +# Date created: 16 May 2002 +# Whom: Alexey Dokuchaev <danfe@regency.nsu.ru> +# +# $FreeBSD$ +# + +PORTNAME= wmfirew +PORTVERSION= 0.20 +CATEGORIES= misc windowmaker afterstep +MASTER_SITES= http://web.novalis.org/programs/ + +MAINTAINER= ports@FreeBSD.org + +WRKSRC= ${WRKDIR}/${PORTNAME}.app/${PORTNAME} +USE_GMAKE= yes +USE_XPM= yes +USE_X_PREFIX= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/misc/wmfirew/distinfo b/misc/wmfirew/distinfo new file mode 100644 index 000000000000..02a1cac7335a --- /dev/null +++ b/misc/wmfirew/distinfo @@ -0,0 +1 @@ +MD5 (wmfirew-0.20.tar.gz) = 0862f9513a71d60d9c6535780f37b5f1 diff --git a/misc/wmfirew/files/patch-Makefile b/misc/wmfirew/files/patch-Makefile new file mode 100644 index 000000000000..ccb43e80f3d9 --- /dev/null +++ b/misc/wmfirew/files/patch-Makefile @@ -0,0 +1,38 @@ +$FreeBSD$ + +--- Makefile.orig Thu May 16 12:16:40 2002 ++++ Makefile Thu May 16 12:17:17 2002 +@@ -1,21 +1,20 @@ +-INCDIR = -I/usr/X11R6/include +-LIBDIR = -L/usr/X11R6/lib +-LIBS = -lXpm -lXext -lX11 +-OBJS = wmfirew.o ../wmgeneral/wmgeneral.o ++CC ?= gcc ++CFLAGS += -c -Wall ++INCDIR = -I${X11BASE}/include ++LIBDIR = -L${X11BASE}/lib ++LIBS = -lXpm -lXext -lX11 ++OBJS = wmfirew.o ../wmgeneral/wmgeneral.o + + .c.o: +- cc -c -g -O2 -Wall -D$(shell echo `uname -s`) $< -o $*.o $(INCDIR) +- +-all: wmfirew ++ ${CC} ${CFLAGS} ${INCDIR} -D${shell echo `uname -s`} $< -o $*.o + + wmfirew: $(OBJS) +- cc -o wmfirew $^ $(LIBDIR) $(LIBS) ++ ${CC} -o wmfirew $^ ${LIBDIR} ${LIBS} ++ ++all: wmfirew + + clean: +- for i in $(OBJS) ; do \ ++ for i in ${OBJS}; do \ + rm -f $$i; \ + done +- rm -f wmfirew +- +-install: +- mv wmfirew /usr/local/bin ++ rm -f wmfirew core diff --git a/misc/wmfirew/pkg-comment b/misc/wmfirew/pkg-comment new file mode 100644 index 000000000000..be5d93525b58 --- /dev/null +++ b/misc/wmfirew/pkg-comment @@ -0,0 +1 @@ +A dockapp that shows fireworks in action diff --git a/misc/wmfirew/pkg-descr b/misc/wmfirew/pkg-descr new file mode 100644 index 000000000000..3b4e79ec8baf --- /dev/null +++ b/misc/wmfirew/pkg-descr @@ -0,0 +1,4 @@ +A WindowMaker/AfterStep dockable app, showing fireworks in action. +Not particularly useful, but looks kinda cool. + +WWW: http://web.novalis.org/ diff --git a/misc/wmfirew/pkg-plist b/misc/wmfirew/pkg-plist new file mode 100644 index 000000000000..5053cbcc21e8 --- /dev/null +++ b/misc/wmfirew/pkg-plist @@ -0,0 +1 @@ +bin/wmfirew |