diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2005-10-29 20:25:08 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2005-10-29 20:25:08 +0000 |
commit | c022627300f78811445ed89718291d0593a6513a (patch) | |
tree | dd4dfe81f586bb982a89342d131f440a35da3de6 /dev-lang/erlang/files | |
parent | Stable on amd64. (diff) | |
download | gentoo-2-c022627300f78811445ed89718291d0593a6513a.tar.gz gentoo-2-c022627300f78811445ed89718291d0593a6513a.tar.bz2 gentoo-2-c022627300f78811445ed89718291d0593a6513a.zip |
New upstream version; Added epoll support and condition support for dev-lang/tk via X USE flag; Resolves Bug #106208.
(Portage version: 2.0.53_rc6)
Diffstat (limited to 'dev-lang/erlang/files')
-rw-r--r-- | dev-lang/erlang/files/10.2.7-manpage-emacs-gentoo.patch | 31 | ||||
-rw-r--r-- | dev-lang/erlang/files/digest-erlang-10.2.7 | 4 | ||||
-rw-r--r-- | dev-lang/erlang/files/erlang-10.2.7-export-TARGET.patch | 11 |
3 files changed, 46 insertions, 0 deletions
diff --git a/dev-lang/erlang/files/10.2.7-manpage-emacs-gentoo.patch b/dev-lang/erlang/files/10.2.7-manpage-emacs-gentoo.patch new file mode 100644 index 000000000000..a5183d480cd6 --- /dev/null +++ b/dev-lang/erlang/files/10.2.7-manpage-emacs-gentoo.patch @@ -0,0 +1,31 @@ +diff -ur otp_src_R10B-6.orig/lib/tools/emacs/erlang.el otp_src_R10B-6/lib/tools/emacs/erlang.el +--- otp_src_R10B-6.orig/lib/tools/emacs/erlang.el 2004-09-30 02:05:50.000000000 -0500 ++++ otp_src_R10B-6/lib/tools/emacs/erlang.el 2005-07-18 13:52:13.000000000 -0500 +@@ -2518,7 +2518,7 @@ + + (defun erlang-man-make-menu-item (file) + "Create a menu item containing the name of the man page." +- (and (string-match ".*/\\([^/]+\\)\\.[^.]$" file) ++ (and (string-match ".*/\\([^/]+\\)\\.[0-9]erl\\.gz$" file) + (let ((page (substring file (match-beginning 1) (match-end 1)))) + (list (capitalize page) + (list 'lambda '() +@@ -2529,7 +2529,7 @@ + + (defun erlang-man-get-files (dir) + "Return files in directory DIR." +- (directory-files dir t ".*\\.[0-9]\\'")) ++ (directory-files dir t ".*\\.[0-9]erl\\.gz\\'")) + + + (defun erlang-man-module (&optional module) +@@ -2690,7 +2690,7 @@ + (error nil)) + (if file + (let ((process-environment (copy-sequence process-environment))) +- (if (string-match "\\(.*\\)/man[^/]*/\\([^/]+\\)\\.[^.]$" file) ++ (if (string-match "\\(.*\\)/man[^/]*/\\([^/]+\\)\\.[0-9]erl.gz$" file) + (let ((dir (substring file (match-beginning 1) (match-end 1))) + (page (substring file (match-beginning 2) (match-end 2)))) + (if (fboundp 'setenv) +Only in otp_src_R10B-6/lib/tools/emacs: erlang.el~ diff --git a/dev-lang/erlang/files/digest-erlang-10.2.7 b/dev-lang/erlang/files/digest-erlang-10.2.7 new file mode 100644 index 000000000000..fb15461fddfa --- /dev/null +++ b/dev-lang/erlang/files/digest-erlang-10.2.7 @@ -0,0 +1,4 @@ +MD5 c73010c3d6c929c4474b8b8b38a4925c otp_doc_html_R10B-7.tar.gz 4601134 +MD5 53b251d1a690d5a97434c6a5b0086921 otp_doc_man_R10B-7.tar.gz 601650 +MD5 fc039c62862ebae141e27370401aaab0 otp_src_R10B-7.tar.gz 10058423 +MD5 37b6e5972b2cbf536dbbf55fe61c6251 otp_src_R10B-7_epoll.patch 14823 diff --git a/dev-lang/erlang/files/erlang-10.2.7-export-TARGET.patch b/dev-lang/erlang/files/erlang-10.2.7-export-TARGET.patch new file mode 100644 index 000000000000..13a68021e8be --- /dev/null +++ b/dev-lang/erlang/files/erlang-10.2.7-export-TARGET.patch @@ -0,0 +1,11 @@ +--- Makefile.in ++++ Makefile.in +@@ -85,7 +85,7 @@ + MAKE = @MAKE_PROG@ + + # This should be set to the target "arch-vendor-os" +-TARGET = @TARGET@ ++export TARGET = @TARGET@ + + # A BSD compatible install program + INSTALL = @INSTALL@ |