From owner-freebsd-ports@FreeBSD.ORG Fri Jul 20 19:24:24 2012 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D4C32106566C; Fri, 20 Jul 2012 19:24:24 +0000 (UTC) (envelope-from vmagerya@gmail.com) Received: from mail-qc0-f182.google.com (mail-qc0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 784778FC18; Fri, 20 Jul 2012 19:24:24 +0000 (UTC) Received: by qcsg15 with SMTP id g15so2977342qcs.13 for ; Fri, 20 Jul 2012 12:24:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=iuwiFWmgYQwlmb8vBmLxHmvhhoJH8b7h8Q5U27/pt/k=; b=P0mriK2ZGAz3Gb6Tyiz7X24fY6ItBVL0F+xCA7cDKzUOHkj2jXLjmc21oV7fdkuIwD lRGyLR4bTCvfAKUp88QYpKoByR9+MLrfkrimvfweFzwUdhe14ieF5+QB8P+bjfBPTk7i OygIMKAa70AsEIpEzS0vPtvtGNus+tUVlyns3kuLXI2+Nu50304Pldbf5OSEhIpjkg4K MDMgrwZxsp07GUDYpigQlUUy7TguQzeRmGI0shmxw4Gxm5aQ6gvtbyDhP/BwVzF+SU5a FOdS7OceoImMkBA7qbCDmuQSc39ZbT2dlD7HEgRk0Okrhy8avnb9AQ0Vun23xr0xJfHo ByTA== MIME-Version: 1.0 Received: by 10.224.106.201 with SMTP id y9mr11495196qao.97.1342812263700; Fri, 20 Jul 2012 12:24:23 -0700 (PDT) Received: by 10.229.225.80 with HTTP; Fri, 20 Jul 2012 12:24:23 -0700 (PDT) In-Reply-To: <5009AE6A.1040109@freebsd.org> References: <50098EEF.8040801@shatow.net> <1E76612CE817410FAA2CF925F9CC300A@Rivendell> <5009A876.2010905@freebsd.org> <5009AE6A.1040109@freebsd.org> Date: Fri, 20 Jul 2012 22:24:23 +0300 Message-ID: From: Vitaly Magerya To: Julien Laffaye Content-Type: text/plain; charset=UTF-8 Cc: Reko Turja , Kimmo Paasiala , freebsd-ports@freebsd.org Subject: Re: How to remove erroneous deps from pkgng X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jul 2012 19:24:24 -0000 Julien Laffaye wrote: > Yes it is needed at runtime if you are a developper using sqlite3 and > pkg-config: > to use `pkg-config sqlite3 --cflags` and `pkg-config sqlite3 --libs` in > your $APP build process. It's $APP that needs pkg-config as a build dependency. Sqlite3 does not need to depend on pkf-config at all; it should install .pc file and nothing more. Look at lang/gcc, lang/python or devel/pcre: they all do it this way. In short, sqlite3 should completely drop the dependency on pkg-config.