1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/textproc/apache-poi/Makefile
Pedro F. Giffuni bfa30f733a textproc/apache-poi: Update to 4.1.2.
This release features better chart support in XDDF, various rendering fixes
in the Common SL/EMF modules and OOM fixes when handling arbitrary slide
indexes in XSLF (+ a new dependency to SparseBitSet 1.2). Several dependencies
were also updated to their latest versions to pick up security fixes and other
improvements.

Approved by:	thierry (mentor, implicit)
2020-02-26 05:05:24 +00:00

46 lines
1.1 KiB
Makefile

# Created by: Anton Yudin <toha@toha.org.ua>
# $FreeBSD$
PORTNAME= poi
PORTVERSION= 4.1.2
CATEGORIES= textproc devel java
MASTER_SITES= APACHE/${PORTNAME}/release/bin
PKGNAMEPREFIX= apache-
DISTNAME= ${PORTNAME}-bin-${PORTVERSION}-${RELEASE_DATE}
MAINTAINER= ports@FreeBSD.org
COMMENT= Java API To Access Microsoft Format Files
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cpe
CPE_VENDOR= apache
USE_JAVA= yes
NO_BUILD= yes
NO_ARCH= yes
RELEASE_DATE= 20200217
JARNAMES= examples excelant scratchpad ooxml ooxml-schemas
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
PLIST_FILES= ${JAVAJARDIR}/${PORTNAME}.jar
PORTDOCS= *
.for i in ${JARNAMES}
PLIST_FILES+= ${JAVAJARDIR}/${PORTNAME}-${i}.jar
.endfor
OPTIONS_DEFINE= DOCS
do-install:
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-${PORTVERSION}.jar ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}.jar
.for i in ${JARNAMES}
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}-${i}-${PORTVERSION}.jar ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}-${i}.jar
.endfor
do-install-DOCS-on:
cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>