From owner-freebsd-questions Fri Feb 28 12:27:26 2003 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB11137B401; Fri, 28 Feb 2003 12:27:24 -0800 (PST) Received: from obsecurity.dyndns.org (adsl-63-207-60-52.dsl.lsan03.pacbell.net [63.207.60.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D62B43FAF; Fri, 28 Feb 2003 12:27:23 -0800 (PST) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id B6E18679DA; Fri, 28 Feb 2003 12:27:22 -0800 (PST) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 842411249; Fri, 28 Feb 2003 12:27:22 -0800 (PST) Date: Fri, 28 Feb 2003 12:27:22 -0800 From: Kris Kennaway To: Joe Marcus Clarke Cc: questions@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Building an FAQ aka Solving the Mozilla problem Message-ID: <20030228202722.GA87194@rot13.obsecurity.org> References: <1046414422.44133.41.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7JfCtLOvnd9MIVvH" Content-Disposition: inline In-Reply-To: <1046414422.44133.41.camel@shumai.marcuscom.com> User-Agent: Mutt/1.4i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --7JfCtLOvnd9MIVvH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Feb 28, 2003 at 01:40:22AM -0500, Joe Marcus Clarke wrote: > 8. Try rebuilding print/freetype2, x11-fonts/fontconfig, and > x11-fonts/Xft. I was also seeing when trying to rebuild phoenix to get AA font support. My problem turned out to be old freetype files in /usr/X11R6. I don't know why they weren't being deleted by the port upgrade process. I found them following the example in the pkg_which(1) manpage, removed them (you'll also need to remove the dangling symlinks that this may leave behind [1], or X ports may break at install-time (mkhtmlindex doesn't like dangling symlinks)), rebuilt phoenix with portupgrade -Rf phoenix, and now it works. Kris [1] I used the following script to find the dangling symlinks: #!/bin/sh for i in $(find $1 -type l); do if [ ! -e $i/ ]; then echo $i fi done --7JfCtLOvnd9MIVvH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+X8YpWry0BWjoQKURAiltAKDeXY4kg8fWAtOTCjt0FGxVjuV7TgCglrpC vNE8a5fZ3Al67LfyfDYPyb0= =cvlK -----END PGP SIGNATURE----- --7JfCtLOvnd9MIVvH-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message