# $Id: Portfile,v 1.3 2005/12/01 20:13:07 mww Exp $ PortSystem 1.0 name cyclone version 0.8.1-2005-11-30 categories lang devel platforms darwin maintainers mww@opendarwin.org description safe programming language based on C long_description \ Cyclone is a programming language based on C that is safe, meaning that it \ rules out programs that have buffer overflows, dangling pointers, format \ string attacks, and so on. High-level, type-safe languages, such as Java, \ Scheme, or ML also provide safety, but they don't give the same control over \ data representations and memory management that C does (witness the fact that \ the run-time systems for these languages are usually written in C.) \ Furthermore, porting legacy C code to these languages or interfacing with \ legacy C libraries is a difficult and error-prone process. The goal of Cyclone \ is to give programmers the same low-level control and performance of C without \ sacrificing safety, and to make it easy to port or interface with legacy C code. homepage http://www.research.att.com/projects/cyclone master_sites http://www.opendarwin.org/~mww/files/ checksums md5 6a1e858ea91fbe7534c38e2132ddd85f use_bzip2 yes destroot.destdir \ INC_INSTALL=${destroot}${prefix}/include/cyclone \ BIN_INSTALL=${destroot}${prefix}/bin \ LIB_INSTALL=${destroot}${prefix}/lib/cyclone platform darwin 8 { configure.env CC=/usr/bin/gcc-3.3 CPP=/usr/bin/cpp-3.3 CXX=/usr/bin/g++-3.3 }