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: ChangeLog vm-8.0.5.504.ebuild
Date: Sun, 04 Nov 2007 08:22:47
Message-Id: E1Ioakk-0006iv-Vz@stork.gentoo.org
1 ulm 07/11/04 08:22:42
2
3 Modified: ChangeLog
4 Added: vm-8.0.5.504.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.3.17)
8
9 Revision Changes Path
10 1.40 app-emacs/vm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 31 Oct 2007 06:40:04 -0000 1.39
23 +++ ChangeLog 4 Nov 2007 08:22:42 -0000 1.40
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emacs/vm
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v 1.39 2007/10/31 06:40:04 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/ChangeLog,v 1.40 2007/11/04 08:22:42 ulm Exp $
29 +
30 +*vm-8.0.5.504 (04 Nov 2007)
31 +
32 + 04 Nov 2007; Ulrich Mueller <ulm@g.o> +vm-8.0.5.504.ebuild:
33 + Version bump.
34
35 31 Oct 2007; Ulrich Mueller <ulm@g.o> vm-8.0.2.487-r1.ebuild:
36 Add ssl USE flag. Thanks to flameeyes for the suggestion.
37
38
39
40 1.1 app-emacs/vm/vm-8.0.5.504.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/vm-8.0.5.504.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/vm/vm-8.0.5.504.ebuild?rev=1.1&content-type=text/plain
44
45 Index: vm-8.0.5.504.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-emacs/vm/vm-8.0.5.504.ebuild,v 1.1 2007/11/04 08:22:42 ulm Exp $
50
51 inherit elisp eutils versionator
52
53 VM_PV=$(replace_version_separator 3 '-')
54 VM_P=${PN}-${VM_PV}
55
56 DESCRIPTION="The VM mail reader for Emacs"
57 HOMEPAGE="http://www.nongnu.org/viewmail/"
58 SRC_URI="http://download.savannah.nongnu.org/releases/viewmail/${VM_P}.tgz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
63 IUSE="bbdb ssl"
64
65 DEPEND="bbdb? ( app-emacs/bbdb )"
66 RDEPEND="${DEPEND}
67 ssl? ( net-misc/stunnel )"
68
69 S="${WORKDIR}/${VM_P}"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74
75 if ! use bbdb; then
76 elog "Excluding vm-pcrisis.el since the \"bbdb\" USE flag is not set."
77 epatch "${FILESDIR}/vm-8.0-no-pcrisis.patch"
78 fi
79 }
80
81 src_compile() {
82 local myconf
83 use bbdb && myconf="--with-other-dirs=${SITELISP}/bbdb"
84 econf --with-emacs="emacs" \
85 --with-pixmapdir="/usr/share/pixmaps/vm" \
86 ${myconf} || die "econf failed"
87 emake || die "emake failed"
88 }
89
90 src_install() {
91 emake -j1 DESTDIR="${D}" install || die "emake install failed"
92 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
93 dodoc NEWS README TODO example.vm || die "dodoc failed"
94 }
95
96
97
98 --
99 gentoo-commits@g.o mailing list