source: projects/specs/trunk/m/mxml/mxml-vl.spec @ 9652

Revision 9652, 4.7 KB checked in by tomop, 9 years ago (diff)

nftables関連

Line 
1Summary:      Miniature XML development library
2Name:         mxml
3Version:      2.8
4Release:      3%{?_dist_release}
5License:      LGPLv2+
6Group:        System Environment/Libraries
7URL:          http://www.msweet.org/blog.php?L+Z3
8Source0:      https://www.msweet.org/files/project3/mxml-2.8.tar.gz
9BuildRoot:    %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
10
11# This is requires because we patch configure.in.
12BuildRequires: autoconf
13
14%description
15Mini-XML is a small XML parsing library that you can use to read XML
16and XML-like data files in your application without requiring large
17non-standard libraries.
18
19%package devel
20Summary:  Libraries, includes, etc to develop mxml applications
21Group:    Development/Libraries
22Requires: mxml = %{version}-%{release}
23Requires: pkgconfig
24
25%description devel
26Libraries, include files, etc you can use to develop mxml
27applications.
28
29%prep
30%setup -q
31
32%build
33# Run autoconf since we patched configure.in.
34autoconf
35%configure --enable-shared
36make %{?_smp_mflags}
37
38%install
39rm -rf %{buildroot}
40make BUILDROOT=%{buildroot} install
41
42# Configuring with --disable-static doesn't work, so let's just delete
43# the .a file by hand.
44rm %{buildroot}%{_libdir}/libmxml.a
45
46# remove extra docs
47rm -rf %{buildroot}%{_datadir}/doc/mxml/
48
49# remove rendered man pages
50rm -f %{buildroot}%{_datadir}/man/cat*/*
51
52
53%clean
54rm -rf %{buildroot}
55
56%post -p /sbin/ldconfig
57
58%postun -p /sbin/ldconfig
59
60%files
61%defattr(-,root,root,-)
62%doc COPYING README
63%{_bindir}/*
64%{_libdir}/libmxml.so.*
65
66%files devel
67%defattr(-,root,root,-)
68%doc CHANGES doc/*.html doc/*.gif
69%{_includedir}/*.h
70%{_libdir}/libmxml.so
71%{_mandir}/*/*
72%{_libdir}/pkgconfig/mxml.pc
73
74%changelog
75* Tue Jul  7 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.8-3
76- initia build for Vine Linux.
77
78* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8-2
79- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
80
81* Sun Apr 06 2014 Brendan Jones <brendan.jones.it@gmail.com> 2.8-1
82- Update to 2.8
83
84* Tue Dec 03 2013 Brendan Jones <brendan.jones.it@gmail.com> 2.6-1
85- Update to 2.7
86
87* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-10
88- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
89
90* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-9
91- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
92
93* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-8
94- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
95
96* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-7
97- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
98
99* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-6
100- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
101
102* Wed Oct 28 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.5-5
103- Fix typo in the .pc file (RHBZ#503628). Patch by Robert Szalai
104
105* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-4
106- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
107
108* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-3
109- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
110
111* Mon Aug 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.5-2
112- fix license tag
113
114* Tue Jul 08 2008 Anthony Green <green@redhat.com> 2.5
115- Upgrade source.
116
117* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.2.2-8
118- Autorebuild for GCC 4.3
119
120* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 2.2.2-7
121 - rebuilt for unwind info generation, broken in gcc-4.1.1-21
122
123* Tue Sep 19 2006 Anthony Green <green@redhat.com> 2.2.2-6
124- Fix release tag.
125
126* Mon Sep 18 2006 Anthony Green <green@redhat.com> 2.2.2-5.1
127- Rebuild.
128
129* Mon Sep  4 2006 Anthony Green <green@redhat.com> 2.2.2-5
130- devel package must Require pkgconfig.
131
132* Wed Jul 19 2006 Anthony Green <green@redhat.com> 2.2.2-4
133- Fix /usr/share references.
134
135* Sat Jul 15 2006 Anthony Green <green@redhat.com> 2.2.2-3
136- Fix /usr/lib reference when deleting libmxml.a.
137
138* Sat Jul 15 2006 Anthony Green <green@redhat.com> 2.2.2-2
139- Fix License (LGPL, not GPL).
140- Move programming documentation to devel package.
141- Build shared library, and no static library.
142- Add %%post(un).
143- Remove rpath with mxml-no-rpath.patch.
144- First Fedora Extras build.
145
146* Fri Sep 23 2005 Fernando Lopez-Lezcano <nando@ccrma.stanford.edu> 2.2.2-1
147- updated to 2.2.2 (zynaddsubfx needs 2.2 at least)
148* Mon Dec 27 2004 Fernando Lopez-Lezcano <nando@ccrma.stanford.edu>
149- spec file cleanup
150* Wed Aug  4 2004 Fernando Lopez-Lezcano <nando@ccrma.stanford.edu> 2.0-1
151- initial build.
152
153
Note: See TracBrowser for help on using the repository browser.