Changeset 80080
- Timestamp:
- 07/03/11 16:49:45 (4 years ago)
- Location:
- trunk/dports/gnome
- Files:
-
- 14 edited
-
alacarte/Portfile (modified) (2 diffs)
-
at-spi/Portfile (modified) (5 diffs)
-
eog/Portfile (modified) (3 diffs)
-
gedit/Portfile (modified) (3 diffs)
-
gnome-applets/Portfile (modified) (4 diffs)
-
gnome-desktop/Portfile (modified) (3 diffs)
-
gnome-games/Portfile (modified) (3 diffs)
-
gnome-menus/Portfile (modified) (3 diffs)
-
gnome-python-desktop/Portfile (modified) (4 diffs)
-
gnumeric/Portfile (modified) (3 diffs)
-
gramps/Portfile (modified) (3 diffs)
-
gucharmap/Portfile (modified) (3 diffs)
-
pessulus/Portfile (modified) (3 diffs)
-
totem/Portfile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/gnome/alacarte/Portfile
r72694 r80080 7 7 version 0.13.2 8 8 epoch 1 9 revision 29 revision 3 10 10 set branch [join [lrange [split ${version} .] 0 1] .] 11 11 description A simple freedesktop.org compliant menu editor for use with GNOME … … 29 29 port:intltool 30 30 31 depends_lib port:py26-gtk \ 32 port:gnome-menus 31 depends_lib port:gnome-menus 33 32 34 33 patchfiles patch-Makefile.in.diff \ 35 34 patch-configure.diff 36 35 37 configure.python ${prefix}/bin/python2.6 36 variant python25 conflicts python26 python27 description {Use python 2.5} { 37 configure.python ${prefix}/bin/python2.5 38 depends_lib-append port:py25-gtk 39 } 40 41 variant python26 conflicts python25 python27 description {Use python 2.6} { 42 configure.python ${prefix}/bin/python2.6 43 depends_lib-append port:py26-gtk 44 } 45 46 variant python27 conflicts python25 python26 description {Use python 2.7} { 47 configure.python ${prefix}/bin/python2.7 48 depends_lib-append port:py27-gtk 49 } 50 51 if {![variant_isset python25] && ![variant_isset python26]} { 52 default_variants +python27 53 } 38 54 39 55 post-destroot { -
trunk/dports/gnome/at-spi/Portfile
r77689 r80080 6 6 name at-spi 7 7 version 1.30.1 8 revision 18 revision 2 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 description Gnome Accesibility Technology Service … … 29 29 port:gtk2 \ 30 30 port:libbonobo \ 31 port:py26-gnome \32 31 port:xorg-libXtst 33 32 … … 35 34 36 35 patchfiles patch-pyatspi-Makefile.in.diff 37 38 post-patch {39 reinplace "s|__MP_PYTHON_EXEC_DIR__|${prefix}//Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages|" ${worksrcpath}/pyatspi/Makefile.in40 }41 36 42 37 configure.args --enable-static \ … … 47 42 --disable-schemas-install 48 43 49 configure.python ${prefix}/bin/python2.650 51 44 variant no_x11 { 52 45 pre-fetch { … … 60 53 } 61 54 55 variant python25 conflicts python26 python27 description {Use python 2.5} { 56 configure.python ${prefix}/bin/python2.5 57 depends_lib-append port:py25-gnome 58 post-patch { 59 reinplace "s|__MP_PYTHON_EXEC_DIR__|${prefix}//Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages|" ${worksrcpath}/pyatspi/Makefile.in 60 } 61 } 62 63 variant python26 conflicts python25 python27 description {Use python 2.6} { 64 configure.python ${prefix}/bin/python2.6 65 depends_lib-append port:py26-gnome 66 post-patch { 67 reinplace "s|__MP_PYTHON_EXEC_DIR__|${prefix}//Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages|" ${worksrcpath}/pyatspi/Makefile.in 68 } 69 } 70 71 variant python27 conflicts python25 python26 description {Use python 2.7} { 72 configure.python ${prefix}/bin/python2.7 73 depends_lib-append port:py27-gnome 74 post-patch { 75 reinplace "s|__MP_PYTHON_EXEC_DIR__|${prefix}//Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages|" ${worksrcpath}/pyatspi/Makefile.in 76 } 77 } 78 79 if {![variant_isset python25] && ![variant_isset python26]} { 80 default_variants +python27 81 } 82 62 83 post-activate { 63 84 system "export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` && \ -
trunk/dports/gnome/eog/Portfile
r75193 r80080 6 6 name eog 7 7 version 2.30.2 8 revision 38 revision 4 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 description An image viewing program. … … 33 33 port:libexif \ 34 34 port:lcms \ 35 port:exempi \ 36 port:py26-gtk 35 port:exempi 37 36 38 37 use_bzip2 yes … … 44 43 --disable-schemas-install 45 44 46 configure.python ${prefix}/bin/python2.6 47 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 48 configure.pkg_config_path ${python_framework}/lib/pkgconfig 45 variant python25 conflicts python26 python27 description {Use python 2.5} { 46 configure.python ${prefix}/bin/python2.5 47 depends_lib-append port:py25-gtk 48 set python_framework ${frameworks_dir}/Python.framework/Versions/2.5 49 configure.pkg_config_path ${python_framework}/lib/pkgconfig 50 } 51 52 variant python26 conflicts python25 python27 description {Use python 2.6} { 53 configure.python ${prefix}/bin/python2.6 54 depends_lib-append port:py26-gtk 55 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 56 configure.pkg_config_path ${python_framework}/lib/pkgconfig 57 } 58 59 variant python27 conflicts python25 python26 description {Use python 2.7} { 60 configure.python ${prefix}/bin/python2.7 61 depends_lib-append port:py27-gtk 62 set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 63 configure.pkg_config_path ${python_framework}/lib/pkgconfig 64 } 65 66 if {![variant_isset python25] && ![variant_isset python26]} { 67 default_variants +python27 68 } 49 69 50 70 post-activate { -
trunk/dports/gnome/gedit/Portfile
r75665 r80080 6 6 name gedit 7 7 version 2.30.4 8 revision 28 revision 3 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 description GNOME editor. … … 26 26 27 27 depends_lib port:gconf \ 28 port:py26-pygtksourceview \29 28 port:iso-codes \ 30 29 port:enchant \ … … 41 40 --disable-updater 42 41 43 configure.python ${prefix}/bin/python2.644 set python_framework ${frameworks_dir}/Python.framework/Versions/2.645 configure.pkg_config_path ${python_framework}/lib/pkgconfig46 47 42 variant no_x11 { 48 43 depends_lib-delete port:xorg-libsm 44 } 45 46 variant python25 conflicts python26 python27 description {Use python 2.5} { 47 configure.python ${prefix}/bin/python2.5 48 depends_lib-append port:py25-pygtksourceview 49 set python_framework ${frameworks_dir}/Python.framework/Versions/2.5 50 configure.pkg_config_path ${python_framework}/lib/pkgconfig 51 } 52 53 variant python26 conflicts python25 python27 description {Use python 2.6} { 54 configure.python ${prefix}/bin/python2.6 55 depends_lib-append port:py26-pygtksourceview 56 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 57 configure.pkg_config_path ${python_framework}/lib/pkgconfig 58 } 59 60 variant python27 conflicts python25 python26 description {Use python 2.7} { 61 configure.python ${prefix}/bin/python2.7 62 depends_lib-append port:py27-pygtksourceview 63 set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 64 configure.pkg_config_path ${python_framework}/lib/pkgconfig 65 } 66 67 if {![variant_isset python25] && ![variant_isset python26]} { 68 default_variants +python27 49 69 } 50 70 -
trunk/dports/gnome/gnome-applets/Portfile
r77689 r80080 6 6 name gnome-applets 7 7 version 2.30.0 8 revision 28 revision 3 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 description GNOME panel applets. … … 36 36 port:policykit-gnome \ 37 37 port:gucharmap \ 38 port:py26-gtk \39 38 port:libxml2 \ 40 39 port:libgweather \ … … 43 42 use_bzip2 yes 44 43 45 configure.python ${prefix}/bin/python2.6 46 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 47 configure.pkg_config_path ${python_framework}/lib/pkgconfig 44 variant python25 conflicts python26 python27 description {Use python 2.5} { 45 configure.python ${prefix}/bin/python2.5 46 depends_lib-append port:py25-gtk 47 set python_framework ${frameworks_dir}/Python.framework/Versions/2.5 48 configure.pkg_config_path ${python_framework}/lib/pkgconfig 49 } 50 51 variant python26 conflicts python25 python27 description {Use python 2.6} { 52 configure.python ${prefix}/bin/python2.6 53 depends_lib-append port:py26-gtk 54 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 55 configure.pkg_config_path ${python_framework}/lib/pkgconfig 56 } 57 58 variant python27 conflicts python25 python26 description {Use python 2.7} { 59 configure.python ${prefix}/bin/python2.7 60 depends_lib-append port:py27-gtk 61 set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 62 configure.pkg_config_path ${python_framework}/lib/pkgconfig 63 } 64 65 if {![variant_isset python25] && ![variant_isset python26]} { 66 default_variants +python27 67 } 48 68 49 69 configure.args --without-hal \ … … 59 79 # 60 80 # gnome-panel -> evolution-data-server -> nss is not universal 61 #62 81 63 82 universal_variant no -
trunk/dports/gnome/gnome-desktop/Portfile
r79018 r80080 6 6 name gnome-desktop 7 7 version 2.30.2 8 revision 38 revision 4 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 maintainers devans openmaintainer … … 33 33 depends_lib port:gconf \ 34 34 port:startup-notification \ 35 port:xorg-libXrandr \ 36 port:py26-gtk 35 port:xorg-libXrandr 37 36 38 37 depends_run port:gnome-themes … … 46 45 --disable-scrollkeeper 47 46 48 configure.python ${prefix}/bin/python2.6 47 variant python25 conflicts python26 python27 description {Use python 2.5} { 48 configure.python ${prefix}/bin/python2.5 49 depends_lib-append port:py25-gtk 50 } 51 52 variant python26 conflicts python25 python27 description {Use python 2.6} { 53 configure.python ${prefix}/bin/python2.6 54 depends_lib-append port:py26-gtk 55 } 56 57 variant python27 conflicts python25 python26 description {Use python 2.7} { 58 configure.python ${prefix}/bin/python2.7 59 depends_lib-append port:py27-gtk 60 } 61 62 if {![variant_isset python25] && ![variant_isset python26]} { 63 default_variants +python27 64 } 49 65 50 66 post-activate { -
trunk/dports/gnome/gnome-games/Portfile
r77689 r80080 6 6 name gnome-games 7 7 version 2.30.2 8 revision 18 revision 2 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 description Collection of small but addictive games for GNOME … … 28 28 port:librsvg \ 29 29 port:clutter-gtk \ 30 port:py26-gtk \31 30 port:libcanberra \ 32 31 port:xorg-libsm \ … … 37 36 patchfiles patch-configure.diff 38 37 39 configure.python ${prefix}/bin/python2.6 40 set python_prefix ${frameworks_dir}/Python.framework/Versions/2.6 41 configure.pkg_config_path ${python_prefix}/lib/pkgconfig 38 variant python25 conflicts python26 python27 description {Use python 2.5} { 39 configure.python ${prefix}/bin/python2.5 40 depends_lib-append port:py25-gtk 41 set python_framework ${frameworks_dir}/Python.framework/Versions/2.5 42 configure.pkg_config_path ${python_framework}/lib/pkgconfig 43 } 44 45 variant python26 conflicts python25 python27 description {Use python 2.6} { 46 configure.python ${prefix}/bin/python2.6 47 depends_lib-append port:py26-gtk 48 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 49 configure.pkg_config_path ${python_framework}/lib/pkgconfig 50 } 51 52 variant python27 conflicts python25 python26 description {Use python 2.7} { 53 configure.python ${prefix}/bin/python2.7 54 depends_lib-append port:py27-gtk 55 set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 56 configure.pkg_config_path ${python_framework}/lib/pkgconfig 57 } 58 59 if {![variant_isset python25] && ![variant_isset python26]} { 60 default_variants +python27 61 } 42 62 43 63 configure.args --disable-scrollkeeper \ -
trunk/dports/gnome/gnome-menus/Portfile
r73610 r80080 6 6 name gnome-menus 7 7 version 2.30.5 8 revision 1 8 9 set branch [join [lrange [split ${version} .] 0 1] .] 9 10 maintainers devans openmaintainer … … 25 26 patchfiles patch-configure.diff 26 27 28 depends_build port:pkgconfig \ 29 port:intltool \ 30 port:gnome-doc-utils 31 32 depends_lib path:lib/pkgconfig/glib-2.0.pc:glib2 33 34 variant python25 conflicts python26 python27 description {Use python 2.5} { 35 configure.python ${prefix}/bin/python2.5 36 depends_lib-append port:py25-gtk 37 } 38 39 variant python26 conflicts python25 python27 description {Use python 2.6} { 40 configure.python ${prefix}/bin/python2.6 41 depends_lib-append port:py26-gtk 42 } 43 44 variant python27 conflicts python25 python26 description {Use python 2.7} { 45 configure.python ${prefix}/bin/python2.7 46 depends_lib-append port:py27-gtk 47 } 48 49 if {![variant_isset python25] && ![variant_isset python26]} { 50 default_variants +python27 51 } 52 27 53 post-patch { 28 reinplace "s|/usr/bin/env python|${ prefix}/bin/python2.6|g" \54 reinplace "s|/usr/bin/env python|${configure.python}|g" \ 29 55 ${worksrcpath}/simple-editor/gmenu-simple-editor.in \ 30 56 ${worksrcpath}/simple-editor/GMenuSimpleEditor/config.py.in \ … … 35 61 } 36 62 37 depends_build port:pkgconfig \38 port:intltool \39 port:gnome-doc-utils40 41 depends_lib path:lib/pkgconfig/glib-2.0.pc:glib2 \42 port:py26-gtk43 44 configure.python ${prefix}/bin/python2.645 46 63 configure.args --enable-introspection=no \ 47 64 --enable-python \ -
trunk/dports/gnome/gnome-python-desktop/Portfile
r77689 r80080 6 6 name gnome-python-desktop 7 7 version 2.30.2 8 revision 18 revision 2 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 categories gnome python … … 22 22 use_bzip2 yes 23 23 24 depends_lib port:py26-gnome \ 25 port:gtksourceview \ 24 depends_lib port:gtksourceview \ 26 25 port:libgtop \ 27 26 port:gnome-media \ … … 37 36 --disable-nautilusburn 38 37 39 set python_prefix ${frameworks_dir}/Python.framework/Versions/2.6 38 configure.pre_args-delete --prefix=${prefix} 40 39 41 configure.pre_args-delete --prefix=${prefix} 42 configure.pre_args-append --prefix=${python_prefix} 43 configure.args-append --includedir=${python_prefix}/include/python2.6 40 variant python25 conflicts python26 python27 description {Use python 2.5} { 41 set python_ver 2.5 44 42 45 configure.python ${prefix}/bin/python2.6 46 configure.env PATH=${python_prefix}/bin:$env(PATH) 47 configure.pkg_config_path ${python_prefix}/lib/pkgconfig 43 configure.python ${prefix}/bin/python${python_ver} 44 depends_lib-append port:py25-gnome 45 46 set python_prefix ${frameworks_dir}/Python.framework/Versions/${python_ver} 47 configure.pre_args-append --prefix=${python_prefix} 48 configure.args-append --includedir=${python_prefix}/include/python${python_ver} 49 configure.python ${prefix}/bin/python${python_ver} 50 configure.env PATH=${python_prefix}/bin:$env(PATH) 51 configure.pkg_config_path ${python_prefix}/lib/pkgconfig 52 53 post-destroot { 54 set python_prefix ${frameworks_dir}/Python.framework/Versions/2.5 55 # devhelp requires gtk-doc directory name and .devhelp file name (less the .devhelp) to match 56 foreach docname {pygnomeprint pygnomeprintui pygtksourceview} { 57 file rename ${destroot}${python_prefix}/share/gtk-doc/html/${docname}/${docname}.devhelp \ 58 ${destroot}${python_prefix}/share/gtk-doc/html/${docname}/${docname}25.devhelp 59 ln -s ${python_prefix}/share/gtk-doc/html/${docname} ${destroot}${prefix}/share/gtk-doc/html/${docname}25 60 } 61 } 62 } 63 64 variant python26 conflicts python25 python27 description {Use python 2.6} { 65 set python_ver 2.6 66 67 configure.python ${prefix}/bin/python${python_ver} 68 depends_lib-append port:py26-gnome 69 70 set python_prefix ${frameworks_dir}/Python.framework/Versions/${python_ver} 71 configure.pre_args-append --prefix=${python_prefix} 72 configure.args-append --includedir=${python_prefix}/include/python${python_ver} 73 configure.python ${prefix}/bin/python${python_ver} 74 configure.env PATH=${python_prefix}/bin:$env(PATH) 75 configure.pkg_config_path ${python_prefix}/lib/pkgconfig 76 77 post-destroot { 78 set python_prefix ${frameworks_dir}/Python.framework/Versions/2.6 79 # devhelp requires gtk-doc directory name and .devhelp file name (less the .devhelp) to match 80 foreach docname {pygnomeprint pygnomeprintui pygtksourceview} { 81 file rename ${destroot}${python_prefix}/share/gtk-doc/html/${docname}/${docname}.devhelp \ 82 ${destroot}${python_prefix}/share/gtk-doc/html/${docname}/${docname}26.devhelp 83 ln -s ${python_prefix}/share/gtk-doc/html/${docname} ${destroot}${prefix}/share/gtk-doc/html/${docname}26 84 } 85 } 86 } 87 88 variant python27 conflicts python25 python26 description {Use python 2.7} { 89 set python_ver 2.7 90 91 configure.python ${prefix}/bin/python${python_ver} 92 depends_lib-append port:py27-gnome 93 94 set python_prefix ${frameworks_dir}/Python.framework/Versions/${python_ver} 95 configure.pre_args-append --prefix=${python_prefix} 96 configure.args-append --includedir=${python_prefix}/include/python${python_ver} 97 configure.python ${prefix}/bin/python${python_ver} 98 configure.env PATH=${python_prefix}/bin:$env(PATH) 99 configure.pkg_config_path ${python_prefix}/lib/pkgconfig 100 101 post-destroot { 102 set python_prefix ${frameworks_dir}/Python.framework/Versions/2.7 103 # devhelp requires gtk-doc directory name and .devhelp file name (less the .devhelp) to match 104 foreach docname {pygnomeprint pygnomeprintui pygtksourceview} { 105 file rename ${destroot}${python_prefix}/share/gtk-doc/html/${docname}/${docname}.devhelp \ 106 ${destroot}${python_prefix}/share/gtk-doc/html/${docname}/${docname}27.devhelp 107 ln -s ${python_prefix}/share/gtk-doc/html/${docname} ${destroot}${prefix}/share/gtk-doc/html/${docname}27 108 } 109 } 110 } 111 112 if {![variant_isset python25] && ![variant_isset python26]} { 113 default_variants +python27 114 } 115 48 116 49 117 platform darwin 9 { … … 78 146 ${destroot}${docdir} 79 147 xinstall -d ${destroot}${prefix}/share/gtk-doc/html 80 # devhelp requires gtk-doc directory name and .devhelp file name (less the .devhelp) to match81 foreach docname {pygnomeprint pygnomeprintui pygtksourceview} {82 file rename ${destroot}${python_prefix}/share/gtk-doc/html/${docname}/${docname}.devhelp \83 ${destroot}${python_prefix}/share/gtk-doc/html/${docname}/${docname}26.devhelp84 ln -s ${python_prefix}/share/gtk-doc/html/${docname} ${destroot}${prefix}/share/gtk-doc/html/${docname}2685 }86 148 } 87 149 -
trunk/dports/gnome/gnumeric/Portfile
r75193 r80080 6 6 name gnumeric 7 7 version 1.10.12 8 revision 18 revision 2 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 description A spreadsheet with gnome support. … … 25 25 26 26 depends_lib port:goffice \ 27 port:libglade2 \ 28 port:py26-gobject 29 27 port:libglade2 30 28 31 29 configure.args --disable-schemas-install \ … … 34 32 --without-psiconv 35 33 36 configure.python ${prefix}/bin/python2.6 37 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 38 configure.pkg_config_path ${python_framework}/lib/pkgconfig 34 variant python25 conflicts python26 python27 description {Use python 2.5} { 35 configure.python ${prefix}/bin/python2.5 36 depends_lib-append port:py25-gobject 37 set python_framework ${frameworks_dir}/Python.framework/Versions/2.5 38 configure.pkg_config_path ${python_framework}/lib/pkgconfig 39 } 40 41 variant python26 conflicts python25 python27 description {Use python 2.6} { 42 configure.python ${prefix}/bin/python2.6 43 depends_lib-append port:py26-gobject 44 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 45 configure.pkg_config_path ${python_framework}/lib/pkgconfig 46 } 47 48 variant python27 conflicts python25 python26 description {Use python 2.7} { 49 configure.python ${prefix}/bin/python2.7 50 depends_lib-append port:py27-gobject 51 set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 52 configure.pkg_config_path ${python_framework}/lib/pkgconfig 53 } 54 55 if {![variant_isset python25] && ![variant_isset python26]} { 56 default_variants +python27 57 } 58 59 if {${configure.compiler} == "clang"} { 60 configure.cflags-append "-std=gnu89" 61 } 62 63 # 1.10.12 has a buggy configure script 64 use_autoreconf yes 65 autoreconf.args -fvi 39 66 40 67 post-activate { -
trunk/dports/gnome/gramps/Portfile
r73627 r80080 6 6 name gramps 7 7 version 3.2.5 8 revision 1 8 9 categories gnome science python genealogy 9 10 platforms darwin … … 46 47 47 48 # librsvg is required at least for icons in dialogs 48 depends_lib port:py26-gtkspell \ 49 port:py26-enchant \ 50 port:py26-webkitgtk \ 51 port:librsvg \ 49 depends_lib port:librsvg \ 52 50 port:aspell-dict-en 53 51 … … 58 56 universal_variant no 59 57 58 variant python25 conflicts python26 python27 description {Use python 2.5} { 59 depends_lib-append port:py25-gtkspell \ 60 port:py25-enchant \ 61 port:py25-webkitgtk 62 } 63 64 variant python26 conflicts python25 python27 description {Use python 2.6} { 65 depends_lib-append port:py26-gtkspell \ 66 port:py26-enchant \ 67 port:py26-webkitgtk 68 } 69 70 variant python27 conflicts python25 python26 description {Use python 2.7} { 71 depends_lib-append port:py27-gtkspell \ 72 port:py27-enchant \ 73 port:py27-webkitgtk 74 } 75 76 if {![variant_isset python25] && ![variant_isset python26]} { 77 default_variants +python27 78 } 79 60 80 post-activate { 61 81 system "${prefix}/bin/update-mime-database ${prefix}/share/mime" -
trunk/dports/gnome/gucharmap/Portfile
r77689 r80080 6 6 name gucharmap 7 7 version 2.30.3 8 revision 28 revision 3 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 description gucharmap is a featureful unicode character map. … … 25 25 port:gtk-doc 26 26 27 depends_lib port:gconf \ 28 port:py26-gtk 27 depends_lib port:gconf 29 28 30 29 use_bzip2 yes … … 37 36 --enable-python-bindings 38 37 39 configure.python ${prefix}/bin/python2.6 40 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 41 configure.pkg_config_path ${python_framework}/lib/pkgconfig 38 variant python25 conflicts python26 python27 description {Use python 2.5} { 39 configure.python ${prefix}/bin/python2.5 40 depends_lib-append port:py25-gtk 41 set python_framework ${frameworks_dir}/Python.framework/Versions/2.5 42 configure.pkg_config_path ${python_framework}/lib/pkgconfig 43 } 44 45 variant python26 conflicts python25 python27 description {Use python 2.6} { 46 configure.python ${prefix}/bin/python2.6 47 depends_lib-append port:py26-gtk 48 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 49 configure.pkg_config_path ${python_framework}/lib/pkgconfig 50 } 51 52 variant python27 conflicts python25 python26 description {Use python 2.7} { 53 configure.python ${prefix}/bin/python2.7 54 depends_lib-append port:py27-gtk 55 set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 56 configure.pkg_config_path ${python_framework}/lib/pkgconfig 57 } 58 59 if {![variant_isset python25] && ![variant_isset python26]} { 60 default_variants +python27 61 } 42 62 43 63 post-activate { -
trunk/dports/gnome/pessulus/Portfile
r73701 r80080 6 6 name pessulus 7 7 version 2.30.4 8 revision 1 8 9 set branch [join [lrange [split ${version} .] 0 1] .] 9 10 categories gnome python … … 29 30 30 31 depends_lib port:gconf \ 31 port:py26-gtk \32 32 port:gnome-python-desktop 33 33 … … 36 36 patch-data-Makefile.in.diff 37 37 38 configure.python ${prefix}/bin/python2.6 39 set python_prefix ${frameworks_dir}/Python.framework/Versions/2.6 40 configure.pkg_config_path ${python_prefix}/lib/pkgconfig 38 variant python25 conflicts python26 python27 description {Use python 2.5} { 39 configure.python ${prefix}/bin/python2.5 40 depends_lib-append port:py25-gtk 41 set python_framework ${frameworks_dir}/Python.framework/Versions/2.5 42 configure.pkg_config_path ${python_framework}/lib/pkgconfig 43 } 44 45 variant python26 conflicts python25 python27 description {Use python 2.6} { 46 configure.python ${prefix}/bin/python2.6 47 depends_lib-append port:py26-gtk 48 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 49 configure.pkg_config_path ${python_framework}/lib/pkgconfig 50 } 51 52 variant python27 conflicts python25 python26 description {Use python 2.7} { 53 configure.python ${prefix}/bin/python2.7 54 depends_lib-append port:py27-gtk 55 set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 56 configure.pkg_config_path ${python_framework}/lib/pkgconfig 57 } 58 59 if {![variant_isset python25] && ![variant_isset python26]} { 60 default_variants +python27 61 } 41 62 42 63 post-destroot { -
trunk/dports/gnome/totem/Portfile
r77689 r80080 6 6 name totem 7 7 version 2.30.2 8 revision 38 revision 4 9 9 set branch [join [lrange [split ${version} .] 0 1] .] 10 10 categories gnome … … 47 47 port:xorg-libXtst \ 48 48 port:xorg-libXxf86vm \ 49 port:py26-gtk \50 49 port:gst-plugins-base \ 51 50 port:nautilus … … 73 72 BROWSER_PLUGIN_DIR=${prefix}/lib/nsplugins 74 73 75 set python_prefix ${frameworks_dir}/Python.framework/Versions/2.6 76 configure.python ${prefix}/bin/python2.6 77 configure.pkg_config_path ${python_prefix}/lib/pkgconfig 78 configure.env PATH=${python_prefix}/bin:$env(PATH) 74 variant python25 conflicts python26 python27 description {Use python 2.5} { 75 configure.python ${prefix}/bin/python2.5 76 depends_lib-append port:py25-gtk 77 set python_framework ${frameworks_dir}/Python.framework/Versions/2.5 78 configure.pkg_config_path ${python_framework}/lib/pkgconfig 79 configure.env PATH=${python_framework}/bin:$env(PATH) 80 } 81 82 variant python26 conflicts python25 python27 description {Use python 2.6} { 83 configure.python ${prefix}/bin/python2.6 84 depends_lib-append port:py26-gtk 85 set python_framework ${frameworks_dir}/Python.framework/Versions/2.6 86 configure.pkg_config_path ${python_framework}/lib/pkgconfig 87 configure.env PATH=${python_framework}/bin:$env(PATH) 88 } 89 90 variant python27 conflicts python25 python26 description {Use python 2.7} { 91 configure.python ${prefix}/bin/python2.7 92 depends_lib-append port:py27-gtk 93 set python_framework ${frameworks_dir}/Python.framework/Versions/2.7 94 configure.pkg_config_path ${python_framework}/lib/pkgconfig 95 configure.env PATH=${python_framework}/bin:$env(PATH) 96 } 97 98 if {![variant_isset python25] && ![variant_isset python26]} { 99 default_variants +python27 100 } 79 101 80 102 post-patch {
Note: See TracChangeset
for help on using the changeset viewer.

