Ticket #13865: Portfile-gst.diff
File Portfile-gst.diff, 1.9 KB (added by Damien.Pollet@…, 17 years ago) |
---|
-
Portfile
old new 1 # $Id: Portfile 30235 2007-10-22 23:13:37Z jmpp@macports.org $1 # $Id: Portfile 28540 2007-09-03 11:42:45Z mww@macports.org $ 2 2 3 3 PortSystem 1.0 4 4 name gst 5 version 2.3.35 version 3.0 6 6 categories lang 7 maintainers nomaintainer 7 maintainers nomaintainer@macports.org 8 8 description free implementation of Smalltalk-80 9 9 long_description \ 10 10 GNU Smalltalk is a free implementation of the Smalltalk-80 language \ 11 11 which runs on most versions on Unix and, in general, everywhere you \ 12 12 can find a POSIX-compliance library. An uncommon feature of it is \ 13 13 that it is well-versed to scripting tasks and headless processing. 14 homepage http:// www.gnu.org/software/smalltalk/14 homepage http://smalltalk.gnu.org/ 15 15 platforms darwin 16 16 master_sites gnu:smalltalk 17 17 distname smalltalk-${version} 18 checksums sha1 d9ecd8dd47af254254e44d9f5a8563edb9abb4c2 18 checksums sha1 500c2089a2aa16f97bf9111d520cb17a87d0558d 19 20 depends_build port:zip 19 21 20 22 depends_lib port:gmp \ 21 23 port:libiconv \ … … 25 27 port:tcl \ 26 28 port:tk 27 29 28 configure.args --disable-generational-gc \ 29 --disable-gtk \ 30 --infodir=${prefix}/share/info \ 30 configure.args --infodir=${prefix}/share/info \ 31 31 --mandir=${prefix}/share/man 32 # --disable-generational-gc \ 33 # --disable-gtk \ 32 34 33 35 test.run yes 34 36 test.target check … … 36 38 platform darwin 6 { 37 39 depends_lib-append port:dlcompat 38 40 } 39 40 platform i386 {41 pre-configure {42 return -code error "Intel based Macs are not supported."43 }44 }