Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

Changeset 39643 for trunk

Show
Ignore:
Timestamp:
08/27/08 13:25:22 (3 months ago)
Author:
ryandesign@…
Message:

dcraw: revert changes inadvertently committed in r39642

Location:
trunk/dports/graphics/dcraw
Files:
1 removed
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/dports/graphics/dcraw/Portfile

    r39642 r39643  
    1313worksrcdir              $name 
    1414dist_subdir             ${name}/${version}-${distfile_date} 
     15use_configure           no 
    1516use_parallel_build      yes 
    1617 
     
    3233    port:lcms 
    3334 
    34 configure { 
    35     xinstall -W ${filespath} Makefile.in ${worksrcpath}/Makefile 
    36     reinplace "s|@CC@|${configure.cc}|g" ${worksrcpath}/Makefile 
    37     reinplace "s|@CFLAGS@|${configure.cflags}|g" ${worksrcpath}/Makefile 
    38     reinplace "s|@CPPFLAGS@|${configure.cppflags}|g" ${worksrcpath}/Makefile 
    39     reinplace "s|@LDFLAGS@|${configure.ldflags}|g" ${worksrcpath}/Makefile 
     35variant universal {} 
     36 
     37build { 
     38    if {[variant_isset universal]} { 
     39        system "cd ${worksrcpath} && cc -o dcraw ${configure.cflags} ${configure.universal_cflags} dcraw.c -ljpeg -llcms -lintl -liconv ${configure.cppflags} ${configure.ldflags} -DLOCALEDIR=\\\"${prefix}/share/locale/\\\"" 
     40    } else { 
     41        system "cd ${worksrcpath} && cc -o dcraw ${configure.cflags} dcraw.c -ljpeg -llcms -lintl -liconv ${configure.cppflags} ${configure.ldflags} -DLOCALEDIR=\\\"${prefix}/share/locale/\\\"" 
     42    } 
    4043} 
    4144