Ticket #33279: Portfile.new.diff

File Portfile.new.diff, 1.3 KB (added by petri@…, 12 years ago)

Portfile diff to correctly move things whre they ought to be inside the tree

  • Portfile

    old new  
    44
    55name                ntfs-3g
    66version             2012.1.15
    7 revision            1
     7revision            2
    88categories          fuse
    99platforms           darwin
    1010maintainers         kelotti.net:petri \
     
    5555    # but on darwin mount wants mount_* instead of mount.*
    5656
    5757    # /sbin/mount.ntfs-3g is no longer installed with recent versions of ntfs-3g
    58     # but check here to verify so an update doesn't miss it if it's turned back on
     58    # but check here to verify so updates doesn't miss it if it's turned back on
    5959    if {[file exists ${destroot}/sbin/mount.ntfs-3g]} {
     60       # This violated the tree restrictions, hopefully fixed by now.
    6061       file rename -- ${destroot}/sbin/mount.ntfs-3g \
    61                       ${destroot}/sbin/mount_ntfs-3g
     62                      ${destroot}{prefix}/sbin/mount_ntfs-3g
    6263    }
    6364    file rename -- ${destroot}${prefix}/share/man/man8/mount.ntfs-3g.8 \
    6465                   ${destroot}${prefix}/share/man/man8/mount_ntfs-3g.8
     66
     67    # This violated the tree restrictions, hopefully fixed by now.
     68    file rename -- ${destroot}/sbin/mkfs.ntfs \
     69                   ${destroot}${prefix}/sbin/mkfs.ntfs
     70    file delete ${destroot}/sbin
    6571}
    6672