mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-19 12:50:22 +02:00

For now adding netcf to the list of "brokensep" packages. The install phase fails when autotools split directories are used, so we inherit brokensep to get things building again. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
28 lines
638 B
BlitzBasic
28 lines
638 B
BlitzBasic
SUMMARY = "netcf"
|
|
DESCRIPTION = "netcf is a cross-platform network configuration library."
|
|
HOMEPAGE = "https://fedorahosted.org/netcf/"
|
|
SECTION = "console/tools"
|
|
LICENSE = "LGPLv2.1"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=bbb461211a33b134d42ed5ee802b37ff"
|
|
|
|
SRCREV = "2b0d9ca226c13d7150382367f62b256bdb2db5ef"
|
|
PR = "r1"
|
|
PV = "0.2.2+git${SRCPV}"
|
|
|
|
SRC_URI = "git://git.fedorahosted.org/netcf.git;protocol=git \
|
|
file://0001-fix-network-driver-check-issue-on-opensuse.patch \
|
|
"
|
|
|
|
DEPENDS += "augeas libnl libxslt libxml2"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit gettext autotools-brokensep
|
|
|
|
do_configure_prepend() {
|
|
cd ${S}
|
|
./bootstrap
|
|
}
|
|
|