From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Aug 19 21:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04DA31065674 for ; Sun, 19 Aug 2012 21:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CAD8A8FC14 for ; Sun, 19 Aug 2012 21:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7JLU8hc004256 for ; Sun, 19 Aug 2012 21:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7JLU8Y3004255; Sun, 19 Aug 2012 21:30:08 GMT (envelope-from gnats) Resent-Date: Sun, 19 Aug 2012 21:30:08 GMT Resent-Message-Id: <201208192130.q7JLU8Y3004255@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Bryan Drewery Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B17F3106564A for ; Sun, 19 Aug 2012 21:22:35 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7D7C08FC12 for ; Sun, 19 Aug 2012 21:22:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7JLMZ8P004004 for ; Sun, 19 Aug 2012 21:22:35 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7JLMZdF004003 for FreeBSD-gnats-submit@freebsd.org; Sun, 19 Aug 2012 21:22:35 GMT (envelope-from bdrewery) Received: (qmail 45514 invoked from network); 19 Aug 2012 16:22:32 -0500 Received: from unknown (HELO test8.xzibition.com) (10.10.0.34) by sweb.xzibition.com with SMTP; 19 Aug 2012 16:22:32 -0500 Received: by test8.xzibition.com (sSMTP sendmail emulation); Sun, 19 Aug 2012 16:21:21 -0500 Message-Id: <201208192122.q7JLMZdF004003@freefall.freebsd.org> Date: Sun, 19 Aug 2012 16:21:21 -0500 From: Bryan Drewery To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/170771: [PATCH] textproc/iksemel: Fails to build due to missing pkgconfig dependency X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bryan Drewery List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2012 21:30:09 -0000 >Number: 170771 >Category: ports >Synopsis: [PATCH] textproc/iksemel: Fails to build due to missing pkgconfig dependency >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Aug 19 21:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Bryan Drewery >Release: FreeBSD 8.3-RELEASE i386 >Organization: >Environment: >Description: Due to the recent changes with pkgconf [1], security/gnutls (a lib depends of iksemel) was changed [2] to only depend on pkgconf at build time. iksemel is missing a proper build dependency on pkgconfig, so it is now failing to build [3] Attached patch fixes to depend on pkgconfig via USE_PKGCONFIG, and also fixes LIB_DEPENDS to not use a versioned lib as any version should be ok. [1] http://lists.freebsd.org/pipermail/freebsd-ports/2012-July/077043.html [2] http://www.freshports.org/commit.php?category=security&port=gnutls&files=yes&message_id=201208151357.q7FDv1RK063257@svn.freebsd.org [3] http://redports.org/~bdrewery/20120818181834-46080-50801/iksemel-1.4_3.log >How-To-Repeat: >Fix: --- patch-textproc-iksemel-pkgconf.txt begins here --- Index: Makefile =================================================================== --- Makefile (revision 302768) +++ Makefile (working copy) @@ -14,7 +14,7 @@ MAINTAINER= rhaamo@gruik.at COMMENT= XML parser library mainly designed for Jabber applications -LIB_DEPENDS= gnutls.47:${PORTSDIR}/security/gnutls +LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls USE_AUTOTOOLS= aclocal autoheader automake autoconf libtool ACLOCAL_ARGS= -I ${LOCALBASE}/share/aclocal @@ -22,6 +22,7 @@ CPPFLAGS+= ${CXXFLAGS} -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes +USE_PKGCONFIG= build INFO= iksemel --- patch-textproc-iksemel-pkgconf.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: