From owner-svn-ports-all@FreeBSD.ORG Tue May 28 09:37:58 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 81EE758B; Tue, 28 May 2013 09:37:58 +0000 (UTC) (envelope-from bapt@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 734B7812; Tue, 28 May 2013 09:37:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4S9bwls007448; Tue, 28 May 2013 09:37:58 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4S9bw7k007446; Tue, 28 May 2013 09:37:58 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201305280937.r4S9bw7k007446@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 28 May 2013 09:37:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319302 - head/graphics/pfscalibration 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, 28 May 2013 09:37:58 -0000 Author: bapt Date: Tue May 28 09:37:57 2013 New Revision: 319302 URL: http://svnweb.freebsd.org/changeset/ports/319302 Log: Add an explicit dependency on pkgconf While here remove the post-patch target in favour of using shebangfix Modified: head/graphics/pfscalibration/Makefile Modified: head/graphics/pfscalibration/Makefile ============================================================================== --- head/graphics/pfscalibration/Makefile Tue May 28 09:33:29 2013 (r319301) +++ head/graphics/pfscalibration/Makefile Tue May 28 09:37:57 2013 (r319302) @@ -1,7 +1,4 @@ -# New ports collection makefile for: pfscalibration -# Date created: Fri Jun 1 15:44:40 UTC 2007 -# Whom: argv[0] (Iouri V. Ivliev) -# +# Created by: Iouri V. Ivliev # $FreeBSD$ PORTNAME= pfscalibration @@ -16,6 +13,7 @@ COMMENT= Photometric calibration of came PFS_CPPFLAGS= -I${LOCALBASE}/include PFS_LDFLAGS= -L${LOCALBASE}/lib +USES= pkgconfig shebangfix GNU_CONFIGURE= yes CPPFLAGS+= ${PFS_CPPFLAGS} LDFLAGS+= ${PFS_LDFLAGS} @@ -29,11 +27,7 @@ MAN1= jpeg2hdrgen.1 \ pfsinhdrgen.1 \ pfshdrcalibrate.1 -.include +SHEBANG_FILES= src/dcraw2hdrgen src/jpeg2hdrgen +bash_CMD= ${SH} -post-patch: - @${REINPLACE_CMD} -e "s,#!/bin/bash,#!/bin/sh," \ - ${WRKSRC}/src/dcraw2hdrgen \ - ${WRKSRC}/src/jpeg2hdrgen - -.include +.include