mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
# Created by: OISHI Masakuni <yamasa@bsdhouse.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jai
|
|
PORTVERSION= 1.1.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= java graphics
|
|
MASTER_SITES= http://download.java.net/media/${PORTNAME}/builds/release/${PORTVERSION:S/./_/g}/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/./_/g}-lib
|
|
|
|
MAINTAINER= java@FreeBSD.org
|
|
COMMENT= High performance image processing libraries for Java
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/./_/g}
|
|
NO_BUILD= yes
|
|
|
|
USE_ZIP= yes
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST= TARGET_DIR=${TARGET_DIR}
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
|
|
RESTRICTED= Redistribution is not permitted
|
|
|
|
DOWNLOAD_URL= http://java.sun.com/products/java-media/jai/current.html
|
|
|
|
TARGET_DIR= ${JAVASHAREDIR}/${PORTNAME}
|
|
PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///}
|
|
|
|
PORTDOCS= \
|
|
COPYRIGHT-jai.txt \
|
|
DISTRIBUTIONREADME-jai.txt \
|
|
LICENSE-jai.txt \
|
|
THIRDPARTYLICENSEREADME-jai.txt
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
# documentation
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
# jars
|
|
@${MKDIR} ${TARGET_DIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/lib/jai_codec.jar ${TARGET_DIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/lib/jai_core.jar ${TARGET_DIR}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|