diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-06-14 07:18:13 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-06-14 07:18:13 +0000 |
commit | 2cdf6cf3ba4098448a3cebd8f01f21d3ab6d5e22 (patch) | |
tree | 3f3795df81cb529b52fa28d25d79ae52dbc4f50c /app-emacs/auctex/files | |
parent | Disable hack for 2.0 kernels (bug #174115 comment #8). (diff) | |
download | gentoo-2-2cdf6cf3ba4098448a3cebd8f01f21d3ab6d5e22.tar.gz gentoo-2-2cdf6cf3ba4098448a3cebd8f01f21d3ab6d5e22.tar.bz2 gentoo-2-2cdf6cf3ba4098448a3cebd8f01f21d3ab6d5e22.zip |
clean up
(Portage version: 2.1.2.7)
Diffstat (limited to 'app-emacs/auctex/files')
-rw-r--r-- | app-emacs/auctex/files/50auctex-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/auctex/files/51auctex-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/auctex/files/auctex-11.55-configure.diff | 105 | ||||
-rw-r--r-- | app-emacs/auctex/files/auctex-11.81-configure.diff | 157 | ||||
-rw-r--r-- | app-emacs/auctex/files/auctex-11.82-configure.diff | 79 | ||||
-rw-r--r-- | app-emacs/auctex/files/digest-auctex-11.55 | 3 | ||||
-rw-r--r-- | app-emacs/auctex/files/digest-auctex-11.82 | 3 | ||||
-rw-r--r-- | app-emacs/auctex/files/digest-auctex-11.83 | 3 | ||||
-rw-r--r-- | app-emacs/auctex/files/digest-auctex-11.83-r1 | 3 | ||||
-rw-r--r-- | app-emacs/auctex/files/digest-auctex-11.84 | 3 |
10 files changed, 0 insertions, 364 deletions
diff --git a/app-emacs/auctex/files/50auctex-gentoo.el b/app-emacs/auctex/files/50auctex-gentoo.el deleted file mode 100644 index d82d84c9e08e..000000000000 --- a/app-emacs/auctex/files/50auctex-gentoo.el +++ /dev/null @@ -1,4 +0,0 @@ - -;;; auctex site-lisp configuration - -(require 'tex-site) diff --git a/app-emacs/auctex/files/51auctex-gentoo.el b/app-emacs/auctex/files/51auctex-gentoo.el deleted file mode 100644 index 1757359966cf..000000000000 --- a/app-emacs/auctex/files/51auctex-gentoo.el +++ /dev/null @@ -1,4 +0,0 @@ - -;;; auctex site-lisp configuration - -(load "auctex.el" nil t t) diff --git a/app-emacs/auctex/files/auctex-11.55-configure.diff b/app-emacs/auctex/files/auctex-11.55-configure.diff deleted file mode 100644 index 23dbb31a1b7d..000000000000 --- a/app-emacs/auctex/files/auctex-11.55-configure.diff +++ /dev/null @@ -1,105 +0,0 @@ ---- configure 2005-02-05 04:15:04.000000000 +0900 -+++ configure-emacs 2005-04-12 23:11:41.000000000 +0900 -@@ -1457,101 +1457,7 @@ - { (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 (string-match \"XEmacs\" emacs-version) \"yes\" \"no\")" -- OUTPUT=./conftest-$$ -- echo "${EMACS}" -batch -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 -- "${EMACS}" -batch -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 -- XEMACS="`cat ${OUTPUT}`" -- echo "=> ${1}" >& 5 2>&1 -- rm -f ${OUTPUT} -- --if test "$XEMACS" = "yes"; then -- EMACS_FLAVOR=xemacs --else -- if test "$XEMACS" = "no"; then -- EMACS_FLAVOR=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 --fi -- echo "$as_me:$LINENO: result: $XEMACS" >&5 --echo "${ECHO_T}$XEMACS" >&6 -- -- -- -- --echo "$as_me:$LINENO: checking if (X)Emacs is recent enough" >&5 --echo $ECHO_N "checking if (X)Emacs is recent enough... $ECHO_C" >&6 -- -- elisp="emacs-major-version" -- OUTPUT=./conftest-$$ -- echo "${EMACS}" -batch -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 -- "${EMACS}" -batch -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 -- EMACS_MAJOR_VERSION="`cat ${OUTPUT}`" -- echo "=> ${1}" >& 5 2>&1 -- rm -f ${OUTPUT} -- --if (( $EMACS_MAJOR_VERSION < 21 )); then -- echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6 -- { { echo "$as_me:$LINENO: error: This package requires at least (X)Emacs version 21. Aborting!" >&5 --echo "$as_me: error: This package requires at least (X)Emacs version 21. Aborting!" >&2;} -- { (exit 1); exit 1; }; } --else -- echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6 --fi -- -- -- --echo "$as_me:$LINENO: checking for mule support" >&5 --echo $ECHO_N "checking for mule support... $ECHO_C" >&6 -- --if test -z "silent"; then -- echo "$as_me:$LINENO: checking for mule" >&5 --echo $ECHO_N "checking for mule... $ECHO_C" >&6 --fi --library=`echo mule | tr _ -` -- -- elisp="(condition-case nil (require '$library ) \ -- (error (prog1 nil (message \"$library not found\"))))" -- OUTPUT=./conftest-$$ -- echo "${EMACS}" -batch -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 -- "${EMACS}" -batch -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 -- mule="`cat ${OUTPUT}`" -- echo "=> ${1}" >& 5 2>&1 -- rm -f ${OUTPUT} -- --if test "$mule" = "nil"; then -- mule=no --fi --if test "$mule" = "$library"; then -- mule=yes --fi --HAVE_mule=$mule -- --if test -z "silent"; then -- echo "$as_me:$LINENO: result: $HAVE_mule" >&5 --echo "${ECHO_T}$HAVE_mule" >&6 --fi -- --if test "${HAVE_mule}" = "yes"; then -- COMPILE_MULE="tex-jp.el" -- CONTRIB_MULEELC="tex-jp.elc" -- echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6 --else -- echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6 --fi -- -- -- -+EMACS_FLAVOR=emacs - - # The Debian package uses `--disable-build-dir-test'; normal users should - # never need to modify the default behavior. diff --git a/app-emacs/auctex/files/auctex-11.81-configure.diff b/app-emacs/auctex/files/auctex-11.81-configure.diff deleted file mode 100644 index cdd4f065aab2..000000000000 --- a/app-emacs/auctex/files/auctex-11.81-configure.diff +++ /dev/null @@ -1,157 +0,0 @@ -diff -Naur auctex-11.81.old/configure auctex-11.81.new/configure ---- auctex-11.81.old/configure 2005-09-25 14:17:00.000000000 +0200 -+++ auctex-11.81.new/configure 2005-10-07 14:41:11.589304500 +0200 -@@ -1536,152 +1536,7 @@ - { (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 -- -- -- echo "$as_me:$LINENO: checking for ${EMACS_NAME} prefix" >&5 --echo $ECHO_N "checking for ${EMACS_NAME} prefix... $ECHO_C" >&6 -- -- -- elisp="(condition-case nil (let* -- ((prefix (directory-file-name (file-name-directory (executable-find cmd)))) -- (parent (directory-file-name (file-name-directory prefix)))) -- (if (string= (file-name-nondirectory prefix) \"bin\") -- (setq prefix parent) -- (if (string= (file-name-nondirectory parent) \"bin\") -- (setq prefix (directory-file-name (file-name-directory parent))))) -- prefix) (error "NONE"))" -- OUTPUT=./conftest-$$ -- echo "${EMACS}" -batch -no-site-file -eval "(let* ((cmd(pop command-line-args-left))(x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" "${EMACS}" >& 5 2>&1 -- "${EMACS}" -batch -no-site-file -eval "(let* ((cmd(pop command-line-args-left))(x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" "${EMACS}" >& 5 2>&1 -- emacsprefix="`cat ${OUTPUT}`" -- echo "=> ${emacsprefix}" >& 5 2>&1 -- rm -f ${OUTPUT} -- -- echo "$as_me:$LINENO: result: \"${emacsprefix}\"" >&5 --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 -- -- elisp="(cond ((< emacs-major-version 21) \"no\") -- ((> emacs-major-version 21) \"yes\") -- ((< emacs-minor-version 01) \"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.1 Aborting!" >&5 --echo "$as_me: error: This package requires at least ${EMACS_NAME} version 21.1 Aborting!" >&2;} -- { (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 -- --if test -z "silent"; then -- echo "$as_me:$LINENO: checking for mule" >&5 --echo $ECHO_N "checking for mule... $ECHO_C" >&6 --fi --library=`echo mule | tr _ -` -- -- elisp="(condition-case nil (require '${library} ) \ -- (error (prog1 nil (message \"${library} not found\"))))" -- OUTPUT=./conftest-$$ -- echo "${EMACS}" -batch -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 -- "${EMACS}" -batch -eval "(let* ((x ${elisp})) (write-region (if (stringp x) x (prin1-to-string x)) nil \"${OUTPUT}\"))" >& 5 2>&1 -- mule="`cat ${OUTPUT}`" -- echo "=> ${mule}" >& 5 2>&1 -- rm -f ${OUTPUT} -- --if test "$mule" = "nil"; then -- mule=no --fi --if test "$mule" = "${library}"; then -- mule=yes --fi --HAVE_mule=$mule -- --if test -z "silent"; then -- echo "$as_me:$LINENO: result: ${HAVE_mule}" >&5 --echo "${ECHO_T}${HAVE_mule}" >&6 --fi -- --if test "${HAVE_mule}" = "yes"; then -- MULESRC="tex-jp.el" -- MULEELC="tex-jp.elc" -- echo "$as_me:$LINENO: result: yes" >&5 --echo "${ECHO_T}yes" >&6 --else -- echo "$as_me:$LINENO: result: no" >&5 --echo "${ECHO_T}no" >&6 --fi -- -- -- -+EMACS_FLAVOR=emacs - - # The Debian package uses `--disable-build-dir-test'; normal users should - # never need to modify the default behavior. diff --git a/app-emacs/auctex/files/auctex-11.82-configure.diff b/app-emacs/auctex/files/auctex-11.82-configure.diff deleted file mode 100644 index aa0b5b9f408e..000000000000 --- a/app-emacs/auctex/files/auctex-11.82-configure.diff +++ /dev/null @@ -1,79 +0,0 @@ ---- 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.55 b/app-emacs/auctex/files/digest-auctex-11.55 deleted file mode 100644 index 645105e91d3d..000000000000 --- a/app-emacs/auctex/files/digest-auctex-11.55 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 f22ae1ecc513d14b3b5ce3076f461395 auctex-11.55.tar.gz 536057 -RMD160 9b3cd0cac9bb90205a0bc2be8638c2440434a03e auctex-11.55.tar.gz 536057 -SHA256 db0e5a3ac6fbfc1154ddd8cf78fd84d511cfd8221577c1cbf9ec0dd2375189d2 auctex-11.55.tar.gz 536057 diff --git a/app-emacs/auctex/files/digest-auctex-11.82 b/app-emacs/auctex/files/digest-auctex-11.82 deleted file mode 100644 index 8d8fbd75b104..000000000000 --- a/app-emacs/auctex/files/digest-auctex-11.82 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 a18d6ac70b332f47386980f0c4df62e6 auctex-11.82.tar.gz 873084 -RMD160 baeeb39ce7638edbfd12eee24fb58bf1c8673e4c auctex-11.82.tar.gz 873084 -SHA256 ace57b463b1c561caf5c676b2a0404138cd91ca4cfb902198963c5218fccf4c6 auctex-11.82.tar.gz 873084 diff --git a/app-emacs/auctex/files/digest-auctex-11.83 b/app-emacs/auctex/files/digest-auctex-11.83 deleted file mode 100644 index a6d597835120..000000000000 --- a/app-emacs/auctex/files/digest-auctex-11.83 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 19480487036f602841507c0e151674c2 auctex-11.83.tar.gz 889524 -RMD160 3329c1910b00a699e19779fbf00035ce0c059d95 auctex-11.83.tar.gz 889524 -SHA256 c5ee529d40574bfdce880e0d347cdf255a34cd5ff0a7f178dfdb238e621ef53d auctex-11.83.tar.gz 889524 diff --git a/app-emacs/auctex/files/digest-auctex-11.83-r1 b/app-emacs/auctex/files/digest-auctex-11.83-r1 deleted file mode 100644 index a6d597835120..000000000000 --- a/app-emacs/auctex/files/digest-auctex-11.83-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 19480487036f602841507c0e151674c2 auctex-11.83.tar.gz 889524 -RMD160 3329c1910b00a699e19779fbf00035ce0c059d95 auctex-11.83.tar.gz 889524 -SHA256 c5ee529d40574bfdce880e0d347cdf255a34cd5ff0a7f178dfdb238e621ef53d auctex-11.83.tar.gz 889524 diff --git a/app-emacs/auctex/files/digest-auctex-11.84 b/app-emacs/auctex/files/digest-auctex-11.84 deleted file mode 100644 index c88a621c6913..000000000000 --- a/app-emacs/auctex/files/digest-auctex-11.84 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 73970c51221524442c11cde13d0584e9 auctex-11.84.tar.gz 927517 -RMD160 305f5327eac1bfe7f2770deb6617a50926c65f4f auctex-11.84.tar.gz 927517 -SHA256 3f25e99ddecc21422bbddf27ecbfcab49b187eb00f69788aaba1cf818fe557d1 auctex-11.84.tar.gz 927517 |