diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-09-02 10:21:15 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-09-02 10:21:15 +0200 |
commit | bc7701244946c9409cfff823d9b0ed3d6695eddb (patch) | |
tree | d9265ff9e46344171cd9a62857197f366329489d /net-mail | |
parent | dev-util/coccinelle: Remove last-rited pkg (diff) | |
download | gentoo-bc7701244946c9409cfff823d9b0ed3d6695eddb.tar.gz gentoo-bc7701244946c9409cfff823d9b0ed3d6695eddb.tar.bz2 gentoo-bc7701244946c9409cfff823d9b0ed3d6695eddb.zip |
net-mail/libpst: Remove last-rited pkg
Closes: https://bugs.gentoo.org/721476
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/libpst/Manifest | 1 | ||||
-rw-r--r-- | net-mail/libpst/files/libpst-0.6.52-no-static-python-lib.patch | 11 | ||||
-rw-r--r-- | net-mail/libpst/files/libpst-0.6.53-pkgconfig-static.patch | 8 | ||||
-rw-r--r-- | net-mail/libpst/libpst-0.6.66-r3.ebuild | 72 | ||||
-rw-r--r-- | net-mail/libpst/metadata.xml | 8 |
5 files changed, 0 insertions, 100 deletions
diff --git a/net-mail/libpst/Manifest b/net-mail/libpst/Manifest deleted file mode 100644 index 742a208b293b..000000000000 --- a/net-mail/libpst/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST libpst-0.6.66.tar.gz 13836942 BLAKE2B f8ac86a2924576fc41aa7bb92a824748d858e9b6b42d3cc7e59959ca6377f458d7bcd738081a9547432f9153b839861f8c0fc5aa0a0c74b0447c2ab126b5bb64 SHA512 0d07b13554b9e009787ce651714281d21a4d38afae997bd87244690538bd18176ab74655c0a0646b1c475c916052d4295ffe749e6a03765450af7e9c8443dd86 diff --git a/net-mail/libpst/files/libpst-0.6.52-no-static-python-lib.patch b/net-mail/libpst/files/libpst-0.6.52-no-static-python-lib.patch deleted file mode 100644 index 5bf53c6dd81c..000000000000 --- a/net-mail/libpst/files/libpst-0.6.52-no-static-python-lib.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- libpst-0.6.52/python/Makefile.am.orig -+++ libpst-0.6.52/python/Makefile.am -@@ -8,7 +8,7 @@ - - pythonlibdir = $(libdir)/@PYTHON_VERSION@/site-packages - pythonlib_LTLIBRARIES = _libpst.la --_libpst_la_LDFLAGS = -module $(NO_UNDEFINED) -avoid-version -+_libpst_la_LDFLAGS = -module $(NO_UNDEFINED) -avoid-version -shared - _libpst_la_SOURCES = python-libpst.cpp - _libpst_la_LIBADD = -lboost_python ../src/libpst.la - diff --git a/net-mail/libpst/files/libpst-0.6.53-pkgconfig-static.patch b/net-mail/libpst/files/libpst-0.6.53-pkgconfig-static.patch deleted file mode 100644 index 373533b75935..000000000000 --- a/net-mail/libpst/files/libpst-0.6.53-pkgconfig-static.patch +++ /dev/null @@ -1,8 +0,0 @@ ---- libpst-0.6.53/libpst.pc.in.orig -+++ libpst-0.6.53/libpst.pc.in -@@ -8,4 +8,5 @@ - Version: @VERSION@ - Requires: - Libs: -L${libdir} -lpst -+Libs.private: @LIBS@ - Cflags: -I${includedir}/libpst-@LIBPST_SO_MAJOR@ diff --git a/net-mail/libpst/libpst-0.6.66-r3.ebuild b/net-mail/libpst/libpst-0.6.66-r3.ebuild deleted file mode 100644 index 4a038ca366b6..000000000000 --- a/net-mail/libpst/libpst-0.6.66-r3.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python2_7 ) - -inherit autotools python-single-r1 - -DESCRIPTION="Tools and library for reading Outlook files (.pst format)" -HOMEPAGE="https://www.five-ten-sg.com/libpst/" -SRC_URI="https://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" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - gnome-extra/libgsf:= - dii? ( media-gfx/imagemagick:=[png] ) - python? ( - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - >=dev-libs/boost-1.70:=[python,${PYTHON_MULTI_USEDEP}] - ') - )" -DEPEND="${RDEPEND} - virtual/libiconv - virtual/pkgconfig - dii? ( media-libs/gd[png] )" - -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 - if ! use doc; then - sed -i -e "/SUBDIRS/s: html::" Makefile.am || die - fi - - # don't install duplicate docs - sed -i -e "/^html_DATA =/d" Makefile.am || die - - eapply_user - - mv configure.{in,ac} || die - eautoreconf -} - -src_configure() { - econf \ - --enable-libpst-shared \ - $(use_enable debug pst-debug) \ - $(use_enable dii) \ - $(use_enable python) \ - $(use_enable static-libs static) \ - $(use_with python boost-python "boost_${EPYTHON/./}") -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -} diff --git a/net-mail/libpst/metadata.xml b/net-mail/libpst/metadata.xml deleted file mode 100644 index 1ec1cdf5e944..000000000000 --- a/net-mail/libpst/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <use> - <flag name="dii">enable dii support</flag> - </use> -</pkgmetadata> |