Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/emacs:graveyard commit in: app-emacs/cmail/files/, app-emacs/cmail/
Date: Thu, 13 Sep 2018 18:56:53
Message-Id: 1536864950.cbf7313f8f2d9520f69ec7cbb8bf85fb9a3e1ceb.ulm@gentoo
1 commit: cbf7313f8f2d9520f69ec7cbb8bf85fb9a3e1ceb
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 13 18:55:50 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 13 18:55:50 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=cbf7313f
7
8 cmail removed 2018-09-13 bug 663030
9
10 app-emacs/cmail/Manifest | 1 +
11 app-emacs/cmail/cmail-2.62-r1.ebuild | 51 +++++++++++++++++++++++++++++++++
12 app-emacs/cmail/files/70cmail-gentoo.el | 5 ++++
13 app-emacs/cmail/metadata.xml | 12 ++++++++
14 4 files changed, 69 insertions(+)
15
16 diff --git a/app-emacs/cmail/Manifest b/app-emacs/cmail/Manifest
17 new file mode 100644
18 index 0000000..a449ae8
19 --- /dev/null
20 +++ b/app-emacs/cmail/Manifest
21 @@ -0,0 +1 @@
22 +DIST cmail-2.62.tar.gz 507137 BLAKE2B b12500fe3bcb58a65436822eed057865eedfdd1ca5f91805987b61d940e187598b6edacadfff83857533b29577ff89836328d7f9fed1ae7f1bc35fcd42129816 SHA512 0b042861b6975910f281e949592bce7d83f94f6f5c78690ad7a4ecd4267b57c1e84fda0746d3018194d4e6d1a3c84a5a4c7fa172ec25027a957ad8400aff17b8
23
24 diff --git a/app-emacs/cmail/cmail-2.62-r1.ebuild b/app-emacs/cmail/cmail-2.62-r1.ebuild
25 new file mode 100644
26 index 0000000..99ad967
27 --- /dev/null
28 +++ b/app-emacs/cmail/cmail-2.62-r1.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=0
34 +
35 +inherit elisp
36 +
37 +DESCRIPTION="A simple mail management system for Emacs"
38 +HOMEPAGE="http://cmail.sourceforge.jp/"
39 +SRC_URI="mirror://sourceforge.jp/${PN}/2191/${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="amd64 ppc x86"
44 +IUSE="l10n_ja"
45 +
46 +RDEPEND="app-emacs/apel
47 + virtual/emacs-flim
48 + app-emacs/semi"
49 +
50 +SITEFILE="70cmail-gentoo.el"
51 +
52 +src_compile() {
53 + emake EMACS="${EMACS}" FLAGS="${EMACSFLAGS}" || die "emake failed"
54 +}
55 +
56 +src_install() {
57 + emake EMACS="${EMACS}" \
58 + FLAGS="${EMACSFLAGS} \
59 + --eval \"(setq CMAIL_ICON_DIR \\\"${D}${SITEETC}/${PN}/icon\\\")\"" \
60 + PREFIX="${D}/usr" \
61 + LISPDIR="${D}/${SITELISP}" \
62 + INFODIR="${D}/usr/share/info" \
63 + VERSION_SPECIFIC_LISPDIR="${D}/${SITELISP}" install \
64 + || die "emake install failed"
65 +
66 + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
67 +
68 + dodoc ChangeLog INTRO.en README.en sample.* \
69 + doc/README.{POP,gnuspop3}.en doc/cmail-r2c.en.doc || die "dodoc failed"
70 +
71 + if use l10n_ja; then
72 + dodoc README.ja RELNOTES.ja doc/FAQ \
73 + doc/README.{FETCHMAIL,POP,bbdb,cmail-crypt,cvs-access} \
74 + doc/README.{feedmail,folders,gnuspop3,imap4} \
75 + doc/README.{multi-account,multi-highlight,nickname} \
76 + doc/cmail-r2c.doc doc/glossary || die "dodoc failed"
77 + else
78 + rm -f "${D}"/usr/share/info/cmail.info*
79 + fi
80 +}
81
82 diff --git a/app-emacs/cmail/files/70cmail-gentoo.el b/app-emacs/cmail/files/70cmail-gentoo.el
83 new file mode 100644
84 index 0000000..5bc1fbb
85 --- /dev/null
86 +++ b/app-emacs/cmail/files/70cmail-gentoo.el
87 @@ -0,0 +1,5 @@
88 +
89 +;;; cmail site-lisp configuration
90 +
91 +(setq cmail-spool-directory "/var/spool/mail")
92 +(autoload 'cmail "cmail" nil t)
93
94 diff --git a/app-emacs/cmail/metadata.xml b/app-emacs/cmail/metadata.xml
95 new file mode 100644
96 index 0000000..ff41b00
97 --- /dev/null
98 +++ b/app-emacs/cmail/metadata.xml
99 @@ -0,0 +1,12 @@
100 +<?xml version="1.0" encoding="UTF-8"?>
101 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
102 +<pkgmetadata>
103 +<maintainer type="project">
104 + <email>gnu-emacs@g.o</email>
105 + <name>Gentoo GNU Emacs project</name>
106 +</maintainer>
107 +<stabilize-allarches/>
108 +<upstream>
109 + <remote-id type="sourceforge-jp">cmail</remote-id>
110 +</upstream>
111 +</pkgmetadata>