mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
146e74073c
that this port can be built. Submitted by: pointyhat via pav
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
# New ports collection makefile for: hfsexplorer
|
|
# Date created: 2009-11-27
|
|
# Whom: Gvozdikov Veniamin <g.veniamin@googlemail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hfsexplorer
|
|
PORTVERSION= 0.21
|
|
CATEGORIES= sysutils java
|
|
MASTER_SITES= SF/catacombae/HFSExplorer/${PORTVERSION}/
|
|
DISTNAME= ${PORTNAME}-0_21-src
|
|
|
|
MAINTAINER= g.veniamin@googlemail.com
|
|
COMMENT= HFSExplorer read Mac-formatted harddisks and disk images
|
|
|
|
BUILD_DEPENDS= ant:${PORTSDIR}/devel/apache-ant
|
|
|
|
LICENSE= GPLv3
|
|
|
|
DESKTOP_ENTRIES="hfsexplorer" "reader Mac-formatted harddisk" \
|
|
"${DATADIR}/res/icon.png" "${PORTNAME}" \
|
|
"System;Utility;Java;" false
|
|
|
|
USE_ZIP= yes
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC}/dist && ${REINPLACE_CMD} -e 's|lib/|${DATADIR}/lib/|g' \
|
|
hfsx.sh resview.sh unhfs.sh
|
|
@${REINPLACE_CMD} -e 's|lib|${DATADIR}/lib|g' \
|
|
${WRKSRC}/dist/runfsb.sh
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${SH} buildall.sh
|
|
|
|
do-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@cd ${WRKSRC}/dist/doc && ${COPYTREE_SHARE} html ${DOCSDIR}/
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${DATADIR}/lib
|
|
@${MKDIR} ${DATADIR}/res
|
|
.for f in hfsx.sh resview.sh unhfs.sh
|
|
@cd ${WRKSRC} && ${INSTALL_SCRIPT} dist/${f} ${PREFIX}/bin
|
|
.endfor
|
|
@cd ${WRKSRC} && ${INSTALL_SCRIPT} dist/runfsb.sh ${PREFIX}/bin/${PORTNAME}
|
|
@cd ${WRKSRC} && ${INSTALL_DATA} dist/lib/*.jar ${DATADIR}/lib
|
|
@cd ${WRKSRC} && ${INSTALL_DATA} dist/res/icon.png ${DATADIR}/res
|
|
|
|
.include <bsd.port.mk>
|