From owner-svn-ports-head@FreeBSD.ORG Fri Dec 21 07:09:04 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3025882B; Fri, 21 Dec 2012 07:09:04 +0000 (UTC) (envelope-from danfe@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 15CEE8FC0A; Fri, 21 Dec 2012 07:09:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBL793Tu011939; Fri, 21 Dec 2012 07:09:03 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBL793Pf011937; Fri, 21 Dec 2012 07:09:03 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201212210709.qBL793Pf011937@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 21 Dec 2012 07:09:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309343 - in head/archivers/fastjar: . 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: Fri, 21 Dec 2012 07:09:04 -0000 Author: danfe Date: Fri Dec 21 07:09:03 2012 New Revision: 309343 URL: http://svnweb.freebsd.org/changeset/ports/309343 Log: - Trim Makefile header per new bylaws - Drop indefinite article from COMMENT - Define LICENSE (GPLv2), install couple of extra docs - Convert NOPORTDOCS -> PORT_OPTIONS:MDOCS - Remove pretty obvious pkg-message, sort some knobs - Reformat port description Approved by: maintainer (maho) Deleted: head/archivers/fastjar/files/ Modified: head/archivers/fastjar/Makefile head/archivers/fastjar/pkg-descr Modified: head/archivers/fastjar/Makefile ============================================================================== --- head/archivers/fastjar/Makefile Fri Dec 21 06:39:49 2012 (r309342) +++ head/archivers/fastjar/Makefile Fri Dec 21 07:09:03 2012 (r309343) @@ -1,9 +1,5 @@ -# New ports collection makefile for: fastjar -# Date created: 18 March 2000 -# Whom: Akinori MUSHA aka knu -# +# Created by: Akinori MUSHA aka knu # $FreeBSD$ -# PORTNAME= fastjar PORTVERSION= 0.93.20060808 @@ -12,26 +8,30 @@ MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= maho/fastjar MAINTAINER= maho@FreeBSD.org -COMMENT= A version of JDK's `jar' command written entirely in C +COMMENT= Version of JDK's `jar' command written entirely in C + +LICENSE= GPLv2 USE_BZIP2= yes +GNU_CONFIGURE= yes USE_GMAKE= yes +USE_PERL5_BUILD= yes + WRKSRC= ${WRKDIR}/${PORTNAME} -GNU_CONFIGURE= yes -PORTDOCS= CHANGES README +PORTDOCS= CHANGES ChangeLog NEWS README PLIST_FILES= bin/fastjar bin/grepjar -SUB_FILES= pkg-message -PKGMESSAGE= ${WRKDIR}/pkg-message -USE_PERL5_BUILD= yes INFO= fastjar MAN1= fastjar.1 grepjar.1 +OPTIONS_DEFINE= DOCS + +.include + post-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ - @${CAT} ${PKGMESSAGE} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} .endif .include Modified: head/archivers/fastjar/pkg-descr ============================================================================== --- head/archivers/fastjar/pkg-descr Fri Dec 21 06:39:49 2012 (r309342) +++ head/archivers/fastjar/pkg-descr Fri Dec 21 07:09:03 2012 (r309343) @@ -1,17 +1,16 @@ -Fastjar is a version of Sun's `jar' utility, written entirely in C, -and therefore quite a bit faster. Fastjar can be up to 100x faster -than the stock `jar' program running without a JIT. Currently, -the author is working on adding all the features present in the Sun -utility. At the moment, implemented features are: +Fastjar is a version of Sun's `jar' utility, written entirely in C, and +therefore quite a bit faster. Fastjar can be up to 100x faster than the +stock `jar' program running without a JIT. Currently, the author is +working on adding all the features present in the Sun utility. At the +moment, implemented features are: * Archive creation * Verbose/quiet output * stdout vs. file output * Manifest file support * Deflation or storage - * Changing to a dir and adding files (-C) + * Changing to directory and adding files (-C) * Archive content listing (-t) * Archive extraction (-x) -WWW: http://savannah.nongnu.org/projects/fastjar - http://fastjar.sourceforge.net/ +WWW: http://fastjar.sourceforge.net/