diff options
author | Ulrich Müller <ulm@gentoo.org> | 2008-01-27 23:49:46 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2008-01-27 23:49:46 +0000 |
commit | bf932540dd6676e665dec1599f095ef870a61f74 (patch) | |
tree | db818a424cca15434f72f82eebce69d5fc9cd3d1 /app-emacs/wanderlust | |
parent | Add missing intltool DEPEND (diff) | |
download | gentoo-2-bf932540dd6676e665dec1599f095ef870a61f74.tar.gz gentoo-2-bf932540dd6676e665dec1599f095ef870a61f74.tar.bz2 gentoo-2-bf932540dd6676e665dec1599f095ef870a61f74.zip |
New CVS snapshot.
(Portage version: 2.1.4)
Diffstat (limited to 'app-emacs/wanderlust')
-rw-r--r-- | app-emacs/wanderlust/ChangeLog | 10 | ||||
-rw-r--r-- | app-emacs/wanderlust/files/digest-wanderlust-2.15.5_pre20071215 | 3 | ||||
-rw-r--r-- | app-emacs/wanderlust/wanderlust-2.15.5_pre20071215.ebuild | 46 |
3 files changed, 57 insertions, 2 deletions
diff --git a/app-emacs/wanderlust/ChangeLog b/app-emacs/wanderlust/ChangeLog index 76ad2005cda3..4cad5cca08b1 100644 --- a/app-emacs/wanderlust/ChangeLog +++ b/app-emacs/wanderlust/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emacs/wanderlust -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/ChangeLog,v 1.67 2007/12/25 16:44:05 phreak Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/ChangeLog,v 1.68 2008/01/27 23:49:45 ulm Exp $ + +*wanderlust-2.15.5_pre20071215 (27 Jan 2008) + + 27 Jan 2008; Ulrich Mueller <ulm@gentoo.org> + +wanderlust-2.15.5_pre20071215.ebuild: + New CVS snapshot. 25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing usata from metadata.xml as per #22931. diff --git a/app-emacs/wanderlust/files/digest-wanderlust-2.15.5_pre20071215 b/app-emacs/wanderlust/files/digest-wanderlust-2.15.5_pre20071215 new file mode 100644 index 000000000000..0c9b5ee02c8f --- /dev/null +++ b/app-emacs/wanderlust/files/digest-wanderlust-2.15.5_pre20071215 @@ -0,0 +1,3 @@ +MD5 28491fd5c33cd6da9c7074584cb408d4 wanderlust-2.15.5_pre20071215.tar.bz2 869234 +RMD160 49390b600a92ef04257d362591d27c8b917b63c8 wanderlust-2.15.5_pre20071215.tar.bz2 869234 +SHA256 566f9a0ee683ab719edbd1589fc97e0eaa9a472e4d2fa44dfec15e1094f742fe wanderlust-2.15.5_pre20071215.tar.bz2 869234 diff --git a/app-emacs/wanderlust/wanderlust-2.15.5_pre20071215.ebuild b/app-emacs/wanderlust/wanderlust-2.15.5_pre20071215.ebuild new file mode 100644 index 000000000000..8579b063143a --- /dev/null +++ b/app-emacs/wanderlust/wanderlust-2.15.5_pre20071215.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/wanderlust/wanderlust-2.15.5_pre20071215.ebuild,v 1.1 2008/01/27 23:49:45 ulm Exp $ + +inherit elisp + +DESCRIPTION="Yet Another Message Interface on Emacsen" +HOMEPAGE="http://www.gohome.org/wl/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="bbdb ssl" + +DEPEND=">=app-emacs/apel-10.6 + virtual/flim + app-emacs/semi + bbdb? ( app-emacs/bbdb ) + !app-emacs/wanderlust-cvs" + +SITEFILE=70wl-gentoo.el + +src_compile() { + 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}/usr/share/wl/icons" \ + install || die "emake install failed" + + elisp-site-file-install "${FILESDIR}/${SITEFILE}" wl \ + || die "elisp-site-file-install failed" + + insinto /usr/share/wl/samples/ja + doins samples/ja/* + insinto /usr/share/wl/samples/en + doins samples/en/* + + doinfo doc/wl-ja.info doc/wl.info + dodoc BUGS* ChangeLog INSTALL* NEWS* README* +} |