RCS file: /Volumes/src/cvs/od/proj/darwinports/dports/lang/clisp/Portfile,v
retrieving revision 1.6
diff -u -d -b -w -u -r1.6 Portfile
|
|
|
2 | 2 | |
3 | 3 | PortSystem 1.0 |
4 | 4 | name clisp |
5 | | version 2.29 |
| 5 | version 2.32 |
6 | 6 | categories lang |
7 | | maintainers gwright@comcast.net |
| 7 | maintainers gwright@comcast.net waqar@opendarwin.org |
8 | 8 | platforms darwin |
9 | 9 | description The Clisp Common Lisp Implementation |
10 | 10 | long_description \ |
… |
… |
|
18 | 18 | An X11 interface is available through CLX and Garnet. \ |
19 | 19 | Command line editing is provided by readline. |
20 | 20 | |
21 | | #bugs Version 2.29 is compatible with maxima 5.9.0. Version \ |
22 | | # 2.30 introduced floating point bugs that maxima trips \ |
23 | | # over. |
24 | | |
25 | 21 | homepage http://clisp.cons.org/ |
26 | | master_sites http://cvs2.cons.org/ftp-area/clisp/source/2.29/ \ |
27 | | gnu:clisp/release \ |
28 | | sourceforge |
29 | | |
30 | | checksums md5 53f7cfba5c5f3f7d536541e1df210b74 |
31 | | |
32 | | pre-patch { cd ${workpath} |
33 | | file rename ${name} ${name}-${version} |
34 | | } |
35 | | |
36 | | patchfiles patch-makemake.in patch-_clisp.c patch-stream.d |
37 | | |
38 | | build.dir ${workpath}/${worksrcdir}/src |
| 22 | master_sites sourceforge:${name} |
| 23 | use_bzip2 yes |
| 24 | checksums md5 20a036128ec04e7a48d44c1a1c6f8afe |
| 25 | build.dir ${worksrcpath}/src |
39 | 26 | |
40 | 27 | post-configure { cd ${build.dir} |
41 | 28 | system "./makemake --without-dynamic-ffi \ |
42 | | --with-readline --with-gettext \ |
43 | | --prefix=${prefix} > Makefile && \ |
| 29 | --with-gettext --prefix=${prefix} > Makefile && \ |
44 | 30 | make config.lisp" |
45 | 31 | } |
46 | 32 | |