mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
This patch originally came from oe-classic in 2010 with the comment "fix pc file so that it actually links to the support libraries". If an application wants to link to the support libraries then it should be using the relevant .pc files to do so. oe-core builds successfully with this patch removed and other distributions don't carry it, so drop the patch. (From OE-Core rev: f4a544f46e2a58e64e90d92855d1d85966eefa10) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
43 lines
1.6 KiB
BlitzBasic
43 lines
1.6 KiB
BlitzBasic
SUMMARY = "A library for applications dealing with netlink sockets"
|
|
HOMEPAGE = "http://www.infradead.org/~tgr/libnl/"
|
|
SECTION = "libs/network"
|
|
|
|
PE = "1"
|
|
|
|
LICENSE = "LGPLv2.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
|
|
|
|
DEPENDS = "flex-native bison-native"
|
|
|
|
SRC_URI = "https://github.com/thom311/${BPN}/releases/download/${BPN}${@d.getVar('PV').replace('.','_')}/${BP}.tar.gz"
|
|
SRC_URI[md5sum] = "74ba57b1b1d6f9f92268aa8141d8e8e4"
|
|
SRC_URI[sha256sum] = "352133ec9545da76f77e70ccb48c9d7e5324d67f6474744647a7ed382b5e05fa"
|
|
|
|
UPSTREAM_CHECK_URI = "https://github.com/thom311/${BPN}/releases"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
FILES_${PN} = "${libdir}/libnl-3.so.* \
|
|
${libdir}/libnl.so.* \
|
|
${sysconfdir}"
|
|
RREPLACES_${PN} = "libnl2"
|
|
RCONFLICTS_${PN} = "libnl2"
|
|
FILES_${PN}-dev += "${libdir}/libnl/cli/*/*.la"
|
|
FILES_${PN}-staticdev += "${libdir}/libnl/cli/*/*.a"
|
|
|
|
PACKAGES += "${PN}-cli ${PN}-genl ${PN}-idiag ${PN}-nf ${PN}-route ${PN}-xfrm"
|
|
FILES_${PN}-cli = "${libdir}/libnl-cli-3.so.* \
|
|
${libdir}/libnl/cli/*/*.so \
|
|
${bindir}/genl-ctrl-list \
|
|
${bindir}/idiag-socket-details \
|
|
${bindir}/nf-* \
|
|
${bindir}/nl-*"
|
|
FILES_${PN}-genl = "${libdir}/libnl-genl-3.so.* \
|
|
${libdir}/libnl-genl.so.*"
|
|
FILES_${PN}-idiag = "${libdir}/libnl-idiag-3.so.*"
|
|
FILES_${PN}-nf = "${libdir}/libnl-nf-3.so.*"
|
|
FILES_${PN}-route = "${libdir}/libnl-route-3.so.*"
|
|
FILES_${PN}-xfrm = "${libdir}/libnl-xfrm-3.so.*"
|
|
RREPLACES_${PN}-genl = "libnl-genl2"
|
|
RCONFLICTS_${PN}-genl = "libnl-genl2"
|