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: libpst-0.6.54.ebuild ChangeLog
Date: Sun, 01 Jan 2012 01:51:23
Message-Id: 20120101015112.29D492004B@flycatcher.gentoo.org
1 radhermit 12/01/01 01:51:12
2
3 Modified: ChangeLog
4 Added: libpst-0.6.54.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.25 net-mail/libpst/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 5 Aug 2011 05:07:48 -0000 1.24
24 +++ ChangeLog 1 Jan 2012 01:51:12 -0000 1.25
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-mail/libpst
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.24 2011/08/05 05:07:48 radhermit Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.25 2012/01/01 01:51:12 radhermit Exp $
31 +
32 +*libpst-0.6.54 (01 Jan 2012)
33 +
34 + 01 Jan 2012; Tim Harder <radhermit@g.o> +libpst-0.6.54.ebuild:
35 + Version bump.
36
37 *libpst-0.6.53 (05 Aug 2011)
38
39
40
41
42 1.1 net-mail/libpst/libpst-0.6.54.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/libpst-0.6.54.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/libpst-0.6.54.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libpst-0.6.54.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.6.54.ebuild,v 1.1 2012/01/01 01:51:12 radhermit Exp $
52
53 EAPI=4
54
55 inherit autotools eutils
56
57 DESCRIPTION="Tools and library for reading Outlook files (.pst format)"
58 HOMEPAGE="http://www.five-ten-sg.com/libpst/"
59 SRC_URI="http://www.five-ten-sg.com/${PN}/packages/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="debug dii doc python static-libs"
65
66 RDEPEND="dii? ( media-gfx/imagemagick[png] )"
67 DEPEND="${RDEPEND}
68 virtual/libiconv
69 dii? ( media-libs/gd[png] )
70 python? ( >=dev-libs/boost-1.35.0-r5[python] )"
71
72 src_prepare() {
73 # Don't build the static python library
74 epatch "${FILESDIR}"/${PN}-0.6.52-no-static-python-lib.patch
75
76 # Fix pkgconfig file for static linking
77 epatch "${FILESDIR}"/${PN}-0.6.53-pkgconfig-static.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 .la files
98 find "${ED}" -name '*.la' -exec rm {} +
99 }