diff options
author | David Nyström <david.nystrom@enea.com> | 2012-12-06 10:58:10 +0100 |
---|---|---|
committer | David Nyström <david.nystrom@enea.com> | 2012-12-07 15:32:31 +0100 |
commit | 9f60c7d88958a85ceeacaa4383daba92a9ea7848 (patch) | |
tree | 4a90f5ad35ef554c27661b479e7a60b1f9455204 /recipes-networking | |
parent | 02e4046656f5805751d654e8808500fb884f6fce (diff) | |
download | meta-virtualization-9f60c7d88958a85ceeacaa4383daba92a9ea7848.tar.gz |
Added netcf recipe, libvirt dependency
Signed-off-by: David Nyström <david.nystrom@enea.com>
Reviewed-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-networking')
-rw-r--r-- | recipes-networking/netcf/netcf_git.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes-networking/netcf/netcf_git.bb b/recipes-networking/netcf/netcf_git.bb new file mode 100644 index 00000000..60fc446d --- /dev/null +++ b/recipes-networking/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 = "2b0d9ca226c13d7150382367f62b256bdb2db5ef" | ||
10 | PR = "r0" | ||
11 | PV = "0.2.2+git${SRCPV}" | ||
12 | |||
13 | SRC_URI = "git://git.fedorahosted.org/netcf.git;protocol=git" | ||
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 | |||