summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2019-02-18 22:18:42 +0100
committerPacho Ramos <pacho@gentoo.org>2019-02-18 22:23:47 +0100
commitb16ad63be5631e3ab643c4ca51e6108710202724 (patch)
tree13de6fea5ecda6f1bb67dca537e20f55cb58ac4b
parentnet-analyzer/linkchecker: Drop old (diff)
downloadgentoo-b16ad63be5631e3ab643c4ca51e6108710202724.tar.gz
gentoo-b16ad63be5631e3ab643c4ca51e6108710202724.tar.bz2
gentoo-b16ad63be5631e3ab643c4ca51e6108710202724.zip
net-mail/libpst: Drop old
Package-Manager: Portage-2.3.61, Repoman-2.3.12 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
-rw-r--r--net-mail/libpst/Manifest1
-rw-r--r--net-mail/libpst/libpst-0.6.64-r1.ebuild63
2 files changed, 0 insertions, 64 deletions
diff --git a/net-mail/libpst/Manifest b/net-mail/libpst/Manifest
index a0a1efa8f947..742a208b293b 100644
--- a/net-mail/libpst/Manifest
+++ b/net-mail/libpst/Manifest
@@ -1,2 +1 @@
-DIST libpst-0.6.64.tar.gz 13861215 BLAKE2B b3f8f7188a93ef2573053aa1b303ed1b3951e676bcf6472aa3983a5a911ba02c203168cd6230af6709decd2455374d08a61b0b09af2ba97a52e239809124971f SHA512 28f5ca83c4ede616b2d4d8dfd074a6866932a08594419aa7bb2af49f7871b4c92d97e0a583d8e2ef3be88a26c1a98c10ce9b1c0498073b528b6810d75988ee4a
DIST libpst-0.6.66.tar.gz 13836942 BLAKE2B f8ac86a2924576fc41aa7bb92a824748d858e9b6b42d3cc7e59959ca6377f458d7bcd738081a9547432f9153b839861f8c0fc5aa0a0c74b0447c2ab126b5bb64 SHA512 0d07b13554b9e009787ce651714281d21a4d38afae997bd87244690538bd18176ab74655c0a0646b1c475c916052d4295ffe749e6a03765450af7e9c8443dd86
diff --git a/net-mail/libpst/libpst-0.6.64-r1.ebuild b/net-mail/libpst/libpst-0.6.64-r1.ebuild
deleted file mode 100644
index 88ab640dc3c1..000000000000
--- a/net-mail/libpst/libpst-0.6.64-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools python-single-r1
-
-DESCRIPTION="Tools and library for reading Outlook files (.pst format)"
-HOMEPAGE="http://www.five-ten-sg.com/libpst/"
-SRC_URI="http://www.five-ten-sg.com/${PN}/packages/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="debug dii doc python static-libs"
-
-RDEPEND="dii? ( media-gfx/imagemagick:=[png] )
- python? ( >=dev-libs/boost-1.48:=[python]
- ${PYTHON_DEPS} )
- gnome-extra/libgsf:="
-DEPEND="${RDEPEND}
- virtual/libiconv
- virtual/pkgconfig
- dii? ( media-libs/gd[png] )"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
- # don't build the static python library
- eapply "${FILESDIR}"/${PN}-0.6.52-no-static-python-lib.patch
-
- # fix pkgconfig file for static linking
- eapply "${FILESDIR}"/${PN}-0.6.53-pkgconfig-static.patch
-
- # conditionally install the extra documentation
- use doc || { sed -i -e "/SUBDIRS/s: html::" Makefile.am || die; }
-
- # don't install duplicate docs
- sed -i -e "/^html_DATA =/d" Makefile.am || die
-
- eapply_user
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-libpst-shared \
- $(use_enable debug pst-debug) \
- $(use_enable dii) \
- $(use_enable python) \
- $(use_enable static-libs static) \
- $(use python && echo --with-boost-python=boost_python-${EPYTHON#python})
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-}