summaryrefslogtreecommitdiff
path: root/mail-client/sylpheed/sylpheed-3.7.0-r1.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'mail-client/sylpheed/sylpheed-3.7.0-r1.ebuild')
-rw-r--r--mail-client/sylpheed/sylpheed-3.7.0-r1.ebuild76
1 files changed, 0 insertions, 76 deletions
diff --git a/mail-client/sylpheed/sylpheed-3.7.0-r1.ebuild b/mail-client/sylpheed/sylpheed-3.7.0-r1.ebuild
deleted file mode 100644
index f94d992..0000000
--- a/mail-client/sylpheed/sylpheed-3.7.0-r1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
1# Copyright 2018 Simeon Simeonov
2# Distributed under the terms of the GNU General Public License v2
3
4EAPI="6"
5
6inherit eutils
7
8DESCRIPTION="A lightweight email client and newsreader (patched by sgs)"
9HOMEPAGE="http://sylpheed.sraoss.jp/"
10SRC_URI="http://${PN}.sraoss.jp/${PN}/v${PV%.*}/${P}.tar.bz2"
11
12LICENSE="GPL-2 LGPL-2.1"
13SLOT="0"
14KEYWORDS="amd64 x86"
15IUSE="crypt ipv6 ldap libressl nls oniguruma pda spell ssl xface"
16
17CDEPEND="net-libs/liblockfile
18 x11-libs/gtk+:2
19 crypt? ( app-crypt/gpgme )
20 ldap? ( net-nds/openldap )
21 nls? ( sys-devel/gettext )
22 oniguruma? ( dev-libs/oniguruma:= )
23 pda? ( app-pda/jpilot )
24 spell? (
25 app-text/gtkspell:2
26 dev-libs/dbus-glib
27 )
28 ssl? (
29 !libressl? ( dev-libs/openssl:0 )
30 libressl? ( dev-libs/libressl )
31 )"
32RDEPEND="${CDEPEND}
33 app-misc/mime-types
34 net-misc/curl"
35DEPEND="${CDEPEND}
36 virtual/pkgconfig
37 xface? ( media-libs/compface )"
38
39PATCHES=(
40 "${FILESDIR}/${P}-signature-box.patch"
41 "${FILESDIR}/${P}-PGP-signature-fix.patch"
42 "${FILESDIR}/${P}-master-password.patch"
43 "${FILESDIR}/${P}-version.patch"
44)
45
46DOCS="AUTHORS ChangeLog* NEW* PLUGIN* README* TODO*"
47
48src_configure() {
49 local htmldir="${EPREFIX}"/usr/share/doc/${PF}/html
50 econf \
51 $(use_enable crypt gpgme) \
52 $(use_enable ipv6) \
53 $(use_enable ldap) \
54 $(use_enable oniguruma) \
55 $(use_enable pda jpilot) \
56 $(use_enable spell gtkspell) \
57 $(use_enable ssl) \
58 $(use_enable xface compface) \
59 --with-plugindir="${EPREFIX}"/usr/$(get_libdir)/${PN}/plugins \
60 --with-manualdir="${htmldir}"/manual \
61 --with-faqdir="${htmldir}"/faq \
62 --disable-updatecheckplugin \
63 --disable-updatecheck
64}
65
66src_install() {
67 default
68
69 doicon *.png
70 domenu *.desktop
71
72 cd plugin/attachment_tool
73 emake DESTDIR="${D}" install-plugin
74 docinto plugin/attachment_tool
75 dodoc README
76}