freebsd-ports/sysutils/jtopen/Makefile
Edwin Groothuis f5f3051212 [NEW PORT] sysutils/jtopen: a Java library to access OS/400 or i5/OS system
JTOpen is the open source version of the IBM Toolbox for Java
    licensed program product. The IBM Toolbox for Java is a library
    of Java classes supporting the client/server and internet
    programming models to a system running OS/400 or i5/OS. The
    classes can be used by Java applets, servlets, and applications
    to easily access OS/400 and i5/OS data and resources.

    The Toolbox does not require additional client support over and
    above what is provided by the Java Virtual Machine and TCP/IP.

    WWW: http://jt400.sourceforge.net/

PR:		ports/124534
Submitted by:	Marcin Cieslak <saper@system.pl>
2008-06-13 02:08:24 +00:00

43 lines
951 B
Makefile

# New ports collection makefile for: jtopen
# Date created: 2008-06-13
# Whom: Marcin Cieslak <saper@SYSTEM.PL>
#
# $FreeBSD$
#
PORTNAME= jtopen
PORTVERSION= 6.2
CATEGORIES= sysutils java
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= jt400
DISTNAME= ${PORTNAME}_${PORTVERSION:S/./_/}
MAINTAINER= saper@SYSTEM.PL
COMMENT= JTOpen is a Java library to access OS/400 or i5/OS system
USE_ZIP= yes
NO_WRKSUBDIR= yes
USE_JAVA= 1.4+
NO_BUILD= yes
JAR_FILES= composer.jar jt400.jar jt400Proxy.jar jt400Servlet.jar jui400.jar \
outputwriters.jar reportwriter.jar tes.jar uitools.jar util400.jar
DOC_FILES= changes.html license.html readme.html
.include <bsd.port.pre.mk>
do-install:
.for i in ${JAR_FILES}
${INSTALL_DATA} ${WRKSRC}/lib/${i} ${JAVAJARDIR}
.endfor
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for d in ${DOC_FILES}
${INSTALL_MAN} ${WRKSRC}/${d} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.post.mk>