forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-emacs/semi: New snapshot 1.14.7_p20210613
Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Ulrich Müller <[email protected]>
- Loading branch information
Showing
3 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST semi-1.14.7_p20190517.tar.gz 152636 BLAKE2B a22b1f9a5de0a695de2d8e342ca313af05c12a1c0b597890d926496e9ce240e3329365700f91e6268cf399976ec067163ac8197c7a643e499d70851501f63798 SHA512 d25c940fdd0a048d21079d905ae91521a1f1247b8f78145baeba24c994c0d5b30985a76c909a793f82f6253b323fb4699bbf059ea48037bb49ae92505b0c6d18 | ||
DIST semi-1.14.7_p20210613.tar.gz 150809 BLAKE2B 6e91f3c28fbadd3ad0ac7856305d7acb5354df33cfb182924712023e5c7b5dce14176af9a5e5f44e345c60d5ec014e813151ee185a5115d6d4faa8d93d9e63b7 SHA512 aa89900f7f06d76301e109c267e7e3c4d97c7f1e1f075db147fa0a9e91aadef93a58522c7a35f5cca2fb5ba4c05397b98cbb4791f3a8e72242b3dbe7f03c29ad |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- a/mime-ui-en.texi | ||
+++ b/mime-ui-en.texi | ||
@@ -14,6 +14,11 @@ | ||
@author Kazuhiro Ito | ||
@subtitle 2020/09/17 | ||
@end titlepage | ||
+@dircategory GNU Emacs Lisp | ||
+@direntry | ||
+* Semi-en: (mime-ui-en). MIME user interface for GNU Emacs. | ||
+@end direntry | ||
+ | ||
@node Top, Introduction, (dir), (dir) | ||
@top SEMI-EPG 1.14 Manual | ||
|
||
--- a/mime-ui-ja.texi | ||
+++ b/mime-ui-ja.texi | ||
@@ -15,6 +15,11 @@ | ||
@author 伊藤 和博 | ||
@subtitle 2020/09/17 | ||
@end titlepage | ||
+@dircategory GNU Emacs Lisp | ||
+@direntry | ||
+* Semi-ja: (mime-ui-ja). MIME user interface for GNU Emacs. | ||
+@end direntry | ||
+ | ||
@node Top, Introduction, (dir), (dir) | ||
@top SEMI-EPG 1.14 説明書 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
NEED_EMACS=24.5 | ||
|
||
inherit elisp | ||
|
||
DESCRIPTION="A library to provide MIME feature for GNU Emacs" | ||
HOMEPAGE="https://github.com/wanderlust/semi" | ||
GITHUB_SHA1="509f6f0bc2f5d020c63e47d9ad89410dc20bcb6f" | ||
SRC_URI="https://github.com/wanderlust/${PN}/archive/${GITHUB_SHA1}.tar.gz -> ${P}.tar.gz" | ||
S="${WORKDIR}/${PN}-${GITHUB_SHA1}" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" | ||
IUSE="l10n_ja" | ||
|
||
RDEPEND=">=app-emacs/apel-10.8 | ||
>=app-emacs/flim-1.14.9" | ||
DEPEND="${RDEPEND}" | ||
|
||
PATCHES="${FILESDIR}/${PN}-1.14.7_p20210613-info.patch" | ||
SITEFILE="65${PN}-gentoo.el" | ||
|
||
src_compile() { | ||
emake | ||
|
||
${EMACS} ${EMACSFLAGS} --visit mime-ui-en.texi -f texi2info || die | ||
if use l10n_ja; then | ||
${EMACS} ${EMACSFLAGS} \ | ||
--eval "(set-default-coding-systems 'iso-2022-jp)" \ | ||
--visit mime-ui-ja.texi -f texi2info || die | ||
fi | ||
} | ||
|
||
src_install() { | ||
emake PREFIX="${ED}/usr" \ | ||
LISPDIR="${ED}/${SITELISP}" \ | ||
VERSION_SPECIFIC_LISPDIR="${ED}/${SITELISP}" install | ||
|
||
elisp-site-file-install "${FILESDIR}/${SITEFILE}" | ||
|
||
doinfo mime-ui-en.info | ||
dodoc README.en ChangeLog* VERSION NEWS | ||
if use l10n_ja; then | ||
doinfo mime-ui-ja.info | ||
dodoc README.ja | ||
fi | ||
} |