| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.19.ebuild,v 1.5 2012/06/25 01:00:16 blueness Exp $
|
| 4 |
|
| 5 |
EAPI="4"
|
| 6 |
|
| 7 |
MY_P=${P/_/}
|
| 8 |
|
| 9 |
DESCRIPTION="A small C library that makes it easy to run an HTTP server as part of another application."
|
| 10 |
HOMEPAGE="http://www.gnu.org/software/libmicrohttpd/"
|
| 11 |
SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
|
| 12 |
|
| 13 |
IUSE="messages ssl static-libs test"
|
| 14 |
KEYWORDS="amd64 x86"
|
| 15 |
LICENSE="LGPL-2.1"
|
| 16 |
SLOT="0"
|
| 17 |
|
| 18 |
RDEPEND="ssl? (
|
| 19 |
dev-libs/libgcrypt
|
| 20 |
net-libs/gnutls
|
| 21 |
)
|
| 22 |
net-misc/curl"
|
| 23 |
# Some tests fail if curl is built against nss, bug #334067
|
| 24 |
DEPEND="${RDEPEND}
|
| 25 |
test? (
|
| 26 |
ssl? ( || (
|
| 27 |
>=net-misc/curl-7.21[ssl,-nss]
|
| 28 |
>=net-misc/curl-7.21[ssl,gnutls]
|
| 29 |
) )
|
| 30 |
)"
|
| 31 |
|
| 32 |
S=${WORKDIR}/${MY_P}
|
| 33 |
|
| 34 |
DOCS="AUTHORS NEWS README ChangeLog"
|
| 35 |
|
| 36 |
src_configure() {
|
| 37 |
econf \
|
| 38 |
--enable-curl \
|
| 39 |
$(use_enable messages) \
|
| 40 |
$(use_enable ssl https) \
|
| 41 |
$(use_with ssl gnutls) \
|
| 42 |
$(use_enable static-libs static)
|
| 43 |
}
|
| 44 |
|
| 45 |
src_install() {
|
| 46 |
default
|
| 47 |
|
| 48 |
use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
|
| 49 |
}
|