diff options
3 files changed, 0 insertions, 76 deletions
diff --git a/app-emacs/wanderlust/Manifest b/app-emacs/wanderlust/Manifest index a73fcda30639..bbd2be4925a0 100644 --- a/app-emacs/wanderlust/Manifest +++ b/app-emacs/wanderlust/Manifest @@ -1,3 +1,2 @@ -DIST wanderlust-2.15.9_p20130619.tar.xz 818124 BLAKE2B b6bbd6f63d862f81a5a0c194f0fe1b276303f75f8ffde29c844f1f7d2d8ef55f1c211ac1d0b6c3357c2507b2abe73ba1c4c8f5fc65e067d93eb6bf23fd8490a6 SHA512 91bdcc1b29370b7be7a2072f4d8c638b3c0604ba31b5419952b848af268e73a3f199f07a88caabec56f66b38013e0f9cd7c1de26b46d1062ddff782e8080d4e0 DIST wanderlust-2.15.9_p20180814-git.tar.gz 1207081 BLAKE2B f52259b15040287f0afcf0768b3ae3237415b44960e205e48d4b658f3e522db993b87bac59ee3d9ba94ad26c830beaf26d9cf5f03830fcb1f01e4f5567ee4804 SHA512 67616cc1d35b25af1b56fa800943ad0c7e7d9b35f99c48fac96b77a68a3eb8db02b36525021ff8bba4d181530505face2a58725b7dff33b1bfe4f48a4314949f DIST wanderlust-2.15.9_p20190623.tar.gz 1210223 BLAKE2B 50416e27062a9837c18660ea9a1a7a3ff596639763965b09925ca16c89617d159b9aa5d08d93d8b5c6a504da2b048df8b4c489d4fc11ff6abc530f741a5d8fb9 SHA512 369f8d93af4d0d98f66c4c8500aa3535e3f772d8a1920c1bdc434f0d9078555f40d0d4278937d97bccf0f417cf1b1fdeb6c8a891d42b2675fb7737382425c91d diff --git a/app-emacs/wanderlust/files/wanderlust-2.15.9_p20130619-default-truncate-lines.patch b/app-emacs/wanderlust/files/wanderlust-2.15.9_p20130619-default-truncate-lines.patch deleted file mode 100644 index d6da446cc84a..000000000000 --- a/app-emacs/wanderlust/files/wanderlust-2.15.9_p20130619-default-truncate-lines.patch +++ /dev/null @@ -1,17 +0,0 @@ ---- a/wl/wl-vars.el.orig 2018-07-27 21:05:15.768467090 -0500 -+++ b/wl/wl-vars.el 2018-07-27 21:05:45.590468576 -0500 -@@ -1742,12 +1742,12 @@ - :group 'wl-pref - :type 'string) - --(defcustom wl-message-truncate-lines default-truncate-lines -+(defcustom wl-message-truncate-lines nil - "*Truncate lines in Message Buffer." - :type 'boolean - :group 'wl-pref) - --(defcustom wl-draft-truncate-lines default-truncate-lines -+(defcustom wl-draft-truncate-lines nil - "*Truncate lines in Draft Buffer." - :type 'boolean - :group 'wl-draft diff --git a/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild b/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild deleted file mode 100644 index d655a9b90794..000000000000 --- a/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit elisp - -DESCRIPTION="Yet Another Message Interface on Emacsen" -HOMEPAGE="https://github.com/wanderlust/wanderlust - https://www.emacswiki.org/emacs/WanderLust" -SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="bbdb ssl l10n_ja" - -DEPEND=">=app-emacs/apel-10.6 - app-emacs/flim - app-emacs/semi - bbdb? ( app-emacs/bbdb )" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}" -ELISP_PATCHES="${P}-default-truncate-lines.patch" -SITEFILE="50${PN}-gentoo.el" - -src_configure() { - local lang="\"en\"" - use l10n_ja && lang="${lang} \"ja\"" - echo "(setq wl-info-lang '(${lang}) wl-news-lang '(${lang}))" >>WL-CFG - use ssl && echo "(setq wl-install-utils t)" >>WL-CFG -} - -src_compile() { - emake - emake info -} - -src_install() { - emake \ - LISPDIR="${ED}${SITELISP}" \ - PIXMAPDIR="${ED}${SITEETC}/wl/icons" \ - install - - elisp-site-file-install "${FILESDIR}/${SITEFILE}" wl - - insinto "${SITEETC}/wl/samples/en" - doins samples/en/* - doinfo doc/wl*.info - dodoc BUGS ChangeLog INSTALL NEWS README.md - - if use l10n_ja; then - insinto "${SITEETC}/wl/samples/ja" - doins samples/ja/* - dodoc BUGS.ja INSTALL.ja NEWS.ja README.ja - fi -} |