Committed some stilistic changes to the italian manual pages.
[midnight-commander.git] / mc.spec.in
blobe1871dbcd0e04eeb00ce874defa717cded6d9e05
1 # Conditional build (replace "#" with "%" to enable):
3 #define _with_ncurses 1 # use ncurses
4 #define _with_included_slang 1 # use included S-Lang library
5 #define _with_charset 1 # enable code for charset conversion
6 #define _with_samba 1 # enable SMB/CIFS virtual file system
7 #define _with_ext2undel 1 # compile with ext2 undelete code
8 #define _without_x 1 # avoid dependency on X11 libraries
10 # Note that this is NOT a relocatable package
11 %define ver @VERSION@
12 %define rpmver @RPM_VERSION@
13 %define RELEASE 1
14 %define rel %{?CUSTOM_RELEASE} %{!?CUSTOM_RELEASE:%RELEASE}
16 Summary: Midnight Commander visual shell
17 Name: mc
18 Version: %rpmver
19 Release: %rel
20 Epoch: 1
21 Copyright: GPL
22 Group: Applications/File
23 Source0: ftp://ftp.ibiblio.org/pub/Linux/utils/file/managers/mc/mc-%{ver}.tar.gz
24 URL: http://www.ibiblio.org/mc/
25 BuildRoot: /var/tmp/mc-%{PACKAGE_VERSION}-root
26 BuildRequires: glib-devel
27 %{!?_with_included_slang:%{!?_with_ncurses:BuildRequires: slang-devel}}
28 %{?_with_ncurses:BuildRequires: ncurses-devel}
30 %description
31 GNU Midnight Commander is a visual file manager. It's a feature rich
32 full-screen text mode application that allows you to copy, move and
33 delete files and whole directory trees, search for files and run
34 commands in the subshell. Internal viewer and editor are included.
35 Mouse is supported under X Window System and on Linux console. VFS
36 (Virtual Filesystem) allows you to view archives and files on remote
37 servers.
39 %prep
40 %setup -q -n mc-%{ver}
42 %build
43 CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" ./configure \
44 --prefix=%{_prefix} \
45 --mandir=%{_mandir} \
46 %{?_with_ncurses: --with-screen=ncurses} \
47 %{?_with_included_slang: --with-screen=mcslang} \
48 %{?_with_charset: --enable-charset} \
49 %{?_with_samba: --with-samba} \
50 %{?_with_ext2undel: --with-ext2undel} \
51 %{?_without_x: --without-x}
53 make
55 %install
56 echo $RPM_BUILD_ROOT
57 rm -rf $RPM_BUILD_ROOT
58 make install DESTDIR=$RPM_BUILD_ROOT
59 install -d $RPM_BUILD_ROOT/etc/profile.d
60 cp -f $RPM_BUILD_ROOT%{_prefix}/share/mc/bin/mc.{csh,sh} \
61 $RPM_BUILD_ROOT/etc/profile.d
64 %clean
65 rm -rf $RPM_BUILD_ROOT
67 %files
68 %defattr(-, root, root)
70 %doc FAQ COPYING NEWS README
71 %{_prefix}/bin/mc
72 %{_prefix}/bin/mcedit
73 %{_prefix}/bin/mcview
74 %{_prefix}/bin/mcmfmt
75 %{_prefix}/lib/mc/cons.saver
76 %{_mandir}/man1/*
77 %{_mandir}/*/man1/*
79 %config /etc/profile.d/*
80 %{_prefix}/share/mc/cedit.menu
81 %{_prefix}/share/mc/edit.indent.rc
82 %{_prefix}/share/mc/edit.spell.rc
83 %{_prefix}/share/mc/bin/*
84 %{_prefix}/share/mc/extfs/*
85 %{_prefix}/share/mc/mc.ext
86 %{_prefix}/share/mc/mc.lib
87 %{_prefix}/share/mc/mc.menu
88 %{?_with_charset:%config %{_prefix}/share/mc/mc.charsets}
90 %{_prefix}/share/mc/mc.hint*
91 %{_prefix}/share/mc/mc.hlp*
92 %{_prefix}/share/mc/syntax/*
93 %{_prefix}/share/mc/term/*
94 %{_prefix}/share/locale/*/LC_MESSAGES/*
96 %dir %{_prefix}/lib/mc
97 %dir %{_prefix}/share/mc
98 %dir %{_prefix}/share/mc/extfs
99 %dir %{_prefix}/share/mc/syntax
100 %dir %{_prefix}/share/mc/term
102 %changelog
103 * Sun Feb 16 2003 Pavel Roskin <proski@gnu.org>
104 - Remove obsolete dependency on /sbin/chkconfig.
106 * Tue Dec 24 2002 Pavel Roskin <proski@gnu.org>
107 - Work around bug in rpm 4.1 that expands defines in comments.
108 - Handle --without-x.
110 * Mon Nov 04 2002 Andrew V. Samoilov <sav@bcs.zp.ua>
111 - Handle --with ext2undel.
113 * Fri Nov 01 2002 Pavel Roskin <proski@gnu.org>
114 - Add wrappers to support setting last directory on exit. Keep all
115 scripts in their original directory, just copy them.
117 * Tue Oct 22 2002 Pavel Roskin <proski@gnu.org>
118 - Don't use the included S-Lang, there is a workaround for Red Hat 8.0
119 S-Lang, and binary compatibility with Red Hat 7.x doesn't work anyway.
121 * Tue Oct 08 2002 Pavel Roskin <proski@gnu.org>
122 - Use the included S-Lang again, since we include a better version now.
123 This should avoid incompatibility with Red Hat 7.x.
124 - Add _with_glib2 option.
126 * Mon Oct 07 2002 Pavel Roskin <proski@gnu.org>
127 - Remove installed mc.sh and mc.csh from %{_prefix}/share/mc/bin to
128 suppress a warning about installed but unpackaged files.
130 * Mon Sep 30 2002 Andrew V. Samoilov <sav@bcs.zp.ua>
131 - Don't require slang-devel if _with_ncurses.
132 - Handle --with samba.
134 * Sun Sep 29 2002 Pavel Roskin <proski@gnu.org>
135 - Use --with-screen instead of --with-ncurses and --with-included-slang.
137 * Mon Sep 23 2002 Andrew V. Samoilov <sav@bcs.zp.ua>
138 - Restore %config for %{_prefix}/share/mc/mc.charsets.
139 - Restore %{_prefix}/share/mc/edit.spell.rc.
141 * Sat Sep 21 2002 Pavel Roskin <proski@gnu.org>
142 - Use FHS-compliant paths.
143 - Drop %config from files under /usr/share - users are not supposed to
144 edit them. Local copies under ~/.mc should be used for that.
146 * Wed Aug 21 2002 Pavel Roskin <proski@gnu.org>
147 - Change description, update URLs, allow dash in the version.
149 * Tue Aug 20 2002 Pavel Roskin <proski@gnu.org>
150 - Support conditional builds.
152 * Tue Aug 20 2002 Andrew V. Samoilov <sav@bcs.zp.ua>
153 - Add /usr/lib/mc/mc.charsets.
154 - Add %{_mandir}/*/man1/*.
156 * Fri Aug 16 2002 Pavel Roskin <proski@gnu.org>
157 - Remove mc.global.
159 * Mon Jan 21 2002 Pavel Roskin <proski@gnu.org>
160 - Remove --with-gnome and --with-included-slang from configure options.
161 - Add BuildPrereq.
163 * Fri Aug 24 2001 Pavel Roskin <proski@gnu.org>
164 - Remove gmc. Reunite mc and mc-common.
166 * Sun Aug 05 2001 Pavel Roskin <proski@gnu.org>
167 - Set epoch.
169 * Sun Jul 15 2001 Pavel Roskin <proski@gnu.org>
170 - Remove /usr/lib/mc/layout.
172 * Sat Jun 09 2001 Pavel Roskin <proski@gnu.org>
173 - Use %{_prefix} and %{_mandir}. Specify --mandir to configure.
175 * Fri May 25 2001 Pavel Roskin <proski@gnu.org>
176 - Change groups. Don't include locale directories. More config files.
178 * Sun May 20 2001 Pavel Roskin <proski@gnu.org>
179 - Don't require stylesheets, since HTML files are now in the tarball.
181 * Thu Apr 19 2001 Pavel Roskin <proski@gnu.org>
182 - Remove package mcserv. Drop dependency on PAM.
184 * Mon Feb 26 2001 Pavel Roskin <proski@gnu.org>
185 - Remove mc-gnome.ext.
187 * Thu Jan 11 2001 Pavel Roskin <proski@gnu.org>
188 - Include mcview.
190 * Mon Oct 23 2000 Pavel Roskin <proski@gnu.org>
191 - Allow mcserv.8 to be gzipped.
193 * Sat Sep 30 2000 Pavel Roskin <proski@gnu.org>
194 - New package mc-common.
195 - Use DESTDIR instead of misusing prefix.
196 - Don't install old icons - they don't exist
198 * Sat Sep 23 2000 Pavel Roskin <proski@gnu.org>
199 - Include translations with mc, not gmc
200 - chkconfig --del in %preun, not %postun
201 - --without-debug not needed
202 - /etc/X11/wmconfig not needed
203 - /etc/pam.d/mcserv shouldn't be executable
204 - New files in %{prefix}/lib/mc/ - translated hints, editor files
206 * Thu Sep 09 1999 Elliot Lee <sopwith@redhat.com>
207 - Include .idl files in the package.
209 * Sat Sep 04 1999 Gregory McLean <gregm@comstar.net>
210 - Added a build prereq so that rpms get built with documentation ;)
212 * Mon Jul 12 1999 Kjartan Maraas <kmaraas@online.no>
213 - added help and locale files to %files
215 * Tue Jun 22 1999 Vladimir Kondratiev <vkondra@iil.intel.com>
216 - added syntax files to %files
218 * Wed May 26 1999 Cody Russell <bratsche@dfw.net>
219 - chmod cons.saver at $RPM_BUILD_ROOT%{prefix}/lib rather than at
220 $RPM_BUILD_ROOT/usr/lib. We can now install to somewhere other than /usr.
222 * Sun Apr 18 1999 Gregory McLean <gregm@comstar.net>
223 - Updated the specfile, removed some kludges.
225 * Thu Aug 20 1998 Michael Fulbright <msf@redhat.com>
226 - rebuilt against gnome-libs 0.27 and gtk+-1.1
228 * Thu Jul 09 1998 Michael Fulbright <msf@redhat.com>
229 - made cons.saver not setuid
231 * Sun Apr 19 1998 Marc Ewing <marc@redhat.com>
232 - removed tkmc
234 * Wed Apr 8 1998 Marc Ewing <marc@redhat.com>
235 - add /usr/lib/mc/layout to gmc
237 * Tue Dec 23 1997 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
238 - added --without-debug to configure,
239 - modification in %build and %install and cosmetic modification in packages
240 headers,
241 - added %%{PACKAGE_VERSION} macro to Buildroot,
242 - removed "rm -rf $RPM_BUILD_ROOT" from %prep.
243 - removed Packager field.
245 * Thu Dec 18 1997 Michele Marziani <marziani@fe.infn.it>
246 - Merged spec file with that from RedHat-5.0 distribution
247 (now a Hurricane-based distribution is needed)
248 - Added patch for RPM script (didn't always work with rpm-2.4.10)
249 - Corrected patch for mcserv init file (chkconfig init levels)
250 - Added more documentation files on termcap, terminfo, xterm
252 * Thu Oct 30 1997 Michael K. Johnson <johnsonm@redhat.com>
254 - Added dependency on portmap
256 * Wed Oct 29 1997 Michael K. Johnson <johnsonm@redhat.com>
258 - fixed spec file.
259 - Updated to 4.1.8
261 * Sun Oct 26 1997 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
263 - updated to 4.1.6
264 - added %attr macros in %files,
265 - a few simplification in %install,
266 - removed glibc patch,
267 - fixed installing /etc/X11/wmconfig/tkmc.
269 * Thu Oct 23 1997 Michael K. Johnson <johnsonm@redhat.com>
271 - updated to 4.1.5
272 - added wmconfig
274 * Wed Oct 15 1997 Erik Troan <ewt@redhat.com>
276 - chkconfig is for mcserv package, not mc one
278 * Tue Oct 14 1997 Erik Troan <ewt@redhat.com>
280 - patched init script for chkconfig
281 - don't turn on the service by default
283 * Fri Oct 10 1997 Michael K. Johnson <johnsonm@redhat.com>
285 - Converted to new PAM conventions.
286 - Updated to 4.1.3
287 - No longer needs glibc patch.
289 * Thu May 22 1997 Michele Marziani <marziani@fe.infn.it>
291 - added support for mc alias in /etc/profile.d/mc.csh (for csh and tcsh)
292 - lowered number of SysV init scripts in /etc/rc.d/rc[0,1,6].d
293 (mcserv needs to be killed before inet)
294 - removed all references to $RPM_SOURCE_DIR
295 - restored $RPM_OPT_FLAGS when compiling
296 - minor cleanup of spec file: redundant directives and comments removed
298 * Sun May 18 1997 Michele Marziani <marziani@fe.infn.it>
300 - removed all references to non-existent mc.rpmfs
301 - added mcedit.1 to the %files section
302 - reverted to un-gzipped man pages (RedHat style)
303 - removed double install line for mcserv.pamd
305 * Tue May 13 1997 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
307 - added new rpmfs script,
308 - removed mcfn_install from mc (adding mc() to bash enviroment is in
309 /etc/profile.d/mc.sh),
310 - /etc/profile.d/mc.sh changed to %config,
311 - removed /usr/lib/mc/bin/create_vcs,
312 - removed /usr/lib/mc/term.
314 * Wed May 9 1997 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
316 - changed source url,
317 - fixed link mcedit to mc,
319 * Tue May 7 1997 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
321 - new version 3.5.27,
322 - %dir /usr/lib/mc/icons and icons removed from tkmc,
323 - added commented xmc part.
325 * Tue Apr 22 1997 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
327 - FIX spec:
328 - added URL field,
329 - in mc added missing /usr/lib/mc/mc.ext, /usr/lib/mc/mc.hint,
330 /usr/lib/mc/mc.hlp, /usr/lib/mc/mc.lib, /usr/lib/mc/mc.menu.
332 * Fri Apr 18 1997 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
334 - added making packages: tkmc, mcserv (xmc not work yet),
335 - gziped man pages,
336 - added /etc/pamd.d/mcserv PAM config file.
337 - added instaling icons,
338 - added /etc/profile.d/mc.sh,
339 - in %doc added NEWS README,
340 - removed /usr/lib/mc/FAQ,
341 - added mcserv.init script for mcserv (start/stop on level 86).