# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-libs/serf/serf-0.3.0.ebuild,v 1.6 2009/04/28 14:56:32 armin76 Exp $ inherit autotools eutils DESCRIPTION="HTTP client library" HOMEPAGE="http://code.google.com/p/serf/" SRC_URI="http://serf.googlecode.com/files/${P}.tar.bz2" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x64-macos" IUSE="" DEPEND="dev-libs/apr dev-libs/apr-util dev-libs/openssl sys-libs/zlib" RDEPEND="${DEPEND}" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${P}-disable-unneeded-linking.patch eautoreconf } src_compile() { econf \ --with-apr="${EPREFIX}"/usr/bin/apr-1-config \ --with-apr-util="${EPREFIX}"/usr/bin/apu-1-config \ --with-openssl="${EPREFIX}"/usr emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc CHANGES README }