Ticket #26205: makeicns.diff

File makeicns.diff, 1004 bytes (added by mkae (Marko Käning), 14 years ago)

I think this would do the trick concerning omitting the universal variant after all. Can someone please test whether it also works on other platforms as it does for me on 64bit?!

  • ports/graphics/makeicns/Portfile

    diff -r 3e84bb641505 ports/graphics/makeicns/Portfile
    a b  
    55
    66name                makeicns
    77version             1.4
    8 revision            2
     8revision            3
    99categories          graphics
    1010maintainers         techno.ms:mk-macports pixilla.com:brad
    1111platforms           darwin
    1212supported_archs     ppc i386 x86_64
    13 configure.universal_archs   ppc i386
    1413license             MIT
    1514
    1615description         This program lets you convert all kinds of images to Apple's icns format on the command line.
     
    3231
    3332use_configure       no
    3433
    35 variant universal {}
    36 if {[variant_isset universal]} {
    37     set archflags ${configure.universal_cflags}
    38 } else {
    39     set archflags ${configure.cc_archflags}
    40 }
     34set archflags ${configure.cc_archflags}
     35
    4136if {${configure.sdkroot} != ""} {
    4237    configure.ldflags-append "-isysroot ${configure.sdkroot}"
    4338}