Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/vm: vm-8.0.12-r2.ebuild ChangeLog
Date: Sat, 31 Jan 2009 10:58:22
Message-Id: E1LTDYK-0004rq-2o@stork.gentoo.org
1 ulm 09/01/31 10:58:20
2
3 Modified: ChangeLog
4 Added: vm-8.0.12-r2.ebuild
5 Log:
6 Fix problem with Supercite, bug 256886.
7 (Portage version: 2.2_rc23/cvs/Linux i686)
8
9 Revision Changes Path
10 1.60 app-emacs/vm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/ChangeLog?rev=1.60&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/ChangeLog?rev=1.60&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/ChangeLog?r1=1.59&r2=1.60
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v
19 retrieving revision 1.59
20 retrieving revision 1.60
21 diff -u -r1.59 -r1.60
22 --- ChangeLog 9 Nov 2008 18:24:02 -0000 1.59
23 +++ ChangeLog 31 Jan 2009 10:58:19 -0000 1.60
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-emacs/vm
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v 1.59 2008/11/09 18:24:02 ulm Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v 1.60 2009/01/31 10:58:19 ulm Exp $
30 +
31 +*vm-8.0.12-r2 (31 Jan 2009)
32 +
33 + 31 Jan 2009; Ulrich Mueller <ulm@g.o>
34 + +files/vm-8.0.12-supercite-yank.patch, +vm-8.0.12-r2.ebuild:
35 + Fix problem with Supercite, bug 256886.
36
37 *vm-8.0.12-r1 (09 Nov 2008)
38
39
40
41
42 1.1 app-emacs/vm/vm-8.0.12-r2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/vm-8.0.12-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/vm-8.0.12-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: vm-8.0.12-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/vm-8.0.12-r2.ebuild,v 1.1 2009/01/31 10:58:19 ulm Exp $
52
53 inherit elisp eutils
54
55 DESCRIPTION="The VM mail reader for Emacs"
56 HOMEPAGE="http://www.nongnu.org/viewmail/"
57 SRC_URI="http://download.savannah.nongnu.org/releases/viewmail/${P}.tgz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
62 IUSE="bbdb ssl"
63
64 DEPEND="bbdb? ( app-emacs/bbdb )"
65 RDEPEND="${DEPEND}
66 ssl? ( net-misc/stunnel )"
67
68 SITEFILE="50${PN}-gentoo.el"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73
74 epatch "${FILESDIR}/${P}-autoload-vm-pine.patch" #246185
75 epatch "${FILESDIR}/${P}-supercite-yank.patch" #256886
76
77 if ! use bbdb; then
78 elog "Excluding vm-pcrisis.el since the \"bbdb\" USE flag is not set."
79 epatch "${FILESDIR}/vm-8.0-no-pcrisis.patch"
80 fi
81
82 # fix vm-version, bug 235563
83 #sed -i -e "/^(defvar vm-version /s/nil/\"${PV}\"/" lisp/vm-version.el \
84 # || die "sed failed"
85 }
86
87 src_compile() {
88 local myconf
89 use bbdb && myconf="--with-other-dirs=${SITELISP}/bbdb"
90 econf --with-emacs="emacs" \
91 --with-pixmapdir="/usr/share/pixmaps/vm" \
92 ${myconf} || die "econf failed"
93 emake || die "emake failed"
94 }
95
96 src_install() {
97 emake -j1 DESTDIR="${D}" install || die "emake install failed"
98 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
99 dodoc NEWS README TODO example.vm || die "dodoc failed"
100 }