From owner-svn-ports-head@FreeBSD.ORG Sun Dec 28 13:14:45 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8249AE93; Sun, 28 Dec 2014 13:14:45 +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 563F41FBB; Sun, 28 Dec 2014 13:14:45 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBSDEj5x050227; Sun, 28 Dec 2014 13:14:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBSDEjGk050226; Sun, 28 Dec 2014 13:14:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201412281314.sBSDEjGk050226@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 28 Dec 2014 13:14:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375707 - head/graphics/dcraw 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.18-1 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: Sun, 28 Dec 2014 13:14:45 -0000 Author: sunpoet Date: Sun Dec 28 13:14:44 2014 New Revision: 375707 URL: https://svnweb.freebsd.org/changeset/ports/375707 QAT: https://qat.redports.org/buildarchive/r375707/ Log: - Silence maintainer section Modified: head/graphics/dcraw/Makefile Modified: head/graphics/dcraw/Makefile ============================================================================== --- head/graphics/dcraw/Makefile Sun Dec 28 13:14:37 2014 (r375706) +++ head/graphics/dcraw/Makefile Sun Dec 28 13:14:44 2014 (r375707) @@ -37,15 +37,15 @@ MS_MASTER_SITE= http://www.cybercom.net/ MS_DISTFILES= ${PORTNAME}.1 ${PORTNAME}.c maketar: do-clean extract - ${MKDIR} ${MS_WRKSRC}/ + @${MKDIR} ${MS_WRKSRC}/ .for file in ${MS_DISTFILES} - ${FETCH_CMD} -o ${MS_WRKSRC}/${file} ${MS_MASTER_SITE}${file} + @${FETCH_CMD} -o ${MS_WRKSRC}/${file} ${MS_MASTER_SITE}${file} .endfor - ${GREP} '^#define DCRAW_VERSION' ${MS_WRKSRC}/dcraw.c | cut -d'"' -f2 > ${MS_VERSIONFILE} - ${MKDIR} -m 755 ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}/ - cd ${MS_WRKSRC}/ && ${CHMOD} 644 ${MS_DISTFILES} && ${MV} ${MS_DISTFILES} ${PORTNAME}-${MS_VERSION}/ - (${DIFF} -u ${WRKSRC}/${PORTNAME}.c ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}/${PORTNAME}.c > ${MS_DIFF}) || ${TRUE} - if [ -s ${MS_DIFF} ]; then \ + @${GREP} '^#define DCRAW_VERSION' ${MS_WRKSRC}/dcraw.c | cut -d'"' -f2 > ${MS_VERSIONFILE} + @${MKDIR} -m 755 ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}/ + @cd ${MS_WRKSRC}/ && ${CHMOD} 644 ${MS_DISTFILES} && ${MV} ${MS_DISTFILES} ${PORTNAME}-${MS_VERSION}/ + @(${DIFF} -u ${WRKSRC}/${PORTNAME}.c ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}/${PORTNAME}.c > ${MS_DIFF}) || ${TRUE} + @if [ -s ${MS_DIFF} ]; then \ cd ${MS_WRKSRC}/ && ${TAR} -Jcf ${PORTNAME}-${MS_VERSION}.tar.xz ${PORTNAME}-${MS_VERSION}/; \ sudo ${INSTALL} -m 644 ${MS_WRKSRC}/${PORTNAME}-${MS_VERSION}.tar.xz ${DISTDIR}/; \ ${SED} -i '' -e '/^PORTVERSION=/ s|${PORTVERSION}|'${MS_VERSION}'|; /^PORTREVISION=/d' ${.CURDIR}/Makefile; \