mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
obsolete_automake_macros.patch removed, no longer needed. Disabled GSS APIs, as those APIs are not present in our distro. Patches directory is now generic, as patches are not created for a specific version. (From OE-Core rev: 3d42e107379d2e79b14a2dbcd35820c63adbfdb0) (From OE-Core rev: 59c847b8cda4d70077c89f5761e000d089f8eb4b) Signed-off-by: Cristian Iorga <cristian.iorga@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.3 KiB
BlitzBasic
36 lines
1.3 KiB
BlitzBasic
SUMMARY = "Transport-Independent RPC library"
|
|
DESCRIPTION = "Libtirpc is a port of Suns Transport-Independent RPC library to Linux"
|
|
SECTION = "libs/network"
|
|
HOMEPAGE = "http://sourceforge.net/projects/libtirpc/"
|
|
BUGTRACKER = "http://sourceforge.net/tracker/?group_id=183075&atid=903784"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f835cce8852481e4b2bbbdd23b5e47f3 \
|
|
file://src/netname.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24"
|
|
|
|
DEPENDS += "xz-native"
|
|
PROVIDES = "virtual/librpc"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2;name=libtirpc \
|
|
${GENTOO_MIRROR}/${BPN}-glibc-nfs.tar.xz;name=glibc-nfs \
|
|
file://libtirpc-0.2.1-fortify.patch \
|
|
"
|
|
|
|
SRC_URI_append_libc-uclibc = " file://remove-des-uclibc.patch"
|
|
|
|
SRC_URI[libtirpc.md5sum] = "847995e8d002cbf1387bda05947be086"
|
|
SRC_URI[libtirpc.sha256sum] = "45c3e21dfc23a5ba501f9dfc6671678316fdfdb8355a1ec404ae2aa2f81943a1"
|
|
SRC_URI[glibc-nfs.md5sum] = "5ae500b9d0b6b72cb875bc04944b9445"
|
|
SRC_URI[glibc-nfs.sha256sum] = "2677cfedf626f3f5a8f6e507aed5bb8f79a7453b589d684dbbc086e755170d83"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "--disable-gssapi"
|
|
|
|
do_configure_prepend () {
|
|
cp -r ${S}/../tirpc ${S}
|
|
}
|
|
|
|
do_install_append() {
|
|
chown root:root ${D}${sysconfdir}/netconfig
|
|
}
|