diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-11 09:07:47 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-08-11 09:07:47 +0000 |
commit | 7a5ea10bfdd1deca0536a8985b678628d49c4aae (patch) | |
tree | fb0f622455d8e3324b411b4beef7fc8f937e029c /net-libs/c-client | |
parent | add more -fPIC support (diff) | |
download | historical-7a5ea10bfdd1deca0536a8985b678628d49c4aae.tar.gz historical-7a5ea10bfdd1deca0536a8985b678628d49c4aae.tar.bz2 historical-7a5ea10bfdd1deca0536a8985b678628d49c4aae.zip |
add more -fPIC support
Diffstat (limited to 'net-libs/c-client')
-rw-r--r-- | net-libs/c-client/Manifest | 4 | ||||
-rw-r--r-- | net-libs/c-client/c-client-2002d-r1.ebuild | 79 | ||||
-rw-r--r-- | net-libs/c-client/files/digest-c-client-2002d-r1 | 1 |
3 files changed, 82 insertions, 2 deletions
diff --git a/net-libs/c-client/Manifest b/net-libs/c-client/Manifest index 10f4f3e01aba..469cdc526e56 100644 --- a/net-libs/c-client/Manifest +++ b/net-libs/c-client/Manifest @@ -1,5 +1,5 @@ -MD5 395285416e56dcfc9573bf7500bb30ad c-client-2002d-r1.ebuild 1913 -MD5 ecef45707e1043a276a30ff494312e3c ChangeLog 1110 +MD5 b7205bab72d1a6a8d465ccfd84492af8 c-client-2002d-r1.ebuild 1917 +MD5 350951f43310d70d46eac895faf70a1b ChangeLog 1111 MD5 05d1016966177b4a0e7499e2ff2577a1 c-client-2002d.ebuild 1896 MD5 1fc1132a6fb90046b701e9196e7a96b0 files/digest-c-client-2002d-r1 62 MD5 1fc1132a6fb90046b701e9196e7a96b0 files/digest-c-client-2002d 62 diff --git a/net-libs/c-client/c-client-2002d-r1.ebuild b/net-libs/c-client/c-client-2002d-r1.ebuild new file mode 100644 index 000000000000..8df1cdc30482 --- /dev/null +++ b/net-libs/c-client/c-client-2002d-r1.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2002d-r1.ebuild,v 1.1 2003/08/11 09:07:41 robbat2 Exp $ + +MY_PN=imap +MY_P=${MY_PN}-${PV} +S=${WORKDIR}/${MY_P} + +DESCRIPTION="UW IMAP c-client library" +SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z" +HOMEPAGE="http://www.washington.edu/imap/" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86 ~sparc ~ppc hppa alpha" +IUSE="ssl pic" + +PROVIDE="virtual/imap-c-client" +RDEPEND="ssl? ( dev-libs/openssl ) + !virtual/imap-c-client" +DEPEND="${RDEPEND} + >=sys-libs/pam-0.72" + +inherit flag-o-matic + +src_unpack() { + unpack ${A} + + # Tarball packed with bad file perms + chmod -R ug+w ${S} + + # alpha needs -fPIC + use pic || use alpha && append-flags -fPIC + + # Modifications so we can build it optimially and correctly + cd ${S}/src/osdep/unix/ + cp Makefile Makefile.orig + sed \ + -e 's,-g -fno-omit-frame-pointer -O6,${CFLAGS},g' \ + -e 's,SSLDIR=/usr/local/ssl,SSLDIR=/usr,g' \ + -e 's,SSLCERTS=$(SSLDIR)/certs,SSLCERTS=/etc/ssl/certs,g' \ + < Makefile.orig > Makefile + + # Apply a patch to only build the stuff we need for c-client + cd ${S} + patch < ${FILESDIR}/${PV}-Makefile.patch + + # Remove the pesky checks about SSL stuff + cd ${S} + cp Makefile Makefile.orig + grep -v 'read.*exit 1' <Makefile.orig >Makefile +} + +src_compile() { + if use ssl; then + make lnp SSLTYPE=unix || die + else + make lnp SSLTYPE=none || die + fi +} + +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/{c-client,mail,imap4r1,rfc822,linkage,misc,smtp,nntp}.h + doins c-client/{osdep,env_unix,env,fs,ftl,nl,tcp}.h + + # Docs + dodoc CPYRIGHT README docs/*.txt docs/CONFIG docs/RELNOTES + + docinto rfc + dodoc docs/rfc/*.txt +} diff --git a/net-libs/c-client/files/digest-c-client-2002d-r1 b/net-libs/c-client/files/digest-c-client-2002d-r1 new file mode 100644 index 000000000000..7e0aec37a891 --- /dev/null +++ b/net-libs/c-client/files/digest-c-client-2002d-r1 @@ -0,0 +1 @@ +MD5 64e82a195d21481fc4c54c4ed9fe0527 imap-2002d.tar.Z 2155224 |