From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Aug 5 08:40:15 2003 Return-Path: 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 A496E37B401 for ; Tue, 5 Aug 2003 08:40:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E41B43FB1 for ; Tue, 5 Aug 2003 08:40:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h75FeEUp027989 for ; Tue, 5 Aug 2003 08:40:14 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h75FeEmr027988; Tue, 5 Aug 2003 08:40:14 -0700 (PDT) Resent-Date: Tue, 5 Aug 2003 08:40:14 -0700 (PDT) Resent-Message-Id: <200308051540.h75FeEmr027988@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, Volker Stolz Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFD0F37B401; Tue, 5 Aug 2003 08:34:51 -0700 (PDT) Received: from atlas.informatik.rwth-aachen.de (atlas.Informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4488343FB1; Tue, 5 Aug 2003 08:34:50 -0700 (PDT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from menelaos.informatik.rwth-aachen.de (menelaos.Informatik.RWTH-Aachen.DE [137.226.194.73]) 8.11.1-0.5) with ESMTP id h75FYnL17352; Tue, 5 Aug 2003 17:34:49 +0200 Received: (from stolz@localhost)h75FYnD7011530; Tue, 5 Aug 2003 17:34:49 +0200 (CEST) (envelope-from stolz) Message-Id: <200308051534.h75FYnD7011530@menelaos.informatik.rwth-aachen.de> Date: Tue, 5 Aug 2003 17:34:49 +0200 (CEST) From: Volker Stolz To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: hoek@FreeBSD.org Subject: ports/55288: [patch] misc/44bsd-more: Unbreak w/ GCC3.3 (bento) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Volker Stolz List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Aug 2003 15:40:15 -0000 >Number: 55288 >Category: ports >Synopsis: [patch] misc/44bsd-more: Unbreak w/ GCC3.3 (bento) >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 Aug 05 08:40:13 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Volker Stolz >Release: FreeBSD 4.8-STABLE i386 >Organization: Lehrstuhl für Informatik II >Environment: System: FreeBSD menelaos.informatik.rwth-aachen.de 4.8-STABLE FreeBSD 4.8-STABLE #7: Tue Aug 5 15:53:30 CEST 2003 root@menelaos.informatik.rwth-aachen.de:/usr/obj/usr/src/sys/MENELAOS i386 >Description: - Eliminate one multiple-liner string - Condense Makefile while here >How-To-Repeat: >Fix: One new patch-file: files/patch-main.c --- 44bsd-more begins here --- diff -urN /usr/ports/misc/44bsd-more/Makefile 44bsd-more/Makefile --- /usr/ports/misc/44bsd-more/Makefile Mon Mar 10 17:23:03 2003 +++ 44bsd-more/Makefile Tue Aug 5 17:28:12 2003 @@ -21,7 +21,6 @@ MAN1= 44bsd-more.1 RELDATE= 20000521 -EXAMPDIR= ${PREFIX}/share/examples/44bsd-more post-extract: -cd ${WRKSRC} && co -d${RELDATE} RCS/*,v @@ -33,16 +32,12 @@ ${CP} ${FILESDIR}/queue.h ${WRKSRC} do-install: - ${MKDIR} ${EXAMPDIR} + ${MKDIR} ${EXAMPLESDIR} ${INSTALL_MAN} ${WRKSRC}/more.1 ${PREFIX}/man/man1/44bsd-more.1 - ${INSTALL_DATA} ${WRKSRC}/default.morerc ${EXAMPDIR} - ${INSTALL_DATA} ${WRKSRC}/less.morerc ${EXAMPDIR} - ${INSTALL_DATA} ${WRKSRC}/most.morerc ${EXAMPDIR} +.for f in default.morerc less.morerc most.morerc + ${INSTALL_DATA} ${WRKSRC}/${f} ${EXAMPLESDIR} +.endfor ${INSTALL_DATA} ${WRKSRC}/more.help ${PREFIX}/share/misc/44bsd-more.help ${INSTALL_PROGRAM} ${WRKSRC}/more ${PREFIX}/bin/44bsd-more - -tarup: - cd ${WRKSRC} && tar cyf /tmp/${DISTFILES} RCS - scp /tmp/${DISTFILES} freefall:public_html/dists .include diff -urN /usr/ports/misc/44bsd-more/files/patch-main.c 44bsd-more/files/patch-main.c --- /usr/ports/misc/44bsd-more/files/patch-main.c Thu Jan 1 01:00:00 1970 +++ 44bsd-more/files/patch-main.c Tue Aug 5 17:22:04 2003 @@ -0,0 +1,14 @@ +--- main.c.orig Tue Aug 5 17:17:15 2003 ++++ main.c Tue Aug 5 17:21:34 2003 +@@ -33,9 +33,9 @@ + */ + + #ifndef lint +-char copyright[] = ++char copyright[] = \ + "@(#) Copyright (c) 1988 Mark Nudleman.\n\ +-@(#) Copyright (c) 1988, 1993 ++@(#) Copyright (c) 1988, 1993\ + Regents of the University of California. All rights reserved.\n"; + #endif /* not lint */ + --- 44bsd-more ends here --- >Release-Note: >Audit-Trail: >Unformatted: