Changeset 15412 for trunk/dports


Ignore:
Timestamp:
Dec 11, 2005, 1:07:05 AM (18 years ago)
Author:
mww
Message:

Submitted by: blb@
Reviewed by: mww@

update to 2.4.2

Location:
trunk/dports/lang/python24
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/lang/python24/Portfile

    r14076 r15412  
    1 # $Id: Portfile,v 1.23 2005/09/13 18:06:43 gwright Exp $
     1# $Id: Portfile,v 1.24 2005/12/11 01:07:05 mww Exp $
    22
    33PortSystem 1.0
    44
    55name                    python24
    6 version                 2.4.1
     6version                 2.4.2
    77set major_version       2
    88set minor_version       4
    9 revision                6
    109categories              lang
    1110platforms               darwin
     
    1615
    1716homepage                http://www.python.org/
    18 master_sites    ${homepage}/ftp/python/2.4.1/ \
    19                                 ftp://ftp.python.org/pub/python/2.4.1/
     17master_sites    ${homepage}/ftp/python/2.4.2/ \
     18                                ftp://ftp.python.org/pub/python/2.4.2/
    2019distname                Python-${version}
    21 checksums               md5 de3e9a8836fab6df7c7ce545331afeb3
     20checksums               md5 98db1465629693fc434d4dc52db93838
    2221patchfiles              patch-Makefile.pre.in \
    2322                                patch-configure \
     
    7574                ln -s libpython${version}.dylib  libpython.dylib"
    7675}
     76
     77platform darwin 8 {
     78        configure.env CC=/usr/bin/gcc-4.0 CPP=/usr/bin/cpp-4.0 CXX=/usr/bin/g++-4.0
     79        configure.args-append --with-cxx=/usr/bin/g++-4.0
     80}
     81
  • trunk/dports/lang/python24/files/patch-Makefile.pre.in

    r11587 r15412  
    1414        $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(LIBC) $(LIBM)
    1515 
    16 +libpython.2.4.1.dylib: $(LIBRARY_OBJS)
    17 +       $(LINKCC) -dynamiclib -install_name $(LIBDIR)/$@ -current_version 2.4.1 -compatibility_version 2.4 -o $@ -flat_namespace -undefined suppress $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
     16+libpython.2.4.2.dylib: $(LIBRARY_OBJS)
     17+       $(LINKCC) -dynamiclib -install_name $(LIBDIR)/$@ -current_version 2.4.2 -compatibility_version 2.4 -o $@ -flat_namespace -undefined suppress $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
    1818+
    1919+
     
    2727-       else    true; \
    2828+       else \
    29 +               if test -f libpython.2.4.1.dylib; then \
    30 +                       $(INSTALL_SHARED) libpython.2.4.1.dylib $(DESTDIR)$(LIBDIR)/libpython.2.4.1.dylib; \
     29+               if test -f libpython.2.4.2.dylib; then \
     30+                       $(INSTALL_SHARED) libpython.2.4.2.dylib $(DESTDIR)$(LIBDIR)/libpython.2.4.2.dylib; \
    3131+               else \
    3232+                       true; \
  • trunk/dports/lang/python24/files/patch-configure

    r11587 r15412  
    1 --- configure   Tue Mar 29 01:23:02 2005
    2 +++ ../../configure     Thu Mar 31 10:32:45 2005
    3 @@ -3826,7 +3826,12 @@
     1--- work/Python-2.4.2/configure 2005-08-07 23:08:42.000000000 +0200
     2+++ configure   2005-12-11 01:27:37.000000000 +0100
     3@@ -3828,7 +3828,12 @@
    44            ;;
    55        # is there any other compiler on Darwin besides gcc?
     
    1515     esac
    1616     ;;
    17 @@ -10362,8 +10367,8 @@
     17@@ -10364,8 +10369,8 @@
    1818                                LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
    1919                        else
Note: See TracChangeset for help on using the changeset viewer.