| 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.21.ebuild,v 1.2 2012/09/15 15:07:20 ago 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 |
|
| 23 |
DEPEND="${RDEPEND}
|
| 24 |
test? (
|
| 25 |
ssl? ( >=net-misc/curl-7.25.0-r1[ssl] )
|
| 26 |
)"
|
| 27 |
|
| 28 |
S=${WORKDIR}/${MY_P}
|
| 29 |
|
| 30 |
DOCS="AUTHORS NEWS README ChangeLog"
|
| 31 |
|
| 32 |
src_configure() {
|
| 33 |
econf \
|
| 34 |
$(use_enable test curl) \
|
| 35 |
$(use_enable messages) \
|
| 36 |
$(use_enable ssl https) \
|
| 37 |
$(use_with ssl gnutls) \
|
| 38 |
$(use_enable static-libs static)
|
| 39 |
}
|
| 40 |
|
| 41 |
src_install() {
|
| 42 |
default
|
| 43 |
|
| 44 |
use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
|
| 45 |
}
|