diff options
author | steve <steve@FreeBSD.org> | 1999-11-01 12:25:12 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-11-01 12:25:12 +0800 |
commit | 3647ae57f45962488692cfd048857a154c4dfafc (patch) | |
tree | 530c2259c9b4276082af7e986a816ded8bbf55aa /java/infobus/Makefile | |
parent | 0b3b5dc1ba8e8d7613b85632d44a4a799d40fd7f (diff) | |
download | freebsd-ports-gnome-3647ae57f45962488692cfd048857a154c4dfafc.tar.gz freebsd-ports-gnome-3647ae57f45962488692cfd048857a154c4dfafc.tar.zst freebsd-ports-gnome-3647ae57f45962488692cfd048857a154c4dfafc.zip |
Initial import of infobus version 1.2.
Enables dynamic exchange of data between JavaBeans(TM).
PR: 13163
Submitted by: Jose Marques <noway@nohow.demon.co.uk>
Diffstat (limited to 'java/infobus/Makefile')
-rw-r--r-- | java/infobus/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/java/infobus/Makefile b/java/infobus/Makefile new file mode 100644 index 000000000000..4c536feca09f --- /dev/null +++ b/java/infobus/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: Infobus 1.2 +# Version required: 1.2 +# Date created: 1999/08/08 +# Whom: Jose Marques +# +# $Id:$ +# + +DISTNAME= ib12 +PKGNAME= infobus-1.2 +CATEGORIES= java +EXTRACT_SUFX= .zip + +MAINTAINER= noway@nohow.demon.co.uk + +RUN_DEPENDS= ${PREFIX}/jdk${JDK_VERSION}/bin/java:${PORTSDIR}/java/jdk \ + ${PREFIX}/share/java/classes/collections.jar:${PORTSDIR}/java/collections + +USE_ZIP= YES + +WRKSRC= ${WRKDIR} +JDK_VERSION= 1.1.8 +NO_BUILD= yes +NO_CDROM= "See the license" + +.include <bsd.port.pre.mk> +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +IGNORE= "You must manually fetch the distribution from http://java.sun.com/beans/infobus/index.html and place it in ${DISTDIR} then run make again" +.endif + +do-install: + @cd ${WRKSRC}; \ + ${MKDIR} ${PREFIX}/share/java/classes/; \ + ${CP} ${WRKSRC}/infobus.jar ${PREFIX}/share/java/classes/; \ + ${MKDIR} ${PREFIX}/share/java/${PKGNAME}/; \ + ${CP} LICENSE.HTML *.java *.html coffee6.gif examples.mak makefile moneyman.mf ${PREFIX}/share/java/${PKGNAME}/; \ + ${CP} -R doc ${PREFIX}/share/java/${PKGNAME}/ + +.include <bsd.port.post.mk> |