diff options
Diffstat (limited to 'app-emacs/wanderlust')
-rw-r--r-- | app-emacs/wanderlust/ChangeLog | 11 | ||||
-rw-r--r-- | app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild (renamed from app-emacs/wanderlust/wanderlust-2.15.9_pre20101102.ebuild) | 28 |
2 files changed, 23 insertions, 16 deletions
diff --git a/app-emacs/wanderlust/ChangeLog b/app-emacs/wanderlust/ChangeLog index 00f8010a8c51..8b8855f174c2 100644 --- a/app-emacs/wanderlust/ChangeLog +++ b/app-emacs/wanderlust/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-emacs/wanderlust -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/ChangeLog,v 1.89 2013/01/21 23:02:01 ulm Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/ChangeLog,v 1.90 2014/02/18 19:38:29 ulm Exp $ + +*wanderlust-2.15.9_p20130619 (18 Feb 2014) + + 18 Feb 2014; Ulrich Müller <ulm@gentoo.org> + -wanderlust-2.15.9_pre20101102.ebuild, +wanderlust-2.15.9_p20130619.ebuild: + New snapshot. Correct versioning to _p because this is after the 2.15.9 tag. + Remove intermediate version. *wanderlust-2.15.9_pre20120923 (21 Jan 2013) diff --git a/app-emacs/wanderlust/wanderlust-2.15.9_pre20101102.ebuild b/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild index 65baf0f2f317..dce0b2f1899e 100644 --- a/app-emacs/wanderlust/wanderlust-2.15.9_pre20101102.ebuild +++ b/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild @@ -1,14 +1,15 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/wanderlust-2.15.9_pre20101102.ebuild,v 1.2 2013/01/21 23:02:01 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/wanderlust-2.15.9_p20130619.ebuild,v 1.1 2014/02/18 19:38:29 ulm Exp $ -EAPI=3 +EAPI=5 inherit elisp DESCRIPTION="Yet Another Message Interface on Emacsen" -HOMEPAGE="http://www.gohome.org/wl/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" +HOMEPAGE="https://github.com/wanderlust/wanderlust + http://emacswiki.org/emacs/WanderLust" +SRC_URI="http://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz" LICENSE="GPL-2+" SLOT="0" @@ -19,8 +20,7 @@ DEPEND=">=app-emacs/apel-10.6 virtual/emacs-flim app-emacs/semi bbdb? ( app-emacs/bbdb )" -RDEPEND="!app-emacs/wanderlust-cvs - ${DEPEND}" +RDEPEND="${DEPEND}" S="${WORKDIR}/${PN}" SITEFILE="50${PN}-gentoo.el" @@ -33,26 +33,26 @@ src_configure() { } src_compile() { - emake || die "emake failed" - emake info || die "emake info failed" + emake + emake info } src_install() { emake \ LISPDIR="${ED}${SITELISP}" \ PIXMAPDIR="${ED}${SITEETC}/wl/icons" \ - install || die "emake install failed" + install elisp-site-file-install "${FILESDIR}/${SITEFILE}" wl || die insinto "${SITEETC}/wl/samples/en" - doins samples/en/* || die - doinfo doc/wl*.info || die - dodoc BUGS ChangeLog INSTALL NEWS README + doins samples/en/* + doinfo doc/wl*.info + dodoc BUGS ChangeLog INSTALL NEWS README.md if use linguas_ja; then insinto "${SITEETC}/wl/samples/ja" - doins samples/ja/* || die + doins samples/ja/* dodoc BUGS.ja INSTALL.ja NEWS.ja README.ja fi } |