Stopwatch does what its name implies - enables hand timing much
like a physical stopwatch. It can also be used as a countdown timer. Stopwatch has millisecond accuracy and no artificial limit on hours. Stopwatch runs on UNIX, Windows, and MacOS. WWW: http://expect.nist.gov/stopwatch/ Author: Don Libes <libes@nist.gov>
This commit is contained in:
parent
7005723b1e
commit
72afd2a174
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=219351
5 changed files with 49 additions and 0 deletions
|
@ -36,6 +36,7 @@
|
|||
SUBDIR += pclock
|
||||
SUBDIR += rclock
|
||||
SUBDIR += sanduhr
|
||||
SUBDIR += stopwatch
|
||||
SUBDIR += swisswatch
|
||||
SUBDIR += t3d
|
||||
SUBDIR += tclock
|
||||
|
|
29
x11-clocks/stopwatch/Makefile
Normal file
29
x11-clocks/stopwatch/Makefile
Normal file
|
@ -0,0 +1,29 @@
|
|||
# New ports collection makefile for: stopwatch
|
||||
# Date created: 28 August 2008
|
||||
# Whom: Edwin Groothuis <edwin@mavetju.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= stopwatch
|
||||
PORTVERSION= 3.5
|
||||
CATEGORIES= x11-clocks
|
||||
MASTER_SITES= http://expect.nist.gov/stopwatch/
|
||||
DISTNAME= stopwatch
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
COMMENT= Stopwatch enables hand timing much like a physical stopwatch
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}-3.4
|
||||
USE_TK= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
PLIST_FILES= bin/stopwatch
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} -e "s,%%LOCALBASE%%,${LOCALBASE}," ${WRKSRC}/stopwatch
|
||||
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/stopwatch ${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
3
x11-clocks/stopwatch/distinfo
Normal file
3
x11-clocks/stopwatch/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (stopwatch.tar.gz) = 4feb97cd7f108c89f17fcb18e55deaf9
|
||||
SHA256 (stopwatch.tar.gz) = f3f56dccd00f669a5f0a4b1f6507ab78e0d1ad18305b760baab34edc68b3ef4e
|
||||
SIZE (stopwatch.tar.gz) = 7962
|
8
x11-clocks/stopwatch/files/patch-stopwatch
Normal file
8
x11-clocks/stopwatch/files/patch-stopwatch
Normal file
|
@ -0,0 +1,8 @@
|
|||
--- stopwatch.orig 2008-08-28 11:19:38.000000000 +1000
|
||||
+++ stopwatch 2008-08-28 11:19:54.000000000 +1000
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/depot/path/wish -f
|
||||
+#!%%LOCALBASE%%/bin/wish -f
|
||||
######################################################################
|
||||
# Name: Stopwatch
|
||||
# Author: Don Libes <libes@nist.gov>
|
8
x11-clocks/stopwatch/pkg-descr
Normal file
8
x11-clocks/stopwatch/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
Stopwatch does what its name implies - enables hand timing much
|
||||
like a physical stopwatch. It can also be used as a countdown timer.
|
||||
|
||||
Stopwatch has millisecond accuracy and no artificial limit on hours.
|
||||
Stopwatch runs on UNIX, Windows, and MacOS.
|
||||
|
||||
WWW: http://expect.nist.gov/stopwatch/
|
||||
Author: Don Libes <libes@nist.gov>
|
Loading…
Reference in a new issue