44 lines
989 B
Makefile
44 lines
989 B
Makefile
# New ports collection makefile for: JNetHack 3.4.x
|
|
# Date created: 16 June 2002
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTREVISION= 1
|
|
|
|
CATEGORIES= japanese games
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
MASTERDIR= ${.CURDIR}/../../games/nethack34
|
|
|
|
FILESDIR= ${.CURDIR}/files
|
|
PATCHDIR= ${.CURDIR}/files
|
|
MD5_FILE= ${.CURDIR}/distinfo
|
|
COMMENT= ${.CURDIR}/pkg-comment
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
PATCH_SITES= http://downloads.sourceforge.jp/jnethack/789/
|
|
PATCHFILES= jnethack-${PORTVERSION}-0.7.diff.gz
|
|
PATCH_DIST_STRIP= -p1
|
|
|
|
USE_BISON= yes
|
|
|
|
# Configure these variables as you want them to be.
|
|
HACKNAME?= jnethack
|
|
HACKDIR?= lib/${HACKNAME}
|
|
HACKDOCSDIR?= share/doc/ja/nethack
|
|
|
|
post-install: jnethack-post-install
|
|
|
|
jnethack-post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/${HACKDOCSDIR}
|
|
.for i in README.j ChangeLog.j INSTALL.j
|
|
${INSTALL_DATA} ${WRKSRC}/$i ${PREFIX}/${HACKDOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include "${MASTERDIR}/Makefile"
|