mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
The following features have been added or changed: - Instead of USE_JAVA use USES=java. This defaults to USES=java:build,run if NO_BUILD is undefined. Else it defaults to USES=java:run - Instead of USE_ANT=yes use USES=java:ant which also implies USES=java:build - Instead of JAVA_BUILD=yes use USES=java:build. Does not imply run or extract - Instead of JAVA_EXTRACT=yes use USES=java:extract does not imply build or run - Instead of JAVA_RUN=yes use USES=java:run does not imply extract or build - Instead of USE_JAVA=<version> use USES=java and JAVA_VERSION=<version> Approved by: mat (portmgr), glewis Differential Revision: https://reviews.freebsd.org/D48201
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
PORTNAME= filebot
|
|
DISTVERSION= 4.9.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= multimedia java
|
|
MASTER_SITES= https://get.filebot.net/filebot/FileBot_${DISTVERSION}/
|
|
DISTNAME= FileBot_${DISTVERSION}-portable
|
|
|
|
MAINTAINER= dan.kotowski@a9development.com
|
|
COMMENT= FileBot is the ultimate tool for organizing and renaming your media
|
|
WWW= https://www.filebot.net/
|
|
|
|
LICENSE= FileBot_EULA
|
|
LICENSE_NAME= FileBot End User License Agreement
|
|
LICENSE_TEXT= Description of the license can be obtained from the following URL: \
|
|
https://www.filebot.net/eula.html
|
|
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
|
|
|
|
LIB_DEPENDS= libmediainfo.so:multimedia/libmediainfo \
|
|
libfontconfig.so:x11-fonts/fontconfig
|
|
RUN_DEPENDS= ffprobe:multimedia/ffmpeg \
|
|
chromaprint>0:audio/chromaprint \
|
|
jna>0:devel/jna \
|
|
openjfx14>0:java/openjfx14
|
|
|
|
USES= java tar:xz
|
|
JAVA_VERSION= 11
|
|
|
|
NO_WRKSUBDIR= yes
|
|
NO_BUILD= yes
|
|
NO_INSTALL= yes
|
|
NO_TEST= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/${PORTNAME}/jar
|
|
${INSTALL_SCRIPT} ${WRKSRC}/filebot.sh ${STAGEDIR}${PREFIX}/share/${PORTNAME}/
|
|
@cd ${WRKSRC}/jar && \
|
|
${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/${PORTNAME}/jar/
|
|
${RLN} ${STAGEDIR}${PREFIX}/share/${PORTNAME}/filebot.sh ${STAGEDIR}${PREFIX}/bin/filebot
|
|
|
|
.include <bsd.port.mk>
|