Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/libpst: ChangeLog libpst-0.6.52.ebuild
Date: Sat, 28 May 2011 23:43:38
Message-Id: 20110528234327.0DB9F20054@flycatcher.gentoo.org
1 radhermit 11/05/28 23:43:27
2
3 Modified: ChangeLog
4 Added: libpst-0.6.52.ebuild
5 Log:
6 Version bump. Update to EAPI 4, add doc and static-libs USE flags, and don't install the static python library and libtool archive file (bug #298881 by Diego Elio Pettenò and Kacper Kowalik).
7
8 (Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.23 net-mail/libpst/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 21 Dec 2009 15:38:37 -0000 1.22
24 +++ ChangeLog 28 May 2011 23:43:26 -0000 1.23
25 @@ -1,6 +1,14 @@
26 # ChangeLog for net-mail/libpst
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.22 2009/12/21 15:38:37 ssuominen Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.23 2011/05/28 23:43:26 radhermit Exp $
31 +
32 +*libpst-0.6.52 (28 May 2011)
33 +
34 + 28 May 2011; Tim Harder <radhermit@g.o> +libpst-0.6.52.ebuild,
35 + +files/libpst-0.6.52-no-static-python-lib.patch:
36 + Version bump. Update to EAPI 4, add doc and static-libs USE flags, and don't
37 + install the static python library and libtool archive file (bug #298881 by
38 + Diego Elio Pettenò and Kacper Kowalik).
39
40 21 Dec 2009; Samuli Suominen <ssuominen@g.o> libpst-0.6.41.ebuild,
41 +files/libpst-0.6.41-asneeded.patch:
42
43
44
45 1.1 net-mail/libpst/libpst-0.6.52.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/libpst-0.6.52.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/libpst-0.6.52.ebuild?rev=1.1&content-type=text/plain
49
50 Index: libpst-0.6.52.ebuild
51 ===================================================================
52 # Copyright 1999-2011 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.6.52.ebuild,v 1.1 2011/05/28 23:43:26 radhermit Exp $
55
56 EAPI=4
57
58 inherit autotools eutils
59
60 DESCRIPTION="Tools and library for reading Outlook files (.pst format)"
61 HOMEPAGE="http://www.five-ten-sg.com/libpst/"
62 SRC_URI="http://www.five-ten-sg.com/${PN}/packages/${P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
67 IUSE="debug dii doc python static-libs"
68
69 RDEPEND="dii? ( media-gfx/imagemagick[png] )"
70 DEPEND="${RDEPEND}
71 virtual/libiconv
72 dii? ( media-libs/gd[png] )
73 python? ( >=dev-libs/boost-1.35.0-r5[python] )"
74
75 src_prepare() {
76 # Don't build the static python library
77 epatch "${FILESDIR}"/${P}-no-static-python-lib.patch
78
79 # Conditionally install the extra documentation
80 use doc || sed -i -e "/SUBDIRS/s: html::" Makefile.am
81
82 eautomake
83 }
84
85 src_configure() {
86 econf \
87 --enable-libpst-shared \
88 $(use_enable debug pst-debug) \
89 $(use_enable dii) \
90 $(use_enable python) \
91 $(use_enable static-libs static)
92 }
93
94 src_install() {
95 default
96
97 # Remove useless python .la files (bug #298881)
98 find "${ED}" -name '_libpst.la' -exec rm {} +
99
100 use static-libs || find "${ED}" -name '*.la' -exec rm {} +
101 }