blob: 82857ea94ca461439ccac0e293c5317f2a1f1ea3 (
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
37
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/serf/serf-1.0.0.ebuild,v 1.1 2011/10/24 19:05:52 hwoarang Exp $
EAPI="4"
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="1"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x64-macos"
IUSE=""
DEPEND="dev-libs/apr:1
dev-libs/apr-util:1
dev-libs/openssl
sys-libs/zlib"
RDEPEND="${DEPEND}"
src_prepare() {
# http://code.google.com/p/serf/source/detail?r=1564
sed -e "/status = apr_socket_create(&serv_sock, APR_UNSPEC, SOCK_STREAM/s/APR_UNSPEC/address->family/" -i test/server/test_server.c
epatch "${FILESDIR}/${PN}-0.3.1-disable-unneeded-linking.patch"
eautoreconf
}
src_configure() {
econf \
--with-apr="${EPREFIX}/usr/bin/apr-1-config" \
--with-apr-util="${EPREFIX}/usr/bin/apu-1-config" \
--with-openssl="${EPREFIX}/usr"
}
|