Ticket #33128: Portfile.new.diff
File Portfile.new.diff, 2.4 KB (added by petri@…, 13 years ago) |
---|
-
(a) /Users/petri/Downloads/Portfile.new vs. (b) Portfile
a b 1 # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 2 # $Id$ 1 # $Id: Portfile 81605 2011-08-02 23:19:30Z dports@macports.org $ 3 2 4 3 PortSystem 1.0 5 4 6 5 name ntfs-3g 7 6 version 2012.1.15 7 revision 1 8 8 categories fuse 9 9 platforms darwin 10 maintainers netatonce.net:petri \10 maintainers kelotti.net:petri \ 11 11 openmaintainer 12 12 license GPL-2+ LGPL-2 13 13 description Safe read/write NTFS driver for FUSE … … 16 16 provides safe and fast handling of the Windows XP, Windows \ 17 17 Server 2003, Windows 2000 and Windows Vista file systems. \ 18 18 Most POSIX file system operations are supported, with the \ 19 exception of full file ownership and access right support. 19 exception of full file ownership and access right support. \ 20 Also included are ntfsprogs, a set of utilities to create \ 21 and manipulate NTFS file systems. 20 22 21 23 homepage http://www.tuxera.com/community/ntfs-3g-download/ 22 24 distname ntfs-3g_ntfsprogs-${version} … … 44 46 configure.ldflags-append -framework CoreFoundation -lintl 45 47 } 46 48 47 #destroot.violate_mtree yes48 49 49 pre-destroot { 50 50 file mkdir ${destroot}/sbin 51 51 } … … 55 55 # but on darwin mount wants mount_* instead of mount.* 56 56 57 57 # /sbin/mount.ntfs-3g is no longer installed with recent versions of ntfs-3g 58 # but let's add a check here to verify this,so an update doesn't miss it if it's turned back on58 # but check here to verify so an update doesn't miss it if it's turned back on 59 59 if {[file exists ${destroot}/sbin/mount.ntfs-3g]} { 60 error "${destroot}/sbin/mount.ntfs-3g is present" 60 file rename -- ${destroot}/sbin/mount.ntfs-3g \ 61 ${destroot}/sbin/mount_ntfs-3g 61 62 } 62 #file rename -- ${destroot}/sbin/mount.ntfs-3g ${destroot}/sbin/mount_ntfs-3g63 63 file rename -- ${destroot}${prefix}/share/man/man8/mount.ntfs-3g.8 \ 64 64 ${destroot}${prefix}/share/man/man8/mount_ntfs-3g.8 65 66 delete ${destroot}/sbin/mkfs.ntfs67 65 } 66