From owner-svn-ports-all@FreeBSD.ORG Fri May 29 21:48:16 2015 Return-Path: Delivered-To: svn-ports-all@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 5DDACCC5; Fri, 29 May 2015 21:48:16 +0000 (UTC) (envelope-from antoine@FreeBSD.org) 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 4BCD11D5E; Fri, 29 May 2015 21:48:16 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4TLmGqS017104; Fri, 29 May 2015 21:48:16 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4TLmFke017102; Fri, 29 May 2015 21:48:15 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201505292148.t4TLmFke017102@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 29 May 2015 21:48:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387896 - in head/print/pfbtopfa: . 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-all@freebsd.org X-Mailman-Version: 2.1.20 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: Fri, 29 May 2015 21:48:16 -0000 Author: antoine Date: Fri May 29 21:48:15 2015 New Revision: 387896 URL: https://svnweb.freebsd.org/changeset/ports/387896 Log: - Use ${CC} instead of CC, ${CC} was intented here - Do not unconditionally strip binary PR: 200524 Added: head/print/pfbtopfa/files/ head/print/pfbtopfa/files/patch-Makefile (contents, props changed) Modified: head/print/pfbtopfa/Makefile Modified: head/print/pfbtopfa/Makefile ============================================================================== --- head/print/pfbtopfa/Makefile Fri May 29 21:43:27 2015 (r387895) +++ head/print/pfbtopfa/Makefile Fri May 29 21:48:15 2015 (r387896) @@ -3,6 +3,7 @@ PORTNAME= pfbtopfa PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://www.whizkidtech.redprince.net/pfbtopfa/ \ ftp://ftp.whizkidtech.redprince.net/fonts/ Added: head/print/pfbtopfa/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/pfbtopfa/files/patch-Makefile Fri May 29 21:48:15 2015 (r387896) @@ -0,0 +1,9 @@ +--- Makefile.orig 2003-02-06 23:20:14 UTC ++++ Makefile +@@ -13,5 +13,4 @@ CC = gcc + all: pfbtopfa + + pfbtopfa: pfbtopfa.c +- CC ${CFLAGS} pfbtopfa.c -o pfbtopfa +- strip pfbtopfa ++ ${CC} ${CFLAGS} pfbtopfa.c -o pfbtopfa