]> git.pld-linux.org Git - packages/libwmf.git/commitdiff
- raw version from RH contrib (by Ryan Weaver <ryanw@infohwy.com>).
authorkloczek <kloczek@pld-linux.org>
Thu, 17 Jun 1999 22:51:50 +0000 (22:51 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    libwmf.spec -> 1.1

libwmf.spec [new file with mode: 0644]

diff --git a/libwmf.spec b/libwmf.spec
new file mode 100644 (file)
index 0000000..9ef8087
--- /dev/null
@@ -0,0 +1,94 @@
+%define        name    libwmf
+%define        version 0.1.10
+%define        release 1
+%define        serial  2
+
+Summary:       libwmf, library to convert wmf files.
+Name:          %{name}
+Version:       %{version}
+Release:       %{release}
+Serial:                %{serial}
+Copyright:     GPL
+Group:         Utilities/Text
+URL:           http://www.csn.ul.ie/~caolan/docs/libwmf.html
+Vendor:                Caolan McNamara <Caolan.McNamara@ul.ie>
+Source:                http://www.csn.ul.ie/~caolan/publink/libwmf/%{name}-%{version}.tar.gz
+Distribution:  Freshmeat RPMs
+Packager:      Ryan Weaver <ryanw@infohwy.com>
+Requires:      freetype
+BuildRoot:     /tmp/%{name}-%{version}
+
+%description
+libwmf is a library for unix like machines that can convert wmf
+files into other formats, currently it supports a gd binding
+to convert to gif, and an X one to draw direct to an X window
+or pixmap.
+
+%prep
+%setup -q -n %{name}
+CFLAGS=$RPM_OPT_FLAGS ./configure --prefix=/usr
+
+%build
+make
+
+%install
+if [ -d $RPM_BUILD_ROOT ] && [ ! -L $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT/ ; fi
+mkdir -p $RPM_BUILD_ROOT/usr
+
+make prefix=$RPM_BUILD_ROOT/usr install
+
+%clean
+if [ -d $RPM_BUILD_ROOT ] && [ ! -L $RPM_BUILD_ROOT ]; then rm -r $RPM_BUILD_ROOT/ ; fi
+
+%files
+%defattr(-,root,root)
+%doc doc examples notes winepatches CHANGELOG COPYING CREDITS README TODO libwmf.lsm
+/usr/bin/*
+/usr/lib/*
+/usr/include/*
+
+%changelog
+* Mon May 24 1999 Ryan Weaver <ryanw@infohwy.com>
+  [libwmf-0.1.10-1]
+- removed c++ comment
+- stripped ^M's out
+- cast a few things to void pointers before assigning
+  them to userdata.
+
+* Wed May 19 1999 Ryan Weaver <ryanw@infohwy.com>
+  [libwmf-0.1.9-2]
+- New source tgz, same version, recompiling.
+- Some changes to configure script and other files.
+
+* Wed Apr 28 1999 Ryan Weaver <ryanw@infohwy.com>
+  [libwmf-0.1.9-1]
+- v 0.1.9
+- added more bullet proofing against the sort of nightmare wmf's
+  that come out of mswordview.
+- some better error checking for missing fonts, (doh !)
+- broke tt, fixed tt
+- removd debugging messages.
+
+* Fri Apr 23 1999 Ryan Weaver <ryanw@infohwy.com>
+  [libwmf-0.1.8-1]
+- v 0.1.8
+- trivial change to wmfapi.h to make life easier with blip
+  handling in mswordview
+- made configure script get heroic when searching for components,
+  checks for for includes and libs both below a --with-stuff dir, and
+  also inside it as well.
+
+* Tue Apr 13 1999 Ryan Weaver <ryanw@infohwy.com>
+  [libwmf-0.1.7-1]
+- Initial RPM Build
+- 0.1.7
+- added ability to gd to read xbm's from data, rather than file,
+  changed source accordingly, dont need to carry xbm's around
+  anymore.
+- changed configure script to agressively find the xpm header file,
+- tested to work under aix (of all things :-))
+- tested to work under solaris.
+- checked that it reports lack of xpm lib, and fails to go any
+  further.
+- fiddled a bit more, and libwmf now works cleanly with mswordview,
+  all cheer.
This page took 0.118164 seconds and 4 git commands to generate.