New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 81684


Ignore:
Timestamp:
08/04/11 03:36:17 (4 years ago)
Author:
dports@…
Message:

emacs: move dbus support to a variant, add a temporary note explaining
that it is no longer installed by default (#30496)

texinfo isn't needed at runtime; make it a build dependency only.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/editors/emacs/Portfile

    r81680 r81684  
    77name            emacs 
    88version         23.3 
    9 revision        2 
     9revision        3 
    1010 
    1111# Source tarball is now tagged "23.3a" but is the same as 23.3. See #30513. 
     
    3838 
    3939configure.args  --without-x \ 
    40                 --with-dbus \ 
     40                --without-dbus \ 
    4141                --without-gconf \ 
    4242                --without-libotf \ 
     
    4545                --infodir ${prefix}/share/info/${name} 
    4646 
    47 depends_build   port:pkgconfig 
    48 depends_lib     port:ncurses \ 
    49                 port:dbus \ 
     47depends_build   port:pkgconfig \ 
    5048                port:texinfo 
     49depends_lib     port:ncurses 
    5150 
    5251post-destroot { 
     
    107106                            port:librsvg 
    108107} 
     108 
     109variant dbus description {Builds emacs with D-Bus support} { 
     110    configure.args-delete   --without-dbus 
     111    configure.args-append   --with-dbus 
     112    depends_lib-append      port:dbus 
     113} 
     114 
     115if {![variant_isset dbus]} { 
     116    notes "D-Bus support is no longer included in the default Emacs installation. To build Emacs with D-Bus support, please install with the +dbus variant." 
     117} 
Note: See TracChangeset for help on using the changeset viewer.