From nobody@FreeBSD.org  Fri Aug 15 12:25:11 2008
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 9ABFC1065671
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 15 Aug 2008 12:25:11 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id 788BA8FC15
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 15 Aug 2008 12:25:11 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.2/8.14.2) with ESMTP id m7FCPBU5094115
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 15 Aug 2008 12:25:11 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.2/8.14.1/Submit) id m7FCPBYE094114;
	Fri, 15 Aug 2008 12:25:11 GMT
	(envelope-from nobody)
Message-Id: <200808151225.m7FCPBYE094114@www.freebsd.org>
Date: Fri, 15 Aug 2008 12:25:11 GMT
From: Wen heping <wenheping@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [NEW PORT]chinese/ucc:C Compiler Which Implements the ANSI C89 Standard
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         126551
>Category:       ports
>Synopsis:       [NEW PORT]chinese/ucc:C Compiler Which Implements the ANSI C89 Standard
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Aug 15 12:30:14 UTC 2008
>Closed-Date:    Mon Aug 25 21:11:20 UTC 2008
>Last-Modified:  Mon Aug 25 21:20:05 UTC 2008
>Originator:     Wen heping
>Release:        FreeBSD 7.0 release
>Organization:
ChangAn Middle School
>Environment:
FreeBSD tinderbox.wenjing.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008     root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
Ucc is a C compiler which implements the ANSI C89
standard with a few extensions. Ucc is released
under BSD license.

Ucc is specificaly designed for personal research
and assist the undergraduate or graduate in compiler
learning. We hope that Ucc will be a seedbed for new
ideas and world-class optimizing techniques.

Ucc's design and development goals is clear code
structure,upstanding extensibility,retargetable and
excellent optimization.

WWW:   http://ucc.sf.net
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	ucc
#	ucc/files
#	ucc/files/patch-Makefile
#	ucc/pkg-plist
#	ucc/pkg-descr
#	ucc/distinfo
#	ucc/Makefile
#
echo c - ucc
mkdir -p ucc > /dev/null 2>&1
echo c - ucc/files
mkdir -p ucc/files > /dev/null 2>&1
echo x - ucc/files/patch-Makefile
sed 's/^X//' >ucc/files/patch-Makefile << 'END-of-ucc/files/patch-Makefile'
X--- Makefile.orig	2008-05-14 11:13:02.000000000 +0800
X+++ Makefile	2008-08-15 13:25:35.000000000 +0800
X@@ -1,21 +1,21 @@
X-UCCDIR = /usr/local/lib/ucc
X-export UCCDIR
X+UCCDIR = /usr/local
X+#export UCCDIR
X 
X all:
X-	make -C driver
X-	make -C ucl
X+	gmake -C driver
X+	gmake -C ucl
X 
X clean:
X-	make -C driver clean
X-	make -C ucl clean
X+	gmake -C driver clean
X+	gmake -C ucl clean
X 	
X install:
X-	mkdir -p $(UCCDIR)
X-	cp driver/ucc $(UCCDIR)
X-	cp ucl/ucl $(UCCDIR)
X-	cp ucl/assert.o $(UCCDIR)
X-	cp -r ucl/linux/include $(UCCDIR)
X+	mkdir -p $(UCCDIR)/include/ucc
X+	cp driver/ucc $(UCCDIR)/bin
X+	cp ucl/ucl $(UCCDIR)/bin
X+	cp ucl/assert.o $(UCCDIR)/lib
X+	cp ucl/linux/include/* $(UCCDIR)/include/ucc/
X 
X test:
X-	make -C ucl test
X+	gmake -C ucl test
X 
END-of-ucc/files/patch-Makefile
echo x - ucc/pkg-plist
sed 's/^X//' >ucc/pkg-plist << 'END-of-ucc/pkg-plist'
Xbin/ucc
Xbin/ucl
Xlib/assert.o
Xinclude/ucc/assert.h
Xinclude/ucc/float.h
Xinclude/ucc/limits.h
Xinclude/ucc/math.h
Xinclude/ucc/stdarg.h
X@dirrm include/ucc
END-of-ucc/pkg-plist
echo x - ucc/pkg-descr
sed 's/^X//' >ucc/pkg-descr << 'END-of-ucc/pkg-descr'
XUcc is a C compiler which implements the ANSI C89
Xstandard with a few extensions. Ucc is released
Xunder BSD license.
X
XUcc is specificaly designed for personal research
Xand assist the undergraduate or graduate in compiler
Xlearning. We hope that Ucc will be a seedbed for new
Xideas and world-class optimizing techniques.
X
XUcc's design and development goals is clear code
Xstructure,upstanding extensibility,retargetable and
Xexcellent optimization.
X
XWWW:   http://ucc.sf.net
END-of-ucc/pkg-descr
echo x - ucc/distinfo
sed 's/^X//' >ucc/distinfo << 'END-of-ucc/distinfo'
XMD5 (ucc160.zip) = 463c2e656383fc10594494268a2735e7
XSHA256 (ucc160.zip) = 784a35c0d69355ea15db843d032ed2a1dba38f23fcd6a950199fcdb93789f25e
XSIZE (ucc160.zip) = 376942
END-of-ucc/distinfo
echo x - ucc/Makefile
sed 's/^X//' >ucc/Makefile << 'END-of-ucc/Makefile'
X# New ports collection makefile for:	ucc
X# Date created:				15 August 2008
X# Whom:					Wen Heping <wenheping@gmail.com>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	ucc
XPORTVERSION=	1.6.0
XPORTREVISION=	7
XCATEGORIES=	chinese lang
XMASTER_SITES=	SF
XDISTNAME=	ucc160
X
XMAINTAINER=	wenheping@gmail.com
XCOMMENT=	C Compiler Which Implements the ANSI C89 Standard
X
XUSE_ZIP=	yes
XWRKSRC=		${WRKDIR}/${PORTNAME}
X
XUSE_GMAKE=	yes
XUSE_LDCONFIG=	yes
X
X.include <bsd.port.mk>
END-of-ucc/Makefile
exit



>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Fri Aug 15 12:30:24 UTC 2008 
Responsible-Changed-Why:  
miwi@ wants his PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126551 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Mon Aug 25 21:11:19 UTC 2008 
State-Changed-Why:  
New port added, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=126551 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/126551: commit references a PR
Date: Mon, 25 Aug 2008 21:11:31 +0000 (UTC)

 miwi        2008-08-25 21:11:18 UTC
 
   FreeBSD ports repository
 
   Modified files:
     lang                 Makefile 
   Added files:
     lang/ucc             Makefile distinfo pkg-descr pkg-plist 
     lang/ucc/files       patch-Makefile 
   Log:
   Ucc is a C compiler which implements the ANSI C89
   standard with a few extensions. Ucc is released
   under BSD license.
   
   Ucc is specificaly designed for personal research
   and assist the undergraduate or graduate in compiler
   learning. We hope that Ucc will be a seedbed for new
   ideas and world-class optimizing techniques.
   
   Ucc's design and development goals is clear code
   structure,upstanding extensibility,retargetable and
   excellent optimization.
   
   WWW:   http://ucc.sf.net
   
   PR:             ports/126551
   Submitted by:   Wen Heping <wenheping at gmail.com>
   
   Revision  Changes    Path
   1.601     +1 -0      ports/lang/Makefile
   1.1       +23 -0     ports/lang/ucc/Makefile (new)
   1.1       +3 -0      ports/lang/ucc/distinfo (new)
   1.1       +36 -0     ports/lang/ucc/files/patch-Makefile (new)
   1.1       +14 -0     ports/lang/ucc/pkg-descr (new)
   1.1       +9 -0      ports/lang/ucc/pkg-plist (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
