diff options
Diffstat (limited to 'net-libs/c-client/c-client-2002d-r1.ebuild')
-rw-r--r-- | net-libs/c-client/c-client-2002d-r1.ebuild | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/net-libs/c-client/c-client-2002d-r1.ebuild b/net-libs/c-client/c-client-2002d-r1.ebuild index 8df1cdc30482..b3c5924e3e15 100644 --- a/net-libs/c-client/c-client-2002d-r1.ebuild +++ b/net-libs/c-client/c-client-2002d-r1.ebuild @@ -1,57 +1,57 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2005 Gentoo Foundation # 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 $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/c-client/c-client-2002d-r1.ebuild,v 1.1.1.1 2005/11/30 10:03:00 chriswhite Exp $ + +inherit flag-o-matic 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/" +SRC_URI="ftp://ftp.cac.washington.edu/imap/${MY_P}.tar.Z" LICENSE="as-is" SLOT="0" -KEYWORDS="~x86 ~sparc ~ppc hppa alpha" +KEYWORDS="x86 sparc ppc hppa alpha" IUSE="ssl pic" -PROVIDE="virtual/imap-c-client" RDEPEND="ssl? ( dev-libs/openssl ) - !virtual/imap-c-client" + !virtual/imap-c-client" DEPEND="${RDEPEND} - >=sys-libs/pam-0.72" - -inherit flag-o-matic + >=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} + 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' \ + -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() { +src_compile() { if use ssl; then make lnp SSLTYPE=unix || die else @@ -65,7 +65,7 @@ src_install() { # 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 |