From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 31 16:30:27 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A4CC16A4DE for ; Tue, 31 Oct 2006 16:30:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5226243D79 for ; Tue, 31 Oct 2006 16:30:16 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9VGUGlv065038 for ; Tue, 31 Oct 2006 16:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9VGUGKn065034; Tue, 31 Oct 2006 16:30:16 GMT (envelope-from gnats) Resent-Date: Tue, 31 Oct 2006 16:30:16 GMT Resent-Message-Id: <200610311630.k9VGUGKn065034@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Dr. Markus Waldeck" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A221D16A417 for ; Tue, 31 Oct 2006 16:24:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [216.136.204.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B8EB43D49 for ; Tue, 31 Oct 2006 16:24:25 +0000 (GMT) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.13.1/8.13.1) with ESMTP id k9VGOPp0008380 for ; Tue, 31 Oct 2006 16:24:25 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.13.1/8.13.1/Submit) id k9VGOPMQ008379; Tue, 31 Oct 2006 16:24:25 GMT (envelope-from nobody) Message-Id: <200610311624.k9VGOPMQ008379@www.freebsd.org> Date: Tue, 31 Oct 2006 16:24:25 GMT From: "Dr. Markus Waldeck" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.0 Cc: Subject: ports/104972: Some files in arpwatch-2.1.a15_3 have the ownership "bin:bin" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Oct 2006 16:30:27 -0000 >Number: 104972 >Category: ports >Synopsis: Some files in arpwatch-2.1.a15_3 have the ownership "bin:bin" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Oct 31 16:30:15 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Dr. Markus Waldeck >Release: 7.0-CURRENT-200610 >Organization: >Environment: FreeBSD fbh 7.0-CURRENT-200610 FreeBSD 7.0-CURRENT-200610 #2: Tue Oct 10 06:42:33 CEST 2006 root@fb:/usr/src/sys/i386/compile/FB70B01 i386 >Description: See PR ports/103270 (http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/103270) Some Files in arpwatch-2.1.a15_3 have the ownership "bin:bin". The files in the base system and in the ports use "root:wheel". >How-To-Repeat: find /usr/local -user bin >Fix: Replace patch-ab with this one: --- Makefile.in.orig Thu Jun 15 02:39:55 2000 +++ Makefile.in Tue Oct 31 18:14:51 2006 @@ -31,7 +31,7 @@ # Pathname of directory to install the man page MANDEST = @mandir@ # Pathname of directory to install database file -ARPDIR = $(prefix)/arpwatch +ARPDIR ?= $(prefix)/arpwatch # VPATH srcdir = @srcdir@ @@ -45,7 +45,7 @@ PROG = arpwatch CCOPT = @V_CCOPT@ INCLS = -I. @V_INCLS@ -DEFS = -DDEBUG @DEFS@ -DARPDIR=\"$(ARPDIR)\" -DPATH_SENDMAIL=\"$(SENDMAIL)\" +DEFS = @DEFS@ -DARPDIR=\"$(ARPDIR)\" -DPATH_SENDMAIL=\"$(SENDMAIL)\" # Standard CFLAGS CFLAGS = $(CCOPT) $(DEFS) $(INCLS) @@ -110,13 +110,13 @@ $(CC) $(CFLAGS) -o $@ zap.o intoa.o -lutil install: force - $(INSTALL) -m 555 -o bin -g bin arpwatch $(DESTDIR)$(BINDEST) - $(INSTALL) -m 555 -o bin -g bin arpsnmp $(DESTDIR)$(BINDEST) + $(INSTALL) -s -m 555 -o root -g wheel arpwatch $(DESTDIR)$(BINDEST) + $(INSTALL) -s -m 555 -o root -g wheel arpsnmp $(DESTDIR)$(BINDEST) install-man: force - $(INSTALL) -m 444 -o bin -g bin $(srcdir)/arpwatch.8 \ + $(INSTALL) -m 444 -o root -g wheel $(srcdir)/arpwatch.8 \ $(DESTDIR)$(MANDEST)/man8 - $(INSTALL) -m 444 -o bin -g bin $(srcdir)/arpsnmp.8 \ + $(INSTALL) -m 444 -o root -g wheel $(srcdir)/arpsnmp.8 \ $(DESTDIR)$(MANDEST)/man8 lint: $(GENSRC) force >Release-Note: >Audit-Trail: >Unformatted: