From owner-svn-ports-branches@FreeBSD.ORG Thu Mar 6 16:44:34 2014 Return-Path: Delivered-To: svn-ports-branches@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 959A1784; Thu, 6 Mar 2014 16:44:34 +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 81D8EBF8; Thu, 6 Mar 2014 16:44:34 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s26GiYb8092634; Thu, 6 Mar 2014 16:44:34 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s26GiYnA092633; Thu, 6 Mar 2014 16:44:34 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201403061644.s26GiYnA092633@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Thu, 6 Mar 2014 16:44:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r347276 - in branches/2014Q1/databases/kyototycoon: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Mar 2014 16:44:34 -0000 Author: sunpoet Date: Thu Mar 6 16:44:34 2014 New Revision: 347276 URL: http://svnweb.freebsd.org/changeset/ports/347276 QAT: https://qat.redports.org/buildarchive/r347276/ Log: MFH: r338064 - Allow build with clang [1] - Remove explicit -lstdc++ - Bump PORTREVISION for package change Submitted by: vanilla [1] Approved by: portmgr (mat, via IRC) Added: branches/2014Q1/databases/kyototycoon/files/ - copied from r338064, head/databases/kyototycoon/files/ Modified: branches/2014Q1/databases/kyototycoon/Makefile Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/databases/kyototycoon/Makefile ============================================================================== --- branches/2014Q1/databases/kyototycoon/Makefile Thu Mar 6 16:43:23 2014 (r347275) +++ branches/2014Q1/databases/kyototycoon/Makefile Thu Mar 6 16:44:34 2014 (r347276) @@ -3,6 +3,7 @@ PORTNAME= kyototycoon PORTVERSION= 0.9.56 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://fallabs.com/${PORTNAME}/pkg/ \ LOCAL/sunpoet @@ -16,19 +17,18 @@ LIB_DEPENDS= libkyotocabinet.so:${PORTSD OPTIONS_DEFINE= DOCS -CONFIGURE_ARGS= --enable-profile --enable-uyield +CONFIGURE_ARGS= --enable-uyield CPPFLAGS+= -fPIC GNU_CONFIGURE= yes MAKE_ARGS= PCDIR=${PREFIX}/libdata/pkgconfig REINPLACE_ARGS= -i '' -USE_GCC= any USE_LDCONFIG= yes USES= gmake pkgconfig .include post-patch: - @${REINPLACE_CMD} -e 's|-lpthread|-pthread|g' ${WRKSRC}/configure ${WRKSRC}/doc/spex.html ${WRKSRC}/example/Makefile + @${REINPLACE_CMD} -e 's|-lpthread|-pthread|g; s|-lstdc++ ||g' ${WRKSRC}/configure ${WRKSRC}/doc/spex.html ${WRKSRC}/example/Makefile .if !${PORT_OPTIONS:MDOCS} @${REINPLACE_CMD} -e '/DOCDIR/d' ${WRKSRC}/Makefile.in .endif