9c526f7217
suppress any reference to JAVA_VERSION= 1.5+ (part3)
36 lines
814 B
Makefile
36 lines
814 B
Makefile
# Created by: Sergey Skvortsov <skv@protey.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= yuicompressor
|
|
PORTVERSION= 2.4.7
|
|
CATEGORIES= www java
|
|
MASTER_SITES= http://yui.zenfs.com/releases/yuicompressor/
|
|
|
|
MAINTAINER= skv@FreeBSD.org
|
|
COMMENT= The Yahoo! JavaScript and CSS Compressor
|
|
|
|
USE_ZIP= yes
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/yuicompressor %%DATADIR%%/yuicompressor.jar
|
|
PLIST_DIRS= %%DATADIR%%
|
|
SUB_FILES= yuicompressor
|
|
|
|
PORTDOCS= README
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/build/yuicompressor-${PORTVERSION}.jar ${DATADIR}/yuicompressor.jar
|
|
${INSTALL_SCRIPT} ${WRKDIR}/yuicompressor ${PREFIX}/bin
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|