summaryrefslogtreecommitdiff
blob: 300d951cc6e019815553d3059c30936e53b4d60a (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
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-ftp/curl/curl-7.9.7.ebuild,v 1.3 2002/07/17 09:39:57 seemant Exp $

S=${WORKDIR}/${P}
DESCRIPTION="A Client that groks URLs"
SRC_URI="http://curl.haxx.se/download/${P}.tar.gz"
HOMEPAGE="http://curl.haxx.se"

DEPEND=">=sys-libs/pam-0.75 
	ssl? ( >=dev-libs/openssl-0.9.6a )"

SLOT="0"
LICENSE="MPL X11"
KEYWORDS="x86"

src_compile() {

	local myconf
	use ssl \
		&& myconf="--with-ssl" \
		|| myconf="--without-ssl"

    cd ${S}
    econf ${myconf} || die
    emake || die

}

src_install () {
    cd ${S}
    make install DESTDIR=${D} || die
    dodoc LEGAL CHANGES README 
    dodoc docs/FEATURES docs/INSTALL docs/INTERNALS docs/LIBCURL 
    dodoc docs/MANUAL docs/FAQ docs/BUGS docs/CONTRIBUTE
}