From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 9 22:30:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C801E356 for ; Tue, 9 Oct 2012 22:30:27 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 9F98E8FC28 for ; Tue, 9 Oct 2012 22:30:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q99MURqg043728 for ; Tue, 9 Oct 2012 22:30:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q99MURYl043727; Tue, 9 Oct 2012 22:30:27 GMT (envelope-from gnats) Resent-Date: Tue, 9 Oct 2012 22:30:27 GMT Resent-Message-Id: <201210092230.q99MURYl043727@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, Danilo Egêa Gondolfo Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A11481E36 for ; Tue, 9 Oct 2012 06:45:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 67FC28FC0C for ; Tue, 9 Oct 2012 06:45:30 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q993vGR7072782 for ; Tue, 9 Oct 2012 03:57:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.5/8.14.5/Submit) id q993vG1e072781; Tue, 9 Oct 2012 03:57:16 GMT (envelope-from nobody) Message-Id: <201210090357.q993vG1e072781@red.freebsd.org> Date: Tue, 9 Oct 2012 03:57:16 GMT From: Danilo Egêa Gondolfo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/172551: New Port - devel/ccons X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Oct 2012 22:30:27 -0000 >Number: 172551 >Category: ports >Synopsis: New Port - devel/ccons >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 09 22:30:27 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Danilo Egêa Gondolfo >Release: FreeBSD 9.1-RC1 >Organization: Universidade Estadual de Maringá >Environment: FreeBSD projeto 9.1-RC1 FreeBSD 9.1-RC1 #2 r240716: Wed Sep 26 13:31:15 BRT 2012 root@projeto:/usr/obj/usr/src/sys/PROJETO amd64 >Description: The goal of the ccons project is to create an interactive console for the C programming language, similar to "python" and "irb" for Python and Ruby respectively. The project builds on top of clang and llvm. It builds on FreeBSD >= 9 >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: # # ccons # ccons/distinfo # ccons/Makefile # ccons/pkg-descr # echo c - ccons mkdir -p ccons > /dev/null 2>&1 echo x - ccons/distinfo sed 's/^X//' >ccons/distinfo << 'END-of-ccons/distinfo' XSHA256 (ccons-r235.tar.gz) = 9ca451626e4a54c1504cd86e646041a70a9aff8724a727488671abb3bea1440c XSIZE (ccons-r235.tar.gz) = 26187 END-of-ccons/distinfo echo x - ccons/Makefile sed 's/^X//' >ccons/Makefile << 'END-of-ccons/Makefile' X# $FreeBSD$ X XPORTNAME= ccons XPORTVERSION= r235 XCATEGORIES= devel XMASTER_SITES= GOOGLE_CODE X XMAINTAINER= danilogondolfo@gmail.com XCOMMENT= Interactive Console for the C Programming Language X XBUILD_DEPENDS= ${LOCALBASE}/bin/llvm-config:${PORTSDIR}/devel/llvm \ X ${LOCALBASE}/bin/clang:${PORTSDIR}/lang/clang \ X ${LOCALBASE}/bin/ld:${PORTSDIR}/devel/binutils XLIB_DEPENDS= ncurses:${PORTSDIR}/devel/ncurses X XONLY_FOR_ARCHS= i386 amd64 XUSE_GMAKE= yes XUSE_CMAKE= yes XCMAKE_ARGS+= -DLLVM_CONFIG_EXECUTABLE:FILEPATH=${LOCALBASE}/bin/llvm-config X XCXX= ${LOCALBASE}/bin/clang++ XCXXFLAGS+= -fno-rtti XLDFLAGS+= -lclangFrontendTool -lclangFrontend -lclangDriver -lclangSerialization \ X -lclangCodeGen -lclangParse -lclangSema -lclangStaticAnalyzerCheckers \ X -lclangStaticAnalyzerCore -lclangAnalysis -lclang -lclangAST -lclangLex \ X -lclangBasic -ledit -lm ${PTHREAD_LIBS} X XPLIST_FILES= bin/ccons X XWRKSRC= ${WRKDIR}/ccons X XMAKE_JOBS_SAFE= yes X XMAN1= ccons.1 X X.include X X.if ${OSVERSION} < 900044 XBROKEN= ccons don\'t work on FreeBSD < 9.0-RELEASE X.endif X Xdo-install: X @${INSTALL_PROGRAM} ${WRKSRC}/ccons ${PREFIX}/bin/ccons X @${INSTALL_MAN} ${WRKSRC}/man/ccons.1 ${MAN1PREFIX}/man/man1/ccons.1 X X.include END-of-ccons/Makefile echo x - ccons/pkg-descr sed 's/^X//' >ccons/pkg-descr << 'END-of-ccons/pkg-descr' XThe goal of the ccons project is to create an interactive console Xfor the C programming language, similar to "python" and "irb" for XPython and Ruby respectively. X XWWW: http://code.google.com/p/ccons/ END-of-ccons/pkg-descr exit >Release-Note: >Audit-Trail: >Unformatted: