1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-31 10:46:16 +00:00
freebsd-ports/games/jin/Makefile
Nicola Vitale 59fe2fc570 Jin is an open source, cross platform, graphical client (interface)
for chess servers. It currently supports these servers:

    * The Internet Chess Club (aka ICC)
    * The Free Internet Chess Server (aka FICS)

A short list of Jin's main features:

    * Graphical chess board with many board patterns and piece sets
      to choose from. You can also create your own
    * Chat/Command console with (customizable) color-coding for
      different types of chat/text
    * A seek graph, showing the currently sought games in a visual manner
    * Flexible game logger, which saves your finished games to your
      hard disk (doesn't work in JinApplet)
    * A scripter, which allows you to define automatic responses
      to certain events
    * A list of common actions, which can be quickly executed
      at the press of a button

WWW:	http://www.jinchess.com/
2007-03-06 09:07:23 +00:00

46 lines
974 B
Makefile

# New ports collection makefile for: jin
# Date created: 2007-03-05
# Whom: Nicola Vitale <nivit@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= jin
PORTVERSION= 2.14.1
CATEGORIES= games java
MASTER_SITES= SF
DISTNAME= ${PORTNAME}-${PORTVERSION}-unix
MAINTAINER= nivit@FreeBSD.org
COMMENT= A graphical client for chess servers
NO_BUILD= yes
USE_JAVA= yes
JAVA_VERSION= 1.4+
SUB_FILES= ${PORTNAME}
SUB_LIST= JINJAR=${JINJAR}
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
JINJAR= ${PORTNAME}.jar
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
FIND_DIRS= . -type d
FIND_DATA= . -type f
RM_FILES= ${PORTNAME} README changelog.txt gpl.txt
post-extract:
.for f in ${RM_FILES}
@${RM} ${WRKSRC}/${f}
.endfor
do-install:
@${MKDIR} ${DATADIR}
@cd ${WRKSRC} && ${FIND} ${FIND_DIRS} -exec ${MKDIR} ${DATADIR}/{} ";"
@cd ${WRKSRC} && ${FIND} ${FIND_DATA} -exec ${INSTALL_DATA} {} ${DATADIR}/{} ";"
@${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>