# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ 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="~amd64 ~x86" 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_linking_against_unneeded_libraries.patch" eautoreconf } src_compile() { econf \ --with-apr="/usr/bin/apr-1-config" \ --with-apr-util="/usr/bin/apu-1-config" \ --with-openssl=/usr emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc CHANGES README }