mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
d74be33220
* This updates to the 3.4.2 release and rework the packaging splitting the C bindings in another binary package to reduce footprint in rootfs; this also moves geos-config to the development package as it should. * Fix -dev installation and upgrade path Using 'lib_package' renames the binaries and we need a transitional package to be used as upgrade path. This is done using an empty 'geos' package which installs the new ones as runtime dependency. This same package is used to satisfy -dev dependency of geos package allowing for its inclusion into SDK. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
22 lines
674 B
PHP
22 lines
674 B
PHP
DESCRIPTION = "GEOS - Geometry Engine, Open Source"
|
|
HOMEPAGE = "http://trac.osgeo.org/geos/"
|
|
SECTION = "libs"
|
|
|
|
LICENSE = "LGPLv2.1+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
|
|
|
|
SRC_URI = "http://download.osgeo.org/geos/geos-${PV}.tar.bz2"
|
|
|
|
inherit autotools pkgconfig binconfig
|
|
|
|
PACKAGES =+ "geoslib ${PN}-c1"
|
|
|
|
DESCRIPTION_${PN}lib = "Geometry engine for Geographic Information Systems - C++ Library"
|
|
FILES_${PN}lib += "${libdir}/libgeos-${PV}.so"
|
|
|
|
DESCRIPTION_${PN}-c1 = "Geometry engine for Geographic Information Systems - C Library"
|
|
FILES_${PN}-c1 += "${libdir}/libgeos_c.so.*"
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
RDEPENDS_${PN} += "geoslib ${PN}-c1"
|