blob: dcae6fdc98aeae5dbdd20b191ff39099c55aa484 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/sylpheed-claws/sylpheed-claws-0.9.12a-r1.ebuild,v 1.3 2004/09/08 13:56:23 usata Exp $
IUSE="nls gnome dillo crypt spell imlib ssl ldap ipv6 pda clamav pdflib maildir mbox gtk2"
inherit eutils
# setting up plugin related variables
GS_PN=ghostscript-viewer
GS_PV=0.7
PGP_PN=pgpinline
PGP_PV=0.1_pre20040825
MAILDIR_PN=maildir
MAILDIR_PV=0.6
MBOX_PN=mailmbox
MBOX_PV=0.9
MY_GS=${GS_PN}-${GS_PV}
MY_PGP=${PGP_PN}-${PGP_PV}
MY_MAILDIR=${MAILDIR_PN}-${MAILDIR_PV}
MY_MBOX=${MBOX_PN}-${MBOX_PV}
GTK2_PATCH="${P}-gtk2.patch.bz2"
DESCRIPTION="Bleeding edge version of Sylpheed"
HOMEPAGE="http://sylpheed-claws.sf.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
gtk2? ( mirror://gentoo/${GTK2_PATCH} http://dev.gentoo.org/~genone/distfiles/${GTK2_PATCH} )
!gtk2? ( pdflib? ( mirror://sourceforge/${PN}/${MY_GS}.tar.bz2 )
maildir? ( mirror://sourceforge/${PN}/${MY_MAILDIR}.tar.bz2 )
mbox? ( http://${PN}.sourceforge.net/downloads/${MY_MBOX}.tar.gz )
crypt? ( mirror://gentoo/sc-${MY_PGP}.tar.bz2 http://dev.gentoo.org/~genone/distfiles/sc-${MY_PGP}.tar.bz2 )
)"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64"
COMMONDEPEND="
!gtk2? ( =x11-libs/gtk+-1.2*
maildir? ( >=sys-libs/db-4.1 )
pdflib? ( virtual/ghostscript )
)
gtk2? ( >=x11-libs/gtk+-2.4 )
pda? ( >=app-pda/jpilot-0.99 )
ssl? ( >=dev-libs/openssl-0.9.7 )
ldap? ( >=net-nds/openldap-2.0.7 )
crypt? ( =app-crypt/gpgme-0.3.14-r1 )
dillo? ( www-client/dillo )
gnome? ( >=media-libs/gdk-pixbuf-0.16 )
imlib? ( >=media-libs/imlib-1.9.10 )
spell? ( virtual/aspell-dict )
pdflib? ( virtual/ghostscript )
nls? ( >=sys-devel/gettext-0.12 )"
DEPEND="${COMMONDEPEND}
>=media-libs/compface-1.4
>=sys-apps/sed-4"
RDEPEND="${COMMONDEPEND}
app-misc/mime-types
net-mail/metamail
x11-misc/shared-mime-info"
PROVIDE="virtual/sylpheed"
pkg_setup() {
if use gtk2; then
einfo "Using the GTK2 branch"
echo
ewarn "This branch is still a testing version. Some USE flags might not"
ewarn "work when used together with gtk2 and could generate compile errors."
ewarn "It will most likely have bugs, so please note that it is"
ewarn " COMPLETELY UNSUPPORTED BY GENTOO"
echo
ewarn "All external plugins are currently incompatible with the gtk2 version"
ewarn "and will be disabled for this build. This affects the ghostscript, "
ewarn "maildir, mbox and pgpinline plugins. If you need them you'll have"
ewarn "to disable gtk2."
fi
}
src_unpack() {
unpack ${A}
for plugin in ${MY_GS} ${MY_MAILDIR} ${MY_MBOX} ${MY_PGP}; do
[ -d ${WORKDIR}/${plugin} ] && mv ${WORKDIR}/${plugin} ${S}/src/plugins
done
# lets see how well this works
if use gtk2; then
cd ${S}
epatch ${WORKDIR}/${GTK2_PATCH%.bz2}
fi
# use shared-mime-info
cd ${S}/src
epatch ${FILESDIR}/procmime.patch
}
plugin_compile() {
if use gtk2; then
ewarn "Plugin ${1} disabled due to gtk2 incompability"
return
elif [ -z "${2}" ] || use ${2}; then
cd ${S}/src/plugins/${1}
einfo "Compiling plugin: ${1}"
local myPKG_CONFIG_PATH=${S}
local myCFLAGS="-I${S} -I${S}/src -I${S}/src/common -I${S}/src/gtk ${CFLAGS}"
CFLAGS="${myCFLAGS}" \
CXXFLAGS="${myCXXFLAGS}" \
econf --with-sylpheed-dir=../.. || die "plugin configure failed: ${1}"
einfo emake CFLAGS="${myCFLAGS}" CXXFLAGS="${myCFLAGS}" SYLPHEED_CLAWS_CFLAGS="${myCFLAGS}" || die "plugin compile failed: ${1}"
emake CFLAGS="${myCFLAGS}" CXXFLAGS="${myCFLAGS}" SYLPHEED_CLAWS_CFLAGS="${myCFLAGS}" || die "plugin compile failed: ${1}"
fi
}
plugin_install() {
if use gtk2; then
return
elif [ -z "${2}" ] || use ${2}; then
cd ${S}/src/plugins/${1}
make DESTDIR="${D}" plugindir="/usr/lib/${PN}/plugins" install || die "plugin install failed: ${1}"
docinto ${1}
dodoc AUTHORS ChangeLog INSTALL NEWS README
fi
}
src_compile() {
local myconf
myconf="${myconf} `use_enable gnome gdk-pixbuf`"
myconf="${myconf} `use_enable imlib`"
myconf="${myconf} `use_enable spell aspell`"
myconf="${myconf} `use_enable ldap`"
myconf="${myconf} `use_enable ssl openssl`"
myconf="${myconf} `use_enable crypt gpgme`"
myconf="${myconf} `use_enable ipv6`"
myconf="${myconf} `use_enable pda jpilot`"
myconf="${myconf} `use_enable nls`"
myconf="${myconf} `use_enable dillo dillo-viewer-plugin`"
myconf="${myconf} `use_enable clamav clamav-plugin`"
myconf="${myconf} `use_enable crypt pgpmime-plugin`"
use gtk2 && myconf="${myconf} --with-config-dir=.sylpheed-claws"
export GPGME_CONFIG=${ROOT}/usr/bin/gpgme3-config
econf \
--program-suffix=-claws \
--enable-spamassassin-plugin \
--enable-compface \
${myconf} || die "./configure failed"
emake || die
# build the extra tools
cd ${S}/tools
emake || die
# build external plugins
plugin_compile ${MY_GS} pdflib
plugin_compile ${MY_MAILDIR} maildir
plugin_compile ${MY_MBOX} mbox
plugin_compile ${MY_PGP} crypt
cd ${S}
}
src_install() {
make DESTDIR=${D} install || die
local menuentry="/usr/share/gnome/apps/Internet/sylpheed.desktop"
if use gnome; then
dosed "s/Sylpheed/Sylpheed Claws/" ${menuentry}
dosed "s/sylpheed/sylpheed-claws/" ${menuentry}
mv ${D}${menuentry} ${D}${menuentry/sylpheed/sylpheed-claws}
else
rm -rf ${D}/usr/share/gnome
fi
dodir /usr/share/pixmaps
mv ${D}/usr/share/pixmaps/sylpheed{,-claws}.png
dodoc AUTHORS ChangeLog* INSTALL* NEWS README* TODO*
docinto tools
dodoc tools/README*
# install the extra tools
cd ${S}/tools
exeinto /usr/lib/${PN}/tools
doexe *.pl *.py *.rc *.conf *.sh gpg-sign-syl
doexe tb2sylpheed update-po uudec
# install external plugins
plugin_install ${MY_GS} pdflib
plugin_install ${MY_MAILDIR} maildir
plugin_install ${MY_MBOX} mbox
plugin_install ${MY_PGP} crypt
}
pkg_postinst() {
if use gtk2; then
ewarn "The GTK2 branch is still a testing version. Some USE flags might not"
ewarn "work when used together with gtk2 and could generate compile errors."
ewarn "It will most likely have bugs, so please note that it is"
ewarn " COMPLETELY UNSUPPORTED BY GENTOO"
echo
einfo "For safety reasons this version will use the alternate configuration"
einfo "directory ~/.sylpheed-claws instead of ~/.sylpheed, so you have to"
einfo "copy your configuration manually or create a new one."
else
einfo "NOTE: some plugins may have to be reloaded."
fi
}
|