32 lines
742 B
Makefile
32 lines
742 B
Makefile
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
|
|
PORTNAME= findbugs
|
|
DISTVERSION= 3.0.1.20150306-5afe4d1
|
|
CATEGORIES= java devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20eclipse%20plugin/3.0.1
|
|
PKGNAMEPREFIX= eclipse-
|
|
DISTNAME= edu.umd.cs.findbugs.plugin.eclipse_${DISTVERSION}
|
|
DIST_SUBDIR= eclipse
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Eclipse plug-in that provides FindBugs support
|
|
|
|
RUN_DEPENDS= eclipse:java/eclipse
|
|
|
|
USES= zip
|
|
NO_BUILD= yes
|
|
USE_JAVA= yes
|
|
JAVA_OS= native
|
|
|
|
PLIST_SUB= \
|
|
ECLIPSE_PLUGINS="lib/eclipse/plugins" \
|
|
DISTNAME="${DISTNAME}"
|
|
|
|
post-extract:
|
|
@${RM} -R ${WRKSRC}/src
|
|
|
|
do-install:
|
|
@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/lib/eclipse/plugins/${DISTNAME})
|
|
|
|
.include <bsd.port.mk>
|