diff options
author | hq <hq@FreeBSD.org> | 2006-02-14 14:09:59 +0000 |
---|---|---|
committer | hq <hq@FreeBSD.org> | 2006-02-14 14:09:59 +0000 |
commit | 487b1196c8b439632c755310d8345e8eca117a61 (patch) | |
tree | 0550fac05fe5dbce03ee7a86398f35091d310ddc /games/ftjava/Makefile | |
parent | 9831ae98cbab51286653f7335caa9a4bd640037f (diff) | |
download | FreeBSD-ports-487b1196c8b439632c755310d8345e8eca117a61.zip FreeBSD-ports-487b1196c8b439632c755310d8345e8eca117a61.tar.gz |
FTJava is a graphical play by email (PBEM) client for Ground Zero Games Full
Thrust. Full Thrust is a minatures based system designed to allow one to play
massive science fiction style fleet battles in a reasonable amount of time.
It emphasizes strategy and fun over rule lawyers and micromanagement.
Authors: Jon Davis
WWW: http://home.nycap.rr.com/davisje/ftjava/index.html (FTJava)
Authors: Jon Tuffley
WWW: http://www.gzg.com (Ground Zero Games)
PR: 93102
Submitted by: Peter Thoenen <eol1@yahoo.com>
Diffstat (limited to 'games/ftjava/Makefile')
-rw-r--r-- | games/ftjava/Makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/games/ftjava/Makefile b/games/ftjava/Makefile new file mode 100644 index 0000000..90cac7d --- /dev/null +++ b/games/ftjava/Makefile @@ -0,0 +1,57 @@ +# New ports collection makefile for: ftjava +# Date created: 06FEB11 +# Whom: peter.thoenen@yahoo.com +# +# $FreeBSD$ + +PORTNAME= ftjava +PORTVERSION= 0.19 +CATEGORIES= games java +MASTER_SITES= http://www.warpfish.com/davisje/:file1 \ + http://home.nycap.rr.com/davisje/ftjava/:doc1 +DISTFILES= FTJavaV${PORTVERSION}.zip:file1 \ + FTJava_Documentation.html:doc1 faq.html:doc1 FTJava_Linux.html:doc1 +DIST_SUBDIR= ${PORTNAME} +EXTRACT_ONLY= FTJavaV${PORTVERSION}.zip + +MAINTAINER= peter.thoenen@yahoo.com +COMMENT= Full Thrust PBEM Client + +USE_JAVA= yes +JAVA_VERSION= 1.4+ +USE_ZIP= yes +NO_BUILD= yes +NO_WRKSUBDIR= yes + +IGNOREFILES= FTJava_Documentation.html faq.html FTJava_Linux.html + +DATADIR= ${JAVASHAREDIR}/${PORTNAME} +DATAFILES= Images IncomingGames OutgoingGames Ships ftjava \ + activation.jar imap.jar log4j-1.2.7.jar mail.jar \ + mailapi.jar png.jar pop3.jar smtp.jar xerces.jar \ + xercesImpl.jar xmlParserAPIs.jar + +.if !defined(NOPORTDOCS) +PORTDOCS= FTJava_Linux.html faq.html FTJava_Documentation.html +.endif + +SUB_FILES= ftjava.sh + +DESKTOP_ENTRIES= "FTJava" "A PBEM client for Full Thrust" \ + "${DATADIR}/Images/FTJava.ico" \ + "ftjava" "Application;Game;BoardGame;StrategyGame" \ + false + +do-install: + @${MKDIR} ${DATADIR} + @cd ${WRKSRC} && ${FIND} ${DATAFILES} -type d -exec ${MKDIR} ${DATADIR}/{} ";" + @cd ${WRKSRC} && ${FIND} ${DATAFILES} -type f -exec ${INSTALL_DATA} {} ${DATADIR}/{} ";" + @${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME:L} +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for doc in ${PORTDOCS} + @${INSTALL_DATA} ${DISTDIR}/${DIST_SUBDIR}/${doc} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |