Changes between Initial Version and Version 2 of Ticket #32137


Ignore:
Timestamp:
Nov 20, 2011, 1:22:55 AM (12 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Please remember to use WikiFormatting so your posts are legible.

/Applications/MacPorts should not be hardcoded in the Portfile; it should use ${applications_dir} instead.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32137

    • Property Owner changed from macports-tickets@… to reilles@…
    • Property Cc dports@… added
    • Property Port auctex added
    • Property Summary changed from auctex emacs_app variant auto-dir to auctex: emacs_app variant leaves --with-auto-dir set
  • Ticket #32137 – Description

    initial v2  
    11In the auctex port we have
    22
     3{{{
    34configure.args  --with-lispdir=${prefix}/share/emacs/site-lisp \
    45                        --with-auto-dir=${prefix}/share/emacs/site-lisp/auctex/auto
     6}}}
    57
    6 but when variant emacs_app is selected the --with-lispdir is overwritten with
     8but when variant emacs_app is selected the `--with-lispdir` is overwritten with
    79
     10{{{
    811  configure.args-append   --with-lispdir=/Applications/MacPorts/Emacs.app/Contents/Resources/lisp
     12}}}
    913
    10 but the --with-auto-dir is left intact and therefore the installation creates a spurious
     14but the `--with-auto-dir` is left intact and therefore the installation creates a spurious
    1115
    1216${prefix}/share/emacs/site-lisp/auctex/auto
     
    1418directory.  For sake of consistency we need a
    1519
     20{{{
    1621  configure.args-append   --with-autodir=/Applications/MacPorts/Emacs.app/Contents/Resources/lisp/auctex/auto
    17 
     22}}}