From owner-freebsd-ports Wed Jun 4 05:27:43 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA24926 for ports-outgoing; Wed, 4 Jun 1997 05:27:43 -0700 (PDT) Received: from athena.milk.it (ssigala@line01.globalnet.it [194.185.53.33]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA24920; Wed, 4 Jun 1997 05:27:34 -0700 (PDT) Received: from localhost (ssigala@localhost) by athena.milk.it (8.8.4/8.8.4) with SMTP id OAA00504; Wed, 4 Jun 1997 14:27:45 +0200 X-Authentication-Warning: athena.milk.it: ssigala owned process doing -bs Date: Wed, 4 Jun 1997 14:27:44 +0200 (MET DST) From: "S. Sigala" X-Sender: ssigala@athena.milk.it To: Satoshi Asami cc: freebsd-ports@FreeBSD.ORG Subject: Re: ports/3457 In-Reply-To: <199706032223.PAA01330@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-ports@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Tue, 3 Jun 1997, Satoshi Asami wrote: > Synopsis: New ports for cutils 1.3.3 and umatrix > > State-Changed-From-To: open-analyzed > State-Changed-By: asami > State-Changed-When: Tue Jun 3 15:22:25 PDT 1997 > State-Changed-Why: > > Thanks, imported umatrix and moved source tarball to LOCAL_PORTS. > > As for cutils, please submit it as a "diff -ur". (Please read the > handbook's section on port upgrades.) > Ok, Thanks. Here is the patch. diff -ur cutils-old-port/Makefile cutils/Makefile --- cutils-old-port/Makefile Wed Apr 30 12:13:50 1997 +++ cutils/Makefile Wed Jun 4 14:19:09 1997 @@ -1,21 +1,21 @@ # New ports collection makefile for: cutils -# Version required: 1.3.2 -# Date created: 26 November 1996 -# Whom: Sandro Sigala +# Version required: 1.4 +# Date created: 26 November 1996 +# Date modified: 19 May 1997 +# Whom: Sandro Sigala # -# $Id: Makefile,v 1.5 1997/04/30 03:17:57 asami Exp $ +# $Id: Makefile,v 1.4 1996/12/24 11:11:43 max Exp $ # -DISTNAME= cutils-1.3.2 +DISTNAME= cutils-1.4 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_LOCAL} MAINTAINER= ssigala@globalnet.it -HAS_CONFIGURE= yes -MANCOMPRESSED= yes +GNU_CONFIGURE= yes MAN1= cdecl.1 cundecl.1 chilight.1 cinfo.1 cinfoc.1 cinfodc.1 \ - cobfusc.1 yyextract.1 yyref.1 + cobfusc.1 cunloop.1 yyextract.1 yyref.1 MAN5= cinfodb.5 .include Only in cutils-old-port/files: md5 Only in cutils-old-port: patches diff -ur cutils-old-port/pkg/COMMENT cutils/pkg/COMMENT --- cutils-old-port/pkg/COMMENT Sun Dec 8 22:26:14 1996 +++ cutils/pkg/COMMENT Wed Jun 4 14:19:09 1997 @@ -1 +1 @@ -Miscellaneous C programmer's utilities +Miscellaneous C programmer's utilities (source shrouder, YACC xref, ...) diff -ur cutils-old-port/pkg/DESCR cutils/pkg/DESCR --- cutils-old-port/pkg/DESCR Sun Dec 8 22:26:14 1996 +++ cutils/pkg/DESCR Wed Jun 4 14:19:09 1997 @@ -5,12 +5,9 @@ cdecl and cundecl - decode and encode C type declarations cobfusc - make a C source file unreadable but compilable chilight - highlight C source files with colors +cunloop - unloop C loops yyextract - extract grammar rules from yacc grammar yyref - yacc grammar reference program - -Experimental stuff not compiled by default: -safealloc - simple malloc(), free() and friends checking utility -scc - Small C Compiler Sandro Sigala ssigala@globalnet.it diff -ur cutils-old-port/pkg/PLIST cutils/pkg/PLIST --- cutils-old-port/pkg/PLIST Sun Dec 8 22:26:14 1996 +++ cutils/pkg/PLIST Wed Jun 4 14:19:09 1997 @@ -5,6 +5,7 @@ bin/cinfoc bin/cinfodc bin/cobfusc +bin/cunloop bin/yyextract bin/yyref man/man1/cdecl.1.gz @@ -14,9 +15,10 @@ man/man1/cinfoc.1.gz man/man1/cinfodc.1.gz man/man1/cobfusc.1.gz +man/man1/cunloop.1.gz man/man1/yyextract.1.gz man/man1/yyref.1.gz man/man5/cinfodb.5.gz -lib/cinfo/stdc.cinfo.db -lib/cinfo/stdclib.cinfo.db -lib/cinfo/unix.cinfo.db +share/cutils/cinfo/stdc.cinfo.db +share/cutils/cinfo/stdclib.cinfo.db +share/cutils/cinfo/unix.cinfo.db ---------------