diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2013-11-04 00:49:42 -0500 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2013-11-06 15:12:45 -0500 |
commit | a1b14825aaef4e3430849bd9e3f93302b2f83af1 (patch) | |
tree | 41e4be70bc8f8f7b0b1f044b56b88c870672c6e3 /meta-networking/recipes-support | |
parent | e854d0d71ea957d0fac78135bb67d1a0c70eeb2b (diff) | |
download | meta-openembedded-a1b14825aaef4e3430849bd9e3f93302b2f83af1.tar.gz |
netcf: move from meta-virtualization to meta-networking
netcf was orginally introduced in meta-virtualization, since it provides
functionality required by libvirt, but it is otherwise not bound to
virtualization.
So we can move it to meta-networking, and in the process uprev to the
the latest 0.2.3 functinality.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Joe MacDonald <joe@deserted.net>
Diffstat (limited to 'meta-networking/recipes-support')
-rw-r--r-- | meta-networking/recipes-support/netcf/netcf_git.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/netcf/netcf_git.bb b/meta-networking/recipes-support/netcf/netcf_git.bb new file mode 100644 index 000000000..60d82d107 --- /dev/null +++ b/meta-networking/recipes-support/netcf/netcf_git.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "netcf" | ||
2 | DESCRIPTION = "netcf is a cross-platform network configuration library." | ||
3 | HOMEPAGE = "https://fedorahosted.org/netcf/" | ||
4 | SECTION = "console/tools" | ||
5 | LICENSE = "LGPLv2.1" | ||
6 | |||
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=bbb461211a33b134d42ed5ee802b37ff" | ||
8 | |||
9 | SRCREV = "b8a19dc860b38c97c42115d8a559b78853452a4b" | ||
10 | PV = "0.2.3+git${SRCPV}" | ||
11 | |||
12 | SRC_URI = "git://git.fedorahosted.org/netcf.git;protocol=git \ | ||
13 | " | ||
14 | |||
15 | DEPENDS += "augeas libnl libxslt libxml2" | ||
16 | |||
17 | S = "${WORKDIR}/git" | ||
18 | |||
19 | inherit gettext autotools | ||
20 | |||
21 | do_configure_prepend() { | ||
22 | cd ${S} | ||
23 | ./bootstrap | ||
24 | } | ||
25 | |||