From owner-svn-ports-all@FreeBSD.ORG Tue Dec 18 07:57:38 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D6E0D1A; Tue, 18 Dec 2012 07:57:38 +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 6CBCA8FC0C; Tue, 18 Dec 2012 07:57:38 +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 qBI7vcRf089650; Tue, 18 Dec 2012 07:57:38 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBI7vV9A089602; Tue, 18 Dec 2012 07:57:31 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201212180757.qBI7vV9A089602@svn.freebsd.org> From: Alexey Dokuchaev Date: Tue, 18 Dec 2012 07:57:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r309150 - in head/archivers: bzip bzip2 deb2targz deco gzip javatar jzlib kbackup laszip lbzip2 libcabinet libmspack libpar2 libzip makeself mar mtf p5-Archive-Extract p5-Archive-Extrac... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Dec 2012 07:57:38 -0000 Author: danfe Date: Tue Dec 18 07:57:31 2012 New Revision: 309150 URL: http://svnweb.freebsd.org/changeset/ports/309150 Log: For a number of ports in archives category, trim the header and drop leading indefinite article from COMMENT line; also fix few noticed styles bugs while I am here. Modified: head/archivers/bzip/Makefile head/archivers/bzip2/Makefile head/archivers/deb2targz/Makefile head/archivers/deco/Makefile head/archivers/gzip/Makefile head/archivers/javatar/Makefile head/archivers/jzlib/Makefile head/archivers/kbackup/Makefile head/archivers/laszip/Makefile head/archivers/lbzip2/Makefile head/archivers/libcabinet/Makefile head/archivers/libmspack/Makefile head/archivers/libpar2/Makefile head/archivers/libzip/Makefile head/archivers/makeself/Makefile head/archivers/mar/Makefile head/archivers/mtf/Makefile head/archivers/p5-Archive-Extract-Libarchive/Makefile head/archivers/p5-Archive-Extract/Makefile head/archivers/paq/Makefile head/archivers/pecl-rar/Makefile head/archivers/ppmd/Makefile head/archivers/ruby-bz2/Makefile head/archivers/ruby-lha/Makefile head/archivers/ruby-zip/Makefile head/archivers/rvm/Makefile head/archivers/sectar/Makefile head/archivers/snappy/Makefile head/archivers/squsq/Makefile head/archivers/szip/Makefile head/archivers/ucl/Makefile head/archivers/xdms/Makefile Modified: head/archivers/bzip/Makefile ============================================================================== --- head/archivers/bzip/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/bzip/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: bzip -# Date created: Fr 27 Sep 1996 11:47:35 MET DST -# Whom: Andreas Klemm -# +# Created by: Andreas Klemm # $FreeBSD$ -# PORTNAME= bzip PORTVERSION= 0.21 @@ -11,7 +7,7 @@ CATEGORIES= archivers MASTER_SITES= ftp://ftp.42.org/pub/OLD/b/ MAINTAINER= ports@FreeBSD.org -COMMENT= A block-sorting file compressor +COMMENT= Block-sorting file compressor RESTRICTED= may be covered by patents MAN1= bzip.1 bunzip.1 @@ -24,8 +20,8 @@ pre-install: do-install: ${RM} -f ${PREFIX}/bin/bzip ${PREFIX}/bin/bunzip - ${INSTALL_PROGRAM} ${WRKSRC}/bzip ${PREFIX}/bin/bzip - ${LN} -fs ${PREFIX}/bin/bzip ${PREFIX}/bin/bunzip + ${INSTALL_PROGRAM} ${WRKSRC}/bzip ${PREFIX}/bin + ${LN} -fs bzip ${PREFIX}/bin/bunzip ${INSTALL_MAN} ${WRKSRC}/bzip.1 ${MAN1PREFIX}/man/man1/bzip.1 ${INSTALL_MAN} ${WRKSRC}/bzip.1 ${MAN1PREFIX}/man/man1/bunzip.1 Modified: head/archivers/bzip2/Makefile ============================================================================== --- head/archivers/bzip2/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/bzip2/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,10 +1,5 @@ -# ex:ts=8 -# Ports collection makefile for: bzip2 -# Date created: 19 Nov 1997 -# Whom: Thomas Gellekum -# +# Created by: Thomas Gellekum # $FreeBSD$ -# PORTNAME= bzip2 PORTVERSION= 1.0.6 @@ -12,7 +7,7 @@ CATEGORIES= archivers MASTER_SITES= http://www.bzip.org/${PORTVERSION}/ MAINTAINER= jharris@widomaker.com -COMMENT= A block-sorting file compressor +COMMENT= Block-sorting file compressor USE_LDCONFIG= yes PATCH_STRIP= -p3 Modified: head/archivers/deb2targz/Makefile ============================================================================== --- head/archivers/deb2targz/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/deb2targz/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: deb2targz -# Date created: 27 Sep 2005 -# Whom: Emanuel Haupt -# +# Created by: Emanuel Haupt # $FreeBSD$ -# PORTNAME= deb2targz PORTVERSION= 20100710 @@ -12,7 +8,7 @@ MASTER_SITES= # none DISTFILES= # none MAINTAINER= ehaupt@FreeBSD.org -COMMENT= A command-line utility for converting a Debian .deb file to a .tar.gz +COMMENT= Command-line utility for converting a Debian .deb file to a .tar.gz NO_BUILD= yes Modified: head/archivers/deco/Makefile ============================================================================== --- head/archivers/deco/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/deco/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: deco -# Date created: 06 May 2008 -# Whom: Kevin Lo -# +# Created by: Kevin Lo # $FreeBSD$ -# PORTNAME= deco PORTVERSION= 1.6.2 @@ -15,7 +11,7 @@ DISTFILES= ${PORTNAME}-${PORTVERSION}.ta ${PORTNAME}-archive-1.5.1.tar.gz:site2 MAINTAINER= kevlo@FreeBSD.org -COMMENT= A program to extract various archive file formats +COMMENT= Program to extract various archive file formats RUN_DEPENDS= arc:${PORTSDIR}/archivers/arc \ arj:${PORTSDIR}/archivers/arj \ Modified: head/archivers/gzip/Makefile ============================================================================== --- head/archivers/gzip/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/gzip/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: gzip -# Date created: 27 July 2002 -# Whom: cyrille.lefevre@laposte.net -# +# Created by: Cyrille Lefevre # $FreeBSD$ -# PORTNAME= gzip PORTVERSION= 1.4 @@ -13,7 +9,7 @@ MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= gabor@FreeBSD.org -COMMENT= A compression utility designed to be a replacement for compress +COMMENT= Compression utility designed to be a replacement for compress GNU_CONFIGURE= yes Modified: head/archivers/javatar/Makefile ============================================================================== --- head/archivers/javatar/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/javatar/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -9,7 +9,7 @@ MASTER_SITES= http://www.gjt.org/downloa ftp://ftp.gjt.org/pub/time/java/tar/ MAINTAINER= ale@FreeBSD.org -COMMENT= A Java tar archive io package +COMMENT= Java tar archive I/O package RUN_DEPENDS= ${JAVALIBDIR}/activation.jar:${PORTSDIR}/java/jaf Modified: head/archivers/jzlib/Makefile ============================================================================== --- head/archivers/jzlib/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/jzlib/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -7,7 +7,7 @@ CATEGORIES= archivers java MASTER_SITES= http://www.jcraft.com/jzlib/ MAINTAINER= ports@FreeBSD.org -COMMENT= A re-implementation of zlib in pure Java +COMMENT= Reimplementation of zlib in pure Java USE_JAVA= yes JAVA_VERSION= 1.6+ @@ -57,8 +57,8 @@ do-install: .endif # examples @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/example/* ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/example/* ${EXAMPLESDIR} # jar - @${INSTALL_DATA} ${JAR_FILE} ${JAVAJARDIR}/${PORTNAME}.jar + ${INSTALL_DATA} ${JAR_FILE} ${JAVAJARDIR}/${PORTNAME}.jar .include Modified: head/archivers/kbackup/Makefile ============================================================================== --- head/archivers/kbackup/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/kbackup/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: kbackup -# Date created: 2006-09-29 -# Whom: Jose Alonso Cardenas Marquez -# +# Created by: Jose Alonso Cardenas Marquez # $FreeBSD$ -# PORTNAME= kbackup PORTVERSION= 0.5.4 @@ -13,7 +9,7 @@ MASTER_SITES= http://www.kde-apps.org/CO DISTNAME= 44998-${PORTNAME}-${PORTVERSION} MAINTAINER= acm@FreeBSD.org -COMMENT= A program for back up of directories or files +COMMENT= Program for backing up files and directories USE_BZIP2= yes GNU_CONFIGURE= yes Modified: head/archivers/laszip/Makefile ============================================================================== --- head/archivers/laszip/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/laszip/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,6 +1,4 @@ -# New ports collection makefile for: laszip -# Date created: 09 January 2012 -# Whom: Rainer Hurling +# Created by: Rainer Hurling # $FreeBSD$ PORTNAME= laszip @@ -9,7 +7,7 @@ CATEGORIES= archivers MASTER_SITES= http://download.osgeo.org/laszip/ MAINTAINER= rhurlin@gwdg.de -COMMENT= A library for lossless LAS compression +COMMENT= Library for lossless LAS compression LICENSE= LGPL3 @@ -20,6 +18,6 @@ USE_LDCONFIG= yes CMAKE_DEFS+= -DCMAKE_USE_PTHREADS:BOOL=ON post-install: - @${LN} -s ${PREFIX}/lib/liblaszip.so.5.0.0 ${PREFIX}/lib/liblaszip.so.5 + @${LN} -s liblaszip.so.5.0.0 ${PREFIX}/lib/liblaszip.so.5 .include Modified: head/archivers/lbzip2/Makefile ============================================================================== --- head/archivers/lbzip2/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/lbzip2/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,6 +1,4 @@ -# New ports collection Makefile for: archivers/lbzip2 -# Date created: 7 Feb 2009 -# Whom: Gabor Kovesdan +# Created by: Gabor Kovesdan # $FreeBSD$ PORTNAME= lbzip2 @@ -9,7 +7,7 @@ CATEGORIES= archivers MASTER_SITES= http://lacos.web.elte.hu/pub/lbzip2/ MAINTAINER= gabor@FreeBSD.org -COMMENT= A multi-threaded bzip2/bunzip2 filter +COMMENT= Multi-threaded bzip2/bunzip2 filter WRKSRC= ${WRKDIR}/${PORTNAME} PLIST_FILES= bin/lbzip2 Modified: head/archivers/libcabinet/Makefile ============================================================================== --- head/archivers/libcabinet/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/libcabinet/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: libcabinet -# Date Created: 30 November 2000 -# Whom: Maxim Sobolev -# +# Created by: Maxim Sobolev # $FreeBSD$ -# PORTNAME= libcabinet PORTVERSION= 0.30 @@ -11,7 +7,7 @@ CATEGORIES= archivers MASTER_SITES= http://www.bsd-geek.de/FreeBSD/distfiles/ MAINTAINER= tj@FreeBSD.org -COMMENT= A portable library and utility to use Microsoft cabinet files (.cab) +COMMENT= Portable library and utility to use Microsoft cabinet files (.cab) USE_LDCONFIG= yes Modified: head/archivers/libmspack/Makefile ============================================================================== --- head/archivers/libmspack/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/libmspack/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: libmspack -# Date created: 25 Nov 2004 -# Whom: Max Khon -# +# Created by: Max Khon # $FreeBSD$ -# PORTNAME= libmspack PORTVERSION= 0.3 @@ -12,7 +8,7 @@ MASTER_SITES= http://www.cabextract.org. DISTNAME= ${PORTNAME}-${PORTVERSION}alpha MAINTAINER= fjoe@FreeBSD.org -COMMENT= A library for Microsoft compression formats +COMMENT= Library for Microsoft compression formats LICENSE= LGPL21 Modified: head/archivers/libpar2/Makefile ============================================================================== --- head/archivers/libpar2/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/libpar2/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -8,7 +8,7 @@ CATEGORIES= archivers MASTER_SITES= SF/parchive/${PORTNAME}/${PORTVERSION} MAINTAINER= toxic@doobie.com -COMMENT= A library for manipulating par2 files, extracted from par2cmdline +COMMENT= Library for manipulating PAR2 files, extracted from par2cmdline LIB_DEPENDS= sigc-2.0:${PORTSDIR}/devel/libsigc++20 @@ -26,13 +26,13 @@ ENABLECANCEL_DESC= Enable graceful cance .include .if ${PORT_OPTIONS:MENABLECANCEL} -EXTRA_PATCHES+= ${FILESDIR}/xpatch-addcancel-par2repairer.cpp +EXTRA_PATCHES= ${FILESDIR}/xpatch-addcancel-par2repairer.cpp .endif post-install: .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif .include Modified: head/archivers/libzip/Makefile ============================================================================== --- head/archivers/libzip/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/libzip/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: libzip -# Date created: 2006-03-20 -# Whom: Alexander Zhuravlev -# +# Created by: Alexander Zhuravlev # $FreeBSD$ -# PORTNAME= libzip PORTVERSION= 0.10.1 @@ -11,7 +7,7 @@ CATEGORIES= archivers devel MASTER_SITES= http://www.nih.at/libzip/ MAINTAINER= makc@FreeBSD.org -COMMENT= A C library for reading, creating, and modifying zip archives +COMMENT= C library for reading, creating, and modifying ZIP archives USE_BZIP2= yes GNU_CONFIGURE= yes Modified: head/archivers/makeself/Makefile ============================================================================== --- head/archivers/makeself/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/makeself/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: makeself -# Date created: 22 Oct 1999 -# Whom: Will Andrews -# +# Created by: Will Andrews # $FreeBSD$ -# PORTNAME= makeself PORTVERSION= 2.1.5 @@ -13,7 +9,7 @@ MASTER_SITES= http://www.megastep.org/ma EXTRACT_SUFX= .run MAINTAINER= jadawin@FreeBSD.org -COMMENT= A neat script to make self-extracting archives +COMMENT= Neat script to make self-extracting archives RUN_DEPENDS= bash:${PORTSDIR}/shells/bash @@ -26,9 +22,7 @@ NO_BUILD= yes PLIST_FILES= bin/makeself bin/makeself-header \ bin/makeself-header.sh bin/makeself.sh -.if !defined(NOPORTDOCS) PORTDOCS= README -.endif post-patch: @${REINPLACE_CMD} -e \ Modified: head/archivers/mar/Makefile ============================================================================== --- head/archivers/mar/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/mar/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: mar -# Date created: 20 Jun 2005 -# Whom: Emanuel Haupt -# +# Created by: Emanuel Haupt # $FreeBSD$ -# PORTNAME= mar DISTVERSION= 0.5 @@ -12,7 +8,7 @@ MASTER_SITES= CRITICAL DISTNAME= ${PORTNAME}-${DISTVERSION}-src MAINTAINER= ehaupt@FreeBSD.org -COMMENT= A simple binary file format for storing arbitrary meta and user data +COMMENT= Simple binary file format for storing arbitrary meta and user data LICENSE= MIT Modified: head/archivers/mtf/Makefile ============================================================================== --- head/archivers/mtf/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/mtf/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: mtf -# Date created: 29 January 2002 -# Whom: Philippe Casidy -# +# Created by: Philippe Casidy # $FreeBSD$ -# PORTNAME= mtf PORTVERSION= 0.2.1 @@ -14,7 +10,7 @@ MASTER_SITE_SUBDIR= system/backup EXTRACT_SUFX= .tgz MAINTAINER= sylvio@FreeBSD.org -COMMENT= A Unix reader for the Microsoft Tape Format used by NT Backup +COMMENT= Unix reader for the Microsoft Tape Format used by NT Backup LICENSE= GPLv2 @@ -23,9 +19,8 @@ PLIST_FILES= bin/mtf PORTDOCS= README post-patch: - @${REINPLACE_CMD} -e "s|CC=|CC?=|" \ - -e "s|CFLAGS=|CFLAGS?=|" \ - ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e "s|CC=|CC?=|" -e "s|CFLAGS=|CFLAGS?=|" \ + ${WRKSRC}/Makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/mtf ${PREFIX}/bin Modified: head/archivers/p5-Archive-Extract-Libarchive/Makefile ============================================================================== --- head/archivers/p5-Archive-Extract-Libarchive/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/p5-Archive-Extract-Libarchive/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Archive-Extract-Libarchive -# Date created: 2011-10-23 -# Whom: Sunpoet Po-Chuan Hsieh -# +# Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ -# PORTNAME= Archive-Extract-Libarchive PORTVERSION= 0.38 @@ -12,7 +8,7 @@ MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= sunpoet@FreeBSD.org -COMMENT= A generic archive extracting mechanism (using libarchive) +COMMENT= Generic archive extracting mechanism (using libarchive) BUILD_DEPENDS= p5-Object-Tiny>=0:${PORTSDIR}/devel/p5-Object-Tiny RUN_DEPENDS= p5-Object-Tiny>=0:${PORTSDIR}/devel/p5-Object-Tiny Modified: head/archivers/p5-Archive-Extract/Makefile ============================================================================== --- head/archivers/p5-Archive-Extract/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/p5-Archive-Extract/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: p5-Archive-Extract -# Date created: 28 May 2006 -# Whom: Aaron Dalton -# +# Created by: Aaron Dalton # $FreeBSD$ -# PORTNAME= Archive-Extract PORTVERSION= 0.60 @@ -12,7 +8,7 @@ MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org -COMMENT= A generic archive extracting mechanism +COMMENT= Generic archive extracting mechanism MAKE_JOBS_SAFE= yes PERL_CONFIGURE= yes Modified: head/archivers/paq/Makefile ============================================================================== --- head/archivers/paq/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/paq/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: paq -# Date created: 5 April 2007 -# Whom: bf -# +# Created by: bf # $FreeBSD$ -# PORTNAME= paq PORTVERSION= 20121105 @@ -14,7 +10,7 @@ DIST_SUBDIR= ${PORTNAME} EXTRACT_ONLY= ${DISTFILES:M*.zip} MAINTAINER= bf@FreeBSD.org -COMMENT= A family of archivers with extremely high compression ratios +COMMENT= Family of archivers with extremely high compression ratios LICENSE= GPLv3 MIT LICENSE_COMB= multi Modified: head/archivers/pecl-rar/Makefile ============================================================================== --- head/archivers/pecl-rar/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/pecl-rar/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: pecl-rar -# Date created: 2006/09/07 -# Whom: chinsan -# +# Created by: Chin-San Huang # $FreeBSD$ -# PORTNAME= rar PORTVERSION= 3.0.0 @@ -14,7 +10,7 @@ EXTRACT_SUFX= .tgz DIST_SUBDIR= PECL MAINTAINER= miwi@FreeBSD.org -COMMENT= A PECL extension to create and read rar files +COMMENT= PECL extension to create and read RAR files LICENSE= PHP301 Modified: head/archivers/ppmd/Makefile ============================================================================== --- head/archivers/ppmd/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/ppmd/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ppmd -# Date created: 11 Aug 2005 -# Whom: Emanuel Haupt -# +# Created by: Emanuel Haupt # $FreeBSD$ -# PORTNAME= ppmd PORTVERSION= 20050811 @@ -11,7 +7,7 @@ CATEGORIES= archivers MASTER_SITES= CRITICAL MAINTAINER= ehaupt@FreeBSD.org -COMMENT= A fast archiver with a good compression ratio +COMMENT= Fast archiver with good compression ratio MAKE_JOBS_SAFE= yes Modified: head/archivers/ruby-bz2/Makefile ============================================================================== --- head/archivers/ruby-bz2/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/ruby-bz2/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: Ruby-BZ2 -# Date created: 16 November 2002 -# Whom: Akinori MUSHA aka knu -# +# Created by: Akinori MUSHA aka knu # $FreeBSD$ -# PORTNAME= bz2 PORTVERSION= 0.2.2 @@ -14,7 +10,7 @@ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org -COMMENT= A Ruby extension to use libbz2 +COMMENT= Ruby extension to use libbz2 USE_RUBY= yes USE_RUBY_EXTCONF= yes @@ -24,7 +20,7 @@ INSTALL_TARGET= site-install .include .if ${RUBY_VER} == 1.9 -BROKEN= does not build with ruby 1.9 +BROKEN= does not build with ruby ${RUBY_VER} .endif .include Modified: head/archivers/ruby-lha/Makefile ============================================================================== --- head/archivers/ruby-lha/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/ruby-lha/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ruby-lha -# Date created: 09 January 2006 -# Whom: stas -# +# Created by: Stanislav Sedov # $FreeBSD$ -# PORTNAME= lha PORTVERSION= 0.8.1 @@ -15,7 +11,7 @@ DISTNAME= lhalib-${PORTVERSION} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org -COMMENT= A Ruby extension to unpack lha-compressed files +COMMENT= Ruby extension to unpack LHA-compressed files USE_ZIP= yes USE_RUBY= yes @@ -29,8 +25,8 @@ RUBY_SHEBANG_FILES= ${EXAMPLES} post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${RUBY_MODEXAMPLESDIR}/ - @${INSTALL_SCRIPT} ${EXAMPLES:S,^,${WRKSRC}/,} ${RUBY_MODEXAMPLESDIR}/ + @${MKDIR} ${RUBY_MODEXAMPLESDIR} + ${INSTALL_SCRIPT} ${EXAMPLES:S,^,${WRKSRC}/,} ${RUBY_MODEXAMPLESDIR} .endif .include Modified: head/archivers/ruby-zip/Makefile ============================================================================== --- head/archivers/ruby-zip/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/ruby-zip/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: rubyzip -# Date created: 26 January 2002 -# Whom: Akinori MUSHA aka knu -# +# Created by: Akinori MUSHA aka knu # $FreeBSD$ -# PORTNAME= zip PORTVERSION= 0.9.4 @@ -15,7 +11,7 @@ EXTRACT_SUFX= .tgz DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org -COMMENT= A Ruby module for reading and writing zip files +COMMENT= Ruby module for reading and writing ZIP files MAKE_JOBS_SAFE= yes Modified: head/archivers/rvm/Makefile ============================================================================== --- head/archivers/rvm/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/rvm/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,10 +1,5 @@ -# ex:ts=8 -# New ports collection makefile for: rvm -# Date created: Mar 15, 2004 -# Whom: Ying-Chieh Liao -# +# Created by: Ying-Chieh Liao # $FreeBSD$ -# PORTNAME= rvm PORTVERSION= 1.07 @@ -13,7 +8,7 @@ MASTER_SITES= SF DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= davide.italiano@gmail.com -COMMENT= An archive manager that uses rsync to manage backups +COMMENT= Archive manager that uses rsync to manage backups BUILD_DEPENDS= rsync:${PORTSDIR}/net/rsync RUN_DEPENDS:= ${BUILD_DEPENDS} Modified: head/archivers/sectar/Makefile ============================================================================== --- head/archivers/sectar/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/sectar/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,19 +1,16 @@ -# New ports collection makefile for: sectar -# Date created: 22 January 2001 -# Whom: George Reid -# +# Created by: George Reid # $FreeBSD$ -# -PORTNAME= sectar -PORTVERSION= 1.02 -CATEGORIES= archivers -MASTER_SITES= SF/star/${PORTNAME}/${PORTVERSION} +PORTNAME= sectar +PORTVERSION= 1.02 +CATEGORIES= archivers +MASTER_SITES= SF/star/${PORTNAME}/${PORTVERSION} -MAINTAINER= ports@FreeBSD.org -COMMENT= A program to create encrypted tar archives +MAINTAINER= ports@FreeBSD.org +COMMENT= Program to create encrypted tar archives + +GNU_CONFIGURE= yes PLIST_FILES= bin/sectar -GNU_CONFIGURE= yes .include Modified: head/archivers/snappy/Makefile ============================================================================== --- head/archivers/snappy/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/snappy/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,19 +1,14 @@ -# ex:ts=8 -# Ports collection makefile for: snappy -# Date created: Apr 3 2011 -# Whom: vanilla@ -# +# Created by: Vanilla I. Shu # $FreeBSD$ -# PORTNAME= snappy PORTVERSION= 1.0.5 PORTREVISION= 0 CATEGORIES= archivers -MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} +MASTER_SITES= GOOGLE_CODE MAINTAINER= vanilla@FreeBSD.org -COMMENT= A fast compressor/decompressor library +COMMENT= Fast compressor/decompressor library GNU_CONFIGURE= yes USE_LDCONFIG= yes Modified: head/archivers/squsq/Makefile ============================================================================== --- head/archivers/squsq/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/squsq/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: squsq -# Date created: 09 May 2003 -# Whom: Alexey Dokuchaev -# +# Created by: Alexey Dokuchaev # $FreeBSD$ -# PORTNAME= squsq PORTVERSION= 3.3 @@ -21,6 +17,6 @@ MAKEFILE= ${FILESDIR}/Makefile PLIST_FILES= bin/sq bin/usq do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/sq ${WRKSRC}/usq ${PREFIX}/bin/ + ${INSTALL_PROGRAM} ${WRKSRC}/sq ${WRKSRC}/usq ${PREFIX}/bin .include Modified: head/archivers/szip/Makefile ============================================================================== --- head/archivers/szip/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/szip/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: szip -# Date created: 15 January 2002 -# Whom: Igor Pokrovsky -# +# Created by: Igor Pokrovsky # $FreeBSD$ -# PORTNAME= szip PORTVERSION= 1.12b @@ -14,7 +10,7 @@ MASTER_SITES= http://www.compressconsult DISTNAME= sz${PORTVERSION:S/.//}_src MAINTAINER= ports@FreeBSD.org -COMMENT= A fast compression utility +COMMENT= Fast compression utility USE_GMAKE= yes MAKE_JOBS_SAFE= yes Modified: head/archivers/ucl/Makefile ============================================================================== --- head/archivers/ucl/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/ucl/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: ucl -# Date created: 29 January 2001 -# Whom: Maxim Sobolev -# +# Created by: Maxim Sobolev # $FreeBSD$ -# PORTNAME= ucl PORTVERSION= 1.03 @@ -12,7 +8,7 @@ CATEGORIES= archivers devel MASTER_SITES= http://www.oberhumer.com/opensource/ucl/download/ MAINTAINER= sylvio@FreeBSD.org -COMMENT= A data compression library with low memory usage +COMMENT= Data compression library with low memory usage LICENSE= GPLv2 Modified: head/archivers/xdms/Makefile ============================================================================== --- head/archivers/xdms/Makefile Tue Dec 18 07:29:02 2012 (r309149) +++ head/archivers/xdms/Makefile Tue Dec 18 07:57:31 2012 (r309150) @@ -1,9 +1,5 @@ -# New ports collection makefile for: xdms -# Date created: Apr 13, 2001 -# Whom: Mark Pulford -# +# Created by: Mark Pulford # $FreeBSD$ -# PORTNAME= xdms PORTVERSION= 1.3.2 @@ -11,7 +7,7 @@ CATEGORIES= archivers MASTER_SITES= http://zakalwe.fi/~shd/foss/xdms/ MAINTAINER= sylvio@FreeBSD.org -COMMENT= An Amiga DMS archiver unpacker +COMMENT= Tool for decompressing Amiga DMS files USE_BZIP2= yes HAS_CONFIGURE= yes