diff options
author | is <is@pkgsrc.org> | 2001-11-26 20:39:14 +0000 |
---|---|---|
committer | is <is@pkgsrc.org> | 2001-11-26 20:39:14 +0000 |
commit | 17e8d463f6f2b2d6c72d84c3bf0b9dd50d510f89 (patch) | |
tree | f25cd31560a180af8986619e12ea4dd5a19ae040 /time | |
parent | 678c0f86f876a6627f87f5035ca03d672e715ae2 (diff) | |
download | pkgsrc-17e8d463f6f2b2d6c72d84c3bf0b9dd50d510f89.tar.gz |
Display lit face of Earth in ASCII (twin of phoon)
Diffstat (limited to 'time')
-rw-r--r-- | time/globe/DESCR | 2 | ||||
-rw-r--r-- | time/globe/Makefile | 15 | ||||
-rw-r--r-- | time/globe/PLIST | 1 | ||||
-rw-r--r-- | time/globe/distinfo | 5 | ||||
-rw-r--r-- | time/globe/patches/patch-aa | 38 |
5 files changed, 61 insertions, 0 deletions
diff --git a/time/globe/DESCR b/time/globe/DESCR new file mode 100644 index 00000000000..618b526f0c6 --- /dev/null +++ b/time/globe/DESCR @@ -0,0 +1,2 @@ +globe, yet another cute Jef Poskanzer hack, displays the currently-lighted +face of Earth in ASCII. This is a twin of phoon by the same author. diff --git a/time/globe/Makefile b/time/globe/Makefile new file mode 100644 index 00000000000..399ad435192 --- /dev/null +++ b/time/globe/Makefile @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1 2001/11/26 20:39:14 is Exp $ +# + +DISTNAME= globe_26mar94 +PKGNAME= globe-19940326 +CATEGORIES= time +MASTER_SITES= http://www.acme.com/software/globe/ + +MAINTAINER= is@netbsd.org +HOMEPAGE= http://www.acme.com/software/globe/ +COMMENT= display the currently-lighted face of Earth in ASCII + +WRKSRC= ${WRKDIR}/globe + +.include "../../mk/bsd.pkg.mk" diff --git a/time/globe/PLIST b/time/globe/PLIST new file mode 100644 index 00000000000..cdb4d00f0ee --- /dev/null +++ b/time/globe/PLIST @@ -0,0 +1 @@ +@comment $NetBSD: PLIST,v 1.1 2001/11/26 20:39:14 is Exp $ diff --git a/time/globe/distinfo b/time/globe/distinfo new file mode 100644 index 00000000000..b8069aed1d2 --- /dev/null +++ b/time/globe/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2001/11/26 20:39:14 is Exp $ + +SHA1 (globe_26mar94.tar.gz) = e1d27953237d3ae1648080045f86a0529cd01b7f +Size (globe_26mar94.tar.gz) = 9813 bytes +SHA1 (patch-aa) = 1026b2f69c4b2d02da6e643245a07ace9c49b663 diff --git a/time/globe/patches/patch-aa b/time/globe/patches/patch-aa new file mode 100644 index 00000000000..492a692578e --- /dev/null +++ b/time/globe/patches/patch-aa @@ -0,0 +1,38 @@ +$NetBSD: patch-aa,v 1.1 2001/11/26 20:39:15 is Exp $ + +--- Makefile.orig Fri Nov 10 20:11:03 1995 ++++ Makefile +@@ -1,17 +1,15 @@ + # CONFIGURE: the directory where you want the executables installed. +-BINDIR = /usr/local/bin ++BINDIR = ${PREFIX}/bin + + # CONFIGURE: the directory tree where you want the man pages installed. +-MANDIR = /usr/local/man ++MANDIR = ${PREFIX}/man/man1 + + # CONFIGURE: your favorite C compiler. +-CC = gcc + + # CONFIGURE: your favorite C flags. +-CFLAGS = -O ++CFLAGS = -O2 + + # CONFIGURE: your favorite linker flags. +-LDFLAGS = -s + + all: globe + +@@ -19,10 +17,8 @@ + $(CC) $(CFLAGS) globe.c $(LDFLAGS) -o globe + + install: all +- rm -f $(BINDIR)/globe +- cp globe $(BINDIR) +- rm -f $(MANDIR)/man1/globe.1 +- cp globe.1 $(MANDIR)/man1 ++ ${BSD_INSTALL_PROGRAM} globe $(BINDIR) ++ ${BSD_INSTALL_MAN} globe.1 $(MANDIR) + + clean: + rm -f globe a.out core |