Merge pull request #10046 from neheb/pfix
protobuf fixes from CMake conversion
This commit is contained in:
commit
862510a251
3 changed files with 18 additions and 23 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=libprotobuf-c
|
PKG_NAME:=libprotobuf-c
|
||||||
PKG_VERSION:=1.3.2
|
PKG_VERSION:=1.3.2
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=protobuf-c-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=protobuf-c-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://github.com/protobuf-c/protobuf-c/releases/download/v$(PKG_VERSION)
|
PKG_SOURCE_URL:=https://github.com/protobuf-c/protobuf-c/releases/download/v$(PKG_VERSION)
|
||||||
|
@ -21,11 +21,12 @@ PKG_MAINTAINER:=Rosen Penev <rosenp@gmail.com>
|
||||||
PKG_LICENSE:=BSD-2-Clause
|
PKG_LICENSE:=BSD-2-Clause
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
|
||||||
PKG_BUILD_DEPENDS:=protobuf-c/host
|
|
||||||
HOST_BUILD_DEPENDS:=protobuf/host
|
HOST_BUILD_DEPENDS:=protobuf/host
|
||||||
|
PKG_BUILD_DEPENDS:=protobuf
|
||||||
|
|
||||||
PKG_INSTALL:=1
|
PKG_INSTALL:=1
|
||||||
PKG_BUILD_PARALLEL:=1
|
PKG_BUILD_PARALLEL:=1
|
||||||
|
CMAKE_SOURCE_SUBDIR:=build-cmake
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
include $(INCLUDE_DIR)/host-build.mk
|
include $(INCLUDE_DIR)/host-build.mk
|
||||||
|
@ -44,23 +45,12 @@ define Package/libprotobuf-c/description
|
||||||
internal RPC protocols and file formats.
|
internal RPC protocols and file formats.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
CONFIGURE_ARGS += \
|
CMAKE_OPTIONS += \
|
||||||
--enable-shared \
|
-DBUILD_SHARED_LIBS=ON
|
||||||
--enable-static \
|
|
||||||
--disable-protoc
|
|
||||||
|
|
||||||
define Build/InstallDev
|
|
||||||
$(INSTALL_DIR) $(1)/usr/include/
|
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libprotobuf-c.{a,la,so*} $(1)/usr/lib/
|
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libprotobuf-c/install
|
define Package/libprotobuf-c/install
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libprotobuf-c.so.* $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libprotobuf-c.so* $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libprotobuf-c))
|
$(eval $(call BuildPackage,libprotobuf-c))
|
||||||
|
|
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=protobuf
|
PKG_NAME:=protobuf
|
||||||
PKG_VERSION:=3.8.0
|
PKG_VERSION:=3.8.0
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-cpp-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-cpp-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://github.com/google/protobuf/releases/download/v$(PKG_VERSION)
|
PKG_SOURCE_URL:=https://github.com/google/protobuf/releases/download/v$(PKG_VERSION)
|
||||||
|
@ -68,7 +68,10 @@ endef
|
||||||
|
|
||||||
CMAKE_HOST_OPTIONS += \
|
CMAKE_HOST_OPTIONS += \
|
||||||
-Dprotobuf_BUILD_PROTOC_BINARIES=ON \
|
-Dprotobuf_BUILD_PROTOC_BINARIES=ON \
|
||||||
-Dprotobuf_BUILD_TESTS=OFF
|
-Dprotobuf_BUILD_TESTS=OFF \
|
||||||
|
-DBUILD_SHARED_LIBS=ON \
|
||||||
|
-DCMAKE_SKIP_RPATH=OFF \
|
||||||
|
-DCMAKE_INSTALL_RPATH="${STAGING_DIR_HOSTPKG}/lib"
|
||||||
|
|
||||||
CMAKE_OPTIONS += \
|
CMAKE_OPTIONS += \
|
||||||
-Dprotobuf_BUILD_PROTOC_BINARIES=ON \
|
-Dprotobuf_BUILD_PROTOC_BINARIES=ON \
|
||||||
|
|
|
@ -10,16 +10,17 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=ola
|
PKG_NAME:=ola
|
||||||
PKG_VERSION:=0.10.7
|
PKG_VERSION:=0.10.7
|
||||||
PKG_RELEASE:=4
|
PKG_RELEASE:=5
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://codeload.github.com/OpenLightingProject/ola/tar.gz/$(PKG_VERSION)?
|
PKG_SOURCE_URL:=https://codeload.github.com/OpenLightingProject/ola/tar.gz/$(PKG_VERSION)?
|
||||||
PKG_HASH:=95b5e99775f700a9cdf6e2219eccfc8c037fa8841f87cb00344359c4b8c7bf26
|
PKG_HASH:=95b5e99775f700a9cdf6e2219eccfc8c037fa8841f87cb00344359c4b8c7bf26
|
||||||
|
|
||||||
|
PKG_MAINTAINER:=Christian Beier <dontmind@freeshell.org>
|
||||||
PKG_LICENSE:=LGPL-2.1-or-later
|
PKG_LICENSE:=LGPL-2.1-or-later
|
||||||
|
PKG_LICENSE_FILES:=COPYING
|
||||||
|
|
||||||
PKG_FIXUP:=libtool
|
PKG_FIXUP:=autoreconf
|
||||||
|
|
||||||
PKG_INSTALL:=1
|
PKG_INSTALL:=1
|
||||||
PKG_BUILD_PARALLEL:=1
|
PKG_BUILD_PARALLEL:=1
|
||||||
PKG_USE_MIPS16:=0
|
PKG_USE_MIPS16:=0
|
||||||
|
@ -35,7 +36,6 @@ define Package/ola
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
TITLE:=Open Lighting Architecture Daemon
|
TITLE:=Open Lighting Architecture Daemon
|
||||||
URL:=https://www.openlighting.org/
|
URL:=https://www.openlighting.org/
|
||||||
MAINTAINER:=Christian Beier <dontmind@freeshell.org>
|
|
||||||
DEPENDS:=+protobuf +libftdi1 +libusb-1.0 +libuuid +libstdcpp +libpthread +librt +zlib +libncurses +liblo +libmicrohttpd
|
DEPENDS:=+protobuf +libftdi1 +libusb-1.0 +libuuid +libstdcpp +libpthread +librt +zlib +libncurses +liblo +libmicrohttpd
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ CONFIGURE_ARGS += \
|
||||||
--disable-fatal-warnings \
|
--disable-fatal-warnings \
|
||||||
--disable-unittests \
|
--disable-unittests \
|
||||||
--without-dns-sd \
|
--without-dns-sd \
|
||||||
--with-ola-protoc-plugin=$(STAGING_DIR_HOSTPKG)/bin/ola_protoc_plugin
|
--with-ola-protoc-plugin="$(STAGING_DIR_HOSTPKG)/bin/ola_protoc_plugin"
|
||||||
|
|
||||||
HOST_CONFIGURE_ARGS += \
|
HOST_CONFIGURE_ARGS += \
|
||||||
--disable-all-plugins \
|
--disable-all-plugins \
|
||||||
|
@ -65,6 +65,8 @@ HOST_CONFIGURE_ARGS += \
|
||||||
--disable-doxygen-html \
|
--disable-doxygen-html \
|
||||||
--disable-doxygen-doc
|
--disable-doxygen-doc
|
||||||
|
|
||||||
|
HOST_LDFLAGS += -Wl,-rpath="$(STAGING_DIR_HOSTPKG)/lib"
|
||||||
|
|
||||||
# only build the ola_protoc thingy
|
# only build the ola_protoc thingy
|
||||||
define Host/Compile
|
define Host/Compile
|
||||||
cd $(HOST_BUILD_DIR); \
|
cd $(HOST_BUILD_DIR); \
|
||||||
|
|
Loading…
Reference in a new issue