blob: 7cc0fcbc2eadff0115d418b2735c63f06777803c (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/ximian-connector/ximian-connector-1.2.1_p2-r1.ebuild,v 1.2 2003/02/13 14:44:24 vapier Exp $
DESCRIPTION="Ximian Connector (An Evolution Plugin to talk to Exchange Servers)"
HOMEPAGE="http://www.ximian.com"
LICENSE="Ximian-Connector"
SLOT="0"
KEYWORDS="~x86 ~ppc -sparc -alpha -mips"
RESTRICT="mirror nostrip"
XIMIAN_ARCH="blargh"
XIMIAN_DIST="frobs"
if [ `use ppc` ]; then
XIMIAN_DIST="yellowdog-22-ppc"
XIMIAN_ARCH="ppc"
elif [ `use x86` ]; then
XIMIAN_DIST="redhat-73-i386"
XIMIAN_ARCH="i386"
else
die "Unsupported ARCH: ${ARCH}"
fi
# make the ximian rev from the package version
# 1.2.1_p2 should result in 1.2.1-2
XIMIAN_REV=`echo ${PV} | sed -e "s/_p/-/"`
SRC_URI="http://red-carpet.ximian.com/${PN}/${XIMIAN_DIST}/${PN}-${XIMIAN_REV}.ximian.1.${XIMIAN_ARCH}.rpm"
DEPEND="app-arch/rpm2targz
>=net-mail/evolution-1.2.1*"
RDEPEND=">=net-mail/evolution-1.2.1*"
pkg_setup() {
if [ "${ARCH}" != "x86" -a "${ARCH}" != "ppc" ]
then
einfo "This package is only available for x86 and ppc, sorry"
die "Not supported on your ARCH"
fi
}
src_unpack() {
rpm2targz ${DISTDIR}/${A}
tar -xzf ${WORKDIR}/${PN}-${XIMIAN_REV}.ximian.1.${XIMIAN_ARCH}.tar.gz
}
src_install() {
cd ${WORKDIR}
rm -f ${PN}-${XIMIAN_REV}.ximian.1.${XIMIAN_ARCH}.tar.gz
cp -dpR * ${D}
dosym /usr/lib/libssl.so /usr/lib/libssl.so.2
dosym /usr/lib/libcrypto.so /usr/lib/libcrypto.so.2
}
post_install(){
einfo "NOTE: Ximian connector requires the purchase of a"
einfo "key from Ximian to function properly."
}
|