Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Import pclock-0.13.1: Simple analog clock designed for WindowMaker
pclock is a simple analog clock program designed to run under WindowMaker
window manager (also runs fine on any other window manager which supports
dock apps, such as PWM).  Any 64x64 pixmap may be used as a background.

Submitted by Lubomir Sedlacik <salo@Xtrmntr.org> in PR 18008
  • Loading branch information
hubertf committed Oct 4, 2002
1 parent 0dca653 commit 3f5ab88
Show file tree
Hide file tree
Showing 6 changed files with 102 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/CHANGES
@@ -1,4 +1,4 @@
$NetBSD: CHANGES,v 1.164 2002/10/04 15:48:33 kei Exp $
$NetBSD: CHANGES,v 1.165 2002/10/04 16:11:38 hubertf Exp $

Changes to the packages collection and infrastructure in 2002:

Expand Down Expand Up @@ -3110,3 +3110,4 @@ Changes to the packages collection and infrastructure in 2002:
Updated x2vnc to 1.4 [hubertf 2002-10-04]
Added otpCalc-0.96 [hubertf 2002-10-04]
Updated Mule-UCS to 0.84nb1 [kei 2002-10-04]
Added pclock-0.13.1 [hubertf 2002-10-04]
3 changes: 3 additions & 0 deletions time/pclock/DESCR
@@ -0,0 +1,3 @@
pclock is a simple analog clock program designed to run under WindowMaker
window manager (also runs fine on any other window manager which supports
dock apps, such as PWM). Any 64x64 pixmap may be used as a background.
28 changes: 28 additions & 0 deletions time/pclock/Makefile
@@ -0,0 +1,28 @@
# $NetBSD: Makefile,v 1.1.1.1 2002/10/04 16:10:15 hubertf Exp $
#

DISTNAME= pclock-0.13.1
CATEGORIES= time x11
MASTER_SITES= http://bnt.kourakos.com/~awk/programs/
EXTRACT_SUFX= .tgz

MAINTAINER= salo@Xtrmntr.org
HOMEPAGE= http://www.kourakos.com/~awk/programs/pclock/
COMMENT= Simple analog clock designed for WindowMaker

USE_X11BASE= YES
USE_BUILDLINK_ONLY= YES

MAKE_ENV+= LN=${LN}

post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/pclock
${INSTALL_DATA} ${WRKSRC}/XPM/* ${PREFIX}/share/pclock/
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pclock
${INSTALL_DATA} ${WRKSRC}/CHANGES ${PREFIX}/share/doc/pclock
${INSTALL_DATA} ${WRKSRC}/CREDITS ${PREFIX}/share/doc/pclock
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/pclock

.include "../../graphics/xpm/buildlink.mk"
.include "../../mk/x11.buildlink.mk"
.include "../../mk/bsd.pkg.mk"
23 changes: 23 additions & 0 deletions time/pclock/PLIST
@@ -0,0 +1,23 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2002/10/04 16:10:15 hubertf Exp $
bin/pclock
share/doc/pclock/CHANGES
share/doc/pclock/CREDITS
share/doc/pclock/README
share/pclock/glowclock.xpm
share/pclock/green.xpm
share/pclock/moonphase.xpm
share/pclock/oclock.xpm
share/pclock/radar.xpm
share/pclock/rolex2.xpm
share/pclock/rolexgmt.xpm
share/pclock/round-3d.xpm
share/pclock/square.xpm
share/pclock/swatch.xpm
share/pclock/time-icon.xpm
share/pclock/will-return.xpm
share/pclock/wmaker-tile.xpm
share/pclock/wood-tile.xpm
share/pclock/wristwatch.xpm
share/pclock/yellow-diamond.xpm
@dirrm share/doc/pclock
@dirrm share/pclock
5 changes: 5 additions & 0 deletions time/pclock/distinfo
@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.1.1.1 2002/10/04 16:10:15 hubertf Exp $

SHA1 (pclock-0.13.1.tgz) = 212b8b6a05d76e70ff34fb3bd3e39ed991e2c7e1
Size (pclock-0.13.1.tgz) = 53046 bytes
SHA1 (patch-aa) = 964e52408117cdf0fb7186cbc2365d714834dc7c
41 changes: 41 additions & 0 deletions time/pclock/patches/patch-aa
@@ -0,0 +1,41 @@
$NetBSD: patch-aa,v 1.1.1.1 2002/10/04 16:10:17 hubertf Exp $

--- src/Makefile.orig Thu Nov 25 21:57:58 1999
+++ src/Makefile Tue Aug 20 02:36:32 2002
@@ -1,4 +1,4 @@
-BINDIR = /usr/X11R6/bin
+BINDIR = ${X11PREFIX}/bin

PROG = pclock
OBJS = Main.o Graphics.o getopt.o getopt1.o
@@ -5,10 +5,8 @@

DEFAULT_XPM = round-3d.xpm

-INCDIR = -I/usr/X11R6/include -I.
-LIBDIR = -L/usr/X11R6/lib
-CC = gcc
-CFLAGS = -O -s -Wall
+INCDIR = -I.
+LIBDIR = ${LDFLAGS}
LIBS = -lXpm -lXext -lX11 -lm

###############################################################################
@@ -16,7 +14,7 @@
all: $(PROG)

install: all
- install -s -m 111 -o bin -g bin $(PROG) $(BINDIR)
+ ${BSD_INSTALL_PROGRAM} $(PROG) $(BINDIR)

clean:
rm -f *.o Makefile.bak Default.xpm *~ #*
@@ -27,7 +25,7 @@
###############################################################################

Default.xpm:
- ln -s ../XPM/$(DEFAULT_XPM) $@
+ ${LN} -s ../XPM/$(DEFAULT_XPM) $@

Graphics.o: PClock.h Default.xpm

0 comments on commit 3f5ab88

Please sign in to comment.