Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-client/sylpheed/
Date: Wed, 17 Aug 2022 12:29:06
Message-Id: 1660739312.d98d478b5e4a74b802f876ee4160c4b11c0fd0c0.hattya@gentoo
1 commit: d98d478b5e4a74b802f876ee4160c4b11c0fd0c0
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 17 12:28:32 2022 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 17 12:28:32 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d98d478b
7
8 mail-client/sylpheed: drop old
9
10 Bug: https://bugs.gentoo.org/805338
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
13
14 mail-client/sylpheed/sylpheed-3.7.0-r4.ebuild | 66 ---------------------------
15 1 file changed, 66 deletions(-)
16
17 diff --git a/mail-client/sylpheed/sylpheed-3.7.0-r4.ebuild b/mail-client/sylpheed/sylpheed-3.7.0-r4.ebuild
18 deleted file mode 100644
19 index 57420df5d568..000000000000
20 --- a/mail-client/sylpheed/sylpheed-3.7.0-r4.ebuild
21 +++ /dev/null
22 @@ -1,66 +0,0 @@
23 -# Copyright 1999-2022 Gentoo Authors
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI="8"
27 -
28 -inherit desktop xdg
29 -
30 -DESCRIPTION="A lightweight email client and newsreader"
31 -HOMEPAGE="http://sylpheed.sraoss.jp/"
32 -SRC_URI="http://${PN}.sraoss.jp/${PN}/v${PV%.*}/${P}.tar.bz2"
33 -
34 -LICENSE="GPL-2+ LGPL-2.1+"
35 -SLOT="0"
36 -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86"
37 -IUSE="crypt ipv6 ldap nls oniguruma spell ssl xface"
38 -
39 -CDEPEND="net-libs/liblockfile
40 - x11-libs/gtk+:2
41 - crypt? ( app-crypt/gpgme:= )
42 - ldap? ( net-nds/openldap:= )
43 - nls? ( sys-devel/gettext )
44 - oniguruma? ( dev-libs/oniguruma:= )
45 - spell? (
46 - app-text/gtkspell:2
47 - dev-libs/dbus-glib
48 - )
49 - ssl? ( dev-libs/openssl:0= )"
50 -RDEPEND="${CDEPEND}
51 - app-misc/mime-types
52 - net-misc/curl"
53 -DEPEND="${CDEPEND}
54 - xface? ( media-libs/compface )"
55 -BDEPEND="virtual/pkgconfig"
56 -
57 -PATCHES=( "${FILESDIR}"/${PN}-tls-1.3.patch )
58 -DOCS="AUTHORS ChangeLog* NEW* PLUGIN* README* TODO*"
59 -
60 -src_configure() {
61 - local htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
62 - econf \
63 - $(use_enable crypt gpgme) \
64 - $(use_enable ipv6) \
65 - $(use_enable ldap) \
66 - $(use_enable oniguruma) \
67 - $(use_enable spell gtkspell) \
68 - $(use_enable ssl) \
69 - $(use_enable xface compface) \
70 - --with-plugindir="${EPREFIX}"/usr/$(get_libdir)/${PN}/plugins \
71 - --with-manualdir="${htmldir}"/manual \
72 - --with-faqdir="${htmldir}"/faq \
73 - --disable-updatecheck
74 -}
75 -
76 -src_install() {
77 - default
78 -
79 - doicon *.png
80 - domenu *.desktop
81 -
82 - cd plugin/attachment_tool
83 - emake DESTDIR="${D}" install-plugin
84 - docinto plugin/attachment_tool
85 - dodoc README
86 -
87 - find "${ED}" -name '*.la' -delete || die
88 -}