]> git.pld-linux.org Git - packages/autoconf.git/commitdiff
- added -q %setup parameter,
authorkloczek <kloczek@pld-linux.org>
Sun, 20 Sep 1998 23:26:44 +0000 (23:26 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- changed Buildroot to /tmp/%%{name}-%%{version}-root,
- added using %%{name} and %%{version} in Source,
- modified pl translation,
- added full %attr description in %files.
- added patch for fixing /tmp race conditions
  (Cristian Gafton <gafton@redhat.com>),
By Wojtek Ślusarczyk <wojtek@shadow.eu.org>:
- added pl transaltion,
- added %defattr support.

Changed files:
    autoconf.spec -> 1.1

autoconf.spec [new file with mode: 0644]

diff --git a/autoconf.spec b/autoconf.spec
new file mode 100644 (file)
index 0000000..e03bc6c
--- /dev/null
@@ -0,0 +1,95 @@
+Summary:     GNU autoconf - source configuration tools
+Summary(pl): GNU autokonf - narzêdzie do automatycznego konfigurowania ¼róde³
+Name:        autoconf
+Version:     2.12
+Release:     6
+Copyright:   GPL
+Group:       Development/Building
+Source:      ftp://prep.ai.mit.edu/pub/gnu/%{name}-%{version}.tar.gz
+Patch0:      autoconf-2.12-race.patch
+Requires:    gawk, m4, mktemp
+BuildArchitectures: noarch
+BuildRoot:   /tmp/%{name}-%{version}-root
+Prereq:      /sbin/install-info
+
+%description
+GNU's "autoconf" is a tool for source and Makefile configuration. It
+assists the programmer in creating portable and configurable packages, by
+allowing the person building the package to specify various configuration
+options. 
+
+"autoconf" is not required for the end user - it is needed only to
+generate the configuration scripts. 
+
+%description -l pl
+GNU autoconf jest narzêdziem wykorzystywanym do automatycznego
+konfigurowania kodów ¼ród³owych pakietów programów oraz do generowania na
+podstawie automatycznie roz[oznanego ¶rodowiska plików Makefile i innch
+zale¿nych od zawarto¶ci systemu w którym ma przebiegaæ proces kompilacji.
+d102 1
+przenie¶æ na ró¿ne platformy. Umo¿liwia wybór wielu opcji podczas procesu
+przygotowania do kompilacji.
+
+GNU autoconf nie jest generalnie potrzebny dla u¿ytkownika koñcowego, a
+tylko podczas generowania samych skryptów autokonfiguracyjnych.
+%prep
+%setup -q
+%patch0 -p1
+
+%build
+./configure --prefix=/usr
+make datadir=/usr/lib
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT/usr/info
+
+make prefix=$RPM_BUILD_ROOT/usr datadir=$RPM_BUILD_ROOT/usr/lib install
+gzip -9nf $RPM_BUILD_ROOT/usr/info/autoconf.info*
+
+# We don't want to include the standards.info stuff in the package,
+# because it comes from binutils...
+rm -f $RPM_BUILD_ROOT/usr/info/standards*
+cp install-sh $RPM_BUILD_ROOT/usr/lib/autoconf
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+/sbin/install-info /usr/info/autoconf.info.gz /usr/info/dir
+
+%preun
+/sbin/install-info --del /usr/info/autoconf.info.gz /usr/info/dir
+
+%files
+%defattr(644, root, root, 755)
+/usr/info/autoconf.info*
+%attr(755, root, root) /usr/bin/*
+/usr/lib/autoconf
+
+%changelog
+* Mon Sep 21 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
+  [2.12-5]
+- added -q %setup parameter,
+- changed Buildroot to /tmp/%%{name}-%%{version}-root,
+- added using %%{name} and %%{version} in Source,
+- modified pl translation,
+- added full %attr description in %files.
+
+* Thu Aug 27 1998 Cristian Gafton <gafton@redhat.com>
+- patch for fixing /tmp race conditions
+
+* Fri Jun 12 1998 Wojtek ¦lusarczyk <wojtek@shadow.eu.org>
+  [2.12-5]
+- added pl transaltion,
+- added %defattr support.
+
+* Sun Oct 19 1997 Erik Troan <ewt@redhat.com>
+- spec file cleanups
+- made a noarch package
+- uses autoconf
+- uses install-info
+
+* Thu Jul 17 1997 Erik Troan <ewt@redhat.com>
+- built with glibc- built with glibc
This page took 0.061816 seconds and 4 git commands to generate.