From owner-svn-ports-head@FreeBSD.ORG Thu Apr 24 11:13:08 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B7D4F7F1; Thu, 24 Apr 2014 11:13:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A55B71A60; Thu, 24 Apr 2014 11:13:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s3OBD8Ri089468; Thu, 24 Apr 2014 11:13:08 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s3OBD8BQ089467; Thu, 24 Apr 2014 11:13:08 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201404241113.s3OBD8BQ089467@svn.freebsd.org> From: Alexey Dokuchaev Date: Thu, 24 Apr 2014 11:13:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r351993 - head/sysutils/pp 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.17 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: Thu, 24 Apr 2014 11:13:08 -0000 Author: danfe Date: Thu Apr 24 11:13:08 2014 New Revision: 351993 URL: http://svnweb.freebsd.org/changeset/ports/351993 QAT: https://qat.redports.org/buildarchive/r351993/ Log: - Be more specific about the license (BSD -> BSD3CLAUSE) - Fix a nasty bug that prevented getopt() loop from working on some architectures (e.g. PowerPC) - Stagify; convert USE_BZIP2 to Uses (tar:bzip2) Modified: head/sysutils/pp/Makefile Modified: head/sysutils/pp/Makefile ============================================================================== --- head/sysutils/pp/Makefile Thu Apr 24 10:29:42 2014 (r351992) +++ head/sysutils/pp/Makefile Thu Apr 24 11:13:08 2014 (r351993) @@ -3,6 +3,7 @@ PORTNAME= pp PORTVERSION= 1.03 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= GOOGLE_CODE \ http://de.nologin.ru/distfiles/sysutils/pp/ @@ -11,11 +12,14 @@ PROJECTHOST= pipe-progress MAINTAINER= a.arepo@gmail.com COMMENT= Small and fast progress bar for pipe -LICENSE= BSD +LICENSE= BSD3CLAUSE -USE_BZIP2= yes +USES= tar:bzip2 +MAKE_ARGS= PREFIX="${STAGEDIR}${PREFIX}" PLIST_FILES= bin/pp -NO_STAGE= yes +post-patch: + @${REINPLACE_CMD} -e 's,char opt,int opt,' ${WRKSRC}/src/main.c + .include