diff options
author | pat <pat@FreeBSD.org> | 2002-08-05 21:34:03 +0000 |
---|---|---|
committer | pat <pat@FreeBSD.org> | 2002-08-05 21:34:03 +0000 |
commit | 515ae600724fafd5fd0eb40b6cbb99e8d01f875b (patch) | |
tree | 0958f7e700bba543f7e35c52b41ca25cca02da14 /x11-clocks | |
parent | 003ab1d681f27cb2fbdeebcdf7a44bed72a62f9f (diff) | |
download | FreeBSD-ports-515ae600724fafd5fd0eb40b6cbb99e8d01f875b.zip FreeBSD-ports-515ae600724fafd5fd0eb40b6cbb99e8d01f875b.tar.gz |
Add new port wmfuzzy: A clock dockapp that uses text and fuzzy approximation
to tell you time.
PR: ports/41336
Submitted by: Adam Weinberger <adam@vectors.cx>
Reviewed by: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
Diffstat (limited to 'x11-clocks')
-rw-r--r-- | x11-clocks/Makefile | 1 | ||||
-rw-r--r-- | x11-clocks/wmfuzzy/Makefile | 25 | ||||
-rw-r--r-- | x11-clocks/wmfuzzy/distinfo | 1 | ||||
-rw-r--r-- | x11-clocks/wmfuzzy/files/patch-Makefile | 25 | ||||
-rw-r--r-- | x11-clocks/wmfuzzy/pkg-comment | 1 | ||||
-rw-r--r-- | x11-clocks/wmfuzzy/pkg-descr | 11 | ||||
-rw-r--r-- | x11-clocks/wmfuzzy/pkg-plist | 1 |
7 files changed, 65 insertions, 0 deletions
diff --git a/x11-clocks/Makefile b/x11-clocks/Makefile index 4a6fccd..df74df1 100644 --- a/x11-clocks/Makefile +++ b/x11-clocks/Makefile @@ -28,6 +28,7 @@ SUBDIR += wmclock SUBDIR += wmdate SUBDIR += wmfishtime + SUBDIR += wmfuzzy SUBDIR += wmitime SUBDIR += wmtime SUBDIR += wmtimer diff --git a/x11-clocks/wmfuzzy/Makefile b/x11-clocks/wmfuzzy/Makefile new file mode 100644 index 0000000..976fb4f --- /dev/null +++ b/x11-clocks/wmfuzzy/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: wmfuzzy +# Date created: 4 August 2002 +# Whom: Adam Weinberger <adam@vectors.cx> +# +# $FreeBSD$ +# + +PORTNAME= wmfuzzy +PORTVERSION= 0.2 +CATEGORIES= x11-clocks windowmaker +MASTER_SITES= http://www.manicai.net/comp/wmfuzzy/ +EXTRACT_SUFX= .tgz + +MAINTAINER= adam@vectors.cx + +LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt + +WRKSRC= ${WRKDIR}/${PORTNAME}/src +USE_X_PREFIX= yes +USE_XPM= yes + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/wmfuzzy ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/x11-clocks/wmfuzzy/distinfo b/x11-clocks/wmfuzzy/distinfo new file mode 100644 index 0000000..b12747d --- /dev/null +++ b/x11-clocks/wmfuzzy/distinfo @@ -0,0 +1 @@ +MD5 (wmfuzzy-0.2.tgz) = a1d07243fe343921d61b6edfa83aa127 diff --git a/x11-clocks/wmfuzzy/files/patch-Makefile b/x11-clocks/wmfuzzy/files/patch-Makefile new file mode 100644 index 0000000..1cc2ec2 --- /dev/null +++ b/x11-clocks/wmfuzzy/files/patch-Makefile @@ -0,0 +1,25 @@ +--- Makefile.orig Thu Aug 1 18:55:34 2002 ++++ Makefile Mon Aug 5 13:17:41 2002 +@@ -12,11 +12,8 @@ + #group=-g root + + +-CC = gcc +-CFLAGS = -g -Wall +-INCDIR = -I/usr/X11R6/include/X11 -I/usr/X11R6/include +-DESTDIR= /usr/X11R6 +-LIBDIR = -L/usr/X11R6/lib ++INCDIR = -I${X11BASE}/include/X11 -I${X11BASE}/include -I${LOCALBASE}/include ++LIBDIR = -L${X11BASE}/lib -L${LOCALBASE}/lib + # for linux + LIBS = -lXpm -lX11 -lXext + # for Solaris +@@ -36,7 +33,7 @@ + all: ${name} + + ${name}: $(OBJS) +- $(CC) $(CFLAGS) $(SYSTEM) $(LIBDIR) $(LIBS) $^ -o ${name} ++ $(CC) $(CFLAGS) $(SYSTEM) $(LIBDIR) $(LIBS) $(OBJS) -o ${name} + + install: all + install ${owner} ${group} -s -m 755 ./${name} ${prefix}/${name} diff --git a/x11-clocks/wmfuzzy/pkg-comment b/x11-clocks/wmfuzzy/pkg-comment new file mode 100644 index 0000000..6fc0c95 --- /dev/null +++ b/x11-clocks/wmfuzzy/pkg-comment @@ -0,0 +1 @@ +A fuzzy clock WindowMaker dockapp diff --git a/x11-clocks/wmfuzzy/pkg-descr b/x11-clocks/wmfuzzy/pkg-descr new file mode 100644 index 0000000..385a2e2 --- /dev/null +++ b/x11-clocks/wmfuzzy/pkg-descr @@ -0,0 +1,11 @@ +wmfuzzy is yet another clock for Windowmaker (so as with ASClock +and however many others). The difference between it and all of those +(that I know of) is that the it only gives you the approximate time +and displays it textually. + +Why? because it seemed a fun idea and let's face it when was the +last time you cared it was 22:58 rather than "Five to Eleven?" + +WWW: http://www.manicai.net/comp/wmfuzzy + +-Adam Weinberger adam@vectors.cx diff --git a/x11-clocks/wmfuzzy/pkg-plist b/x11-clocks/wmfuzzy/pkg-plist new file mode 100644 index 0000000..88b15c0 --- /dev/null +++ b/x11-clocks/wmfuzzy/pkg-plist @@ -0,0 +1 @@ +bin/wmfuzzy |