summaryrefslogtreecommitdiff
path: root/math/xlife/Makefile
diff options
context:
space:
mode:
authorfredb <fredb@pkgsrc.org>2001-12-31 21:32:56 +0000
committerfredb <fredb@pkgsrc.org>2001-12-31 21:32:56 +0000
commitc721e6880d7e8f84b507125de16ee9b0772b3ce6 (patch)
tree564cbd8a502e7ad15fbc6d084c830c0623208b2b /math/xlife/Makefile
parenta908ed3ee476aa381345ba24c5709169ba19a8f1 (diff)
downloadpkgsrc-c721e6880d7e8f84b507125de16ee9b0772b3ce6.tar.gz
Initial import of xlife-5.0, an X implementation of John Horton Conway's
classic "Game of Life".
Diffstat (limited to 'math/xlife/Makefile')
-rw-r--r--math/xlife/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/math/xlife/Makefile b/math/xlife/Makefile
new file mode 100644
index 00000000000..6f460a1600e
--- /dev/null
+++ b/math/xlife/Makefile
@@ -0,0 +1,32 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/12/31 21:32:56 fredb Exp $
+#
+
+DISTNAME= xlife-5.0
+CATEGORIES= math games
+MASTER_SITES= http://www.tuxedo.org/~esr/
+
+MAINTAINER= fredb@netbsd.org
+HOMEPAGE= http://www.tuxedo.org/~esr/software.html
+COMMENT= John Horton Conway's "Game of Life"
+
+USE_IMAKE= yes
+WRKSRC= ${WRKDIR}
+
+INSTALL_TARGET= install
+
+pre-build:
+ ${TOUCH} ${WRKSRC}/collect.man ${WRKSRC}/lifesearchdumb.man
+
+post-install:
+.for m in lifeconv lifesearch xlife
+ ${INSTALL_MAN} ${WRKSRC}/${m}.man ${PREFIX}/man/man1/${m}.1
+ ${INSTALL_MAN} ${WRKSRC}/${m}.0 ${PREFIX}/man/cat1/
+.endfor
+.for d in codd life misc wireworld
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/xlife/${d}
+ cd ${WRKSRC}/${d}; for l in *.l; do \
+ ${INSTALL_DATA} $${l} ${PREFIX}/share/xlife/${d}; \
+ done
+.endfor
+
+.include "../../mk/bsd.pkg.mk"