Permalink
| @@ -1,44 +1,55 @@ | ||
| # -*- 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 | ||
|
|
||
| PortSystem 1.0 | ||
|
|
||
| name Thunar | ||
| version 1.6.16 | ||
| revision 1 | ||
| set branch [join [lrange [split ${version} .] 0 1] .] | ||
| categories xfce | ||
| platforms darwin | ||
| license GPL-2+ LGPL-2+ | ||
| maintainers nomaintainer | ||
| description Thunar is a modern file manager for the Unix/Linux desktop | ||
| long_description ${description} | ||
|
|
||
| homepage https://docs.xfce.org/xfce/thunar/start | ||
| master_sites http://archive.xfce.org/src/xfce/thunar/${branch}/ | ||
| use_bzip2 yes | ||
|
|
||
| checksums rmd160 2af84abd40c210478b7626860f94b25b7de8218c \ | ||
| sha256 cb9fc2a8005494124a8d412eff7d7cb8032f7ff91b3d254fcff2d0a0d2790d20 \ | ||
| size 1977562 | ||
| PortSystem 1.0 | ||
|
|
||
| name Thunar | ||
| version 1.6.16 | ||
| revision 1 | ||
| set branch [join [lrange [split ${version} .] 0 1] .] | ||
| categories xfce | ||
| platforms darwin | ||
| license GPL-2+ LGPL-2+ | ||
| maintainers nomaintainer | ||
| description Thunar is a modern file manager for the Unix/Linux desktop | ||
| long_description ${description} | ||
|
|
||
| homepage https://docs.xfce.org/xfce/thunar/start | ||
| master_sites http://archive.xfce.org/src/xfce/thunar/${branch}/ | ||
| use_bzip2 yes | ||
|
|
||
| checksums rmd160 2af84abd40c210478b7626860f94b25b7de8218c \ | ||
| sha256 cb9fc2a8005494124a8d412eff7d7cb8032f7ff91b3d254fcff2d0a0d2790d20 \ | ||
| size 1977562 | ||
|
|
||
| # Needed for intltool | ||
| configure.perl ${prefix}/bin/perl5.28 | ||
| configure.perl ${prefix}/bin/perl5.28 | ||
|
|
||
| configure.args --enable-dbus --enable-startup-notification \ | ||
| --enable-pcre --enable-exif INTLTOOL_PERL=${configure.perl} | ||
| configure.args --enable-dbus \ | ||
| --enable-startup-notification \ | ||
| --enable-pcre \ | ||
| --enable-exif \ | ||
| INTLTOOL_PERL=${configure.perl} | ||
|
|
||
| depends_build port:intltool port:pkgconfig | ||
| depends_lib port:exo port:pcre port:libexif \ | ||
| port:shared-mime-info port:desktop-file-utils \ | ||
| port:startup-notification | ||
| depends_build port:intltool \ | ||
| port:pkgconfig | ||
|
|
||
| depends_lib port:desktop-file-utils \ | ||
| port:exo \ | ||
| port:libexif \ | ||
| port:pcre \ | ||
| port:shared-mime-info \ | ||
| port:startup-notification | ||
|
|
||
| variant quartz conflicts x11 { | ||
| configure.args-delete --enable-startup-notification | ||
| configure.args-append --disable-startup-notification | ||
| depends_lib-delete port:startup-notification | ||
| configure.args-append --disable-wallpaper-plugin | ||
| depends_lib-delete \ | ||
| port:startup-notification | ||
| configure.args-append \ | ||
| --disable-wallpaper-plugin | ||
| configure.args-replace \ | ||
| --enable-startup-notification --disable-startup-notification | ||
| } | ||
|
|
||
| platform darwin { | ||
| configure.args-append --disable-visibility | ||
| configure.args-append \ | ||
| --disable-visibility | ||
| } |