Ticket #14852: Portfile.diff
File Portfile.diff, 2.3 KB (added by MarcusCalhoun-Lopez (Marcus Calhoun-Lopez), 17 years ago) |
---|
-
Portfile
old new 1 1 # $Id: Portfile 31825 2007-12-09 11:25:48Z rhwood@macports.org $ 2 2 3 PortSystem 1.0 4 3 5 name nautilus 4 version 2.2 0.06 version 2.22.1 5 7 description The GNOME filemanager 6 8 long_description Nautilus is the official file manager for the \ 7 9 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. 9 11 maintainers nomaintainer 10 12 categories gnome 11 platforms darwin 13 platforms darwin 12 14 homepage http://www.gnome.org/ 13 15 master_sites gnome:sources/nautilus/[join [lrange [split ${version} .] 0 1] .]/ 14 checksums md5 3856ec2ffeba786d12f8f6622e398c33\15 sha1 f6a75a854728ef308e2721424a9638d228661b1d\16 rmd160 9eeb18c886795ebbdd6dfc61ccddaee8eab8180816 checksums md5 5e4c0a72b57918dbc9ef6be813f9d3b8 \ 17 sha1 c740ebba280faf5756b4a08303a8aebf50046638 \ 18 rmd160 2781ffc661f3b5ff44f63ade9258496ea791096b 17 19 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 20 depends_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 36 depends_build bin:update-mime-database:shared-mime-info \ 37 bin:pkg-config:pkgconfig \ 38 bin:gconftool-2:gconf 22 39 use_bzip2 yes 23 40 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 } 41 configure.args --disable-update-mimedb 32 42 33 43 post-activate { 34 44 system "update-mime-database ${prefix}/share/mime" 35 45 } 36 37 platform darwin 8 {38 pre-configure {39 reinplace "s|-flat_namespace -undefined suppress||g" \40 ${worksrcpath}/configure41 }42 }