summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2015-01-23 14:33:19 +1100
committerChris Johns <chrisj@rtems.org>2015-01-23 14:33:19 +1100
commit8a7428c94baa2c587481e7a82e634f5597c06afe (patch)
tree77e6fca42e84cfd501b5c7b51cd6c105c9b15585
parentFix C++ build support for cross-compiling RTEMS 3rd party packages. (diff)
downloadrtems-source-builder-8a7428c94baa2c587481e7a82e634f5597c06afe.tar.bz2
Add Google Protocol Buffers as a 3prd party package for RTEMS.
https://developers.google.com/protocol-buffers/
-rw-r--r--rtems/.gitignore2
-rw-r--r--rtems/config/4.11/net/protobuf.bset20
-rw-r--r--rtems/config/net/protobuf-2.6.1-1.cfg21
-rw-r--r--source-builder/config/protobuf-2-1.cfg73
4 files changed, 116 insertions, 0 deletions
diff --git a/rtems/.gitignore b/rtems/.gitignore
index 20951cb..466e1a7 100644
--- a/rtems/.gitignore
+++ b/rtems/.gitignore
@@ -9,3 +9,5 @@ build
#*#
.*
log_*
+*.log
+*.txt
diff --git a/rtems/config/4.11/net/protobuf.bset b/rtems/config/4.11/net/protobuf.bset
new file mode 100644
index 0000000..c9c5dfc
--- /dev/null
+++ b/rtems/config/4.11/net/protobuf.bset
@@ -0,0 +1,20 @@
+#
+# Build set for Google Protocol Buffers
+#
+
+%define release 1
+
+#
+# RTEMS Version
+#
+%define rtems_version 4.11
+
+#
+# The RTEMS URL paths.
+#
+%include rtems-urls.bset
+
+#
+# Build Protocol Buffers.
+#
+net/protobuf-2.6.1-1
diff --git a/rtems/config/net/protobuf-2.6.1-1.cfg b/rtems/config/net/protobuf-2.6.1-1.cfg
new file mode 100644
index 0000000..5218eac
--- /dev/null
+++ b/rtems/config/net/protobuf-2.6.1-1.cfg
@@ -0,0 +1,21 @@
+#
+# Google Protocol Buffers 2.6.1
+#
+
+%if %{release} == %{nil}
+ %define release 1
+%endif
+
+%include %{_configdir}/rtems-bsp.cfg
+
+#
+# Google Protocol Buffers Version
+#
+%define protobuf_version 2.6.1
+
+%hash md5 protobuf-%{protobuf_version}.tar.gz f3916ce13b7fcb3072a1fa8cf02b2423
+
+#
+# Protocol Buffers configuration
+#
+%include %{_configdir}/protobuf-2-1.cfg
diff --git a/source-builder/config/protobuf-2-1.cfg b/source-builder/config/protobuf-2-1.cfg
new file mode 100644
index 0000000..f5b49c8
--- /dev/null
+++ b/source-builder/config/protobuf-2-1.cfg
@@ -0,0 +1,73 @@
+#
+# Google Protocol Buffers 2.x.x Version 1.
+#
+# This configuration file configure's, make's and install's Protocol Buffers
+#
+
+%if %{release} == %{nil}
+%define release 1
+%endif
+
+Name: protobuf-%{protobuf_version}-%{_host}-%{release}
+Summary: Protocol buffers are Googles language-neutral,
+ platform-neutral, extensible mechanism for serializing
+ structured data.
+Version: %{protobuf_version}
+Release: %{release}
+URL: https://developers.google.com/protocol-buffers/
+BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n)
+
+#
+# Protocol Buffers Source
+#
+%source set protobuf https://github.com/google/protobuf/releases/download/v%{protobuf_version}/protobuf-%{protobuf_version}.tar.gz
+
+#
+# Prepare the source code.
+#
+%prep
+ build_top=$(pwd)
+
+ source_dir_protobuf="protobuf-%{protobuf_version}"
+ %source setup protobuf -q -n protobuf-%{protobuf_version}
+ %patch setup protobuf -p1
+
+ cd ${build_top}
+
+%build
+ build_top=$(pwd)
+
+ %{build_directory}
+
+ mkdir -p ${build_dir}
+ cd ${build_dir}
+
+ %define host_cxxflags %{host_cxxflags} -fpermissive
+
+ %{host_build_flags}
+
+ ../${source_dir_protobuf}/configure \
+ --host=%{_host} \
+ --prefix=%{_prefix} \
+ --bindir=%{_bindir} \
+ --exec_prefix=%{_exec_prefix} \
+ --includedir=%{_includedir} \
+ --libdir=%{_libdir} \
+ --libexecdir=%{_libexecdir} \
+ --mandir=%{_mandir} \
+ --infodir=%{_infodir} \
+ --datadir=%{_datadir} \
+ --with-protoc=true
+
+ %{__make} %{?_smp_mflags} all
+
+ cd ${build_top}
+
+%install
+ build_top=$(pwd)
+
+ %{__rmdir} $SB_BUILD_ROOT
+
+ cd ${build_dir}
+ %{__make} DESTDIR=$SB_BUILD_ROOT install
+ cd ${build_top}