mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
d7ec60f5a5
Based on the new policy of all maintained ports reset when maintaner is absent for 3 months. Bug#226400 for science/py-tensorflow is ignored since 2018-03-06 (3+ months). portscout database indicates that 48.94% of his ports aren't updated.
35 lines
698 B
Makefile
35 lines
698 B
Makefile
# Created by: Nemo Liu <nemoliu@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= flexjson
|
|
DISTVERSION= 2.1
|
|
CATEGORIES= devel java
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/flexjson%20${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Lightweight Java library to write JSON
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE-2.0.txt
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= *
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.jar \
|
|
${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|