123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- Summary: Plain Text to PostScript converter
- Summary(ja): プレインテキストから Postscript へのコンバータ
- Name: paps
- Version: 0.6.8
- Release: 1%{?_dist_release}
- Group: Applications/Publishing
- License: LGPLv2+
- URL: http://paps.sourceforge.net/
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: daisuke
- Source0: http://prdownloads.sourceforge.net/paps/paps-%{version}.tar.gz
- BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
- BuildRequires: pango-devel automake autoconf libtool doxygen cups-devel
- ## https://sourceforge.net/tracker/index.php?func=detail&aid=1832897&group_id=153049&atid=786241
- Patch0: paps-0.6.8-shared.patch
- ## https://sourceforge.net/tracker/index.php?func=detail&aid=1832924&group_id=153049&atid=786241
- Patch1: paps-0.6.8-wordwrap.patch
- ## https://sourceforge.net/tracker/index.php?func=detail&aid=1832926&group_id=153049&atid=786241
- Patch2: paps-langinfo.patch
- ## https://sourceforge.net/tracker/index.php?func=detail&aid=1832929&group_id=153049&atid=786241
- Patch3: paps-0.6.6-lcnumeric.patch
- ## https://sourceforge.net/tracker/index.php?func=detail&aid=1832935&group_id=153049&atid=786241
- Patch4: paps-exitcode.patch
- Patch50: paps-cups.patch
- Patch51: paps-cpilpi.patch
- Patch52: paps-dsc-compliant.patch
- Patch53: paps-autoconf262.patch
- %description
- paps is a PostScript converter from plain text file using Pango.
- %description -l ja
- paps は Pango を用いてプレインテキストを Postscript に変換するツールです。
- %package libs
- Summary: Libraries for paps
- Summary(ja): paps のライブラリ
- Group: Development/Libraries
- %description libs
- paps is a PostScript converter from plain text file using Pango.
- This package contains the library for paps.
- %package devel
- Summary: Development files for paps
- Summary(ja): paps の開発ファイル
- Group: Development/Libraries
- Requires: %{name}-libs = %{version}-%{release}
- %description devel
- paps is a PostScript converter from plain text file using Pango.
- This package contains the development files that is necessary to develop
- applications using paps API.
- %prep
- %setup -q
- %patch0 -p1 -b .shared
- %patch1 -p1 -b .wordwrap
- %patch2 -p1 -b .langinfo
- %patch3 -p1 -b .lcnumeric
- %patch4 -p1 -b .exitcode
- %patch50 -p1 -b .cups
- %patch51 -p1 -b .cpilpi
- %patch52 -p1 -b .dsc
- %patch53 -p1 -b .autoconf262
- libtoolize -f -c
- autoreconf
- %build
- %configure --disable-static
- make %{?_smp_mflags}
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT
- # remove unnecessary files
- rm $RPM_BUILD_ROOT%{_libdir}/libpaps.la
- # make a symlink for CUPS filter
- %{__mkdir_p} $RPM_BUILD_ROOT/usr/lib/cups/filter # Not libdir
- ln -s %{_bindir}/paps $RPM_BUILD_ROOT/usr/lib/cups/filter/texttopaps
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-, root, root, -)
- %doc AUTHORS COPYING.LIB README TODO
- %{_bindir}/paps
- %{_mandir}/man1/paps.1*
- /usr/lib/cups/filter/texttopaps
- %files libs
- %defattr(-, root, root, -)
- %doc COPYING.LIB
- %{_libdir}/libpaps.so.*
- %files devel
- %defattr(-, root, root, -)
- %doc COPYING.LIB
- %{_includedir}/libpaps.h
- %{_libdir}/libpaps.so
- %changelog
- * Thu Jun 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.6.8-1
- - initial build for Vine Linux
- * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.8-9
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Mon Nov 17 2008 Akira TAGOH <tagoh@redhat.com> - 0.6.8-8
- - Courier font to be a default font for texttopaps. (#469325)
- * Mon Sep 1 2008 Akira TAGOH <tagoh@redhat.com> - 0.6.8-7
- - paps-langinfo.patch: Updated.
- - paps-exitcode.patch: Updated.
- * Fri May 16 2008 Akira TAGOH <tagoh@redhat.com> - 0.6.8-6
- - paps-cups.patch: Fix printing with -o landscape in CUPS. (#222137)
- - paps-autoconf262.patch: Fix an error on autoreconf.
- * Tue Feb 12 2008 Akira TAGOH <tagoh@redhat.com> - 0.6.8-5
- - Rebuild for gcc-4.3.
- * Wed Jan 23 2008 Akira TAGOH <tagoh@redhat.com> - 0.6.8-4
- - Fix an exception on ghostscript. (#429275)
- * Tue Jan 15 2008 Akira TAGOH <tagoh@redhat.com> - 0.6.8-3
- - Put %%%%Pages: after %%%%Trailer. (#424951)
- * Thu Jan 10 2008 Akira TAGOH <tagoh@redhat.com> - 0.6.8-2
- - paps-0.6.8-dsc-compliant.patch: Patch out to be DSC compliant. (#424951)
- * Fri Nov 30 2007 Akira TAGOH <tagoh@redhat.com> - 0.6.8-1
- - New upstream release.
- - Remove patches merged and unnecessary anymore:
- - paps-makefile.patch
- - paps-formfeed.patch
- - paps-0.6.6-encoding.patch
- - paps-typo-font-scale.patch
- - paps-0.6.6-segfault.patch
- - paps-0.6.6-font-option.patch
- - paps-0.6.6-lcctype.patch
- - paps-0.6.8-shared.patch: Enable building shared library.
- - paps-0.6.8-wordwrap.patch: Update a bit to get it working without an wordwrap
- mode.
- - Add paps-libs and paps-devel package.
- - paps-cups.patch: Update.
- - paps-cpilpi.patch: Update.
- - Fix the wrong rendering with CPI option. (#237202)
- - Fix the unnecessary rotation with the landscape option when paps is running
- as CUPS filter. (#222137)
- * Thu Aug 23 2007 Akira TAGOH <tagoh@redhat.com> - 0.6.6-21
- - Rebuild
- * Fri Aug 10 2007 Akira TAGOH <tagoh@redhat.com>
- - Update License tag.
- * Wed May 30 2007 Akira TAGOH <tagoh@redhat.com> - 0.6.6-20
- - Fix to not do wordwrap when 'wrap=false' is given. (#240588)
- * Tue Mar 27 2007 Akira TAGOH <tagoh@redhat.com> - 0.6.6-19
- - Fix PostScript breakage following the non-monetary numeric format from
- current locale. (#231916)
- * Thu Mar 7 2007 Akira TAGOH <tagoh@redhat.com> - 0.6.6-18
- - default to lpi=6 and cpi=10 if paps is bringing up as cups filter. (#223862)
- * Tue Jan 23 2007 Akira TAGOH <tagoh@redhat.com>
- - Better the encoding guess by looking at current locale. (#212154)
- * Mon Dec 4 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-17
- - Fix a segfault on non-printable character. (#216296)
- * Sat Sep 30 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-16
- - paps-0.6.6-exitcode.patch: exit immediately with proper exit code
- when unrecoverable error occurs. (#208592)
- * Fri Sep 29 2006 Tim Waugh <twaugh@redhat.com> - 0.6.6-15
- - Avoid using iconv when not needed (bug #206259).
- * Thu Sep 14 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-14
- - paps-cups.patch: try to parse input even if any invalid character appears.
- (#206259)
- * Thu Aug 31 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-13
- - paps-formfeed.patch: fixed to not insert an extra line in next page.
- (#202731)
- * Thu Aug 17 2006 Tim Waugh <twaugh@redhat.com> - 0.6.6-12
- - Map CUPS charset names to real ones (bug #197577).
- * Mon Jul 17 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-11
- - add an owner info to PS.
- * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.6.6-10.2
- - rebuild
- * Tue Jul 4 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-10
- - paps-0.6.6-cpilpi.patch: add --cpi and --lpi option to support the characters
- per inch and the lines per inch.
- - paps-cups.patch: add cpi and lpi support.
- * Thu Jun 29 2006 Tim Waugh <twaugh@redhat.com> - 0.6.6-9
- - Fixed font-option patch.
- - Adjusted CUPS patch: CUPS invokes the filter with the destination
- printer name in argv[0], not the binary name.
- - CUPS filter lives in CUPS_SERVERBIN, which is /usr/lib/cups on all
- architectures -- not %%{_libdir}/cups.
- * Thu Jun 29 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-8
- - use dist tag.
- - paps-cups.patch: applied to work paps as CUPS filter.
- - paps-0.6.6-encoding.patch: null-terminates the output.
- * Tue Jun 27 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-7
- - rebuilt to import into Core.
- * Wed Jun 21 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-6
- - paps-0.6.6-wordwrap.patch: applied to do a wordwrap.
- * Tue Jun 20 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-5
- - paps-typo-font-scale.patch: backported from CVS.
- - paps-0.6.6-font-option.patch: integrated --font-family and --font-scale
- options to --font.
- - paps-0.6.6-lcctype.patch: follow LC_CTYPE to determine the default language.
- * Fri Jun 16 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-4
- - added libtool and doxygen to BuildReq.
- - removed NEWS file which is empty.
- * Mon Jun 12 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-3
- - use make install DESTDIR=... instead of %%makeinstall
- - add automake and autoconf to BuildReq.
- * Thu May 25 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-2
- - paps-0.6.6-encoding.patch: support --encoding option to be able to convert
- the input file to UTF-8.
- - paps-0.6.6-segfault.patch: fixed a possible segfault issue when reading is
- failed.
- * Fri May 19 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.6-1
- - New upstream release.
- * Mon Apr 17 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.5-1
- - New upstream release.
- - paps-0.6.3-fix-pagesize.patch: removed. it has been merged in upstream.
- - paps-0.6.3-goption.patch: removed. it has been merged in upstream.
- - paps-0.6.3-header.patch: removed. it has been merged in upstream.
- - paps-makefile.patch: rework to be applied.
- * Fri Mar 31 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.3-4
- - paps-0.6.3-formfeed.patch: applied to deal with the formfeed mark properly.
- - paps-0.6.3-goption.patch: rewritten option parser using GOption. and segfault
- gone as well. (#187205)
- - paps-0.6.3-header.patch: applied to support the output of the page header.
- * Fri Mar 24 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.3-3
- - paps-0.6.3-fix-pagesize.patch: fixed displaying the beginning of line at out of page. (#176207)
- * Thu Mar 2 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.3-2
- - rebuilt.
- * Wed Jan 11 2006 Akira TAGOH <tagoh@redhat.com> - 0.6.3-1
- - New upstream release.
- - paps-0.6.2-fix-bufferoverflow.patch: removed.
- * Wed Dec 21 2005 Akira TAGOH <tagoh@redhat.com> - 0.6.2-1
- - New upstream release.
- - the bitmap font is now ignored. (#176206)
- - paps-0.6.2-fix-bufferoverflow.patch: applied to fix the buffer overflow.
- * Tue Dec 13 2005 Akira TAGOH <tagoh@redhat.com> - 0.6.1-1
- - New upstream release.
- - paps-0.6.1-makefile.patch: applied to install docs on the proper dir.
- * Fri Nov 4 2005 Akira TAGOH <tagoh@redhat.com> - 0.5-1
- - New upstream release.
- * Tue Oct 18 2005 Akira TAGOH <tagoh@redhat.com> - 0.3-1
- - Initial package.
|