1# Created by: Dusan Vejnovic <freebsd@dussan.org> 2 3PORTNAME= sonar-ant-task 4PORTVERSION= 2.5 5CATEGORIES= devel java 6MASTER_SITES= https://sonarsource.bintray.com/Distribution/sonarqube-ant-task/ \ 7 FREEBSD_LOCAL/ler/sonar-ant-task 8DISTNAME= sonarqube-ant-task-${PORTVERSION} 9EXTRACT_SUFX= .jar 10EXTRACT_ONLY= 11 12MAINTAINER= ports@MidnightBSD.org 13COMMENT= SonarQube Plugin for analysis projects with an Apache Ant 14 15LICENSE= lgpl3 16 17NO_ARCH= yes 18NO_BUILD= yes 19NO_WRKSUBDIR= yes 20 21RUN_DEPENDS+= ant:devel/apache-ant 22 23USES= cpe java 24CPE_VENDOR= sonarsource 25 26SUB_FILES= pkg-message 27PLIST_FILES= ${DATADIR_REL}/sonar-ant-task.jar 28 29OPTIONS_DEFINE= SQ 30SQ_DESC= SonarQube server support 31SQ_RUN_DEPENDS= sonarqube>=0:devel/sonarqube 32 33do-install: 34 @${MKDIR} ${DATADIR} 35 ${INSTALL_DATA} ${DISTDIR}/${DISTFILES} \ 36 ${DATADIR}/${PORTNAME}${EXTRACT_SUFX} 37 38.include <bsd.port.mk> 39