Ticket #36052: Portfile-planner.diff
File Portfile-planner.diff, 2.2 KB (added by dbevans (David B. Evans), 12 years ago) |
---|
-
Portfile
4 4 PortSystem 1.0 5 5 6 6 name planner 7 license GPL-2 7 8 version 0.14.6 9 revision 1 10 set branch [join [lrange [split ${version} .] 0 1] .] 8 11 categories gnome 9 12 maintainers billitch 10 13 description Project management application for GNOME 2 … … 18 21 GNOME Desktop. 19 22 homepage http://live.gnome.org/Planner 20 23 platforms darwin 21 master_sites gnome:sources/ planner/0.14/24 master_sites gnome:sources/${name}/${branch}/ 22 25 checksums rmd160 edfb1df0158695d918a6848b7e62ebed8830a210 \ 23 26 sha256 130d29e6d6b8c1994017deba2acca05a4bf83ba1e169635ec8c5c7878abe0696 24 27 … … 26 29 use_xz yes 27 30 28 31 depends_build port:pkgconfig \ 29 port:shared-mime-info \30 32 port:intltool 31 33 depends_lib port:gtk2 \ 32 34 port:gconf \ 33 35 port:libgnomeui \ 34 port:libgnome printui\36 port:libgnomecanvas \ 35 37 port:rarian \ 36 port:libxslt \ 37 port:p5.12-xml-parser \ 38 port:evolution-data-server 38 port:libxslt 39 39 40 40 configure.args --disable-python \ 41 --disable-dotnet \42 41 --disable-update-mimedb \ 43 -- enable-eds \42 --disable-eds \ 44 43 --mandir=${prefix}/share/man 45 44 45 variant eds description {Enable evolution-data-server support} { 46 depends_lib-append port:evolution-data-server 47 configure.args-delete --disable-eds 48 configure.args-append --enable-eds 49 } 50 46 51 variant debug description {Enable debug} { 47 52 configure.cflags-delete -O2 48 53 configure.cflags-append -O0 -g 49 54 } 50 55 56 # evolution-data-server is not universal 57 58 if {[variant_isset eds]} { 59 universal_variant no 60 } 61 51 62 post-activate { 52 63 system "update-mime-database ${prefix}/share/mime" 53 64 } 65 66 livecheck.type regex 67 livecheck.url http://ftp.gnome.org/pub/gnome/sources/${name}/${branch}/ 68 livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)}