diff options
author | Mamoru Komachi <usata@gentoo.org> | 2006-02-01 16:06:06 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2006-02-01 16:06:06 +0000 |
commit | 5cf045fc6dbe0210089161868e6ee2a161e8f9ad (patch) | |
tree | 335b08ef02e25f5f8c9e1b3a3beaa5429881710d /app-emacs/auctex/files | |
parent | Recommit after making pycrpto fix for bad RMD160 digest errors. (diff) | |
download | gentoo-2-5cf045fc6dbe0210089161868e6ee2a161e8f9ad.tar.gz gentoo-2-5cf045fc6dbe0210089161868e6ee2a161e8f9ad.tar.bz2 gentoo-2-5cf045fc6dbe0210089161868e6ee2a161e8f9ad.zip |
Version bumped and fixed bug #118100. Thanks to Christian Faulhammer <v-li@gmx.de> and Matsui Tetsushi <VED03370@nifty.ne.jp>.
(Portage version: 2.0.53)
Diffstat (limited to 'app-emacs/auctex/files')
-rw-r--r-- | app-emacs/auctex/files/51auctex-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/auctex/files/60auctex-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/auctex/files/auctex-11.82-configure.diff | 79 | ||||
-rw-r--r-- | app-emacs/auctex/files/digest-auctex-11.82 | 1 |
4 files changed, 88 insertions, 0 deletions
diff --git a/app-emacs/auctex/files/51auctex-gentoo.el b/app-emacs/auctex/files/51auctex-gentoo.el new file mode 100644 index 000000000000..1757359966cf --- /dev/null +++ b/app-emacs/auctex/files/51auctex-gentoo.el @@ -0,0 +1,4 @@ + +;;; auctex site-lisp configuration + +(load "auctex.el" nil t t) diff --git a/app-emacs/auctex/files/60auctex-gentoo.el b/app-emacs/auctex/files/60auctex-gentoo.el new file mode 100644 index 000000000000..93b601b29769 --- /dev/null +++ b/app-emacs/auctex/files/60auctex-gentoo.el @@ -0,0 +1,4 @@ + +;;; auctex site-lisp configuration, activating preview-latex + +(load "preview-latex.el" nil t t) diff --git a/app-emacs/auctex/files/auctex-11.82-configure.diff b/app-emacs/auctex/files/auctex-11.82-configure.diff new file mode 100644 index 000000000000..aa0b5b9f408e --- /dev/null +++ b/app-emacs/auctex/files/auctex-11.82-configure.diff @@ -0,0 +1,79 @@ +--- configure.orig 2005-12-18 00:15:41.000000000 +0900 ++++ configure 2006-01-31 00:17:51.000000000 +0900 +@@ -1536,30 +1536,9 @@ + { (exit 1); exit 1; }; } + fi + +-echo "$as_me:$LINENO: checking if ${EMACS} is XEmacs" >&5 +-echo $ECHO_N "checking if ${EMACS} is XEmacs... $ECHO_C" >&6 + +- elisp="(if (featurep (quote xemacs)) \"yes\" \"no\")" +- OUTPUT=./conftest-$$ +- echo "${EMACS}" -batch -no-site-file -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 +- "${EMACS}" -batch -no-site-file -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 +- XEMACS="`cat ${OUTPUT}`" +- echo "=> ${XEMACS}" >& 5 2>&1 +- rm -f ${OUTPUT} +- +-if test "${XEMACS}" = "yes"; then +- EMACS_FLAVOR=xemacs +- EMACS_NAME="XEmacs" +-elif test "${XEMACS}" = "no"; then +- EMACS_FLAVOR=emacs +- EMACS_NAME="Emacs" +-else +- { { echo "$as_me:$LINENO: error: Unable to run ${EMACS}! Aborting!" >&5 +-echo "$as_me: error: Unable to run ${EMACS}! Aborting!" >&2;} +- { (exit 1); exit 1; }; } +-fi +- echo "$as_me:$LINENO: result: ${XEMACS}" >&5 +-echo "${ECHO_T}${XEMACS}" >&6 ++EMACS_FLAVOR=emacs ++EMACS_NAME="Emacs" + + + echo "$as_me:$LINENO: checking for ${EMACS_NAME} prefix" >&5 +@@ -1585,34 +1564,6 @@ + echo "${ECHO_T}\"${emacsprefix}\"" >&6 + + +-if test ${EMACS_FLAVOR} = xemacs +-then +- +-echo "$as_me:$LINENO: checking if ${EMACS_NAME} is recent enough" >&5 +-echo $ECHO_N "checking if ${EMACS_NAME} is recent enough... $ECHO_C" >&6 +- +- elisp="(cond ((< emacs-major-version 21) \"no\") +- ((> emacs-major-version 21) \"yes\") +- ((< emacs-minor-version 04) \"no\") +- (t \"yes\"))" +- OUTPUT=./conftest-$$ +- echo "${EMACS}" -batch -no-site-file -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 +- "${EMACS}" -batch -no-site-file -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 +- result="`cat ${OUTPUT}`" +- echo "=> ${result}" >& 5 2>&1 +- rm -f ${OUTPUT} +- +-echo "$as_me:$LINENO: result: ${result}" >&5 +-echo "${ECHO_T}${result}" >&6 +-if test "${result}" != "yes" +-then +- { { echo "$as_me:$LINENO: error: This package requires at least ${EMACS_NAME} version 21.4 Aborting!" >&5 +-echo "$as_me: error: This package requires at least ${EMACS_NAME} version 21.4 Aborting!" >&2;} +- { (exit 1); exit 1; }; } +-fi +- +-else +- + echo "$as_me:$LINENO: checking if ${EMACS_NAME} is recent enough" >&5 + echo $ECHO_N "checking if ${EMACS_NAME} is recent enough... $ECHO_C" >&6 + +@@ -1636,8 +1587,6 @@ + { (exit 1); exit 1; }; } + fi + +-fi +- + + echo "$as_me:$LINENO: checking for mule support" >&5 + echo $ECHO_N "checking for mule support... $ECHO_C" >&6 diff --git a/app-emacs/auctex/files/digest-auctex-11.82 b/app-emacs/auctex/files/digest-auctex-11.82 new file mode 100644 index 000000000000..2f924daaf8bd --- /dev/null +++ b/app-emacs/auctex/files/digest-auctex-11.82 @@ -0,0 +1 @@ +MD5 a18d6ac70b332f47386980f0c4df62e6 auctex-11.82.tar.gz 873084 |