Ticket #14852: Portfile.diff

File Portfile.diff, 2.3 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 16 years ago)
  • Portfile

    old new  
    11# $Id: Portfile 31825 2007-12-09 11:25:48Z rhwood@macports.org $
     2
    23PortSystem 1.0
     4
    35name            nautilus
    4 version         2.20.0
     6version         2.22.1
    57description     The GNOME filemanager
    68long_description        Nautilus is the official file manager for the \
    79                        GNOME desktop. It is designed to be primarly a file manager, \
    8                         but there are support for web and file viewing too. 
     10                        but there are support for web and file viewing too.
    911maintainers     nomaintainer
    1012categories      gnome
    11 platforms       darwin 
     13platforms       darwin
    1214homepage        http://www.gnome.org/
    1315master_sites    gnome:sources/nautilus/[join [lrange [split ${version} .] 0 1] .]/
    14 checksums       md5 3856ec2ffeba786d12f8f6622e398c33 \
    15                         sha1 f6a75a854728ef308e2721424a9638d228661b1d \
    16                         rmd160 9eeb18c886795ebbdd6dfc61ccddaee8eab81808
     16checksums       md5 5e4c0a72b57918dbc9ef6be813f9d3b8 \
     17                        sha1 c740ebba280faf5756b4a08303a8aebf50046638 \
     18                        rmd160 2781ffc661f3b5ff44f63ade9258496ea791096b
    1719
    18 depends_lib     lib:libeel-2:eel lib:libexif.12:libexif port:librsvg \
    19         port:dbus \
    20         port:dbus-glib
    21 depends_build   bin:update-mime-database:shared-mime-info
     20depends_lib     port:startup-notification \
     21                port:libexif \
     22                port:eel \
     23                port:glib2 \
     24                port:gnome-desktop \
     25                port:orbit2 \
     26                port:pango \
     27                port:gtk2 \
     28                port:librsvg \
     29                port:libxml2 \
     30                port:gconf \
     31                port:gnome-vfs \
     32                port:libgnome \
     33                port:libgnomeui \
     34                port:dbus \
     35                port:dbus-glib
     36depends_build   bin:update-mime-database:shared-mime-info \
     37                bin:pkg-config:pkgconfig \
     38                bin:gconftool-2:gconf
    2239use_bzip2       yes
    2340
    24 configure.args  --mandir=${prefix}/share/man \
    25                 --disable-update-mimedb
    26 
    27 post-extract {
    28         reinplace "s|-no-undefined||g"  \
    29                 ${worksrcpath}/libnautilus-private/Makefile.in \
    30                 ${worksrcpath}/libnautilus-extension/Makefile.in
    31 }
     41configure.args  --disable-update-mimedb
    3242
    3343post-activate {
    3444        system "update-mime-database ${prefix}/share/mime"
    3545}
    36 
    37 platform darwin 8 {
    38         pre-configure {
    39                 reinplace "s|-flat_namespace -undefined suppress||g" \
    40                         ${worksrcpath}/configure
    41         }
    42 }