From owner-freebsd-questions@FreeBSD.ORG Sat Apr 5 21:15:30 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37B871065672 for ; Sat, 5 Apr 2008 21:15:30 +0000 (UTC) (envelope-from mkhitrov@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.28]) by mx1.freebsd.org (Postfix) with ESMTP id D45D58FC26 for ; Sat, 5 Apr 2008 21:15:29 +0000 (UTC) (envelope-from mkhitrov@gmail.com) Received: by yw-out-2324.google.com with SMTP id 2so121510ywt.13 for ; Sat, 05 Apr 2008 14:15:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=7ig2SCNDv2exAHviHPmr9lGvV5msaYiD64FyjKYks1E=; b=C1sfP0A4xytDVuxnhf5ePFXNRJKzRQIefg9K0TWkIwwCEyh9/+93Is8PaeCUK+cnmAw3qpMFKxKjgSmND8Q8as6kOo56Ni8lCA1lHZPpONtli1fQnUOZRv6n7QeUrbYuNfGkoqd6dcOSzD4q1ncfWRQ3PmYzcte1EtAMcnkUncw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=IL35CNzct4eSqNDhjTwGBm+Jb/Jncez7uSIN+7kXE3fervLQY99jKd9sApt3jaGp/tpe/JeF5X6OzrCAZ3R7W8z4IJIZ2r6lwgYhF0NsmqUDvuE1Bz2DLKnVu2vVZxCKaGjmihg8Fe+jVQkluS0GRCAzFGNVxe6mGijRGVDgzzA= Received: by 10.150.58.5 with SMTP id g5mr1541320yba.158.1207428436302; Sat, 05 Apr 2008 13:47:16 -0700 (PDT) Received: by 10.150.146.6 with HTTP; Sat, 5 Apr 2008 13:47:16 -0700 (PDT) Message-ID: <26ddd1750804051347k44f4b32btff84fc903c49429@mail.gmail.com> Date: Sat, 5 Apr 2008 16:47:16 -0400 From: "Maxim Khitrov" To: "Steven Friedrich" In-Reply-To: <200804051609.30739.FreeBSD@insightbb.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200804051609.30739.FreeBSD@insightbb.com> Cc: freebsd-questions@freebsd.org Subject: Re: Documentation for port config options? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Apr 2008 21:15:30 -0000 On Sat, Apr 5, 2008 at 4:09 PM, Steven Friedrich wrote: > cups-base has several options: > > [X] GNUTLS Build with GNUTLS library > [ ] PHP Build PHP support > [ ] PYTHON Build PYTHON support > [ ] LIBPAPER Build with libpaper support > [ ] DNSSD Build with DNS_SD (avahi) support > [ ] PAM Build with PAM support > [ ] LDAP Build with LDAP support > [ ] DBUS Build with DBUS support > > Where can I find documentation regarding these options, so I can determine > which ones I need? Your best bet is to figure out which dependencies each of the option adds (by looking through the Makefile). This is usually pretty simple to do as you have constructs such as if defined(WITH_X) require some other port. You can then look at the pkg-desc file for each dependency and decide if you need that software installed. I don't think there is a better way at this time. - Max