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.55.ebuild ChangeLog
Date: Mon, 27 Aug 2012 09:32:11
Message-Id: 20120827093200.0D74E208D3@flycatcher.gentoo.org
1 patrick 12/08/27 09:31:59
2
3 Modified: ChangeLog
4 Added: libpst-0.6.55.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.34 net-mail/libpst/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 28 Jun 2012 10:40:11 -0000 1.33
24 +++ ChangeLog 27 Aug 2012 09:31:59 -0000 1.34
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-mail/libpst
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.33 2012/06/28 10:40:11 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.34 2012/08/27 09:31:59 patrick Exp $
30 +
31 +*libpst-0.6.55 (27 Aug 2012)
32 +
33 + 27 Aug 2012; Patrick Lauer <patrick@g.o> +libpst-0.6.55.ebuild:
34 + Bump
35
36 28 Jun 2012; Agostino Sarubbo <ago@g.o> libpst-0.6.54-r1.ebuild:
37 Stable for amd64, wrt bug #420885
38 @@ -148,4 +153,3 @@
39 05 Mar 2004; Patrick Kursawe <phosphan@g.o> libpst-0.3.4.ebuild,
40 metadata.xml:
41 Initial import
42 -
43
44
45
46 1.1 net-mail/libpst/libpst-0.6.55.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/libpst-0.6.55.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/libpst/libpst-0.6.55.ebuild?rev=1.1&content-type=text/plain
50
51 Index: libpst-0.6.55.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.6.55.ebuild,v 1.1 2012/08/27 09:31:59 patrick Exp $
56
57 EAPI=4
58 PYTHON_DEPEND="python? 2"
59
60 inherit autotools eutils python
61
62 DESCRIPTION="Tools and library for reading Outlook files (.pst format)"
63 HOMEPAGE="http://www.five-ten-sg.com/libpst/"
64 SRC_URI="http://www.five-ten-sg.com/${PN}/packages/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
69 IUSE="debug dii doc python static-libs"
70
71 RDEPEND="dii? ( media-gfx/imagemagick[png] )"
72 DEPEND="${RDEPEND}
73 virtual/libiconv
74 virtual/pkgconfig
75 dii? ( media-libs/gd[png] )
76 python? ( >=dev-libs/boost-1.48[python] )"
77
78 pkg_setup() {
79 if use python; then
80 python_set_active_version 2
81 python_pkg_setup
82 fi
83 }
84
85 src_prepare() {
86 # don't build the static python library
87 epatch "${FILESDIR}"/${PN}-0.6.52-no-static-python-lib.patch
88
89 # fix pkgconfig file for static linking
90 epatch "${FILESDIR}"/${PN}-0.6.53-pkgconfig-static.patch
91
92 # conditionally install the extra documentation
93 use doc || { sed -i -e "/SUBDIRS/s: html::" Makefile.am || die; }
94
95 # don't install duplicate docs
96 sed -i -e "/^html_DATA =/d" Makefile.am || die
97
98 eautoreconf
99 }
100
101 src_configure() {
102 econf \
103 --enable-libpst-shared \
104 $(use_enable debug pst-debug) \
105 $(use_enable dii) \
106 $(use_enable python) \
107 $(use_enable static-libs static) \
108 $(use python && echo --with-boost-python=boost_python-${PYTHON_ABI})
109 }
110
111 src_install() {
112 default
113 prune_libtool_files --all
114 }