From owner-svn-ports-head@FreeBSD.ORG Wed May 22 18:32:32 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 5EEF27E8; Wed, 22 May 2013 18:32:32 +0000 (UTC) (envelope-from az@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 3662FD74; Wed, 22 May 2013 18:32:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4MIWVAf011709; Wed, 22 May 2013 18:32:31 GMT (envelope-from az@svn.freebsd.org) Received: (from az@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4MIWV2g011705; Wed, 22 May 2013 18:32:31 GMT (envelope-from az@svn.freebsd.org) Message-Id: <201305221832.r4MIWV2g011705@svn.freebsd.org> From: Andrej Zverev Date: Wed, 22 May 2013 18:32:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r318787 - in head/www/htmlcompressor: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 May 2013 18:32:32 -0000 Author: az Date: Wed May 22 18:32:31 2013 New Revision: 318787 URL: http://svnweb.freebsd.org/changeset/ports/318787 Log: - Update to 1.5.3 PR: ports/173237 Submitted by: Anton Yuzhaninov Modified: head/www/htmlcompressor/Makefile (contents, props changed) head/www/htmlcompressor/distinfo (contents, props changed) head/www/htmlcompressor/files/htmlcompressor.in (contents, props changed) Modified: head/www/htmlcompressor/Makefile ============================================================================== --- head/www/htmlcompressor/Makefile Wed May 22 18:31:09 2013 (r318786) +++ head/www/htmlcompressor/Makefile Wed May 22 18:32:31 2013 (r318787) @@ -2,31 +2,32 @@ # $FreeBSD$ PORTNAME= htmlcompressor -PORTVERSION= 0.9.4 +PORTVERSION= 1.5.3 CATEGORIES= www java MASTER_SITES= GOOGLE_CODE -DISTNAME= ${PORTNAME}-${PORTVERSION}-src +DISTNAME= ${PORTNAME}-${PORTVERSION}.jar +EXTRACT_SUFX= # empty +EXTRACT_ONLY= # empty MAINTAINER= ports@FreeBSD.org COMMENT= HTML/XML Compressor LICENSE= AL2 -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USE_ZIP= yes +NO_WRKSUBDIR= yes USE_JAVA= yes -JAVA_VERSION= 1.6+ +JAVA_VERSION= 1.5+ NO_BUILD= yes -PLIST_FILES= bin/htmlcompressor %%DATADIR%%/htmlcompressor.jar -PLIST_DIRS= %%DATADIR%% +PLIST_FILES= bin/htmlcompressor %%JAVAJARDIR%%/htmlcompressor.jar +PLIST_DIRSTRY= %%JAVAJARDIR%% SUB_FILES= htmlcompressor .include do-install: - @${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/build/htmlcompressor-${PORTVERSION}.jar ${DATADIR}/htmlcompressor.jar + @${MKDIR} ${JAVAJARDIR} + ${INSTALL_DATA} ${DISTDIR}/${DISTNAME} ${JAVAJARDIR}/htmlcompressor.jar ${INSTALL_SCRIPT} ${WRKDIR}/htmlcompressor ${PREFIX}/bin .include Modified: head/www/htmlcompressor/distinfo ============================================================================== --- head/www/htmlcompressor/distinfo Wed May 22 18:31:09 2013 (r318786) +++ head/www/htmlcompressor/distinfo Wed May 22 18:32:31 2013 (r318787) @@ -1,2 +1,2 @@ -SHA256 (htmlcompressor-0.9.4-src.zip) = 3d2fc9b5fe83734597de9a2deac57ed46809b70df7a08a01fdfb678e1c3148b3 -SIZE (htmlcompressor-0.9.4-src.zip) = 1399946 +SHA256 (htmlcompressor-1.5.3.jar) = 88894e330cdb0e418e805136d424f4c262236b1aa3683e51037cdb66310cb0f9 +SIZE (htmlcompressor-1.5.3.jar) = 68685 Modified: head/www/htmlcompressor/files/htmlcompressor.in ============================================================================== --- head/www/htmlcompressor/files/htmlcompressor.in Wed May 22 18:31:09 2013 (r318786) +++ head/www/htmlcompressor/files/htmlcompressor.in Wed May 22 18:32:31 2013 (r318787) @@ -1,3 +1,3 @@ #!/bin/sh # $FreeBSD$ -JAVA_VERSION="%%JAVA_VERSION%%" exec %%LOCALBASE%%/bin/java -jar %%DATADIR%%/htmlcompressor.jar $@ +JAVA_VERSION="%%JAVA_VERSION%%" exec %%LOCALBASE%%/bin/java -jar %%JAVAJARDIR%%/htmlcompressor.jar $@