1SUMMARY = "Portable SDK for UPnP* Devices" 2DESCRIPTION = "The Portable SDK for UPnP Devices is an SDK for development of \ 3UPnP device and control point applications. It consists of the core UPnP \ 4protocols along with a UPnP-specific eXtensible Markup Language (XML) parser \ 5supporting the Document Object Model (DOM) Level 2 API and an optional, \ 6integrated mini web server for serving UPnP related documents." 7HOMEPAGE = "http://pupnp.sourceforge.net/" 8LICENSE = "BSD-3-Clause" 9LIC_FILES_CHKSUM = "file://COPYING;md5=394a0f17b97f33426275571e15920434" 10 11SRCREV = "cef2b23fb36baac091b0c7d41136b4c1d9549c6d" 12SRC_URI = "git://github.com/pupnp/pupnp.git;protocol=https;branch=branch-1.14.x \ 13 file://0001-ithread-Use-pthread_mutexattr_gettype-pthread_mutexa.patch \ 14 " 15 16S="${WORKDIR}/git" 17 18inherit autotools pkgconfig 19 20EXTRA_OECONF += "--enable-reuseaddr" 21 22# Enable LFS support ( for samples ) 23CFLAGS += "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE" 24CXXFLAGS += "-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE" 25