[BACK]Return to modules.mk CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / editors / emacs

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /pkgsrc/editors/emacs/modules.mk between version 1.3 and 1.4

version 1.3, 2008/10/27 15:34:46 version 1.4, 2008/10/28 00:17:31
Line 4 
Line 4 
 #  #
 # Note to users:  # Note to users:
 #  #
 #       * Users choose one favourite Emacs version (default GNU Emacs 22).  #       * Users choose one favourite Emacs version.
 #  #
 #       * Emacs Lisp files are installed...  #       * Emacs Lisp files are installed...
 #               GNU emacs  #               GNU emacs
 #                       -> ${PREFIX}/share/emacs/site-lisp/foo/...  #                       -> ${PREFIX}/share/emacs/site-lisp/foo/...
 #               XEmacs  #               XEmacs
 #                       ->${PREFIX}/lib/xemacs/site-packages/lisp/foo/...  #                       ->${PREFIX}/lib/xemacs/site-packages/lisp/foo/...
 #  #
 #       * You can't install an ELP for both Emacs and XEmacs  #       * You can't install an ELP for both Emacs and XEmacs
 #         simultaneously.  #         simultaneously.
Line 38 
Line 38 
 #  #
 #       EMACS_TYPE  #       EMACS_TYPE
 #               Description:  #               Description:
 #                       The user's favourite Emacs version.  #                       The user's favourite Emacs version.  The default
   #                       value is set in mk/defaults/mk.conf.
 #               Possible values:  #               Possible values:
 #                       emacs21, emacs21nox, emacs22, emacs22nox, emacs20, xemacs215, xemacs215nox, xemacs214, xemacs214nox  #                       emacs21, emacs21nox, emacs22, emacs22nox, emacs20, xemacs215, xemacs215nox, xemacs214, xemacs214nox
 #               Default value:  #               Default value:
Line 88 
Line 89 
 #                       name as a subdirectory.  #                       name as a subdirectory.
 #               Possible values:  #               Possible values:
 #                       ${PREFIX}/share  #                       ${PREFIX}/share
 #                       ${PREFIX}/lib/xemacs/site-packages/etc  #                       ${PREFIX}/lib/xemacs/site-packages/etc
 #  #
 #       EMACS_FLAVOR  #       EMACS_FLAVOR
 #               Description:  #               Description:
Line 103 
Line 104 
 #                       EMACS_LISPPREFIX, subdirectory is not needed.  #                       EMACS_LISPPREFIX, subdirectory is not needed.
 #               Possible values:  #               Possible values:
 #                       ${PREFIX}/${PKGINFODIR}  #                       ${PREFIX}/${PKGINFODIR}
 #                       ${PREFIX}/lib/xemacs/site-packages/info  #                       ${PREFIX}/lib/xemacs/site-packages/info
 #  #
 #       EMACS_LISPPREFIX  #       EMACS_LISPPREFIX
 #               Description:  #               Description:
Line 111 
Line 112 
 #                       as a subdirectory.  #                       as a subdirectory.
 #               Possible values:  #               Possible values:
 #                       ${PREFIX}/share/emacs/site-lisp  #                       ${PREFIX}/share/emacs/site-lisp
 #                       ${PREFIX}/lib/xemacs/site-packages/lisp  #                       ${PREFIX}/lib/xemacs/site-packages/lisp
 #  #
 #       EMACS_PKGNAME_PREFIX  #       EMACS_PKGNAME_PREFIX
 #               Description:  #               Description:
Line 140 
Line 141 
 #                       ${PREFIX} is omitted in PLIST.  #                       ${PREFIX} is omitted in PLIST.
 #               Possible values:  #               Possible values:
 #                       share  #                       share
 #                       lib/xemacs/site-packages/etc  #                       lib/xemacs/site-packages/etc
 #  #
 #       EMACS_INFOPREFIX  #       EMACS_INFOPREFIX
 #               Description:  #               Description:
Line 148 
Line 149 
 #                       ${PREFIX} is omitted in PLIST.  #                       ${PREFIX} is omitted in PLIST.
 #               Possible values:  #               Possible values:
 #                       ${PKGINFODIR}  #                       ${PKGINFODIR}
 #                       lib/xemacs/site-packages/info  #                       lib/xemacs/site-packages/info
 #  #
 #       EMACS_LISPPREFIX  #       EMACS_LISPPREFIX
 #               Description:  #               Description:
Line 156 
Line 157 
 #                       ${PREFIX} is omitted in PLIST.  #                       ${PREFIX} is omitted in PLIST.
 #               Possible values:  #               Possible values:
 #                       share/emacs/site-lisp  #                       share/emacs/site-lisp
 #                       lib/xemacs/site-packages/lisp  #                       lib/xemacs/site-packages/lisp
 #  #
 #       EMACS_VERSION  #       EMACS_VERSION
 #               Description:  #               Description:
Line 297  _EMACS_PLIST_SUBST+= FOR_${e}="@comment 
Line 298  _EMACS_PLIST_SUBST+= FOR_${e}="@comment 
 .endfor  .endfor
 .if empty(EMACS_TYPE:M*nox)  .if empty(EMACS_TYPE:M*nox)
 _EMACS_PLIST_SUBST+=    FOR_emacs_x="" NOTFOR_emacs_x="@comment "  _EMACS_PLIST_SUBST+=    FOR_emacs_x="" NOTFOR_emacs_x="@comment "
 _EMACS_PLIST_SUBST+=    FOR_emacs_nox="@comment " NOTFOR_emacs_nox=""  _EMACS_PLIST_SUBST+=    FOR_emacs_nox="@comment " NOTFOR_emacs_nox=""
 .else  .else
 _EMACS_PLIST_SUBST+=    FOR_emacs_x="@comment " NOTFOR_emacs_x=""  _EMACS_PLIST_SUBST+=    FOR_emacs_x="@comment " NOTFOR_emacs_x=""
 _EMACS_PLIST_SUBST+=    FOR_emacs_nox="" NOTFOR_emacs_nox="@comment "  _EMACS_PLIST_SUBST+=    FOR_emacs_nox="" NOTFOR_emacs_nox="@comment "
 .endif  .endif
   
 _EMACS_PLIST_SUBST+=    EMACS_FLAVOR=${EMACS_FLAVOR:Q}  _EMACS_PLIST_SUBST+=    EMACS_FLAVOR=${EMACS_FLAVOR:Q}

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

CVSweb <webmaster@jp.NetBSD.org>