Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/libpst: ChangeLog libpst-0.6.38.ebuild
Date: Mon, 22 Jun 2009 09:06:08
Message-Id: E1MIfTa-0003RR-6g@stork.gentoo.org
1 patrick 09/06/22 09:06:06
2
3 Modified: ChangeLog
4 Added: libpst-0.6.38.ebuild
5 Log:
6 Bump to 0.6.38, python bits disabled for now. Fixes #274187.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 net-mail/libpst/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 15 Jun 2009 03:54:38 -0000 1.15
23 +++ ChangeLog 22 Jun 2009 09:06:06 -0000 1.16
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-mail/libpst
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.15 2009/06/15 03:54:38 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.16 2009/06/22 09:06:06 patrick Exp $
29 +
30 +*libpst-0.6.38 (22 Jun 2009)
31 +
32 + 22 Jun 2009; Patrick Lauer <patrick@g.o> +libpst-0.6.38.ebuild:
33 + Bump to 0.6.38, python bits disabled for now. Fixes #274187.
34
35 15 Jun 2009; Jeroen Roovers <jer@g.o> libpst-0.6.37.ebuild:
36 Marked ~hppa (bug #271002).
37
38
39
40 1.1 net-mail/libpst/libpst-0.6.38.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/libpst-0.6.38.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/libpst-0.6.38.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libpst-0.6.38.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.6.38.ebuild,v 1.1 2009/06/22 09:06:06 patrick Exp $
50
51 EAPI="2"
52
53 inherit eutils toolchain-funcs
54
55 DESCRIPTION="Tools and library for reading Outlook files (.pst format)"
56 HOMEPAGE="http://www.five-ten-sg.com/libpst/"
57 SRC_URI="http://www.five-ten-sg.com/${PN}/packages/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~x86"
62 IUSE="debug"
63
64 # newest version optionally pulls in boost for py bindings
65 RDEPEND="media-libs/gd[png]
66 media-gfx/imagemagick[png]"
67 #>=dev-libs/boost-1.35.0-r5[python]"
68 DEPEND="${RDEPEND}"
69
70 # we disable the python bindings for now. Feel free to fix the configure script to know about py 2.6 and
71 # such advanced concepts ...
72 src_configure() {
73 econf \
74 $(use_enable debug pst-debug) \
75 --enable-libpst-shared \
76 --disable-python
77 }
78
79 src_compile() {
80 emake CC=$(tc-getCC) || die "emake failed"
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die "make install failed"
85 dodoc AUTHORS ChangeLog NEWS TODO || die "dodoc failed"
86 }