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: libpst-0.6.59.ebuild ChangeLog
Date: Thu, 23 May 2013 06:06:15
Message-Id: 20130523060608.A2FDE2171D@flycatcher.gentoo.org
1 patrick 13/05/23 06:06:08
2
3 Modified: ChangeLog
4 Added: libpst-0.6.59.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.42 net-mail/libpst/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.42&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.42&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?r1=1.41&r2=1.42
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v
20 retrieving revision 1.41
21 retrieving revision 1.42
22 diff -u -r1.41 -r1.42
23 --- ChangeLog 26 Mar 2013 11:41:30 -0000 1.41
24 +++ ChangeLog 23 May 2013 06:06:08 -0000 1.42
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-mail/libpst
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.41 2013/03/26 11:41:30 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.42 2013/05/23 06:06:08 patrick Exp $
30 +
31 +*libpst-0.6.59 (23 May 2013)
32 +
33 + 23 May 2013; Patrick Lauer <patrick@g.o> +libpst-0.6.59.ebuild:
34 + Bump
35
36 26 Mar 2013; Agostino Sarubbo <ago@g.o> libpst-0.6.58.ebuild:
37 Stable for x86, wrt bug #463120
38
39
40
41 1.1 net-mail/libpst/libpst-0.6.59.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/libpst-0.6.59.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/libpst-0.6.59.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libpst-0.6.59.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.6.59.ebuild,v 1.1 2013/05/23 06:06:08 patrick Exp $
51
52 EAPI=4
53 PYTHON_DEPEND="python? 2"
54
55 inherit autotools eutils python
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 gnome-extra/libgsf"
68 DEPEND="${RDEPEND}
69 virtual/libiconv
70 virtual/pkgconfig
71 dii? ( media-libs/gd[png] )
72 python? ( >=dev-libs/boost-1.48[python] )"
73
74 pkg_setup() {
75 if use python; then
76 python_set_active_version 2
77 python_pkg_setup
78 fi
79 }
80
81 src_prepare() {
82 # don't build the static python library
83 epatch "${FILESDIR}"/${PN}-0.6.52-no-static-python-lib.patch
84
85 # fix pkgconfig file for static linking
86 epatch "${FILESDIR}"/${PN}-0.6.53-pkgconfig-static.patch
87
88 # conditionally install the extra documentation
89 use doc || { sed -i -e "/SUBDIRS/s: html::" Makefile.am || die; }
90
91 # don't install duplicate docs
92 sed -i -e "/^html_DATA =/d" Makefile.am || die
93
94 eautoreconf
95 }
96
97 src_configure() {
98 econf \
99 --enable-libpst-shared \
100 $(use_enable debug pst-debug) \
101 $(use_enable dii) \
102 $(use_enable python) \
103 $(use_enable static-libs static) \
104 $(use python && echo --with-boost-python=boost_python-${PYTHON_ABI})
105 }
106
107 src_install() {
108 default
109 prune_libtool_files --all
110 }