From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 12 12:20:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 28085797 for ; Tue, 12 Feb 2013 12:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 1B422AD8 for ; Tue, 12 Feb 2013 12:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r1CCK2fr072198 for ; Tue, 12 Feb 2013 12:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r1CCK2vU072197; Tue, 12 Feb 2013 12:20:02 GMT (envelope-from gnats) Date: Tue, 12 Feb 2013 12:20:02 GMT Message-Id: <201302121220.r1CCK2vU072197@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/175857: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Feb 2013 12:20:03 -0000 The following reply was made to PR ports/175857; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/175857: commit references a PR Date: Tue, 12 Feb 2013 12:12:27 +0000 (UTC) Author: miwi Date: Tue Feb 12 12:12:10 2013 New Revision: 312106 URL: http://svnweb.freebsd.org/changeset/ports/312106 Log: Bam is a fast and flexible build system. Bam uses Lua to describe the build process. It takes its inspiration for the script files from scons. While scons focuses on being 100% correct when building, bam makes a few sacrifices to acquire fast full and incremental build times. WWW: http://matricks.github.com/bam/ PR: ports/175857 Submitted by: Timothy Beyer Added: head/devel/bam/ head/devel/bam/Makefile (contents, props changed) head/devel/bam/distinfo (contents, props changed) head/devel/bam/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Feb 12 12:11:04 2013 (r312105) +++ head/devel/Makefile Tue Feb 12 12:12:10 2013 (r312106) @@ -108,6 +108,7 @@ SUBDIR += avro-c SUBDIR += avro-cpp SUBDIR += awscli + SUBDIR += bam SUBDIR += baz SUBDIR += bcc SUBDIR += bcpp Added: head/devel/bam/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bam/Makefile Tue Feb 12 12:12:10 2013 (r312106) @@ -0,0 +1,32 @@ +# Created by: Timothy Beyer +# $FreeBSD$ + +PORTNAME= bam +PORTVERSION= 0.4.0 +CATEGORIES= devel +MASTER_SITES= http://github.com/downloads/matricks/bam/ + +MAINTAINER= beyert@cs.ucr.edu +COMMENT= A fast and flexible build system using Lua + +LICENSE= ZLIB +LICENSE_FILE= ${WRKSRC}/license.txt + +FETCH_ARGS= "-Fpr" +USE_BZIP2= yes + +PLIST_FILES= bin/bam + +do-build: +.if defined(CC) && ${CC:T:Mclang} + @${REINPLACE_CMD} -e 's|-ldl||g' ${WRKSRC}/make_unix_clang.sh + (cd ${WRKSRC} && ${SH} make_unix_clang.sh) +.else + @${REINPLACE_CMD} -e 's|-ldl||g' ${WRKSRC}/make_unix.sh + (cd ${WRKSRC} && ${SH} make_unix.sh) +.endif + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bam ${PREFIX}/bin + +.include Added: head/devel/bam/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bam/distinfo Tue Feb 12 12:12:10 2013 (r312106) @@ -0,0 +1,2 @@ +SHA256 (bam-0.4.0.tar.bz2) = 56030670aa21e227ce0a00f1ee0c9b5129469a6e69e7b67c3dd459d2fce6207d +SIZE (bam-0.4.0.tar.bz2) = 164033 Added: head/devel/bam/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bam/pkg-descr Tue Feb 12 12:12:10 2013 (r312106) @@ -0,0 +1,6 @@ +Bam is a fast and flexible build system. Bam uses Lua to describe the build +process. It takes its inspiration for the script files from scons. While +scons focuses on being 100% correct when building, bam makes a few sacrifices +to acquire fast full and incremental build times. + +WWW: http://matricks.github.com/bam/ _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"