Changes between Initial Version and Version 1 of Ticket #56272


Ignore:
Timestamp:
Apr 11, 2018, 10:59:19 PM (6 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

pango has x11 and quartz variants, and by default turns both of them on. It sounds like you have installed the pango port with the quartz variant turned on and the x11 variant turned off, so you at one point ran sudo port install pango +quartz -x11.

pangomm has x11 and quartz variants, and by default turns on only the x11 variant. You've shown that you tried to install pangomm turning on the quartz variant. This will be added to the default variants, so that what will actually be installed is pangomm with x11 and quartz variants turned on.

Whatever variants you want to turn on for the pangomm port, the same variants must be turned on for the pango port.

So your options are to either install pango with quartz only, and disable x11 (sudo port install pangomm +quartz -x11), or reinstall pango with both the quartz and x11 variants on (sudo port install pango +quartz +x11).

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #56272

    • Property Owner set to dbevans
    • Property Status changed from new to assigned
  • Ticket #56272 – Description

    initial v1  
    11When installing inkscape with +quartz variant in High Sierra, the pangomm installation fails. I have revised the build process, and I have found that when I execute:
    22
     3{{{
    34sudo port install pangomm +quartz
     5}}}
    46
    57The result is:
    68
     9{{{
    710--->  Computing dependencies for pangomm
    811--->  Configuring pangomm
     
    1114Error: Follow https://guide.macports.org/#project.tickets to report a bug.
    1215Error: Processing of port pangomm failed
     16}}}
    1317
    1418It seems that pango +x11 is needed, instead of the +quartz variant, which seems to be the natural to use.