# $Id$ PortSystem 1.0 name python24 version 2.4.5 revision 4 set major [lindex [split $version .] 0] set branch [join [lrange [split ${version} .] 0 1] .] categories lang platforms darwin maintainers nomaintainer description An interpreted, object-oriented programming language long_description Python is an interpreted, interactive, object-oriented \ programming language. homepage http://www.python.org/ master_sites ${homepage}/ftp/python/${version}/ \ ftp://ftp.python.org/pub/python/${version}/ \ ftp://ftp.fastorama.com/mirrors/ftp.python.org/pub/python/${version}/ \ ftp://ftp.python.jp/pub/python/${version}/ distname Python-${version} extract.suffix .tgz checksums md5 750b652bfdd12675e102bbe25e5e9893 \ sha1 927c6e93ed3ea3bee4e07eff4b0f14254dc04147 \ rmd160 6c1c2905b166038fda5edb14baadbeb59acc8005 # Can be removed once MacPorts 1.7.0 is released if {![info exists applications_dir]} { set applications_dir /Applications/MacPorts } if {![info exists frameworks_dir]} { set frameworks_dir ${prefix}/Library/Frameworks } patchfiles patch-configure \ patch-Makefile.pre.in \ patch-Lib-cgi.py \ patch-Lib-site.py \ patch-setup.py \ patch-Include-pyport.h \ patch-Mac-OSX-Makefile.in \ patch-Mac-OSX-IDLE-Makefile.in \ patch-Mac-OSX-PythonLauncher-Makefile.in depends_lib port:gettext configure.args --enable-shared \ --enable-framework=${frameworks_dir} \ --mandir=${prefix}/share/man \ --without-readline \ --disable-tk \ --enable-ipv6 use_parallel_build no post-patch { reinplace "s|__PREFIX__|${prefix}|g" ${worksrcpath}/Lib/cgi.py \ ${worksrcpath}/Lib/site.py ${worksrcpath}/setup.py reinplace "s|__FRAMEWORKS_DIR__|${frameworks_dir}|g" \ ${worksrcpath}/Mac/OSX/Makefile.in reinplace "s|__APPLICATIONS_DIR__|${applications_dir}|g" \ ${worksrcpath}/Mac/OSX/IDLE/Makefile.in \ ${worksrcpath}/Mac/OSX/Makefile.in \ ${worksrcpath}/Mac/OSX/PythonLauncher/Makefile.in } build.target all libpython${branch}.dylib # Workaround for case-sensitive file systems post-build { if { ![file exists ${worksrcpath}/python.exe] } { ln -s python ${worksrcpath}/python.exe } } test.run yes test.target test destroot.target frameworkinstall maninstall post-destroot { set framewpath ${frameworks_dir}/Python.framework set framewdir ${framewpath}/Versions/${branch} foreach dir { lib include } { file rename ${destroot}${framewdir}/${dir}/python${branch} ${destroot}${prefix}/${dir} ln -s ${prefix}/${dir}/python${branch} ${destroot}${framewdir}/${dir}/python${branch} } file rename ${destroot}${framewdir}/lib/libpython${branch}.dylib ${destroot}${prefix}/lib ln -s ${prefix}/lib/libpython${branch}.dylib ${destroot}${framewdir}/lib/libpython${branch}.dylib file rename ${destroot}${prefix}/share/man/man1/python.1 ${destroot}${prefix}/share/man/man1/python${branch}.1 # delete symlinks without version suffix, use python_select instead to choose version foreach bin { python pythonw idle pydoc smtpd.py } { file delete ${destroot}${prefix}/bin/${bin} } foreach bin [list python${branch} pythonw${branch} idle${branch} pydoc${branch} smtpd${branch}.py] { file rename -force ${destroot}${framewdir}/bin/${bin} ${destroot}${prefix}/bin ln -s ${prefix}/bin/${bin} ${destroot}${framewdir}/bin/${bin} } foreach dir { Headers Resources Python Versions/Current } { file delete ${destroot}${framewpath}/${dir} } # install select file for python_select xinstall -m 755 -d ${destroot}${prefix}/etc/select/python xinstall -m 644 ${filespath}/python[string map {. {}} ${branch}] ${destroot}${prefix}/etc/select/python/ } post-activate { ui_msg "\nTo fully complete your installation and make python $branch the default, please run \n\tsudo port install python_select \ \n\tsudo python_select $name\n" } platform darwin 8 { # TODO: would configure.compiler be more appropriate? configure.args-append --with-cxx=/usr/bin/g++-4.0 } platform darwin 9 { configure.cppflags-append -D__DARWIN_UNIX03 } # TODO: test if this universal variant actually works # variant universal { # configure.args-append --enable-universalsdk # } livecheck.check regex livecheck.url ${homepage}download/releases/ livecheck.regex Python (${branch}.\[0-9\]+)