From 3911fe7febee62d46ac0833e50656d2813fa58ce Mon Sep 17 00:00:00 2001 From: cvsdist Date: Thu, 9 Sep 2004 13:34:55 +0000 Subject: [PATCH] auto-import changelog data from ttmkfdir-3.0.2-1a.src.rpm * Mon Dec 09 2002 Mike A. Harris 3.0.2-1 - Changed the nonstandard RPM Group from System/Utilities to Applications/System - Added a new Makefile install target, and changed specfile to use makeinstall * Mon Dec 09 2002 Mike A. Harris 3.0.1-1 - Imported ttmkfdir into CVS on cvs.devel and applied all patches to CVS - Removed patches from spec file - Rewrote Makefile, now uses freetype-config to autodetect CFLAGS and libs, allowing a lot of spec file cleanups. Added new targets for tagging CVS, making tarball, and making srpm. * Mon Dec 02 2002 Mike A. Harris 3.0.0-2 - Added Conflicts for prior packages which contained ttmkfdir * Fri Nov 29 2002 Mike A. Harris 3.0.0-1 - Initial build. Basically just renamed our existing ttmkfdir to version 3.0.0 to differentiate it. It's the same old thing as before, but is likely going to move to CVS for easier development. --- .cvsignore | 1 + sources | 1 + ttmkfdir.spec | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 ttmkfdir.spec diff --git a/.cvsignore b/.cvsignore index e69de29..fc5b16a 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +ttmkfdir-3.0.2.tar.bz2 diff --git a/sources b/sources index e69de29..504d77c 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +2e9bcb764ec61775c7face997feac57f ttmkfdir-3.0.2.tar.bz2 diff --git a/ttmkfdir.spec b/ttmkfdir.spec new file mode 100644 index 0000000..7d11b6d --- /dev/null +++ b/ttmkfdir.spec @@ -0,0 +1,55 @@ +Summary: Utility used to create fonts.scale files for truetype fonts +Name: ttmkfdir +Version: 3.0.2 +Release: 1a +#URL: +Source0: %{name}-%{version}.tar.bz2 +License: GPL +Group: Applications/System +BuildRoot: %{_tmppath}/%{name}-root + +# ttmkfdir used to be in the following packages at one point +Conflicts: freetype < 2.0.6-3 + +%description +ttmkfdir is a utility which is used to create fonts.scale files in +directories full of TrueType fonts in order to prepare them for use +by the font server. + +%prep +%setup -q + +%build +make OPTFLAGS="$RPM_OPT_FLAGS" + +%install +rm -rf $RPM_BUILD_ROOT + +%makeinstall DESTDIR=$RPM_BUILD_ROOT + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%{_bindir}/ttmkfdir + +%changelog +* Mon Dec 9 2002 Mike A. Harris 3.0.2-1 +- Changed the nonstandard RPM Group from System/Utilities to Applications/System +- Added a new Makefile install target, and changed specfile to use makeinstall + +* Mon Dec 9 2002 Mike A. Harris 3.0.1-1 +- Imported ttmkfdir into CVS on cvs.devel and applied all patches to CVS +- Removed patches from spec file +- Rewrote Makefile, now uses freetype-config to autodetect CFLAGS and libs, + allowing a lot of spec file cleanups. Added new targets for tagging CVS, + making tarball, and making srpm. + +* Mon Dec 2 2002 Mike A. Harris 3.0.0-2 +- Added Conflicts for prior packages which contained ttmkfdir + +* Fri Nov 29 2002 Mike A. Harris 3.0.0-1 +- Initial build. Basically just renamed our existing ttmkfdir to version + 3.0.0 to differentiate it. It's the same old thing as before, but is + likely going to move to CVS for easier development.