Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/libpst/
Date: Mon, 18 Feb 2019 21:24:10
Message-Id: 1550525027.b16ad63be5631e3ab643c4ca51e6108710202724.pacho@gentoo
1 commit: b16ad63be5631e3ab643c4ca51e6108710202724
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 18 21:18:42 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 18 21:23:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b16ad63b
7
8 net-mail/libpst: Drop old
9
10 Package-Manager: Portage-2.3.61, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 net-mail/libpst/Manifest | 1 -
14 net-mail/libpst/libpst-0.6.64-r1.ebuild | 63 ---------------------------------
15 2 files changed, 64 deletions(-)
16
17 diff --git a/net-mail/libpst/Manifest b/net-mail/libpst/Manifest
18 index a0a1efa8f94..742a208b293 100644
19 --- a/net-mail/libpst/Manifest
20 +++ b/net-mail/libpst/Manifest
21 @@ -1,2 +1 @@
22 -DIST libpst-0.6.64.tar.gz 13861215 BLAKE2B b3f8f7188a93ef2573053aa1b303ed1b3951e676bcf6472aa3983a5a911ba02c203168cd6230af6709decd2455374d08a61b0b09af2ba97a52e239809124971f SHA512 28f5ca83c4ede616b2d4d8dfd074a6866932a08594419aa7bb2af49f7871b4c92d97e0a583d8e2ef3be88a26c1a98c10ce9b1c0498073b528b6810d75988ee4a
23 DIST libpst-0.6.66.tar.gz 13836942 BLAKE2B f8ac86a2924576fc41aa7bb92a824748d858e9b6b42d3cc7e59959ca6377f458d7bcd738081a9547432f9153b839861f8c0fc5aa0a0c74b0447c2ab126b5bb64 SHA512 0d07b13554b9e009787ce651714281d21a4d38afae997bd87244690538bd18176ab74655c0a0646b1c475c916052d4295ffe749e6a03765450af7e9c8443dd86
24
25 diff --git a/net-mail/libpst/libpst-0.6.64-r1.ebuild b/net-mail/libpst/libpst-0.6.64-r1.ebuild
26 deleted file mode 100644
27 index 88ab640dc3c..00000000000
28 --- a/net-mail/libpst/libpst-0.6.64-r1.ebuild
29 +++ /dev/null
30 @@ -1,63 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -PYTHON_COMPAT=( python2_7 )
36 -
37 -inherit autotools python-single-r1
38 -
39 -DESCRIPTION="Tools and library for reading Outlook files (.pst format)"
40 -HOMEPAGE="http://www.five-ten-sg.com/libpst/"
41 -SRC_URI="http://www.five-ten-sg.com/${PN}/packages/${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
46 -IUSE="debug dii doc python static-libs"
47 -
48 -RDEPEND="dii? ( media-gfx/imagemagick:=[png] )
49 - python? ( >=dev-libs/boost-1.48:=[python]
50 - ${PYTHON_DEPS} )
51 - gnome-extra/libgsf:="
52 -DEPEND="${RDEPEND}
53 - virtual/libiconv
54 - virtual/pkgconfig
55 - dii? ( media-libs/gd[png] )"
56 -
57 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
58 -
59 -pkg_setup() {
60 - use python && python-single-r1_pkg_setup
61 -}
62 -
63 -src_prepare() {
64 - # don't build the static python library
65 - eapply "${FILESDIR}"/${PN}-0.6.52-no-static-python-lib.patch
66 -
67 - # fix pkgconfig file for static linking
68 - eapply "${FILESDIR}"/${PN}-0.6.53-pkgconfig-static.patch
69 -
70 - # conditionally install the extra documentation
71 - use doc || { sed -i -e "/SUBDIRS/s: html::" Makefile.am || die; }
72 -
73 - # don't install duplicate docs
74 - sed -i -e "/^html_DATA =/d" Makefile.am || die
75 -
76 - eapply_user
77 - eautoreconf
78 -}
79 -
80 -src_configure() {
81 - econf \
82 - --enable-libpst-shared \
83 - $(use_enable debug pst-debug) \
84 - $(use_enable dii) \
85 - $(use_enable python) \
86 - $(use_enable static-libs static) \
87 - $(use python && echo --with-boost-python=boost_python-${EPYTHON#python})
88 -}
89 -
90 -src_install() {
91 - default
92 - find "${D}" -name '*.la' -delete || die
93 -}