diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2003-07-07 18:27:52 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2003-07-07 18:27:52 +0000 |
commit | 7442da2e1f1acfbc6b48dcba9ddbd048b12af0ca (patch) | |
tree | 78713d1dcf160caa283c543b78c7191ebe638d94 /app-emacs/wl | |
parent | Marking stable on x86 (diff) | |
download | historical-7442da2e1f1acfbc6b48dcba9ddbd048b12af0ca.tar.gz historical-7442da2e1f1acfbc6b48dcba9ddbd048b12af0ca.tar.bz2 historical-7442da2e1f1acfbc6b48dcba9ddbd048b12af0ca.zip |
Added ssl support.
Diffstat (limited to 'app-emacs/wl')
-rw-r--r-- | app-emacs/wl/ChangeLog | 5 | ||||
-rw-r--r-- | app-emacs/wl/Manifest | 4 | ||||
-rw-r--r-- | app-emacs/wl/wl-2.10.1.ebuild | 19 |
3 files changed, 21 insertions, 7 deletions
diff --git a/app-emacs/wl/ChangeLog b/app-emacs/wl/ChangeLog index d5b71678d754..86997b6713b0 100644 --- a/app-emacs/wl/ChangeLog +++ b/app-emacs/wl/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for app-emacs/wl # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/wl/ChangeLog,v 1.8 2003/07/06 22:53:05 nakano Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/wl/ChangeLog,v 1.9 2003/07/07 18:27:38 nakano Exp $ *wl-2.10.1 (06 Jul 2003) + 07 Jul 2003; Masatomo Nakano <nakano@gentoo.org> wl-2.10.1.ebuild: + Added ssl support. + 06 Jul 2003; Masatomo Nakano <nakano@gentoo.org> wl-2.10.1.ebuild: Version bumped as unstable. diff --git a/app-emacs/wl/Manifest b/app-emacs/wl/Manifest index 36a0ac836404..ee64859a0b91 100644 --- a/app-emacs/wl/Manifest +++ b/app-emacs/wl/Manifest @@ -1,8 +1,8 @@ MD5 a74545efb23ae006d89a69ead03f8313 wl-2.8.1.ebuild 1262 -MD5 08de4690b21c5fe2ad9121478fc7fbeb wl-2.10.1.ebuild 1257 +MD5 74f5fb69c12588c2ea72f8baf1c1091f wl-2.10.1.ebuild 1462 MD5 4694a65c4ac9fdb68c775efd35cc5c57 wl-2.10.0-r1.ebuild 1321 MD5 eca35eca5e14fd8d79c3e9662eb858c5 wl-2.10.0.ebuild 1255 -MD5 848d4f416329d6b585f94f4c253c8313 ChangeLog 1092 +MD5 b8cef18279d86839853a3ef15cf120ac ChangeLog 1183 MD5 c633c96cff2fe04a6aec8ba3a96440d7 files/70wl-gentoo.el 298 MD5 3ad7747decc89ea13c0b23de355b79bb files/digest-wl-2.10.0 61 MD5 2cc71c29a99b30471c7dbecae5f49382 files/digest-wl-2.10.1 61 diff --git a/app-emacs/wl/wl-2.10.1.ebuild b/app-emacs/wl/wl-2.10.1.ebuild index 03587deffde0..06aa966c2513 100644 --- a/app-emacs/wl/wl-2.10.1.ebuild +++ b/app-emacs/wl/wl-2.10.1.ebuild @@ -1,24 +1,35 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/wl/wl-2.10.1.ebuild,v 1.1 2003/07/06 22:53:05 nakano Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/wl/wl-2.10.1.ebuild,v 1.2 2003/07/07 18:27:39 nakano Exp $ inherit elisp -DESCRIPTION="wanderlust is a mail/news reader supporting IMAP4rev1 for emacsen" +IUSE="ssl" +DESCRIPTION="a mail/news reader supporting IMAP4rev1 for emacsen" HOMEPAGE="http://www.gohome.org/wl/index.html" SRC_URI="ftp://ftp.gohome.org/wl/stable/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="~x86 ~alpha ~sparc ~ppc" DEPEND="virtual/emacs >=app-emacs/apel-10.3 >=app-emacs/flim-1.14.3 >=app-emacs/semi-1.14.3" +# >=virtual/flim-1.14.3 +# >=virtual/semi-1.14.3 S="${WORKDIR}/${P}" +src_unpack() { + unpack ${A} + if [ -n "`use ssl`" ] ; then + cd ${S} + echo "(setq wl-install-utils t)" >> WL-CFG + fi +} + src_compile() { make || die make info || die @@ -30,7 +41,7 @@ src_install() { PIXMAPDIR=${D}/usr/share/${PN}/icons \ install || die - elisp-site-file-install ${FILESDIR}/70wl-gentoo.el + elisp-site-file-install ${FILESDIR}/70wl-gentoo.el || die dodir /usr/share/${PN}/samples |