Changeset 97676


Ignore:
Timestamp:
Sep 11, 2012, 8:08:35 PM (12 years ago)
Author:
devans@…
Message:

planner: add +eds variant to fix default +universal build, license, dependencies, configuration, livecheck. (#36052, maintainer timeout)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/gnome/planner/Portfile

    r95481 r97676  
    55
    66name            planner
     7license         GPL-2
    78version         0.14.6
     9revision        1
     10set branch      [join [lrange [split ${version} .] 0 1] .]
    811categories      gnome
    912maintainers     billitch
     
    1922homepage        http://live.gnome.org/Planner
    2023platforms       darwin
    21 master_sites    gnome:sources/planner/0.14/
     24master_sites    gnome:sources/${name}/${branch}/
    2225checksums       rmd160 edfb1df0158695d918a6848b7e62ebed8830a210 \
    2326                sha256 130d29e6d6b8c1994017deba2acca05a4bf83ba1e169635ec8c5c7878abe0696
     
    2730
    2831depends_build   port:pkgconfig \
    29                 port:shared-mime-info \
    3032                port:intltool
    3133depends_lib     port:gtk2 \
    3234                port:gconf \
    3335                port:libgnomeui \
    34                 port:libgnomeprintui \
     36                port:libgnomecanvas \
    3537                port:rarian \
    36                 port:libxslt \
    37                 port:p5.12-xml-parser \
    38                 port:evolution-data-server
     38                port:libxslt
    3939
    4040configure.args  --disable-python \
    41                 --disable-dotnet \
    4241                --disable-update-mimedb \
    43                 --enable-eds \
     42                --disable-eds \
    4443                --mandir=${prefix}/share/man
     44
     45variant 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}
    4550
    4651variant debug description {Enable debug} {
     
    4954}
    5055
     56# evolution-data-server is not universal
     57
     58if {[variant_isset eds]} {
     59                universal_variant no
     60}
     61
    5162post-activate {
    5263    system "update-mime-database ${prefix}/share/mime"
    5364}
     65
     66livecheck.type  regex
     67livecheck.url   http://ftp.gnome.org/pub/gnome/sources/${name}/${branch}/
     68livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)}
Note: See TracChangeset for help on using the changeset viewer.