From owner-svn-ports-all@FreeBSD.ORG Tue May 13 15:02:09 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02A979F4; Tue, 13 May 2014 15:02:09 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA0832F0D; Tue, 13 May 2014 15:02:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4DF286K031369; Tue, 13 May 2014 15:02:08 GMT (envelope-from olgeni@svn.freebsd.org) Received: (from olgeni@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4DF284v031367; Tue, 13 May 2014 15:02:08 GMT (envelope-from olgeni@svn.freebsd.org) Message-Id: <201405131502.s4DF284v031367@svn.freebsd.org> From: Jimmy Olgeni Date: Tue, 13 May 2014 15:02:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353960 - head/lang/ccl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 May 2014 15:02:09 -0000 Author: olgeni Date: Tue May 13 15:02:08 2014 New Revision: 353960 URL: http://svnweb.freebsd.org/changeset/ports/353960 QAT: https://qat.redports.org/buildarchive/r353960/ Log: Add staging support and pet portlint. Modified: head/lang/ccl/Makefile head/lang/ccl/pkg-descr (contents, props changed) Modified: head/lang/ccl/Makefile ============================================================================== --- head/lang/ccl/Makefile Tue May 13 14:56:52 2014 (r353959) +++ head/lang/ccl/Makefile Tue May 13 15:02:08 2014 (r353960) @@ -20,7 +20,6 @@ EXCLUDE= cocoa-ide lisp-kernel scripts USE_ASDF= yes -NO_STAGE= yes .include "${.CURDIR}/../../devel/cl-asdf/bsd.cl-asdf.mk" .include @@ -55,26 +54,22 @@ do-build: --eval "(quit)" do-install: - @${MKDIR} ${CCL_DIRECTORY} - @${CP} -r ${WRKSRC}/* ${CCL_DIRECTORY} + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/ccl + @${CP} -r ${WRKSRC}/* ${STAGEDIR}${CCL_DIRECTORY} @for i in ${EXCLUDE}; do \ - ${RM} -r -f ${CCL_DIRECTORY}/$${i}; \ + ${RM} -r -f ${STAGEDIR}${CCL_DIRECTORY}/$${i}; \ done - @${INSTALL_SCRIPT} ${WRKDIR}/ccl.sh ${PREFIX}/bin/ccl + @${INSTALL_SCRIPT} ${WRKDIR}/ccl.sh ${STAGEDIR}${PREFIX}/bin/ccl post-install: - @cd ${WRKSRC} && ${ECHO_CMD} | ${SETENV} -u CCL_DEFAULT_DIRECTORY ./${FX86CL} --no-init --batch --quiet \ - --eval "(require 'asdf)" \ - --eval '(load "/usr/local/etc/asdf-init.lisp")' \ - --eval "(quit)" - @cd ${PREFIX}; ${FIND} lib/ccl/* -type d -empty \ + @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/ccl/* -type d -empty \ | ${SORT} \ | ${SED} -e 's#^#@exec ${MKDIR} %D/#g' \ > ${CCL_PLIST} - @cd ${PREFIX}; ${FIND} lib/ccl/* -type f -o -type l \ + @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/ccl/* -type f -o -type l \ | ${SORT} \ >> ${CCL_PLIST} - @cd ${PREFIX}; ${FIND} lib/ccl/* -type d | ${SORT} -r \ + @cd ${STAGEDIR}${PREFIX}; ${FIND} lib/ccl/* -type d | ${SORT} -r \ | ${SED} -e 's/^/@dirrm /g' \ >> ${CCL_PLIST} @${ECHO_CMD} "r ${TMPPLIST}" > ${WRKDIR}/ex.script @@ -82,6 +77,5 @@ post-install: @${ECHO_CMD} "r ${CCL_PLIST}" >> ${WRKDIR}/ex.script @${ECHO_CMD} "x!" >> ${WRKDIR}/ex.script @cd ${WRKDIR} && ex < ex.script > /dev/null - @${CAT} ${PKGMESSAGE} .include Modified: head/lang/ccl/pkg-descr ============================================================================== --- head/lang/ccl/pkg-descr Tue May 13 14:56:52 2014 (r353959) +++ head/lang/ccl/pkg-descr Tue May 13 15:02:08 2014 (r353960) @@ -20,4 +20,4 @@ implementation. Features include: for fast file I/O; thread local hash tables and streams to eliminate locking overhead; cons hashing support. -WWW: http://www.clozure.com/clozurecl.html +WWW: http://www.clozure.com/clozurecl.html