Ticket #23155: Portfile-swi-prolog-lite.diff
File Portfile-swi-prolog-lite.diff, 3.0 KB (added by pmoura (Paulo Moura), 15 years ago) |
---|
-
Portfile
old new 1 # $Id: Portfile 57749 2009-09-16 04:30:02Z ryandesign@macports.org $ 1 # -*- 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 2 # $Id: Portfile 60682 2009-11-19 22:03:18Z snc@macports.org $ 2 3 3 PortSystem 4 PortSystem 1.0 4 5 5 6 name swi-prolog-lite 6 version 5.6.62 7 version 5.8.3 8 epoch 20051223 7 9 8 10 categories lang 9 11 maintainers uva.nl:J.Wielemaker logtalk.org:pmoura … … 11 13 description SWI-Prolog compiler (without extra packages) 12 14 13 15 long_description \ 14 ISO/Edinburgh-style Prolog compiler including modules, \ 15 autoload, libraries, Garbage-collector, stack-expandor, \ 16 C/C++-interface, Multiple threads, GNU-readline interface, \ 17 very fast compiler. Including packages clib (Unix process \ 18 control, sockets, MIME), cpp (C++ interface), sgml (reading \ 19 XML/SGML), sgml/RDF (reading RDF into triples), ODBC \ 20 interface and XPCE (Graphics UI toolkit, integrated editor \ 21 (Emacs-clone) and graphical debugger). 16 ISO/Edinburgh-style Prolog compiler including modules, \ 17 autoload, libraries, Garbage-collector, stack-expandor, \ 18 C/C++-interface, Multiple threads, GNU-readline interface, \ 19 coroutining, constraint programming, global variables, \ 20 very fast compiler. Including packages clib (Unix process \ 21 control, sockets, MIME), cpp (C++ interface), sgml (reading \ 22 XML/SGML), sgml/RDF (reading RDF into triples), ODBC \ 23 interface and XPCE (Graphics UI toolkit, integrated editor \ 24 (Emacs-clone) and graphical debugger). 22 25 23 26 homepage http://www.swi-prolog.org/ 27 master_sites http://www.swi-prolog.org/download/stable/src 24 28 25 master_sites http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/ 29 checksums \ 30 md5 faeb7ade8da9832f113e6748ba6cab03 \ 31 sha1 f0bb08d00162165b23fe3372d0b1fd3967cfc311 \ 32 rmd160 907ee5445b977167d5db508254675648f5d8633c 26 33 27 dist_subdir swi-prolog 34 depends_build \ 35 port:gawk \ 36 port:junit 28 37 29 checksums \ 30 md5 0305ac720f6d1277bcaf33876570f0d2 \ 31 sha1 bd87c39f9b87c8f8981507de76b1e46a83380de4 \ 32 rmd160 7356d072091d363584fd8262a04c30509c018a0a 38 depends_lib \ 39 port:readline 33 40 34 depends_lib port:readline 41 use_parallel_build no 42 43 platform darwin 9 { 44 depends_lib-append port:expat 45 } 35 46 36 47 distname pl-${version} 37 48 worksrcdir pl-${version}/src … … 49 60 --enable-shared 50 61 51 62 build.env \ 52 LIBRARY_PATH=${prefix}/lib \ 53 CPATH=/usr/include:${prefix}/include 63 LIBRARY_PATH=/usr/lib:${prefix}/lib \ 64 CPATH=/usr/include:${prefix}/include \ 65 CC=${configure.cc} 54 66 55 67 post-build { 56 68 file mkdir ${workpath}/macosx … … 90 102 } 91 103 92 104 livecheck.type regexm 93 livecheck.url ${homepage}d l-stable.html94 livecheck.regex " Gzipped tar file holding the sources for version <b>(\\d+\\.\\d+\\.\\d+)"105 livecheck.url ${homepage}download/stable 106 livecheck.regex "/download/stable/src/pl-(\\d+\\.\\d+\\.\\d+).tar.gz"