12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- Summary: PostScript Utilities
- Summary(ja): PostScriptユーティリティ
- Name: psutils
- Version: 1.17
- Release: 20%{?_dist_release}
- Source: ftp.dcs.ed.ac.uk:/pub/ajcd/psutils-p17.tar.gz
- Patch0: psutils-p17-Makefile.patch
- Patch1: psutils-p17-misc.patch
- Patch2: psutils-p17-paper.patch
- Patch3: psutils-p17-strip.patch
- License: distributable
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Group: Applications/Publishing
- BuildPreReq: /usr/bin/perl
- %changelog
- * Fri Oct 10 2008 Shu KONNO <owa@bg.wakwak.com> 1.17-20vl5
- - applied new versioning policy, spec in utf-8
- * Sun Jul 02 2006 Shu KONNO <owa@bg.wakwak.com> 1.17-19vl2
- - s/Copylight/License/
- * Mon May 5 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.17-19vl1
- - rebuild with new toolchains
- - based on Rawhide 1.17-9
- - add BuildPreReq: /usr/bin/perl
- * Thu Jun 14 2001 <sagami@vinelinux.org>
- - p17-3: added defattr
- * Mon Jun 11 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
- - p17-2
- - /usr/man -> %%{_mandir}
- * Thu Feb 1 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
- - rebuild for Vine
- * Mon Oct 13 1997 Atsushi Yamagata <yamagata@jwu.ac.jp>
- - 1st release
- %description
- This package contains some utilities for manipulating PostScript documents.
- Page selection and rearrangement are supported, including arrangement into
- signatures for booklet printing, and page merging for n-up printing.
- %description -l ja
- このパッケージはPostscript文章を加工するためのユーティリティをいくつか含
- んでいます。
- Page selection and rearrangement are supported, including arrangement into
- signatures for booklet printing, and page merging for n-up printing.
- %prep
- %setup -q -n psutils
- %patch0 -p1 -b .makefile
- %patch1 -p1 -b .misc
- %patch2 -p1 -b .paper
- %patch3 -p1 -b .strip
- %build
- make -f Makefile.unix PERL=/usr/bin/perl \
- BINDIR=$RPM_BUILD_ROOT%{_bindir} \
- SCRIPTDIR=$RPM_BUILD_ROOT%{_bindir} \
- INCLUDEDIR=$RPM_BUILD_ROOT%{_datadir}/psutils \
- MANDIR=$RPM_BUILD_ROOT%{_mandir}/man1
- %install
- rm -rf $RPM_BUILD_ROOT
- mkdir -p $RPM_BUILD_ROOT%{_datadir}
- mkdir -p $RPM_BUILD_ROOT%{_mandir}
- make -f Makefile.unix install \
- BINDIR=$RPM_BUILD_ROOT%{_bindir} \
- SCRIPTDIR=$RPM_BUILD_ROOT%{_bindir} \
- INCLUDEDIR=$RPM_BUILD_ROOT%{_datadir}/psutils \
- MANDIR=$RPM_BUILD_ROOT%{_mandir}/man1
- cd $RPM_BUILD_ROOT%{_bindir}
- strip epsffit psbook psnup psresize psselect pstops
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files
- %defattr(-,root,root)
- %doc LICENSE README
- %dir %{_datadir}/psutils
- %{_datadir}/psutils/*
- %{_mandir}/man1/*
- %{_bindir}/*
|