]> git.pld-linux.org Git - packages/libwmf.git/blob - libwmf.spec
- raw version from RH contrib (by Ryan Weaver <ryanw@infohwy.com>).
[packages/libwmf.git] / libwmf.spec
1 %define name    libwmf
2 %define version 0.1.10
3 %define release 1
4 %define serial  2
5
6 Summary:        libwmf, library to convert wmf files.
7 Name:           %{name}
8 Version:        %{version}
9 Release:        %{release}
10 Serial:         %{serial}
11 Copyright:      GPL
12 Group:          Utilities/Text
13 URL:            http://www.csn.ul.ie/~caolan/docs/libwmf.html
14 Vendor:         Caolan McNamara <Caolan.McNamara@ul.ie>
15 Source:         http://www.csn.ul.ie/~caolan/publink/libwmf/%{name}-%{version}.tar.gz
16 Distribution:   Freshmeat RPMs
17 Packager:       Ryan Weaver <ryanw@infohwy.com>
18 Requires:       freetype
19 BuildRoot:      /tmp/%{name}-%{version}
20
21 %description
22 libwmf is a library for unix like machines that can convert wmf
23 files into other formats, currently it supports a gd binding
24 to convert to gif, and an X one to draw direct to an X window
25 or pixmap.
26
27 %prep
28 %setup -q -n %{name}
29 CFLAGS=$RPM_OPT_FLAGS ./configure --prefix=/usr
30
31 %build
32 make
33
34 %install
35 if [ -d $RPM_BUILD_ROOT ] && [ ! -L $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT/ ; fi
36 mkdir -p $RPM_BUILD_ROOT/usr
37
38 make prefix=$RPM_BUILD_ROOT/usr install
39
40 %clean
41 if [ -d $RPM_BUILD_ROOT ] && [ ! -L $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT/ ; fi
42
43 %files
44 %defattr(-,root,root)
45 %doc doc examples notes winepatches CHANGELOG COPYING CREDITS README TODO libwmf.lsm
46 /usr/bin/*
47 /usr/lib/*
48 /usr/include/*
49
50 %changelog
51 * Mon May 24 1999 Ryan Weaver <ryanw@infohwy.com>
52   [libwmf-0.1.10-1]
53 - removed c++ comment
54 - stripped ^M's out
55 - cast a few things to void pointers before assigning
56   them to userdata.
57
58 * Wed May 19 1999 Ryan Weaver <ryanw@infohwy.com>
59   [libwmf-0.1.9-2]
60 - New source tgz, same version, recompiling.
61 - Some changes to configure script and other files.
62
63 * Wed Apr 28 1999 Ryan Weaver <ryanw@infohwy.com>
64   [libwmf-0.1.9-1]
65 - v 0.1.9
66 - added more bullet proofing against the sort of nightmare wmf's
67   that come out of mswordview.
68 - some better error checking for missing fonts, (doh !)
69 - broke tt, fixed tt
70 - removd debugging messages.
71
72 * Fri Apr 23 1999 Ryan Weaver <ryanw@infohwy.com>
73   [libwmf-0.1.8-1]
74 - v 0.1.8
75 - trivial change to wmfapi.h to make life easier with blip
76   handling in mswordview
77 - made configure script get heroic when searching for components,
78   checks for for includes and libs both below a --with-stuff dir, and
79   also inside it as well.
80
81 * Tue Apr 13 1999 Ryan Weaver <ryanw@infohwy.com>
82   [libwmf-0.1.7-1]
83 - Initial RPM Build
84 - 0.1.7
85 - added ability to gd to read xbm's from data, rather than file,
86   changed source accordingly, dont need to carry xbm's around
87   anymore.
88 - changed configure script to agressively find the xpm header file,
89 - tested to work under aix (of all things :-))
90 - tested to work under solaris.
91 - checked that it reports lack of xpm lib, and fails to go any
92   further.
93 - fiddled a bit more, and libwmf now works cleanly with mswordview,
94   all cheer.
This page took 0.0302 seconds and 4 git commands to generate.