Chris Johns 0ffee19316 sb: Add support for building RTEMS 3rd party packages.
Remove the 'opt' from various macros and shell variables.

Add pkgconfig to the checks to make it clear the check is a
pkgconfig check.

Add NTP support as the first package to be built using the RSB.

Split the RTEMS URL's out from the base bset file into a separate
file that be included by other files.

Add an RTEMS BSP configuration file to help abstract the process
of building 3rd party packages.

Clean the cross and canadian cross support up so we can cleanly support
cross and canadian cross building.

Refactor the pkgconfig support and clean up the PC file handling of
loading modules.

Add support for %{?..} to return false if a macro is %{nil}.

Add %{pkgconfig ..} support to allow better control of access RTEMS
pkgconfig files.
2014-06-15 17:40:34 +12:00

84 lines
1.7 KiB
INI

#
# Automake 1.xx Version 1.
#
# This configuration file configure's, make's and install's automake
#
%ifn %{defined _internal_autotools}
%define _internal_autotools no
%ifn %{defined _internal_autotools_path}
%define _internal_autotools_path %{nil}
%endif
%endif
Name: automake-%{automake_version}-%{_host}-%{release}
Summary: Automake v%{automake_version} for host %{_host}
Version: %{automake_version}
Release: %{release}
URL: http://www.gnu.org/software/automake/
BuildRoot: %{_tmppath}/%{name}-root-%(%{__id_u} -n)
#
# Source
#
%source set automake ftp://ftp.gnu.org/gnu/automake/automake-%{automake_version}.tar.gz
#
# Prepare the source code.
#
%prep
build_top=$(pwd)
%source setup automake -q -n automake-%{automake_version}
%patch setup automake -p1
cd ${build_top}
%build
build_top=$(pwd)
%if %{defined _internal_autotools_path}
export PATH="%{_internal_autotools_path}/bin:${PATH}"
%endif
cd automake-%{automake_version}
if test "%{_internal_autotools}" = "yes"; then
am_prefix=%{_internal_autotools_path}
else
am_prefix=%{_prefix}
fi
if test "%{_build}" != "%{_host}" ; then
CFLAGS_FOR_BUILD="-g -O2 -Wall"
fi
export CFLAGS CFLAGS_FOR_BUILD CC
CFLAGS="$SB_CFLAGS" \
./configure \
--build=%{_build} --host=%{_host} \
--verbose \
--prefix=${am_prefix}
%{__make} %{?_smp_mflags} all
unset CFLAGS_FOR_BUILD
cd ${build_top}
%install
build_top=$(pwd)
export PATH="%{_bindir}:${PATH}"
%{__rmdir} $SB_BUILD_ROOT
cd automake-%{automake_version}
if test "%{_internal_autotools}" = "yes"; then
%{__make} install
else
%{__make} DESTDIR=$SB_BUILD_ROOT install
fi
cd ${build_top}