Changeset 83056
- Timestamp:
- 08/24/11 15:56:08 (4 years ago)
- Location:
- trunk/dports/editors
- Files:
-
- 6 edited
-
MacVim/Portfile (modified) (5 diffs)
-
MacVim/files/patch-python3.diff (modified) (1 diff)
-
vim-app/Portfile (modified) (5 diffs)
-
vim-app/files/patch-python3.diff (modified) (1 diff)
-
vim/Portfile (modified) (5 diffs)
-
vim/files/patch-python3.diff (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/editors/MacVim/Portfile
r82743 r83056 8 8 set gitcommit snapshot-${snapshot} 9 9 version ${vim_version}.snapshot${snapshot} 10 revision 1 10 11 categories editors 11 12 platforms darwin … … 97 98 } 98 99 variant python requires python25 description {Compatibility variant, requires +python25} {} 99 variant python25 conflicts python26 python27 python31description {Enable Python scripting} {100 variant python25 conflicts python26 python27 description {Enable Python scripting} { 100 101 configure.args-append --enable-pythoninterp --with-python=${prefix}/bin/python2.5 101 102 patchfiles-append patch-python.diff … … 104 105 use_autoconf yes 105 106 } 106 variant python26 conflicts python25 python27 python31description {Enable Python scripting} {107 variant python26 conflicts python25 python27 description {Enable Python scripting} { 107 108 configure.args-append --enable-pythoninterp --with-python=${prefix}/bin/python2.6 108 109 patchfiles-append patch-python.diff … … 111 112 use_autoconf yes 112 113 } 113 variant python27 conflicts python25 python26 python31description {Enable Python scripting} {114 variant python27 conflicts python25 python26 description {Enable Python scripting} { 114 115 configure.args-append --enable-pythoninterp --with-python=${prefix}/bin/python2.7 115 116 patchfiles-append patch-python.diff … … 118 119 use_autoconf yes 119 120 } 120 variant python31 conflicts python 25 python26 python27description {Enable Python scripting} {121 configure.args-append --enable-python3interp --with-python =${prefix}/bin/python3.1121 variant python31 conflicts python32 description {Enable Python scripting} { 122 configure.args-append --enable-python3interp --with-python3=${prefix}/bin/python3.1 122 123 patchfiles-append patch-python3.diff 123 124 depends_lib-append port:python31 124 125 125 126 use_autoconf yes 127 } 128 variant python32 conflicts python31 description {Enable Python scripting} { 129 configure.args-append --enable-python3interp --with-python3=${prefix}/bin/python3.2 130 patchfiles-append patch-python3.diff 131 depends_lib-append port:python32 132 133 use_autoconf yes 134 # Overwriting autoconf.cmd above removes dependency, add it again 135 depends_build-append port:autoconf 126 136 } 127 137 variant ruby description {Enable Ruby scripting} { -
trunk/dports/editors/MacVim/files/patch-python3.diff
r70950 r83056 6 6 dnl -- find the python3 executable 7 7 - AC_PATH_PROG(vi_cv_path_python3, python3) 8 + AC_MSG_CHECKING(--with-python argument)9 + AC_ARG_WITH(python , [ --with-python=PATH which python to use (default: python)],8 + AC_MSG_CHECKING(--with-python3 argument) 9 + AC_ARG_WITH(python3, [ --with-python3=PATH which python to use (default: python3)], 10 10 + python_name="$withval"; AC_MSG_RESULT($python_name), 11 + python_name="python "; AC_MSG_RESULT(no))12 + AC_SUBST(vi_cv_path_python , $python_name)11 + python_name="python3"; AC_MSG_RESULT(no)) 12 + AC_SUBST(vi_cv_path_python3, $python_name) 13 13 if test "X$vi_cv_path_python3" != "X"; then 14 14 -
trunk/dports/editors/vim-app/Portfile
r80999 r83056 8 8 set vim_patchlevel 237 9 9 version ${vim_version}.${vim_patchlevel} 10 revision 110 revision 2 11 11 categories editors 12 12 platforms darwin … … 397 397 } 398 398 variant python requires python25 description {Compatibility variant, requires +python25} {} 399 variant python25 conflicts python26 python27 python31description {Enable Python scripting} {399 variant python25 conflicts python26 python27 description {Enable Python scripting} { 400 400 configure.args-append --enable-pythoninterp --with-python=${prefix}/bin/python2.5 401 401 patchfiles-append patch-python.diff … … 406 406 depends_build-append port:autoconf 407 407 } 408 variant python26 conflicts python25 python27 python31description {Enable Python scripting} {408 variant python26 conflicts python25 python27 description {Enable Python scripting} { 409 409 configure.args-append --enable-pythoninterp --with-python=${prefix}/bin/python2.6 410 410 patchfiles-append patch-python.diff … … 415 415 depends_build-append port:autoconf 416 416 } 417 variant python27 conflicts python25 python26 python31description {Enable Python scripting} {417 variant python27 conflicts python25 python26 description {Enable Python scripting} { 418 418 configure.args-append --enable-pythoninterp --with-python=${prefix}/bin/python2.7 419 419 patchfiles-append patch-python.diff … … 424 424 depends_build-append port:autoconf 425 425 } 426 variant python31 conflicts python 25 python26 python27description {Enable Python scripting} {427 configure.args-append --enable-python3interp --with-python =${prefix}/bin/python3.1426 variant python31 conflicts python32 description {Enable Python scripting} { 427 configure.args-append --enable-python3interp --with-python3=${prefix}/bin/python3.1 428 428 patchfiles-append patch-python3.diff 429 429 depends_lib-append port:python31 430 431 use_autoconf yes 432 # Overwriting autoconf.cmd above removes dependency, add it again 433 depends_build-append port:autoconf 434 } 435 variant python32 conflicts python31 description {Enable Python scripting} { 436 configure.args-append --enable-python3interp --with-python3=${prefix}/bin/python3.2 437 patchfiles-append patch-python3.diff 438 depends_lib-append port:python32 430 439 431 440 use_autoconf yes -
trunk/dports/editors/vim-app/files/patch-python3.diff
r70728 r83056 6 6 dnl -- find the python3 executable 7 7 - AC_PATH_PROG(vi_cv_path_python3, python3) 8 + AC_MSG_CHECKING(--with-python argument)9 + AC_ARG_WITH(python , [ --with-python=PATH which python to use (default: python)],8 + AC_MSG_CHECKING(--with-python3 argument) 9 + AC_ARG_WITH(python3, [ --with-python3=PATH which python to use (default: python3)], 10 10 + python_name="$withval"; AC_MSG_RESULT($python_name), 11 + python_name="python "; AC_MSG_RESULT(no))12 + AC_SUBST(vi_cv_path_python , $python_name)11 + python_name="python3"; AC_MSG_RESULT(no)) 12 + AC_SUBST(vi_cv_path_python3, $python_name) 13 13 if test "X$vi_cv_path_python3" != "X"; then 14 14 -
trunk/dports/editors/vim/Portfile
r80999 r83056 7 7 set vim_patchlevel 237 8 8 version ${vim_version}.${vim_patchlevel} 9 revision 19 revision 2 10 10 categories editors 11 11 platforms darwin freebsd … … 377 377 } 378 378 variant python requires python25 description {Compatibility variant, requires +python25} {} 379 variant python25 conflicts python26 python27 python31description {Enable Python scripting} {379 variant python25 conflicts python26 python27 description {Enable Python scripting} { 380 380 configure.args-append --enable-pythoninterp --with-python=${prefix}/bin/python2.5 381 381 patchfiles-append patch-python.diff … … 386 386 depends_build-append port:autoconf 387 387 } 388 variant python26 conflicts python25 python27 python31description {Enable Python scripting} {388 variant python26 conflicts python25 python27 description {Enable Python scripting} { 389 389 configure.args-append --enable-pythoninterp --with-python=${prefix}/bin/python2.6 390 390 patchfiles-append patch-python.diff … … 395 395 depends_build-append port:autoconf 396 396 } 397 variant python27 conflicts python25 python26 python31description {Enable Python scripting} {397 variant python27 conflicts python25 python26 description {Enable Python scripting} { 398 398 configure.args-append --enable-pythoninterp --with-python=${prefix}/bin/python2.7 399 399 patchfiles-append patch-python.diff … … 404 404 depends_build-append port:autoconf 405 405 } 406 variant python31 conflicts python 25 python26 python27description {Enable Python scripting} {407 configure.args-append --enable-python3interp --with-python =${prefix}/bin/python3.1406 variant python31 conflicts python32 description {Enable Python scripting} { 407 configure.args-append --enable-python3interp --with-python3=${prefix}/bin/python3.1 408 408 patchfiles-append patch-python3.diff 409 409 depends_lib-append port:python31 410 411 use_autoconf yes 412 # Overwriting autoconf.cmd above removes dependency, add it again 413 depends_build-append port:autoconf 414 } 415 variant python32 conflicts python31 description {Enable Python scripting} { 416 configure.args-append --enable-python3interp --with-python3=${prefix}/bin/python3.2 417 patchfiles-append patch-python3.diff 418 depends_lib-append port:python32 410 419 411 420 use_autoconf yes -
trunk/dports/editors/vim/files/patch-python3.diff
r70728 r83056 6 6 dnl -- find the python3 executable 7 7 - AC_PATH_PROG(vi_cv_path_python3, python3) 8 + AC_MSG_CHECKING(--with-python argument)9 + AC_ARG_WITH(python , [ --with-python=PATH which python to use (default: python)],8 + AC_MSG_CHECKING(--with-python3 argument) 9 + AC_ARG_WITH(python3, [ --with-python3=PATH which python to use (default: python3)], 10 10 + python_name="$withval"; AC_MSG_RESULT($python_name), 11 + python_name="python "; AC_MSG_RESULT(no))12 + AC_SUBST(vi_cv_path_python , $python_name)11 + python_name="python3"; AC_MSG_RESULT(no)) 12 + AC_SUBST(vi_cv_path_python3, $python_name) 13 13 if test "X$vi_cv_path_python3" != "X"; then 14 14
Note: See TracChangeset
for help on using the changeset viewer.

