]> git.pld-linux.org Git - packages/autoconf.git/blob - autoconf.spec
- updated to 2.13.
[packages/autoconf.git] / autoconf.spec
1 Summary:     GNU autoconf - source configuration tools
2 Summary(pl): GNU autoconf - narzêdzie do automatycznego konfigurowania ¼róde³
3 Name:        autoconf
4 Version:     2.13
5 Release:     1
6 Copyright:   GPL
7 Group:       Development/Building
8 Source:      ftp://prep.ai.mit.edu/pub/gnu/%{name}-%{version}.tar.gz
9 Patch0:      autoconf-tmprace.patch
10 Patch1:      autoconf-info.patch
11 Requires:    gawk, m4, mktemp, perl
12 Prereq:      /sbin/install-info
13 BuildRoot:   /tmp/%{name}-%{version}-root
14 Buildarch:   noarch
15
16 %description
17 GNU's "autoconf" is a tool for source and Makefile configuration. It
18 assists the programmer in creating portable and configurable packages, by
19 allowing the person building the package to specify various configuration
20 options. 
21
22 "autoconf" is not required for the end user - it is needed only to
23 generate the configuration scripts. 
24
25 %description -l pl
26 GNU autoconf jest narzêdziem wykorzystywanym do automatycznego
27 konfigurowania kodów ¼ród³owych pakietów programów oraz do generowania na
28 podstawie automatycznie roz[oznanego ¶rodowiska plików Makefile i innch
29 zale¿nych od zawarto¶ci systemu w którym ma przebiegaæ proces kompilacji.
30 d102 1
31 przenie¶æ na ró¿ne platformy. Umo¿liwia wybór wielu opcji podczas procesu
32 przygotowania do kompilacji.
33
34 GNU autoconf nie jest generalnie potrzebny dla u¿ytkownika koñcowego, a
35 tylko podczas generowania samych skryptów autokonfiguracyjnych.
36  
37 %prep
38 %setup -q
39 %patch0 -p1
40 %patch1 -p1
41
42 %build
43 ./configure \
44         --prefix=/usr
45 make datadir=/usr/lib
46
47 %install
48 rm -rf $RPM_BUILD_ROOT
49 install -d $RPM_BUILD_ROOT/usr/info
50
51 make prefix=$RPM_BUILD_ROOT/usr datadir=$RPM_BUILD_ROOT/usr/lib install
52 install install-sh $RPM_BUILD_ROOT/usr/lib/autoconf
53
54 gzip -9nf $RPM_BUILD_ROOT/usr/info/autoconf.info*
55
56 %clean
57 rm -rf $RPM_BUILD_ROOT
58
59 %post
60 /sbin/install-info /usr/info/autoconf.info.gz /etc/info-dir
61
62 %preun
63 if [ $1 = 0 ]; then
64         /sbin/install-info --del /usr/info/autoconf.info.gz /etc/info-dir
65 fi
66
67 %files
68 %defattr(644, root, root, 755)
69 /usr/info/autoconf.info*
70 %attr(755, root, root) /usr/bin/*
71 /usr/lib/autoconf
72
73 %changelog
74 * Wed Dec 29 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
75   [2.12-7]
76 - standarized {un}registering info pages 
77   (added autoconf-info.patch).
78
79 * Mon Sep 21 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
80   [2.12-5]
81 - added -q %setup parameter,
82 - changed Buildroot to /tmp/%%{name}-%%{version}-root,
83 - added using %%{name} and %%{version} in Source,
84 - modified pl translation,
85 - added full %attr description in %files.
86
87 * Thu Aug 27 1998 Cristian Gafton <gafton@redhat.com>
88 - patch for fixing /tmp race conditions
89
90 * Fri Jun 12 1998 Wojtek ¦lusarczyk <wojtek@shadow.eu.org>
91   [2.12-5]
92 - added pl transaltion,
93 - added %defattr support.
94
95 * Sun Oct 19 1997 Erik Troan <ewt@redhat.com>
96 - spec file cleanups
97 - made a noarch package
98 - uses autoconf
99 - uses install-info
100
101 * Thu Jul 17 1997 Erik Troan <ewt@redhat.com>
102 - built with glibc- built with glibc
This page took 0.074128 seconds and 4 git commands to generate.