SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
46
devel/javahelp/Makefile
Normal file
46
devel/javahelp/Makefile
Normal file
|
@ -0,0 +1,46 @@
|
|||
COMMENT = online help system for java platform applications
|
||||
|
||||
VERSION = 2.0.05
|
||||
VERSION_ = ${VERSION:S/./_/g}
|
||||
DISTNAME = javahelp${VERSION}
|
||||
DISTFILES = javahelp${VERSION_}.zip
|
||||
PKGNAME = javahelp-${VERSION}
|
||||
CATEGORIES = devel
|
||||
REVISION = 3
|
||||
|
||||
HOMEPAGE = https://javahelp.java.net/
|
||||
MAINTAINER = Bryan Everly <bryan@bceassociates.com>
|
||||
|
||||
MODULES = java
|
||||
MODJAVA_VER = 1.8+
|
||||
|
||||
RUN_DEPENDS = java/javaPathHelper
|
||||
|
||||
# Sun Binary Code License
|
||||
PERMIT_PACKAGE = Yes
|
||||
|
||||
MASTER_SITES = http://www.intricatesoftware.com/distfiles/
|
||||
|
||||
NO_BUILD = Yes
|
||||
NO_TEST = Yes
|
||||
|
||||
WRKDIST = ${WRKDIR}/jh${VERSION:R}
|
||||
INSTALL_DIR = ${MODJAVA_DOC_DIR}/javahelp
|
||||
EXAMPLE_DIR = ${MODJAVA_EXAMPLE_DIR}/javahelp
|
||||
JAR_DIR = ${MODJAVA_JAR_DIR}/javahelp
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${INSTALL_DIR} ${EXAMPLE_DIR} ${JAR_DIR}/bin ${JAR_DIR}/lib
|
||||
cp ${WRKDIST}/README ${INSTALL_DIR}
|
||||
cp ${WRKDIST}/*.html ${INSTALL_DIR}
|
||||
cp ${WRKDIST}/src.jar ${INSTALL_DIR}
|
||||
cp -R ${WRKDIST}/doc ${INSTALL_DIR}
|
||||
cp -R ${WRKDIST}/demos ${EXAMPLE_DIR}
|
||||
cp -R ${WRKDIST}/javahelp/lib/* ${JAR_DIR}/lib/
|
||||
cp -R ${WRKDIST}/javahelp/bin/*.jar ${JAR_DIR}/bin/
|
||||
${INSTALL_PROGRAM} ${FILESDIR}/jhsearch ${PREFIX}/bin/jhsearch
|
||||
${SUBST_PROGRAM} ${FILESDIR}/jhsearch ${PREFIX}/bin/jhsearch
|
||||
${INSTALL_PROGRAM} ${FILESDIR}/jhindexer ${PREFIX}/bin/jhindexer
|
||||
${SUBST_PROGRAM} ${FILESDIR}/jhindexer ${PREFIX}/bin/jhindexer
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/javahelp/distinfo
Normal file
2
devel/javahelp/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (javahelp2_0_05.zip) = KFcoq4y+vStRUx+3x/syE+bPgr2NGFHM0Mp4r3oRGJ8=
|
||||
SIZE (javahelp2_0_05.zip) = 8388898
|
9
devel/javahelp/files/jhindexer
Normal file
9
devel/javahelp/files/jhindexer
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
JAVACMD=$(javaPathHelper -c javahelp)
|
||||
|
||||
if [ -z "${JAVACMD}" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
exec ${JAVACMD} -jar ${TRUEPREFIX}/share/java/classes/javahelp/bin/jhindexer.jar "$@"
|
9
devel/javahelp/files/jhsearch
Normal file
9
devel/javahelp/files/jhsearch
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
JAVACMD=$(javaPathHelper -c javahelp)
|
||||
|
||||
if [ -z "${JAVACMD}" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
exec ${JAVACMD} -jar ${TRUEPREFIX}/share/java/classes/javahelp/bin/jhsearch.jar "$@"
|
5
devel/javahelp/pkg/DESCR
Normal file
5
devel/javahelp/pkg/DESCR
Normal file
|
@ -0,0 +1,5 @@
|
|||
The JavaHelp system is an online help system that developers can use
|
||||
to add online help to their Java platform applications. The JavaHelp
|
||||
system is both a JCP specification (JSR 97) and a reference
|
||||
implementation of that specification. The JavaHelp system open
|
||||
source project includes the source to the reference implementation.
|
1110
devel/javahelp/pkg/PLIST
Normal file
1110
devel/javahelp/pkg/PLIST
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue