diff options
author | andy <andy@ndyk.de> | 2016-04-12 02:21:14 +0200 |
---|---|---|
committer | andy <andy@ndyk.de> | 2016-04-12 02:21:14 +0200 |
commit | 347b83e6d7b83c98eb0aa693a529ee7825198393 (patch) | |
tree | 1eaa0ab1d19aedb129ad24fed14d8e1802ce9000 /net-libs/libwebsockets/libwebsockets-9999.ebuild | |
parent | removed broken pyCardDAV (diff) | |
download | andy-347b83e6d7b83c98eb0aa693a529ee7825198393.tar.gz andy-347b83e6d7b83c98eb0aa693a529ee7825198393.tar.bz2 andy-347b83e6d7b83c98eb0aa693a529ee7825198393.zip |
remove deprecated and wrongly named libwebsockets version
Package-Manager: portage-2.2.26
Diffstat (limited to 'net-libs/libwebsockets/libwebsockets-9999.ebuild')
-rw-r--r-- | net-libs/libwebsockets/libwebsockets-9999.ebuild | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/net-libs/libwebsockets/libwebsockets-9999.ebuild b/net-libs/libwebsockets/libwebsockets-9999.ebuild index 85946d0..610aeb0 100644 --- a/net-libs/libwebsockets/libwebsockets-9999.ebuild +++ b/net-libs/libwebsockets/libwebsockets-9999.ebuild @@ -9,27 +9,22 @@ EGIT_REPO_URI="git://git.libwebsockets.org/libwebsockets" inherit git-2 cmake-utils DESCRIPTION="Lightweight pure C library for websockets api." -HOMEPAGE="http://libwebsockets.org/trac/libwebsockets" -if [[ ${PV} == 9999* ]]; then - EGIT_BRANCH="master" - KEYWORDS="" -else - EGIT_BRANCH="v1.23-chrome32-firefox24" - KEYWORDS="~x86 ~amd64" -fi +HOMEPAGE="https://libwebsockets.org" +EGIT_BRANCH="master" +KEYWORDS="" SRC_URI="" LICENSE="LGPL-2-with-linking-exception" SLOT="0" -IUSE="openssl" -DEPEND="openssl? ( dev-libs/openssl )" +IUSE="ssl" +DEPEND="ssl? ( dev-libs/openssl )" RDEPEND="${DEPEND}" src_configure() { local mycmakeargs=( - $(cmake-utils_use_with openssl SSL) + $(cmake-utils_use_with ssl SSL) ) cmake-utils_src_configure } |