diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-11-03 22:23:51 -0500 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-11-03 22:23:51 -0500 |
commit | 0adb720959bc2e3900ef7b785f476f2809dd1f73 (patch) | |
tree | eab44ca3bed386d518f895637def7e1961d19376 | |
parent | 36d4532e899c8907eef84b1f99356c79364e00f8 (diff) | |
download | meta-virtualization-0adb720959bc2e3900ef7b785f476f2809dd1f73.tar.gz |
openflow: remove recipe in favour of meta-networking version
An updated version of the openflow recipe has been added to meta-openembedded
in the meta-networking layer.
commit: 37660c [openflow: import and tweak] in git://git.openembedded.org/meta-openembedded
So we can safely remove the meta-virt variant of this recipe.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | recipes-networking/openflow/openflow_1.0.bb | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/recipes-networking/openflow/openflow_1.0.bb b/recipes-networking/openflow/openflow_1.0.bb deleted file mode 100644 index 20a2bc95..00000000 --- a/recipes-networking/openflow/openflow_1.0.bb +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | SUMMARY = "OpenFlow" | ||
2 | DESCRIPTION = "Provide a generic framework for handling devices in userspace." | ||
3 | HOMEPAGE = "http://www.openflow.org" | ||
4 | SECTION = "networking" | ||
5 | LICENSE = "GPLv2" | ||
6 | |||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=e870c934e2c3d6ccf085fd7cf0a1e2e2" | ||
8 | |||
9 | SRCREV = "5ccca75a69f99791659bcfbcf35353ab1921320a" | ||
10 | PR = "r0" | ||
11 | PV = "1.0+git${SRCPV}" | ||
12 | |||
13 | SRC_URI = "git://gitosis.stanford.edu/openflow.git;protocol=git" | ||
14 | |||
15 | DEPENDS = "virtual/libc" | ||
16 | |||
17 | EXTRA_OECONF += "KARCH=${TARGET_ARCH}" | ||
18 | |||
19 | PACKAGECONFIG ??= "libssl" | ||
20 | PACKAGECONFIG[libssl] = "--enable-ssl,--disable-ssl, openssl, libssl" | ||
21 | |||
22 | S = "${WORKDIR}/git" | ||
23 | |||
24 | inherit autotools | ||
25 | |||
26 | do_install_append() { | ||
27 | # Remove /var/run as it is created on startup | ||
28 | rm -rf ${D}${localstatedir}/run | ||
29 | } | ||