Revision: 76420 http://trac.macports.org/changeset/76420 Author: mk@macports.org Date: 2011-02-22 14:01:09 -0800 (Tue, 22 Feb 2011) Log Message: ----------- QiII: fixes according to Ryan's advice on developer ML Modified Paths: -------------- trunk/dports/lang/QiII/Portfile Modified: trunk/dports/lang/QiII/Portfile =================================================================== --- trunk/dports/lang/QiII/Portfile 2011-02-22 21:35:49 UTC (rev 76419) +++ trunk/dports/lang/QiII/Portfile 2011-02-22 22:01:09 UTC (rev 76420) @@ -1,3 +1,4 @@ +# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 # $Id$ PortSystem 1.0 @@ -29,16 +30,17 @@ distname ${name}${version} use_zip yes use_configure no +supported_archs noarch checksums md5 3a0b5c56d0f107f80f5bca11b82a4d59 -depends_build port:sbcl +depends_build port:sbcl build { - system "cd ${worksrcpath}/Lisp; sbcl --load 'install.lsp'" + system "cd ${worksrcpath}/Lisp && sbcl --load 'install.lsp'" reinplace "s|Qi.core|${prefix}/src/${name}/Lisp/Qi.core|g" ${worksrcpath}/Lisp/Qi-Linux-SBCL - system "cd ${worksrcpath}/Lisp; cat Qi-Linux-SBCL | col -b > Qi-Mac-SBCL" - system "cd ${worksrcpath}/Lisp; chmod 755 Qi-Mac-SBCL" + system "cd ${worksrcpath}/Lisp && cat Qi-Linux-SBCL | col -b > Qi-Mac-SBCL" + system "cd ${worksrcpath}/Lisp && chmod 755 Qi-Mac-SBCL" } destroot { @@ -52,3 +54,4 @@ post-uninstall { system "cd ${prefix}/bin; rm Qi" } +