blob: 24a522efc5487107c988cb68916af309faa049c4 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2002e-r2.ebuild,v 1.6 2004/08/19 03:38:56 tgall Exp $
inherit flag-o-matic eutils
MY_PN=imap
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="UW IMAP c-client library"
HOMEPAGE="http://www.washington.edu/imap/"
SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha arm hppa amd64 ia64 s390 ppc64"
IUSE="ssl"
RDEPEND="ssl? ( dev-libs/openssl )
!virtual/imap-c-client"
DEPEND="${RDEPEND}
>=sys-libs/pam-0.72"
PROVIDE="virtual/imap-c-client"
src_unpack() {
unpack ${A}
# Tarball packed with bad file perms
chmod -R ug+w ${S}
# lots of things need -fPIC, including various platforms, and this library
# generally should be built with it anyway.
append-flags -fPIC
# Modifications so we can build it optimially and correctly
sed \
-e "s:BASECFLAGS=\".*\":BASECFLAGS=\"${CFLAGS}\":g" \
-e 's:SSLDIR=/usr/local/ssl:SSLDIR=/usr:g' \
-e 's:SSLCERTS=$(SSLDIR)/certs:SSLCERTS=/etc/ssl/certs:g' \
-i ${S}/src/osdep/unix/Makefile || die "Makefile sed fixing failed"
# Apply a patch to only build the stuff we need for c-client
EPATCH_OPTS="${EPATCH_OPTS} -d ${S}" \
epatch ${FILESDIR}/2002d-Makefile.patch || die "epatch failed"
# Remove the pesky checks about SSL stuff
sed -e '/read.*exit/d' -i ${S}/Makefile
}
src_compile() {
local ssltype
use ssl && ssltype="unix" || ssltype="none"
# no parallel builds supported!
make lnp SSLTYPE=${ssltype} || die "make failed"
}
src_install() {
into /usr
# Library binary
dolib.a c-client/c-client.a
dosym /usr/lib/c-client.a /usr/lib/libc-client.a
# Headers
insinto /usr/include/imap
doins c-client/*.h
doins c-client/linkage.c
#exclude these dupes (can't do it before now due to symlink hell)
rm ${D}/usr/include/imap/os_*.h
# Docs
dodoc README docs/*.txt docs/CONFIG docs/RELNOTES
docinto rfc
dodoc docs/rfc/*.txt
}
|