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: metadata.xml ChangeLog libpst-0.6.41.ebuild
Date: Tue, 01 Sep 2009 03:22:31
Message-Id: E1MiOlq-0000Va-8p@stork.gentoo.org
1 patrick 09/09/01 08:31:18
2
3 Modified: metadata.xml ChangeLog
4 Added: libpst-0.6.41.ebuild
5 Log:
6 Bump to 0.6.41, many nice cleanups by RB. Finally enables python again. Closes #282726
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 net-mail/libpst/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/metadata.xml?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/metadata.xml?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/metadata.xml?r1=1.2&r2=1.3
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-mail/libpst/metadata.xml,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- metadata.xml 4 Dec 2004 10:59:48 -0000 1.2
23 +++ metadata.xml 1 Sep 2009 08:31:17 -0000 1.3
24 @@ -2,4 +2,7 @@
25 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
26 <pkgmetadata>
27 <herd>forensics</herd>
28 + <use>
29 + <flag name="dii">enable dii support</flag>
30 + </use>
31 </pkgmetadata>
32
33
34
35 1.18 net-mail/libpst/ChangeLog
36
37 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.18&view=markup
38 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.18&content-type=text/plain
39 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/ChangeLog?r1=1.17&r2=1.18
40
41 Index: ChangeLog
42 ===================================================================
43 RCS file: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v
44 retrieving revision 1.17
45 retrieving revision 1.18
46 diff -u -r1.17 -r1.18
47 --- ChangeLog 22 Jun 2009 09:46:12 -0000 1.17
48 +++ ChangeLog 1 Sep 2009 08:31:18 -0000 1.18
49 @@ -1,6 +1,13 @@
50 # ChangeLog for net-mail/libpst
51 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
52 -# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.17 2009/06/22 09:46:12 patrick Exp $
53 +# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.18 2009/09/01 08:31:18 patrick Exp $
54 +
55 +*libpst-0.6.41 (01 Sep 2009)
56 +
57 + 01 Sep 2009; Patrick Lauer <patrick@g.o> +libpst-0.6.41.ebuild,
58 + metadata.xml:
59 + Bump to 0.6.41, many nice cleanups by RB. Finally enables python again.
60 + Closes #282726
61
62 22 Jun 2009; Patrick Lauer <patrick@g.o> -libpst-0.3.4.ebuild,
63 -libpst-0.4.1-r1.ebuild, -libpst-0.5.1.ebuild, -libpst-0.5.3.ebuild:
64
65
66
67 1.1 net-mail/libpst/libpst-0.6.41.ebuild
68
69 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/libpst-0.6.41.ebuild?rev=1.1&view=markup
70 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/libpst/libpst-0.6.41.ebuild?rev=1.1&content-type=text/plain
71
72 Index: libpst-0.6.41.ebuild
73 ===================================================================
74 # Copyright 1999-2009 Gentoo Foundation
75 # Distributed under the terms of the GNU General Public License v2
76 # $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.6.41.ebuild,v 1.1 2009/09/01 08:31:18 patrick Exp $
77
78 EAPI="2"
79
80 inherit eutils toolchain-funcs
81
82 DESCRIPTION="Tools and library for reading Outlook files (.pst format)"
83 HOMEPAGE="http://www.five-ten-sg.com/libpst/"
84 SRC_URI="http://www.five-ten-sg.com/${PN}/packages/${P}.tar.gz"
85
86 LICENSE="GPL-2"
87 SLOT="0"
88 KEYWORDS="~alpha ~amd64 ~hppa ~x86"
89 IUSE="debug dii python"
90
91 RDEPEND="dii? ( media-gfx/imagemagick[png] )"
92 DEPEND="virtual/libiconv
93 dii? ( media-libs/gd[png] )
94 python? ( >=dev-libs/boost-1.35.0-r5[python] )
95 ${RDEPEND}"
96
97 src_configure() {
98 econf \
99 $(use_enable debug pst-debug) \
100 $(use_enable dii) \
101 $(use_enable python) \
102 --enable-libpst-shared
103 }
104
105 src_compile() {
106 emake CC=$(tc-getCC) || die "emake failed"
107 }
108
109 src_install() {
110 emake DESTDIR="${D}" install || die "make install failed"
111 dodoc AUTHORS ChangeLog NEWS TODO || die "dodoc failed"
112 }