Ticket #21026: Portfile-libicns.diff

File Portfile-libicns.diff, 1.1 KB (added by verwymeren@…, 15 years ago)

libicns Portfile diff

  • Portfile

    old new  
    1313    format, as well as read from Mac OS resource files and macbinary encoded Mac OS \
    1414    resource forks. As of release 0.5.9, it can fully read and write any 128x128 and all \
    1515    smaller 32-bit icons, and read support for 8-bit, 4-bit, and 1-bit icons. If linked \
    16     against Jasper, it also has full support for 256x256 and 512x512 32-bit icons with \
     16    against OpenJPEG or Jasper, it also has full support for 256x256 and 512x512 32-bit icons with \
    1717    masks as alpha channels. libicns includes icns2png, a tool for extracting the images \
    1818    contained within icns files, and saving them as png images. It also includes png2icns, \
    1919    a tool for creating icns files from a set of png images. \
     
    2525
    2626checksums           sha1 96e66119f4d8e6736b9d44120bff8c337d400ce5
    2727
    28 depends_lib             port:zlib port:libpng port:jasper
     28depends_lib             port:zlib port:libpng port:openjpeg
     29
     30variant jasper description {Link against Jasper} {
     31        depends_lib-delete port:openjpeg
     32        depends_lib-append port:jasper
     33}