diff options
author | dillo <dillo@pkgsrc.org> | 2004-05-22 23:37:06 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2004-05-22 23:37:06 +0000 |
commit | 0d8a25f043a73d46304a96ad64663dfa424a0f39 (patch) | |
tree | 1cc95721474085dd1ec70669ec1f5a61dc63a639 /games/hugo/Makefile | |
parent | 1c5d0d6255f639a5a957650c7cd899f296286154 (diff) | |
download | pkgsrc-0d8a25f043a73d46304a96ad64663dfa424a0f39.tar.gz |
import hugo 3.0.07:
A compiler and interpreter for the Hugo interactive fiction system.
The interpreter is the curses port without support for graphics or
sound.
Diffstat (limited to 'games/hugo/Makefile')
-rw-r--r-- | games/hugo/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/games/hugo/Makefile b/games/hugo/Makefile new file mode 100644 index 00000000000..b5cad0532e9 --- /dev/null +++ b/games/hugo/Makefile @@ -0,0 +1,38 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/05/22 23:37:06 dillo Exp $ +# + +DISTNAME= hugov30_unix_source +PKGNAME= hugo-3.0.07 +CATEGORIES= games +MASTER_SITES= http://www.ifarchive.org/if-archive/programming/hugo/source/ +DISTFILES= ${DISTNAME}${EXTRACT_SUFX} hugolib.zip + +MAINTAINER= dillo@NetBSD.org +HOMEPAGE= http://161.184.245.22/tessman/gcc/hugo.html +COMMENT= Interactive fiction design system and interpreter + +SITES_hugolib.zip=http://www.ifarchive.org/if-archive/programming/hugo/library/ + +DIST_SUBDIR= ${PKGNAME_NOREV} +USE_BUILDLINK3= yes +USE_GNU_TOOLS+= make +# uses halfkey (present since 1.6M) +INCOMPAT_CURSES+= NetBSD-1.4[Y-Z]* NetBSD-1.5* NetBSD-1.6 NetBSD-1.6.* +INCOMPAT_CURSES+= NetBSD-1.6[A-L]* +WRKSRC= ${WRKDIR}/hugov3.0.07 + +LIBDIR= ${PREFIX}/share/hugo + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/hc ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/hd ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/he ${PREFIX}/bin + ${INSTALL_DATA_DIR} ${LIBDIR} + for f in hugofix.g hugofix.h hugolib.h objlib.h resource.h \ + system.h verblib.g verblib.h verbstub.g verbstub.h window.h; \ + do \ + ${INSTALL_DATA} ${WRKDIR}/$$f ${LIBDIR}; \ + done + +.include "../../devel/ncurses/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |