From owner-freebsd-questions@FreeBSD.ORG Tue Apr 7 19:04:28 2009 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 AC1831065674 for ; Tue, 7 Apr 2009 19:04:28 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from smtp-vbr13.xs4all.nl (smtp-vbr13.xs4all.nl [194.109.24.33]) by mx1.freebsd.org (Postfix) with ESMTP id 251528FC13 for ; Tue, 7 Apr 2009 19:04:27 +0000 (UTC) (envelope-from rsmith@xs4all.nl) Received: from slackbox.xs4all.nl (slackbox.xs4all.nl [213.84.242.160]) by smtp-vbr13.xs4all.nl (8.13.8/8.13.8) with ESMTP id n37J4QwU025453; Tue, 7 Apr 2009 21:04:26 +0200 (CEST) (envelope-from rsmith@xs4all.nl) Received: by slackbox.xs4all.nl (Postfix, from userid 1001) id 5B56FBA8A; Tue, 7 Apr 2009 21:04:26 +0200 (CEST) Date: Tue, 7 Apr 2009 21:04:26 +0200 From: Roland Smith To: Juri Mianovich Message-ID: <20090407190426.GA62574@slackbox.xs4all.nl> References: <483945.87071.qm@web45606.mail.sp1.yahoo.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="opJtzjQTFsWo+cga" Content-Disposition: inline In-Reply-To: <483945.87071.qm@web45606.mail.sp1.yahoo.com> X-GPG-Fingerprint: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 X-GPG-Key: http://www.xs4all.nl/~rsmith/pubkey.txt X-GPG-Notice: If this message is not signed, don't assume I sent it! User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: by XS4ALL Virus Scanner Cc: freebsd-questions@freebsd.org Subject: Re: What ELSE do I need to add to make.conf to avoid X ? 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: Tue, 07 Apr 2009 19:04:29 -0000 --opJtzjQTFsWo+cga Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 07, 2009 at 07:40:53AM -0700, Juri Mianovich wrote: >=20 > Just trying to install rrdtool on a server. >=20 > Do not want X. Do not want X11. Do not want Xorg. > Oops. Looks like I was going to get X11 anyway. >=20 > So, what other options do I need to add to make.conf in order to > install a simple stats/database tool without hundreds and hundreds of > MB of x11 ? You should pick a tool that doesn't depend on X components. From databases/rrdtool/Makefile: =20 LIB_DEPENDS=3D freetype.9:${PORTSDIR}/print/freetype2 \ cairo.2:${PORTSDIR}/graphics/cairo \ png.5:${PORTSDIR}/graphics/png \ xml2.5:${PORTSDIR}/textproc/libxml2 \ pangocairo-1\.0.0:${PORTSDIR}/x11-toolkits/pango and USE_GNOME=3D gnomehack The cairo library depends on an Xorg component called xrender, unless you build it with the WITHOUT_X11 variable defined, which is not the default. See /usr/ports/graphics/cairo/Makefile. Pango depends on some X components as well, unless compiled with the WITHOUT_X11 variable defined. See /usr/ports/x11-toolkits/pango/Makefile. So if you _really_ want no X related stuff at all, you'd better pick something else, because cairo and pango are linked with several X components. Check the required items for rrdtool on freshports [http://www.freshports.org/databases/rrdtool/], and then follow the links to the packages it depends on, and look at their dependancies. You'll see a host of X related stuff. Maybe using WITHOUT_X11=3Dyes is sufficient to stop these dependencies, but I doubt if that is a situation that has been well tested. Roland --=20 R.F.Smith http://www.xs4all.nl/~rsmith/ [plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated] pgp: 1A2B 477F 9970 BA3C 2914 B7CE 1277 EFB0 C321 A725 (KeyID: C321A725) --opJtzjQTFsWo+cga Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAknbo7oACgkQEnfvsMMhpyX8jgCgrSuQuA3jqRHiU6PrPDOrk8rm /CcAn021Q8hGQfyjIOZn2hLXt+ajzN8Z =G1sC -----END PGP SIGNATURE----- --opJtzjQTFsWo+cga--