summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2010-06-07 12:59:27 +0000
committerUlrich Müller <ulm@gentoo.org>2010-06-07 12:59:27 +0000
commita79a4c54d8714c6e071e8fe2b853f6df50eb8f3a (patch)
tree25dbfeb2278bd759e51e08ffa31c2eb8348bfff0 /app-emacs/wanderlust
parent[sys-apps/gdisk] Version bump per bug #319767 (diff)
downloadgentoo-2-a79a4c54d8714c6e071e8fe2b853f6df50eb8f3a.tar.gz
gentoo-2-a79a4c54d8714c6e071e8fe2b853f6df50eb8f3a.tar.bz2
gentoo-2-a79a4c54d8714c6e071e8fe2b853f6df50eb8f3a.zip
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs/wanderlust')
-rw-r--r--app-emacs/wanderlust/ChangeLog5
-rw-r--r--app-emacs/wanderlust/wanderlust-2.14.0-r5.ebuild67
2 files changed, 4 insertions, 68 deletions
diff --git a/app-emacs/wanderlust/ChangeLog b/app-emacs/wanderlust/ChangeLog
index 8a22e52d7886..a9cffc8bfde1 100644
--- a/app-emacs/wanderlust/ChangeLog
+++ b/app-emacs/wanderlust/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-emacs/wanderlust
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/ChangeLog,v 1.86 2010/06/07 10:46:00 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/ChangeLog,v 1.87 2010/06/07 12:59:27 ulm Exp $
+
+ 07 Jun 2010; Ulrich Mueller <ulm@gentoo.org> -wanderlust-2.14.0-r5.ebuild:
+ Remove old.
07 Jun 2010; Christoph Mende <angelos@gentoo.org>
wanderlust-2.14.0-r6.ebuild:
diff --git a/app-emacs/wanderlust/wanderlust-2.14.0-r5.ebuild b/app-emacs/wanderlust/wanderlust-2.14.0-r5.ebuild
deleted file mode 100644
index 1f5939bb3ddd..000000000000
--- a/app-emacs/wanderlust/wanderlust-2.14.0-r5.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/wanderlust-2.14.0-r5.ebuild,v 1.6 2010/05/14 14:53:04 ulm Exp $
-
-inherit elisp eutils
-
-MY_P="wl-${PV/_/}"
-
-DESCRIPTION="Yet Another Message Interface on Emacsen"
-HOMEPAGE="http://www.gohome.org/wl/"
-SRC_URI="ftp://ftp.gohome.org/wl/stable/${MY_P}.tar.gz
- ftp://ftp.gohome.org/wl/beta/${MY_P}.tar.gz
- mirror://gentoo/${P}-20050405.patch.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc sparc x86"
-IUSE="bbdb ssl linguas_ja"
-
-DEPEND=">=app-emacs/apel-10.6
- virtual/emacs-flim
- app-emacs/semi
- bbdb? ( app-emacs/bbdb )"
-RDEPEND="!app-emacs/wanderlust-cvs
- ${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-SITEFILE="50${PN}-gentoo.el"
-
-src_unpack() {
- unpack ${A}
-
- cd "${S}"
- epatch "${WORKDIR}/${P}-20050405.patch"
- epatch "${FILESDIR}/${P}-smtp-end-of-line.patch"
- epatch "${FILESDIR}/${P}-texinfo-garbage.patch"
-}
-
-src_compile() {
- local lang="\"en\""
- use linguas_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
-
- emake || die "emake failed"
- emake info || die "emake info failed"
-}
-
-src_install() {
- emake \
- LISPDIR="${D}${SITELISP}" \
- PIXMAPDIR="${D}${SITEETC}/wl/icons" \
- install || die "emake install failed"
-
- elisp-site-file-install "${FILESDIR}/${SITEFILE}" wl || die
-
- insinto "${SITEETC}/wl/samples/en"
- doins samples/en/*
- doinfo doc/wl*.info
- dodoc BUGS ChangeLog INSTALL NEWS README
-
- if use linguas_ja; then
- insinto "${SITEETC}/wl/samples/ja"
- doins samples/ja/*
- dodoc BUGS.ja INSTALL.ja NEWS.ja README.ja
- fi
-}