blob: 1a80104746f73cdca5e8a90c70390bff26f9b059 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/multisync/multisync-0.83_pre20050414-r4.ebuild,v 1.12 2008/07/09 13:10:26 loki_val Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit versionator kde-functions eutils multilib autotools flag-o-matic
CVS_VERSION="${PV/*_pre/}"
DESCRIPTION="Modular sync client which supports an array of plugins."
HOMEPAGE="http://multisync.sourceforge.net/"
SRC_URI="mirror://gentoo/${PN}-${CVS_VERSION}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="evo irmc nokia6600 ldap bluetooth pda kdepim arts kdeenablefinal gnokii"
# evo - evolution plugin
# irmc - bluetooth/irmc/irda plugin ( local )
# pda - opie plugin ( local )
# nokia6600 - support for Nokia 6600 ( local )
# ldap - ldap plugin - experimental
# kdepim - sync with the kdepim app
# arts - potentially required for kdepim.
# gnokii - gnokii plugin
RDEPEND=">=gnome-base/libbonobo-2.2
>=gnome-base/libgnomeui-2.2
>=gnome-base/libgnome-2.2
>=dev-libs/glib-2
>=gnome-base/gconf-2
>=gnome-base/gnome-vfs-2.2
>=gnome-base/orbit-2.8.2
>=dev-libs/openssl-0.9.6j
evo? ( mail-client/evolution )
irmc? ( >=net-wireless/irda-utils-0.9.15
>=dev-libs/openobex-1
bluetooth? ( >=net-wireless/bluez-libs-2.7
>=net-wireless/bluez-utils-2.7 ) )
pda? ( >=net-misc/curl-7.10.5
~app-pda/pilot-link-0.11.8 )
kdepim? ( || ( kde-base/kdepim kde-base/kaddressbook )
arts? ( kde-base/arts ) )
ldap? ( >=net-nds/openldap-2.3.35-r1
>=dev-libs/cyrus-sasl-2.1.4 )
gnokii? ( app-mobilephone/gnokii dev-libs/libvformat )
nokia6600? ( >=dev-libs/libwbxml-0.9.0 )"
DEPEND="${RDEPEND}
sys-devel/gettext"
S="${WORKDIR}/${PN}"
make_plugin_list() {
local evoversion
PLUGINS="backup_plugin syncml_plugin"
if use evo
then
evoversion="$(best_version mail-client/evolution)"
# remove prefix
evoversion=${evoversion//*evolution-}
# remove revisions
evoversion=${evoversion//-*}
# find major
evoversion=$(get_major_version ${evoversion})
[[ ${evoversion} -eq 2 ]] && PLUGINS="${PLUGINS} evolution2_sync"
[[ ${evoversion} -eq 1 ]] && PLUGINS="${PLUGINS} evolution_sync"
fi
use irmc && PLUGINS="${PLUGINS} irmc_sync"
use pda && PLUGINS="${PLUGINS} opie_sync palm_sync"
use ldap && PLUGINS="${PLUGINS} ldap_plugin"
use kdepim && PLUGINS="${PLUGINS} kdepim_plugin"
use gnokii && PLUGINS="${PLUGINS} gnokii_sync"
}
src_unpack() {
unpack ${A}
epatch "${FILESDIR}/${PN}-gcc4.patch"
epatch "${FILESDIR}/${P}-evo2.patch"
[[ -z "${PLUGINS}" ]] && make_plugin_list
cd "${S}"
cp /usr/share/gettext/config.rpath "${S}"
elibtoolize
AT_M4DIR="plugins/opie_sync/macros" eautoreconf
for plugin_dir in ${PLUGINS} backup_plugin syncml_plugin
do
cd "${S}"/plugins/${plugin_dir}/
eautoreconf
done
}
run_compile() {
append-flags "${myInc}"
econf ${myConf} || die "Failed during econf!"
emake || die "Failed during make!"
}
src_compile() {
use ldap && append-flags "-DLDAP_DEPRECATED"
[[ -z "${PLUGINS}" ]] && make_plugin_list
einfo "Building Multisync with these plugins:"
for plugin_dir in ${PLUGINS}; do
einfo " ${plugin_dir}"
done
cd "${S}"
if use kdepim; then
set-qtdir 3
set-kdedir 3
myInc="-I${KDEDIR}/include ${myInc}"
myConf="$(use_with arts)
$(use_enable kdeenablefinal final)"
fi
use pda && myInc="-I/usr/include/libpisock ${myInc}"
run_compile;
for plugin_dir in ${PLUGINS}; do
einfo "Building ${plugin_dir}"
cd "${S}/plugins/${plugin_dir}"
run_compile;
done
}
src_install() {
[[ -z "${PLUGINS}" ]] && make_plugin_list
einstall || die "Multisync install failed!"
for plugin_dir in ${PLUGINS}; do
cd "${S}/plugins/${plugin_dir}"
make install DESTDIR="${D}" libdir="\$(prefix)/$(get_libdir)/${PN}" || die "${plugin_dir} make install failed!"
done
}
pkg_postinst() {
echo
elog "${P} is unmaintained by upstream and deprecated. Use it at your own risk."
elog "Try using its successor app-pda/multisync-gui."
echo
}
|