pkgsrc-wip/hugo/Makefile
Dieter Baron 1f80d447b5 Import hugo 3.0.6 (will be moved to pkgsrc after freeze)
Hugo is one of the leading interactive fiction design systems.  In
addition to being capable of producing leading-edge text adventures,
it also allows a developer to incorporate true-color graphics
display (which are optional for those who lack either the hardware
or inclination to view graphics) as well as sound effects and music.
And it's free.

This is the ncurses port, without support for sound or graphics.
2003-10-10 15:25:07 +00:00

37 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2003/10/10 15:25:07 dillo Exp $
#
DISTNAME= hugov30_unix_source
PKGNAME= hugo-3.0.06
WRKSRC= ${WRKDIR}/hugov3.0.06
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/
USE_BUILDLINK2= 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]*
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/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"