--- rtems/config/4.11/graphics/t1lib.bset | 20 ++++++++++ rtems/config/graphics/t1lib-5.1.2-1.cfg | 21 ++++++++++ source-builder/config/t1lib-1.cfg | 69 +++++++++++++++++++++++++++++++++ 3 files changed, 110 insertions(+) create mode 100644 rtems/config/4.11/graphics/t1lib.bset create mode 100644 rtems/config/graphics/t1lib-5.1.2-1.cfg create mode 100644 source-builder/config/t1lib-1.cfg
diff --git a/rtems/config/4.11/graphics/t1lib.bset b/rtems/config/4.11/graphics/t1lib.bset new file mode 100644 index 0000000..63b4f73 --- /dev/null +++ b/rtems/config/4.11/graphics/t1lib.bset @@ -0,0 +1,20 @@ +# +# Build set for adobe type 1 library +# + +%define release 1 + +# +# RTEMS Version +# +%define rtems_version 4.11 + +# +# The RTEMS URL paths. +# +%include rtems-urls.bset + +# +# Build t1lib. +# +graphics/t1lib-5.1.2-1.cfg diff --git a/rtems/config/graphics/t1lib-5.1.2-1.cfg b/rtems/config/graphics/t1lib-5.1.2-1.cfg new file mode 100644 index 0000000..da18ba1 --- /dev/null +++ b/rtems/config/graphics/t1lib-5.1.2-1.cfg @@ -0,0 +1,21 @@ +# +# t1lib 5.1.2 +# + +%if %{release} == %{nil} + %define release 1 +%endif + +%include %{_configdir}/rtems-bsp.cfg + +# +# t1lib Version +# +%define t1lib_version 5.1.2 + +%hash md5 t1lib-%{t1lib_version}.tar.gz a5629b56b93134377718009df1435f3c + +# +# t1lib Build configuration +# +%include %{_configdir}/t1lib-1.cfg diff --git a/source-builder/config/t1lib-1.cfg b/source-builder/config/t1lib-1.cfg new file mode 100644 index 0000000..83be6cb --- /dev/null +++ b/source-builder/config/t1lib-1.cfg @@ -0,0 +1,69 @@ +# +# t1lib +# +# This configuration file configure's, make's and install's t1lib. +# + +%if %{release} == %{nil} +%define release 1 +%endif + +Name: t1lib-v%{t1lib_version}-%{_host}-%{release} +Summary: t1lib is the official PNG reference library +Version: %{t1lib_version} +Release: %{release} +URL: http://www.t1lib.org/ +BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n) + +# +# t1lib Source +# +%source set t1lib ftp://ftp.netbsd.org/pub/pkgsrc/distfiles/t1lib-%{t1lib_version}.tar.gz +%patch add t1lib https://raw.githubusercontent.com/yangqiao/rtems-tools/graphics/tools/4.11/t1lib/t1lib-5.1.2.diff + +# +# Prepare the source code. +# +%prep + build_top=$(pwd) + + source_dir_t1lib="t1lib-%{t1lib_version}" + %source setup t1lib -q -n t1lib-%{t1lib_version} + %patch setup t1lib -p1 + + cd ${build_top} + +# +# Build the source code. +# The configure should be run in the source dir +# +%build + build_top=$(pwd) + + %{build_directory} + + cd ${source_dir_t1lib} + + %{host_build_flags} + + ./configure \ + --host=%{_host} \ + --prefix=%{_prefix} \ + --includedir=%{_includedir} \ + --datadir=${_prefix}/share \ + --libdir=%{_libdir} \ + --disable-shared \ + --without-athena --without-x + + %{__make} %{?_smp_mflags} without_doc + + cd ${build_top} + +%install + build_top=$(pwd) + + %{__rmdir} $SB_BUILD_ROOT + + cd ${source_dir_t1lib} + %{__make} DESTDIR=$SB_BUILD_ROOT install + cd ${build_top} -- 2.1.0
_______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel