blob: d309ae1a807aab918acc79ae87f2b2831f10b895 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "OpenFlow communications protocol"
2DESCRIPTION = "\
3Open standard that enables researchers to run experimental protocols in \
4contained networks. OpenFlow is a communications interface between \
5control and forwarding planes of a software-defined networking architecture.\
6"
7HOMEPAGE = "http://www.openflow.org"
8
9SECTION = "net"
10LICENSE = "GPLv2"
11
12LIC_FILES_CHKSUM = "file://COPYING;md5=e870c934e2c3d6ccf085fd7cf0a1e2e2"
13
14SRC_URI = "git://gitosis.stanford.edu/openflow.git;protocol=git"
15
16DEPENDS = "virtual/libc"
17
18PACKAGECONFIG ??= "openssl"
19PACKAGECONFIG[openssl] = "--enable-ssl,--disable-ssl, openssl, libssl"
20
21EXTRA_OECONF += " \
22 KARCH=${TARGET_ARCH} \
Patrick Williamsddad1a12017-02-23 20:36:32 -060023 ${@bb.utils.contains('PACKAGECONFIG', 'openssl', 'SSL_LIBS="-lssl -lcrypto"', '', d)} \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050024 "
25
26S = "${WORKDIR}/git"
27
28inherit autotools-brokensep
29
30do_configure() {
31 ./boot.sh
32 oe_runconf
33}
34
35do_install_append() {
36 # Remove /var/run as it is created on startup
37 rm -rf ${D}${localstatedir}/run
38}