Changes between Version 1 and Version 12 of Ticket #19717


Ignore:
Timestamp:
Jun 30, 2009, 3:07:02 PM (15 years ago)
Author:
dbevans (David B. Evans)
Comment:

The problem here is not one with gnome-keyring specifically but with the python script

/opt/local/bin/gtk-builder-convert

which is provided by port gtk2.

gtk-builder-convert starts with

#!/usr/bin/env python

which should be patched/reinplaced (in gtk2) to directly specify a particular safe python binary.

Most current gtk/gnome ports use python25 although a few gnome ports (alacarte, gnome-menus) now require python26. So using python25 as the currently most prevalently used python port

#!/usr/bin/env ${prefix)/bin/python2.5

where ${prefix} of course is replaced by the installed MacPorts prefix

This will make the choice of python for the script independent of the current python selection.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #19717

    • Property Status changed from new to assigned
    • Property Cc gale@… devans@… added
    • Property Summary changed from gnome-keyring @2.26.1 build failure to gtk-builder-convert fails when building gnome-keyring @2.26.1 if default python version >= 3.0
    • Property Keywords gnome-keyring added
    • Property Owner changed from macports-tickets@… to nox@…
    • Property Port gtk2 added; gnome-keyring removed
  • Ticket #19717 – Description

    v1 v12  
    5353
    5454Christophe HARO
     55----