net-libs/ccnet: initial import

This commit is contained in:
Julian Ospald 2018-06-09 04:06:55 +02:00
parent 9bf56439a6
commit 30b0b9c3a8
No known key found for this signature in database
GPG Key ID: 511B62C09D50CD28
2 changed files with 59 additions and 0 deletions

View File

@ -0,0 +1,43 @@
# Copyright 2018 Julian Ospald <hasufell@posteo.de>
# Distributed under the terms of the GNU General Public License v2
require python [ blacklist=3 has_bin=false multibuild=false ]
require github [ user=haiwen tag="v${PV}" ]
require autotools [ supported_autoconf=[ 2.5 ] supported_automake=[ 1.15 ] ]
require vala [ vala_dep=true ]
SUMMARY="Ccnet is a framework for writing networked applications in C"
=""
LICENCES="GPL-2" # has openssl linking exception
SLOT="0"
PLATFORMS="~amd64 ~x86"
MYOPTIONS="
( providers: libressl openssl ) [[ number-selected = exactly-one ]]
"
DEPENDENCIES="
build:
virtual/pkg-config
build+run:
dev-db/sqlite:3
dev-libs/glib:2
dev-libs/jansson
dev-libs/libevent
net-libs/libsearpc[python_abis:*(-)?]
providers:libressl? ( dev-libs/libressl:= )
providers:openssl? ( dev-libs/openssl )
"
BUGS_TO="hasufell@posteo.de"
DEFAULT_SRC_PREPARE_PATCHES=(
"${FILES}"/fix-libressl-build.patch
)
src_prepare() {
default
edo sed -i -e "s/(DESTDIR)//" libccnet.pc.in
edo sed -i -e 's/valac /${VALAC} /' lib/Makefile.am
eautoreconf
}

View File

@ -0,0 +1,16 @@
Source: Me
Reason: fix build with libressl
Upstream: No, notified https://github.com/haiwen/ccnet/issues/122
--- a/lib/rsa.c 2017-05-28 03:23:49.499297000 +0200
+++ b/lib/rsa.c 2017-05-28 03:34:19.755854000 +0200
@@ -13,7 +13,7 @@
/* Forward compatibility functions if libssl < 1.1.0. */
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d)
{