Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

Changeset 39645 for trunk

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

dcraw: now do the destroot for the dcraw binary in the Makefile too

Location:
trunk/dports/graphics/dcraw
Files:
2 modified

Legend:

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

    r39644 r39645  
    3434post-extract { 
    3535    xinstall -W ${filespath} Makefile.in ${worksrcpath}/Makefile 
     36    # Move "install" script; it conflicts with the destroot phase ("make install") 
     37    move ${worksrcpath}/install ${worksrcpath}/install.sh 
    3638} 
    3739 
     
    4749} 
    4850 
    49 destroot { 
    50     xinstall -s -m 755 -W ${worksrcpath} dcraw ${destroot}${prefix}/bin 
     51post-destroot { 
    5152    xinstall -m 644 -W ${worksrcpath} dcraw.1 ${destroot}${prefix}/share/man/man1 
    5253    foreach lang {eo ru fr it de pt es zh_TW zh_CN nl pl hu} { 
  • trunk/dports/graphics/dcraw/files/Makefile.in

    r39644 r39645  
    99dcraw: 
    1010        $(CC) -o dcraw $(CFLAGS) dcraw.c -ljpeg -llcms -lintl -liconv $(CPPFLAGS) $(LDFLAGS) -DLOCALEDIR=\"$(PREFIX)/share/locale/\" 
     11 
     12install: 
     13        install -s -m 755 dcraw $(DESTDIR)$(PREFIX)/bin