2007-01-15 23:50:44 +01:00
|
|
|
#
|
|
|
|
# spec file for package a2ps (Version 4.13)
|
|
|
|
#
|
2007-02-08 09:00:15 +01:00
|
|
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-15 23:50:44 +01:00
|
|
|
# This file and all modifications and additions to the pristine
|
|
|
|
# package are under the same license as the package itself.
|
|
|
|
#
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: a2ps
|
2007-04-20 15:54:43 +02:00
|
|
|
BuildRequires: autoconf automake emacs-nox flex ghostscript-fonts-std gv psutils texlive-latex xorg-x11-devel
|
2007-01-15 23:50:44 +01:00
|
|
|
URL: http://www.gnu.org/software/a2ps/a2ps.html
|
2007-02-08 09:00:15 +01:00
|
|
|
License: GNU General Public License (GPL)
|
2007-01-15 23:50:44 +01:00
|
|
|
Group: Productivity/Publishing/PS
|
|
|
|
Provides: a2ps-bin
|
|
|
|
Requires: /bin/sed /usr/bin/iconv /usr/bin/file /usr/bin/wdiff /usr/bin/w3m ghostscript-fonts-std
|
|
|
|
Autoreqprov: on
|
|
|
|
PreReq: %{install_info_prereq}
|
|
|
|
Version: 4.13
|
2007-04-20 15:54:43 +02:00
|
|
|
Release: 1126
|
2007-01-15 23:50:44 +01:00
|
|
|
Summary: Converts ASCII Text into PostScript
|
|
|
|
Source: a2ps-4.13b.tar.bz2
|
|
|
|
Source1: a2ps-ko.po
|
|
|
|
Source2: a2ps.sh
|
|
|
|
Patch: a2ps-4.13.dif
|
|
|
|
Patch1: a2ps-4.13-security.patch
|
|
|
|
Patch2: a2ps-4.13-ogonkify.patch
|
|
|
|
Patch3: a2ps-4.13-tempfile.patch
|
|
|
|
Patch4: a2ps-4.13-space.patch
|
|
|
|
Patch5: a2ps-4.13-nb.patch
|
|
|
|
Patch6: a2ps-4.13-include.patch
|
|
|
|
Patch7: a2ps-4.13-acroread.patch
|
|
|
|
Patch8: a2ps-4.13-base.patch
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
a2ps converts ASCII text into PostScript. This feature is used by
|
|
|
|
apsfilter, for example, to pretty-print ASCII text.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Miguel Santana <M.Santana@frgu.bull.fr>
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -n a2ps-4.13
|
|
|
|
touch -r configure.in .ref
|
|
|
|
%patch -P 1 -p 0 -b .security
|
|
|
|
%patch -P 2 -p 0 -b .ogonkify
|
|
|
|
%patch -P 3 -p 1 -b .tempfile
|
|
|
|
%patch -P 4 -p 0 -b .space
|
|
|
|
%patch -P 5 -p 0 -b .nb
|
|
|
|
%patch -P 6 -p 1 -b .incld
|
|
|
|
%ifarch %ix86 x86_64
|
|
|
|
%patch -P 7 -p 0 -b .acroread
|
|
|
|
%endif
|
|
|
|
%patch -P 8 -p 0 -b .base
|
|
|
|
%patch
|
|
|
|
cp -f %SOURCE1 po/ko.po
|
|
|
|
rename no nb po/no.*
|
|
|
|
|
|
|
|
%build
|
|
|
|
%{?suse_update_config:%{suse_update_config -f auxdir}}
|
|
|
|
export CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE -funroll-loops -Wall -pipe -fstack-protector"
|
|
|
|
export LPR=lpr
|
|
|
|
export CC=gcc
|
|
|
|
export LEX="flex -Cfe"
|
|
|
|
touch -r .ref configure.in
|
|
|
|
sh ./configure ${RPM_ARCH}-suse-linux \
|
|
|
|
--with-gnu-ld \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libdir=/usr/%_lib \
|
|
|
|
--infodir=%{_infodir} \
|
|
|
|
--mandir=%{_mandir} \
|
|
|
|
--with-medium=LC_PAPER \
|
|
|
|
--with-encoding=LC_CTYPE \
|
|
|
|
--sysconfdir=/etc
|
|
|
|
con=""
|
|
|
|
for m4 in contrib/*.m4; do
|
|
|
|
in=${m4%.*}.in
|
|
|
|
rm -f ${in} ${m4%.*}
|
|
|
|
con="$con ${in##*/}"
|
|
|
|
done
|
|
|
|
make -C contrib/ ${con}
|
|
|
|
sh ./config.status
|
|
|
|
make PSFONT_PATH=/usr/share/ghostscript/fonts
|
|
|
|
pushd doc
|
|
|
|
texi2html a2ps.texi
|
|
|
|
popd
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT PSFONT_PATH=/usr/share/ghostscript/fonts
|
|
|
|
rm -r $RPM_BUILD_ROOT/%{_infodir}/regex*
|
|
|
|
rm -r $RPM_BUILD_ROOT/%{_infodir}/dir
|
|
|
|
mv $RPM_BUILD_ROOT/usr/bin/a2ps $RPM_BUILD_ROOT/usr/bin/a2ps.bin
|
|
|
|
install -m 0755 %{SOURCE2} $RPM_BUILD_ROOT/usr/bin/a2ps
|
|
|
|
%{find_lang} %{name}
|
|
|
|
|
|
|
|
%clean
|
|
|
|
test -n "$RPM_BUILD_ROOT" && rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/ogonkify.info.gz
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/ogonkify.info.gz
|
|
|
|
|
|
|
|
%files -f %{name}.lang
|
2007-02-08 09:00:15 +01:00
|
|
|
%defattr(-,root,root)
|
2007-01-15 23:50:44 +01:00
|
|
|
%doc AUTHORS COPYING ABOUT-NLS FAQ ChangeLog NEWS THANKS README doc/a2ps.html
|
|
|
|
%config /etc/a2ps-site.cfg
|
|
|
|
%config /etc/a2ps.cfg
|
|
|
|
/usr/bin/a2ps
|
|
|
|
/usr/bin/a2ps.bin
|
|
|
|
/usr/bin/card
|
|
|
|
/usr/bin/composeglyphs
|
|
|
|
/usr/bin/fixnt
|
|
|
|
/usr/bin/fixps
|
|
|
|
/usr/bin/ogonkify
|
|
|
|
/usr/bin/pdiff
|
|
|
|
/usr/bin/psmandup
|
|
|
|
/usr/bin/psset
|
|
|
|
/usr/bin/texi2dvi4a2ps
|
|
|
|
/usr/include/liba2ps.h
|
|
|
|
%doc %{_infodir}/*.gz
|
|
|
|
/usr/%_lib/liba2ps.a
|
|
|
|
/usr/%_lib/liba2ps.la
|
|
|
|
%doc %{_mandir}/man1/*.1.gz
|
|
|
|
/usr/share/a2ps
|
|
|
|
/usr/share/emacs/site-lisp/*.el
|
|
|
|
/usr/share/emacs/site-lisp/*.elc
|
|
|
|
/usr/share/ogonkify
|
|
|
|
|
2007-02-19 20:47:14 +01:00
|
|
|
%changelog
|
2007-04-20 15:54:43 +02:00
|
|
|
* Fri Apr 20 2007 - aj@suse.de
|
|
|
|
- Use texlive for building.
|
2007-03-30 12:09:06 +02:00
|
|
|
* Fri Mar 30 2007 - ssommer@suse.de
|
|
|
|
- add flex to BuildRequires
|
2007-02-19 20:47:14 +01:00
|
|
|
* Mon Feb 19 2007 - werner@suse.de
|
|
|
|
- Removed the test file Convert.java and its resulting ps files
|
|
|
|
from source tar ball due license problems.
|
2007-02-08 09:00:15 +01:00
|
|
|
* Thu Feb 08 2007 - ro@suse.de
|
|
|
|
- added defattr
|
2007-01-15 23:50:44 +01:00
|
|
|
* Fri May 19 2006 - werner@suse.de
|
|
|
|
- Fix reencode_font macro in base.ps (bug #176360)
|
|
|
|
* Thu Apr 27 2006 - cthiel@suse.de
|
|
|
|
- removed acroread from BuildRequires
|
|
|
|
- added patch to fake acoread on ix86 and x86_64
|
|
|
|
* Thu Feb 23 2006 - werner@suse.de
|
|
|
|
- Use w3m to get ascii from html and the use a2ps its self to
|
|
|
|
get PostScript out of ASCII. (bug #152470)
|
|
|
|
* Wed Jan 25 2006 - mls@suse.de
|
|
|
|
- converted neededforbuild to BuildRequires
|
|
|
|
* Sat Jan 14 2006 - schwab@suse.de
|
|
|
|
- Don't strip binaries.
|
|
|
|
* Thu Jan 12 2006 - werner@suse.de
|
|
|
|
- Use the gcc stack protector
|
|
|
|
* Fri Dec 02 2005 - werner@suse.de
|
|
|
|
- Fix handling of long options without arguments in a2ps script
|
|
|
|
* Tue Sep 20 2005 - yxu@suse.de
|
|
|
|
- Add prototypes for functions
|
|
|
|
* Fri Jun 17 2005 - werner@suse.de
|
|
|
|
- The pdiff requires wdiff (bug #91335)
|
|
|
|
* Fri May 13 2005 - werner@suse.de
|
|
|
|
- Allow spaces in file names
|
|
|
|
* Fri May 13 2005 - werner@suse.de
|
|
|
|
- Add a wrapper script for converting UTF-8 text _partly_ into the
|
|
|
|
natural latin encoding of the given language enviroment (#43348)
|
|
|
|
* Sat Apr 02 2005 - coolo@suse.de
|
|
|
|
- remove conflicting prototype
|
|
|
|
* Mon Oct 25 2004 - ro@suse.de
|
|
|
|
- locale rename: no -> nb
|
|
|
|
* Wed Aug 25 2004 - werner@suse.de
|
|
|
|
- Escapes file names so that the shell groks it in single quotes
|
|
|
|
* Thu Mar 18 2004 - werner@suse.de
|
|
|
|
- More temporary file security issues (bug #36368)
|
|
|
|
* Wed Aug 06 2003 - werner@suse.de
|
|
|
|
- Partly workaround for ASCII and UTF-8 (mapp them to ISO 8859-15,
|
|
|
|
bug #28348)
|
|
|
|
* Mon Jul 28 2003 - werner@suse.de
|
|
|
|
- Fix keyword Lette(r) (bug #27411)
|
|
|
|
* Wed Jun 11 2003 - kukuk@suse.de
|
|
|
|
- Use %%find_lang macro
|
|
|
|
- Fix filelist
|
|
|
|
- Fix neededforbuild for emacs
|
|
|
|
* Thu Apr 24 2003 - ro@suse.de
|
|
|
|
- fix install_info --delete call and move from preun to postun
|
|
|
|
* Tue Feb 11 2003 - kukuk@suse.de
|
|
|
|
- Add install-info macros [Bug #23390]
|
|
|
|
* Mon Nov 11 2002 - ro@suse.de
|
|
|
|
- changed neededforbuild <xshared> to <x-devel-packages>
|
|
|
|
* Wed Sep 18 2002 - ro@suse.de
|
|
|
|
- removed bogus self-provides
|
|
|
|
* Sun Jul 28 2002 - kukuk@suse.de
|
|
|
|
- remove bzip from neededforbuild
|
|
|
|
* Thu Jul 04 2002 - werner@suse.de
|
|
|
|
- Add README's and a2ps.html to package doc dir (bug # 16229)
|
|
|
|
* Thu May 23 2002 - ro@suse.de
|
|
|
|
- use libdir
|
|
|
|
* Mon Feb 25 2002 - pblahos@suse.cz
|
|
|
|
- filtering mozilla output in iso-8859-2 removed, mozilla does it
|
|
|
|
correctly now, only stripping Title.
|
|
|
|
* Wed Jan 23 2002 - okir@suse.de
|
|
|
|
- Fixed tempfile problem in fixnt
|
|
|
|
* Fri Dec 07 2001 - werner@suse.de
|
|
|
|
- Enable automagic LC_PAPER and LC_CTYPE detection within
|
|
|
|
a2ps-site.cfg
|
|
|
|
* Fri Aug 31 2001 - pblahos@suse.cz
|
|
|
|
- implemented filtering of mozilla output in iso-8859-2
|
|
|
|
* Fri Jul 20 2001 - kukuk@suse.de
|
|
|
|
- changed neededforbuild <gs_lib> to <ghostscript-library>
|
|
|
|
* Mon May 07 2001 - mfabian@suse.de
|
|
|
|
- bzip2 sources
|
|
|
|
* Thu Apr 26 2001 - werner@suse.de
|
|
|
|
- We've to use dots within floats (#7284)
|
|
|
|
- Fix manual page (#7192)
|
|
|
|
* Tue Apr 24 2001 - werner@suse.de
|
|
|
|
- Add Euro symbol to afm of ogonkify fonts
|
|
|
|
- Implement code to be able to use LC_PAPER and LC_CTYPE for
|
|
|
|
paper size and default encoding.
|
|
|
|
* Thu Apr 19 2001 - werner@suse.de
|
|
|
|
- Use newest ogonkify to get eurifyFont working
|
|
|
|
- Include dummy metric for Euro sign to get it work with
|
|
|
|
ghostscript and real PostScript printers (ogonkify -e L9 -E)
|
|
|
|
* Wed Mar 14 2001 - ro@suse.de
|
|
|
|
- use emacs-x11 for now
|
|
|
|
* Tue Mar 13 2001 - ro@suse.de
|
|
|
|
- added emacs-nox to neededforbuild
|
|
|
|
* Fri Jan 26 2001 - violiet@suse.de
|
|
|
|
- remove Korean filter file = a2ps-h
|
|
|
|
* Tue Jan 23 2001 - violiet@suse.de
|
|
|
|
- added Korean filter file = a2ps-h
|
|
|
|
- improvement Korean message file.
|
|
|
|
* Mon Jan 15 2001 - werner@suse.de
|
|
|
|
- Fix the temporary file patch.
|
|
|
|
* Wed Jan 10 2001 - werner@suse.de
|
|
|
|
- Add temporary file patch
|
|
|
|
* Fri Nov 17 2000 - werner@suse.de
|
|
|
|
- Update to version 4.13(b)
|
|
|
|
- Include some package to use automatic configuration for
|
|
|
|
- Set PSFONT_PATH to /usr/share/ghostscript/fonts
|
|
|
|
* Fri Nov 17 2000 - ro@suse.de
|
|
|
|
- ge_exec -> emacs
|
|
|
|
* Fri Jul 07 2000 - ro@suse.de
|
|
|
|
- merged patches
|
|
|
|
* Thu Jul 06 2000 - werner@suse.de
|
|
|
|
- Add `,' to atan2 in for77kwds.ssh to distinguish atan2 from cabs.
|
|
|
|
* Fri Apr 07 2000 - bk@suse.de
|
|
|
|
- added suse update config macro
|
|
|
|
* Fri Feb 25 2000 - kukuk@suse.de
|
|
|
|
- Fill out copyright and group tag
|
|
|
|
- Move /usr/{info,man} -> /usr/share/{info,man}
|
|
|
|
* Thu Jan 13 2000 - werner@suse.de
|
|
|
|
- Fix a2ps path in a2ps.el
|
|
|
|
- Add all page names and their sizes known by ghostscript
|
|
|
|
* Thu Dec 16 1999 - werner@suse.de
|
|
|
|
- Fix Bug (NULL pointer if --title="" is used)
|
|
|
|
- Remove Makefile.Linux
|
|
|
|
* Mon Sep 13 1999 - bs@suse.de
|
|
|
|
- ran old prepare_spec on spec file to switch to new prepare_spec.
|
|
|
|
* Mon Jul 19 1999 - florian@suse.de
|
|
|
|
- update to a2ps 4.12
|
|
|
|
* Wed Oct 29 1997 - florian@suse.de
|
|
|
|
- add missing patch detectet by Werner Fink
|
|
|
|
Added the changes from Andreas Klemm for apsfilter into /usr/bin/a2ps.
|
|
|
|
aps could use standard /usr/bin/a2ps now.
|