diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-networking/recipes-support/netcf/netcf_git.bb | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-networking/recipes-support/netcf/netcf_git.bb')
-rw-r--r-- | meta-networking/recipes-support/netcf/netcf_git.bb | 27 |
1 files changed, 27 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 0000000000..6c36ce8482 --- /dev/null +++ b/meta-networking/recipes-support/netcf/netcf_git.bb | |||
@@ -0,0 +1,27 @@ | |||
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 gnulib" | ||
16 | |||
17 | S = "${WORKDIR}/git" | ||
18 | |||
19 | inherit gettext autotools | ||
20 | |||
21 | EXTRA_OECONF_append_class-target = " --with-driver=redhat" | ||
22 | do_configure_prepend() { | ||
23 | cd ${S} | ||
24 | rm -f .gitmodules | ||
25 | ./bootstrap --gnulib-srcdir=${STAGING_DATADIR}/gnulib | ||
26 | } | ||
27 | |||