From owner-svn-ports-all@FreeBSD.ORG Fri Dec 27 11:21:01 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2BC98465; Fri, 27 Dec 2013 11:21:01 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 344421678; Fri, 27 Dec 2013 11:12:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBRBC3xf095694; Fri, 27 Dec 2013 11:12:03 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBRBC3lS095692; Fri, 27 Dec 2013 11:12:03 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201312271112.rBRBC3lS095692@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 27 Dec 2013 11:12:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337709 - head/databases/cdb 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.17 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, 27 Dec 2013 11:21:01 -0000 Author: bapt Date: Fri Dec 27 11:12:02 2013 New Revision: 337709 URL: http://svnweb.freebsd.org/changeset/ports/337709 Log: Use CFLAGS_amd64 While here support stage Modified: head/databases/cdb/Makefile Modified: head/databases/cdb/Makefile ============================================================================== --- head/databases/cdb/Makefile Fri Dec 27 11:09:35 2013 (r337708) +++ head/databases/cdb/Makefile Fri Dec 27 11:12:02 2013 (r337709) @@ -7,11 +7,12 @@ CATEGORIES= databases MASTER_SITES= http://cr.yp.to/cdb/ MAINTAINER= jlaffaye@FreeBSD.org -COMMENT= A fast lookup database library & utilities +COMMENT= Fast lookup database library & utilities ALL_TARGET= it -NO_STAGE= yes +CFLAGS_amd64= -fPIC + do-configure: @${MV} ${WRKSRC}/conf-home ${WRKSRC}/conf-home.orig ${ECHO_CMD} ${PREFIX} > ${WRKSRC}/conf-home @@ -22,16 +23,10 @@ do-configure: do-install: .for file in cdbdump cdbget cdbmake cdbstats cdbtest - ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin .endfor .for file in cdbmake-12 cdbmake-sv - ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/bin .endfor -.include - -.if ${ARCH} == amd64 -CFLAGS+= -fPIC -.endif - -.include +.include