From owner-freebsd-ports Thu Oct 26 03:05:09 1995 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id DAA29564 for ports-outgoing; Thu, 26 Oct 1995 03:05:09 -0700 Received: from mail.cs.tu-berlin.de (mail.cs.tu-berlin.de [130.149.17.13]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id DAA29533 for ; Thu, 26 Oct 1995 03:04:37 -0700 Received: from caramba.cs.tu-berlin.de (wosch@caramba.cs.tu-berlin.de [130.149.17.12]) by mail.cs.tu-berlin.de (8.6.12/8.6.12) with ESMTP id KAA05273 for ; Thu, 26 Oct 1995 10:34:29 +0100 Received: (from wosch@localhost) by localhost (8.6.9/8.6.9) id RAA18976; Wed, 25 Oct 1995 17:20:05 +0100 Date: Wed, 25 Oct 1995 17:20:05 +0100 From: Wolfram Schneider Message-Id: <199510251620.RAA18976@localhost> To: ports@freebsd.org Subject: xemacs-19.13 Reply-to: Wolfram Schneider MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-ports@freebsd.org Precedence: bulk 1. xemacs use mtree and change owner/group/permission in /usr/local/{bin,etc,info,man}. No package should allow to change rights of existing directories. BTW, the mode for directories in etc/mtree/BSD.local.dist should 2755 and not 0755 2. Variable system-type is set to 'berkeley-unix', it should be 'freebsd'. Some lisp code depend on system-type 'freebsd' cat < EOF >> src/s/freebsd.h #undef SYSTEM_TYPE #define SYSTEM_TYPE "freebsd" EOF lisp/vm/vm-vars.el: (defvar vm-berkeley-mail-compatibility (memq system-type '(berkeley-unix netbsd)) -> (defvar vm-berkeley-mail-compatibility (memq system-type '(berkeley-unix netbsd freebsd)) Wolfram