pkgsrc-wip/netx/Makefile
pancake ;) 0151ae8c2c * Initial import of netx
Netx is a high-quality implementation of the Java Network Launching Protocol
(JNLP). It downloads code over the network for applications and applets,
caches it, and runs it in a secure environment.

General Features of netx and JNLP:

    * Quality: Highest quality open-source JNLP client.
    * Modular: Easily add JNLP capabilities to any applications.
    * Security: Run code in a sandbox or log its activities.
    * Small Size: Loads from a ~130K JAR file.
    * Auto-Update: No special code needed to auto-update apps.
    * Fast startup: Runs code from a cache for fast starting.
    * Saves Memory: Supports running apps in a shared JVM.
    * No Browser: Runs apps and applets without a browser.
    * Web Based: No installers needed to deploy an application.

Netx was designed from the ground-up to be a library for adding JNLP features
to other applications. This allows the API to be clean, simple, and easy to
use.  Netx avoids the bloat and complication from application browsers and
other UIs because these are done by other apps such as the Java Start button
and OCD/Xito.
2006-06-11 12:58:19 +00:00

28 lines
672 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2006/06/11 12:58:19 poppnk Exp $
#
DISTNAME= netx-${VERSION}
CATEGORIES= wip sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=jnlp/}
EXTRACT_SUFX= .jar
VERSION= 0.5
MAINTAINER= pancake@phreaker.net
HOMEPAGE= http://jnlp.sourceforge.net/
COMMENT= A free JNLP implementation
NO_BUILD=#defined
JAVA_APP_TARGETS= jnlp
JAVA_APP_BIN.jnlp= netx
JAVA_APP_MAIN.jnlp= netx.jnlp.runtime.Boot13
JAVA_APP_CLASSPATH.jnlp= ${JAR_PREFIX}/netx-${VERSION}.jar
do-extract:
do-install:
${INSTALL_DATA} ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} \
${JAR_PREFIX}/netx-${VERSION}.jar
.include "../../wip/mk/java-app.mk"
.include "../../mk/bsd.pkg.mk"