From 09016ac090303133b212619e03c7a678c3cf65a8 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 8 Jan 2007 08:22:48 +0000 Subject: Remove (Obsolete). --- scripts/autotools/.cvsignore | 4 -- scripts/autotools/Makefile.am | 25 ----------- scripts/autotools/autoconf.add | 89 --------------------------------------- scripts/autotools/automake.add | 95 ------------------------------------------ scripts/autotools/header.add | 3 -- 5 files changed, 216 deletions(-) delete mode 100644 scripts/autotools/.cvsignore delete mode 100644 scripts/autotools/Makefile.am delete mode 100644 scripts/autotools/autoconf.add delete mode 100644 scripts/autotools/automake.add delete mode 100644 scripts/autotools/header.add (limited to 'scripts/autotools') diff --git a/scripts/autotools/.cvsignore b/scripts/autotools/.cvsignore deleted file mode 100644 index 91993472f0..0000000000 --- a/scripts/autotools/.cvsignore +++ /dev/null @@ -1,4 +0,0 @@ -*.spec -*.spec.in -Makefile -Makefile.in diff --git a/scripts/autotools/Makefile.am b/scripts/autotools/Makefile.am deleted file mode 100644 index 9894ddd416..0000000000 --- a/scripts/autotools/Makefile.am +++ /dev/null @@ -1,25 +0,0 @@ -## -## $Id$ -## - -include $(top_srcdir)/common/common.am - -automake-rtems.spec.in: header.add $(top_builddir)/common/common.add automake.add - cat $^ > $@ -CLEANFILES = automake-rtems.spec.in -RPM_SPECS_DATA = @rpmprefix@automake-rtems.spec - -autoconf-rtems.spec.in: header.add $(top_builddir)/common/common.add autoconf.add - cat $^ > $@ -CLEANFILES += autoconf-rtems.spec.in -RPM_SPECS_DATA += @rpmprefix@autoconf-rtems.spec - -@rpmprefix@autoconf-rtems.spec: autoconf-rtems.spec.in - $(top_builddir)/config.status --file=@rpmprefix@autoconf-rtems.spec:autoconf-rtems.spec.in - -@rpmprefix@automake-rtems.spec: automake-rtems.spec.in - $(top_builddir)/config.status --file=@rpmprefix@automake-rtems.spec:automake-rtems.spec.in - -CLEANFILES += $(RPM_SPECS_DATA) - -include $(top_srcdir)/../automake/local.am diff --git a/scripts/autotools/autoconf.add b/scripts/autotools/autoconf.add deleted file mode 100644 index 6780f189b7..0000000000 --- a/scripts/autotools/autoconf.add +++ /dev/null @@ -1,89 +0,0 @@ -%define rpmvers 2.60 -%define srcvers 2.60 - -%define _name autoconf - -%if "%{_prefix}" != "/usr" -%define name @rpmprefix@%{_name}-rtems -%else -%define name %{_name} -%endif - - -Name: %{name} -License: GPL -URL: http://www.gnu.org/software/autoconf -Group: @rpmgroup@ -Version: %{rpmvers} -Release: 0%{?dist} -Summary: Tool for automatically generating GNU style Makefile.in's - -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch -BuildRequires: perl m4 gawk emacs -Requires: m4 gawk -Requires(post): /sbin/install-info -Requires(preun): /sbin/install-info - -Source: autoconf-%{srcvers}.tar.bz2 - -%description -GNU's Autoconf is a tool for configuring source code and Makefiles. -Using Autoconf, programmers can create portable and configurable -packages, since the person building the package is allowed to -specify various configuration options. -You should install Autoconf if you are developing software and you'd -like to use it to create shell scripts which will configure your -source code packages. -Note that the Autoconf package is not required for the end user who -may be configuring software with an Autoconf-generated script; -Autoconf is only required for the generation of the scripts, not -their use. - -%prep -%setup -q -n %{_name}-%{srcvers} - -%build -./configure --prefix=%{_prefix} --infodir=%{_infodir} --mandir=%{_mandir} \ - --bindir=%{_bindir} --datadir=%{_datadir} -make - -%install -rm -rf "${RPM_BUILD_ROOT}" -make DESTDIR=${RPM_BUILD_ROOT} install - -# Create this directory to prevent the corresponding line -# in %%files below to fail -mkdir -p ${RPM_BUILD_ROOT}%{_datadir}/emacs/site-lisp - -rm -f $RPM_BUILD_ROOT%{_infodir}/dir -touch $RPM_BUILD_ROOT%{_infodir}/dir - -gzip -9qf $RPM_BUILD_ROOT%{_infodir}/autoconf.info* 2>/dev/null -# RTEMS's standards.info comes from binutils -rm -f $RPM_BUILD_ROOT%{_infodir}/standards.info* - -gzip -9qf $RPM_BUILD_ROOT%{_mandir}/man?/* 2>/dev/null - -%clean - rm -rf "$RPM_BUILD_ROOT" - -%post -install-info --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz - -%preun -if [ $1 -eq 0 ]; then - install-info --delete --info-dir=%{_infodir} %{_infodir}/autoconf.info.gz -fi - -%files -%defattr(-,root,root) -# %doc AUTHORS COPYING ChangeLog NEWS README THANKS -%{_bindir}/* -%dir %{_infodir} -%ghost %{_infodir}/dir - -%{_infodir}/autoconf.info* -%{_mandir}/man?/* -%{_datadir}/autoconf -%exclude %{_datadir}/emacs/site-lisp diff --git a/scripts/autotools/automake.add b/scripts/autotools/automake.add deleted file mode 100644 index 4edc595df9..0000000000 --- a/scripts/autotools/automake.add +++ /dev/null @@ -1,95 +0,0 @@ -# -# spec file for automake -# - -%define rpmvers 1.9.6 -%define srcvers 1.9.6 -%define amvers 1.9 - -%define _name automake - -%if "%{_prefix}" != "/usr" -%define name @rpmprefix@%{_name}-rtems -%define requirements @rpmprefix@autoconf-rtems >= 2.59 -%else -%define name %{_name} -%define requirements autoconf >= 2.59 -%endif - -Name: %{name} -URL: http://sources.redhat.com/automake -License: GPL -Group: @rpmgroup@ -Version: %{rpmvers} -Release: 0%{?dist} -Summary: Tool for automatically generating GNU style Makefile.in's - -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch -BuildRequires: %{requirements} perl help2man -Requires: %{requirements} -Requires(post): /sbin/install-info -Requires(preun): /sbin/install-info - -Source: ftp://ftp.gnu.org/gnu/automake/automake-%{srcvers}.tar.bz2 -Patch0: automake-1.8.1-rtems-20040112-1.diff - -%description -Automake is a tool for automatically generating "Makefile.in"s from -files called "Makefile.am". "Makefile.am" is basically a series of -"make" macro definitions (with rules being thrown in occasionally). -The generated "Makefile.in"s are compatible to the GNU Makefile -standards. - -%prep -%setup -q -n %{_name}-%{srcvers} -%patch0 -p0 - -%build -PATH=%{_prefix}/bin:$PATH -./configure --prefix=%{_prefix} --infodir=%{_infodir} --mandir=%{_mandir} \ - --bindir=%{_bindir} --datadir=%{_datadir} -make - -%install -rm -rf "$RPM_BUILD_ROOT" -make DESTDIR=${RPM_BUILD_ROOT} install - -install -m 755 -d $RPM_BUILD_ROOT/%{_mandir}/man1 -for i in $RPM_BUILD_ROOT%{_bindir}/aclocal \ - $RPM_BUILD_ROOT%{_bindir}/automake ; -do - perllibdir=$RPM_BUILD_ROOT/%{_datadir}/automake-%{amvers} \ - help2man $i > `basename $i`.1 - install -m 644 `basename $i`.1 $RPM_BUILD_ROOT/%{_mandir}/man1 -done - -gzip -9qf $RPM_BUILD_ROOT%{_infodir}/*.info* 2>/dev/null -gzip -9qf $RPM_BUILD_ROOT%{_mandir}/man?/* 2>/dev/null - -rm -f $RPM_BUILD_ROOT%{_infodir}/dir -touch $RPM_BUILD_ROOT%{_infodir}/dir - -%clean - rm -rf "$RPM_BUILD_ROOT" - -%post -install-info --info-dir=%{_infodir} %{_infodir}/automake.info.gz - -%preun -if [ $1 -eq 0 ]; then - install-info --delete --info-dir=%{_infodir} %{_infodir}/automake.info.gz -fi - -%files -%defattr(-,root,root) -%doc AUTHORS COPYING ChangeLog NEWS README THANKS -%{_bindir}/aclocal* -%{_bindir}/automake* -%dir %{_infodir} -%ghost %{_infodir}/dir -%{_infodir}/automake.info*.gz -%{_mandir}/man?/* -%{_datadir}/aclocal-%{amvers} -%{_datadir}/automake-%{amvers} - diff --git a/scripts/autotools/header.add b/scripts/autotools/header.add deleted file mode 100644 index 960409dc2a..0000000000 --- a/scripts/autotools/header.add +++ /dev/null @@ -1,3 +0,0 @@ -# -# Copyright (c) 2005 Ralf Corsepius, Ulm/Germany -# -- cgit v1.2.3