summaryrefslogtreecommitdiff
blob: 610aeb0b2df8add06b8b28487df1e7f0455bb506 (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

EGIT_REPO_URI="git://git.libwebsockets.org/libwebsockets"

inherit git-2 cmake-utils

DESCRIPTION="Lightweight pure C library for websockets api."
HOMEPAGE="https://libwebsockets.org"
EGIT_BRANCH="master"
KEYWORDS=""


SRC_URI=""

LICENSE="LGPL-2-with-linking-exception"
SLOT="0"
IUSE="ssl"
DEPEND="ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}"

src_configure() {
    local mycmakeargs=(
        $(cmake-utils_use_with ssl SSL)
    )
    cmake-utils_src_configure
}