From owner-freebsd-ports Sun Jun 10 14:38:15 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hermes.dialup.ru (hermes.dialup.ru [194.87.16.230]) by hub.freebsd.org (Postfix) with ESMTP id 7A46A37B407; Sun, 10 Jun 2001 14:38:07 -0700 (PDT) (envelope-from ache@hermes.dialup.ru) Received: (from ache@localhost) by hermes.dialup.ru (8.11.3/8.11.3) id f5ALc6203173; Mon, 11 Jun 2001 01:38:06 +0400 (MSD) (envelope-from ache) Date: Mon, 11 Jun 2001 01:38:05 +0400 From: "Andrey A. Chernov" To: ports@freebsd.org, asami@freebsd.org Subject: bsd.port.mk needs fixing (missing symlinks) Message-ID: <20010611013805.A3041@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Our /usr/local/share/nls was and is broken due to missing symlinks. Running mtree on /usr/local is not enough because symlinks are not created. The following code from recent etc/Makefile will create them in normal case (for system nls): cd ${DESTDIR}/usr/share/nls; \ set - `grep "^[a-zA-Z]" ${.CURDIR}/nls.alias`; \ while [ $$# -gt 0 ] ; \ do \ rm -rf "$$1"; \ ln -s "$$2" "$$1"; \ shift; shift; \ done but it is for -current only and require nls.alias from source tree. Something similar should be added to bsd.port.mk too, but I don't know exact solution due to many different ways to do that. The same thing is true for /usr/local/share/man missing symlinks - see corresponding etc/Makefile code with man.alias and one line before: cd ${DESTDIR}/usr/share/man/en.ISO8859-1; ln -sf ../man* . Please fix it somehow. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message