From owner-svn-ports-all@FreeBSD.ORG Thu Jul 10 18:35:05 2014 Return-Path: Delivered-To: svn-ports-all@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 79298B9F; Thu, 10 Jul 2014 18:35:05 +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 661C326FE; Thu, 10 Jul 2014 18:35:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6AIZ52m042204; Thu, 10 Jul 2014 18:35:05 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6AIZ51U042203; Thu, 10 Jul 2014 18:35:05 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201407101835.s6AIZ51U042203@svn.freebsd.org> From: Pietro Cerutti Date: Thu, 10 Jul 2014 18:35:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361480 - head/devel/yajl 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.18 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: Thu, 10 Jul 2014 18:35:05 -0000 Author: gahr Date: Thu Jul 10 18:35:04 2014 New Revision: 361480 URL: http://svnweb.freebsd.org/changeset/ports/361480 QAT: https://qat.redports.org/buildarchive/r361480/ Log: - Fix pkg-config includedir. Reported upstream: https://github.com/lloyd/yajl/pull/139 Modified: head/devel/yajl/Makefile Modified: head/devel/yajl/Makefile ============================================================================== --- head/devel/yajl/Makefile Thu Jul 10 17:47:08 2014 (r361479) +++ head/devel/yajl/Makefile Thu Jul 10 18:35:04 2014 (r361480) @@ -13,6 +13,8 @@ USE_GITHUB= yes GH_ACCOUNT= lloyd GH_COMMIT= 66cb08c +CFLAGS+= -g -O0 + USE_LDCONFIG= yes USES= cmake:outsource @@ -21,5 +23,7 @@ PLIST_SUB= VERSION=${PORTVERSION} post-patch: @${REINPLACE_CMD} -e "s,share/pkgconfig,libdata/pkgconfig,g" \ ${WRKSRC}/src/CMakeLists.txt + @${REINPLACE_CMD} -e 's|include/yajl|include|' \ + ${WRKSRC}/src/yajl.pc.cmake .include