1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00
freebsd-ports/print/pdfbox/Makefile
Mathieu Arnold 9468432a48 Fix ports using PREFIX in their depends instead of LOCALBASE.
With hat:	portmgr
Sponsored by:	Absolight
2017-01-13 16:54:55 +00:00

36 lines
868 B
Makefile

# Created by: Pedro Giffuni
# $FreeBSD$
PORTNAME= pdfbox
PORTVERSION= 1.8.11
CATEGORIES= print textproc java
MASTER_SITES= APACHE/pdfbox/${PORTVERSION}
DISTFILES= ${JAR_NAMES:S/$/-${PORTVERSION}.jar/}
EXTRACT_ONLY= # none
MAINTAINER= ale@FreeBSD.org
COMMENT= Java tool for working with PDF documents
LICENSE= APACHE20
RUN_DEPENDS= ${JAVALIBDIR}/bcmail.jar:java/bouncycastle \
${JAVALIBDIR}/commons-logging.jar:java/jakarta-commons-logging
JAR_NAMES= pdfbox fontbox jempbox preflight xmpbox
USE_JAVA= yes
NO_BUILD= yes
PLIST_FILES= ${JAR_NAMES:S/^/%%JAVAJARDIR%%\//:S/$/.jar/}
do-install:
@${ECHO_MSG} -n ">> Installing JAR files in ${JAVAJARDIR}..."
@${MKDIR} ${STAGEDIR}${JAVAJARDIR}
.for f in ${JAR_NAMES}
${INSTALL_DATA} ${DISTDIR}/${f}-${PORTVERSION}.jar \
${STAGEDIR}${JAVAJARDIR}/${f}.jar
.endfor
@${ECHO_MSG} " [ DONE ]"
.include <bsd.port.mk>