pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/games/level9 Initial import of level9-3.0, an interpre...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8ec70765f3b9
branches:  trunk
changeset: 460213:8ec70765f3b9
user:      dillo <dillo%pkgsrc.org@localhost>
date:      Sun Aug 24 23:04:09 2003 +0000

description:
Initial import of level9-3.0, an interpreter for Level 9's text adventures.

diffstat:

 games/level9/DESCR          |   4 ++++
 games/level9/Makefile       |  28 ++++++++++++++++++++++++++++
 games/level9/PLIST          |   4 ++++
 games/level9/distinfo       |   4 ++++
 games/level9/files/Makefile |  10 ++++++++++
 5 files changed, 50 insertions(+), 0 deletions(-)

diffs (70 lines):

diff -r 9ec97435d104 -r 8ec70765f3b9 games/level9/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/level9/DESCR        Sun Aug 24 23:04:09 2003 +0000
@@ -0,0 +1,4 @@
+An interpreter for the text adventures by Level 9.  Supports versions
+2-4 in many formats, including Spectrum snapshots.
+
+This port uses curses for input/output.
diff -r 9ec97435d104 -r 8ec70765f3b9 games/level9/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/level9/Makefile     Sun Aug 24 23:04:09 2003 +0000
@@ -0,0 +1,28 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/08/24 23:04:09 dillo Exp $
+#
+
+DISTNAME=              Level9_3.0_Source
+PKGNAME=               level9-3.0
+WRKSRC=                        ${WRKDIR}/Unix
+CATEGORIES=            games
+MASTER_SITES=          http://www.ifarchive.org/if-archive/level9/interpreters/level9/
+EXTRACT_SUFX=          .zip
+
+MAINTAINER=            dillo%NetBSD.org@localhost
+HOMEPAGE=              http://www.ifarchive.org/if-archive/level9/interpreters/level9/
+COMMENT=               Curses port of the Level 9 text adventure interpreter
+
+USE_BUILDLINK2=                yes
+# uses halfkey (present since 1.6M), but still doesn't work
+USE_NCURSES=           yes
+
+post-extract:
+       ${CP} ${FILESDIR}/Makefile ${WRKSRC}
+
+do-install:
+       ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/level9
+       ${INSTALL_DATA} ${WRKDIR}/level9.txt ${PREFIX}/share/doc/level9
+       ${INSTALL_PROGRAM} ${WRKSRC}/level9 ${PREFIX}/bin
+
+.include "../../devel/ncurses/buildlink2.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 9ec97435d104 -r 8ec70765f3b9 games/level9/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/level9/PLIST        Sun Aug 24 23:04:09 2003 +0000
@@ -0,0 +1,4 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2003/08/24 23:04:09 dillo Exp $
+bin/level9
+share/doc/level9/level9.txt
+@dirrm share/doc/level9
diff -r 9ec97435d104 -r 8ec70765f3b9 games/level9/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/level9/distinfo     Sun Aug 24 23:04:09 2003 +0000
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2003/08/24 23:04:09 dillo Exp $
+
+SHA1 (Level9_3.0_Source.zip) = 57d946b9c10fab8c287e69885e88db70c1bec454
+Size (Level9_3.0_Source.zip) = 211620 bytes
diff -r 9ec97435d104 -r 8ec70765f3b9 games/level9/files/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/games/level9/files/Makefile       Sun Aug 24 23:04:09 2003 +0000
@@ -0,0 +1,10 @@
+all: level9
+
+level9: level9.o unix-curses.o
+       ${CC} ${LDFLAGS} -o level9 level9.o unix-curses.o -lncurses
+
+unix-curses.o: unix-curses.c ../level9.h
+       ${CC} -I.. ${CFLAGS} -c unix-curses.c
+
+level9.o: ../level9.c ../level9.h
+       ${CC} -I.. ${CFLAGS} -c ../level9.c



Home | Main Index | Thread Index | Old Index