5a52a08234
java/openjdk6 support was removed from Mk/bsd.java.mk (r512662) and java/openjdk6 and java/openjdk6-jre were removed from the ports tree (r512663). Now this patch completely removes remaining stuff from the ports tree. PR: 241953 (exp-run) Reviewed by: glewis Approved by: portmgr (antoine) Differential Revision: https://reviews.freebsd.org/D22342
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hfsexplorer
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
DISTVERSION= 0.23.1
|
|
CATEGORIES= sysutils java
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= HFSExplorer read Mac-formatted harddisks and disk images
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= ant:devel/apache-ant
|
|
|
|
DESKTOP_ENTRIES="hfsexplorer" "reader Mac-formatted harddisk" \
|
|
"${DATADIR}/res/icon.png" "${PORTNAME}" \
|
|
"System;Utility;Java;" false
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= unsound
|
|
USE_JAVA= yes
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC}/dist/bin && ${REINPLACE_CMD} -e 's|BASEDIR=".*"|BASEDIR="${DATADIR}/lib"|g' \
|
|
hfsx.sh resview.sh unhfs.sh
|
|
@${REINPLACE_CMD} -e 's|BASEDIR=".*"|BASEDIR="${DATADIR}/lib"|g' \
|
|
${WRKSRC}/dist/bin/hfsexplorer.sh
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${SH} buildall.sh
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/lib
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}/res
|
|
.for f in hfsx.sh resview.sh unhfs.sh
|
|
cd ${WRKSRC} && ${INSTALL_SCRIPT} dist/bin/${f} ${STAGEDIR}${PREFIX}/bin
|
|
.endfor
|
|
cd ${WRKSRC} && ${INSTALL_SCRIPT} dist/bin/hfsexplorer.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} dist/lib/*.jar ${STAGEDIR}${DATADIR}/lib
|
|
cd ${WRKSRC} && ${INSTALL_DATA} dist/res/icon.png ${STAGEDIR}${DATADIR}/res
|
|
|
|
do-install-DOCS-on:
|
|
cd ${WRKSRC}/dist/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|