From owner-svn-ports-head@freebsd.org Tue May 17 16:58:57 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44D1DB3FD79; Tue, 17 May 2016 16:58:57 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 121D92DDD; Tue, 17 May 2016 16:58:56 +0000 (UTC) (envelope-from olivierd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4HGwuus009457; Tue, 17 May 2016 16:58:56 GMT (envelope-from olivierd@FreeBSD.org) Received: (from olivierd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4HGwuba009456; Tue, 17 May 2016 16:58:56 GMT (envelope-from olivierd@FreeBSD.org) Message-Id: <201605171658.u4HGwuba009456@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olivierd set sender to olivierd@FreeBSD.org using -f From: Olivier Duchateau Date: Tue, 17 May 2016 16:58:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415394 - head/news/pan X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 May 2016 16:58:57 -0000 Author: olivierd Date: Tue May 17 16:58:55 2016 New Revision: 415394 URL: https://svnweb.freebsd.org/changeset/ports/415394 Log: - Fix build on 9.x (extract of build error, below) - Replace CPPFLAGS and LDFLAGS by USES= localbase checking for ZLIB... no configure: error: Package requirements (zlib >= 1.2.0) were not met: Package zlib was not found in the pkg-config search path. Perhaps you should add the directory containing `zlib.pc' to the PKG_CONFIG_PATH environment variable Package 'zlib', required by 'world', not found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables ZLIB_CFLAGS and ZLIB_LIBS to avoid the need to call pkg-config. Modified: head/news/pan/Makefile Modified: head/news/pan/Makefile ============================================================================== --- head/news/pan/Makefile Tue May 17 16:31:05 2016 (r415393) +++ head/news/pan/Makefile Tue May 17 16:58:55 2016 (r415394) @@ -16,12 +16,13 @@ LICENSE= GPLv2 LIB_DEPENDS= libpcre.so:devel/pcre \ libgmime-2.6.so:mail/gmime26 -USES= gmake iconv pathfix pkgconfig tar:bzip2 +USES= gmake iconv localbase pathfix pkgconfig tar:bzip2 USE_GNOME= intlhack USE_GCC= any GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lgnuregex ${ICONV_LIB} +LDFLAGS+= -lgnuregex ${ICONV_LIB} +CONFIGURE_ENV+= ZLIB_CFLAGS="-I/usr/include" \ + ZLIB_LIBS="-L/usr/lib -lz" OPTIONS_DEFINE= GTKSPELL GNUTLS NLS OPTIONS_RADIO= GTK