source: projects/specs/trunk/lib/libP/libPropList/libPropList-vl.spec @ 9350

Revision 9350, 4.1 KB checked in by inagaki, 9 years ago (diff)

2015-02-11 Ryoichi INAGAKI <ryo1@…>

  • WindowMaker?, wmakerconf: fixed spec
  • libPropList: split devel files to devel subpackage


Line 
1Summary: Ensures program compatibility with GNUstep/OPENSTEP.
2Summary(ja): GNUstep/OPENSTEP のプログラム互換性を保つライブラリ
3Name: libPropList
4Version: 0.10.1
5Release: 14%{?_dist_release}
6License: LGPLv2
7Group: System Environment/Libraries
8
9Source: ftp://ftp.windowmaker.org/pub/libs/%{name}-%{version}.tar.gz
10Patch0: libPropList-0.10.1-config64.patch
11Patch1: libPropList-0.10.1-ltconfig.patch
12
13Buildroot: %{_tmppath}/%{name}-%{version}-root
14BuildRequires: flex
15
16%description
17The libPropList library uses an opaque data type to represent a tree
18structure made of strings, data blocks, arrays and dictionaries
19(key-value pair lists). The tree structure can be manipulated, written
20out to or read in from a file, and synchronized with the contents of a
21file. LibPropList imitates the behavior of and is compatible with the
22property lists used in GNUstep/OPENSTEP, which are formed with the
23NSString, NSData, NSArray and NSDictionary classes.
24
25LibPropList enables programs that use configuration or preference
26files to make them compatible with GNUstep/OPENSTEP's user defaults
27handling mechanism, without using Objective-C or GNUstep/OPENSTEP.
28
29#'
30%package devel
31Summary: Development files for %{name}
32Summary(ja): %{name} の開発用ファイル
33Group: Development/Libraries
34Requires: %{name} = %{version}-%{release}
35
36%description    devel
37The %{name}-devel package contains libraries and header files for
38developing applications that use %{name}.
39
40
41%prep
42%setup -q
43%patch0 -p1 -b .config64
44%patch1 -p1 -b .ltconfig
45%configure --disable-static
46
47%build
48make
49
50%install
51rm -rf $RPM_BUILD_ROOT
52make install DESTDIR=$RPM_BUILD_ROOT
53
54## remove unuse files
55rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la
56
57%clean
58rm -rf $RPM_BUILD_ROOT
59
60%post -p /sbin/ldconfig
61
62%postun -p /sbin/ldconfig
63
64%files
65%defattr(-,root,root)
66%doc AUTHORS COPYING* ChangeLog NEWS README
67%{_libdir}/libPropList.so.*
68
69%files devel
70%defattr(-,root,root)
71%{_includedir}/proplist.h
72%{_libdir}/libPropList.so
73
74%changelog
75* Tue Feb 10 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.10.1-14
76- rebuilt on current Vine Seed
77- added %%post and %%postun section
78- split development files into devel subpackage
79
80* Sat Apr 23 2011 Shu KONNO <owa@bg.wakwak.com> 0.10.1-13
81- rebuilt with rpm-4.8.1-3
82
83* Sun Feb 21 2010 Shu KONNO <owa@bg.wakwak.com> 0.10.1-12
84- rebuilt with new toolchain
85- updated libPropList-0.10.1-ltconfig.patch
86
87* Wed Apr 29 2009 Shu KONNO <owa@bg.wakwak.com> 0.10.1-11vl5
88- added libPropList-0.10.1-config64.patch
89- added libPropList-0.10.1-ltconfig.patch
90- added --disable-static in %%configure
91- added BuildRequires: flex
92
93* Wed Apr 29 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.1-10vl5
94- changed Group to Development/Libraries
95- removed %%post and %%postun section
96
97* Sat Sep 27 2008 Shu KONNO <owa@bg.wakwak.com> 0.10.1-9vl5
98- removed *.la
99
100* Sun Jun 01 2008 Shu KONNO <owa@bg.wakwak.com> 0.10.1-8vl5
101- applied new versioning policy and utf-8
102
103* Sun Jun 15 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.10.1-7vl3
104- rebuild with new toolchains
105- to use License instead of Copyright
106
107* Tue Jan 09 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
108- 0.10.1-7vl2
109- Oops, the spec file was in Shift-JIS. Fixed.
110
111* Wed Dec 27 2000 MATSUBAYASHI 'Shaolin' Kohji <shaolin@rhythmaning.org>
112- 0.10.1-7vl1
113- based on 0.10.1-7 from Rawhide
114- added Japanese summary
115- use better macros
116
117* Mon Dec 11 2000 Crutcher Dunnavant <crutcher@redhat.com>
118- rebuild
119
120* Mon Jul 31 2000 Trond Eivind Glomsr <teg@redhat.com>
121- run ldconfig in post scripts
122
123* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
124- automatic rebuild
125
126* Tue Jul 11 2000 Trond Eivind Glomsr <teg@redhat.com>
127- rebuild
128
129* Sat Jun 17 2000 Trond Eivind Glomsr <teg@redhat.com>
130- use %%{_tmppath}
131- specify ownership
132
133* Thu Jun 08 2000 Trond Eivind Glomsr <teg@redhat.com>
134- use %%makeinstall and %%configure
135
136* Tue Apr 04 2000 Trond Eivind Glomsr <teg@redhat.com>
137- version 0.10.1
138
139* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
140- version 0.9.1
141
142* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
143- auto rebuild in the new build environment (release 2)
144
145* Tue Feb 02 1999 Cristian Gafton <gafton@redhat.com>
146- packaged independently
Note: See TracBrowser for help on using the repository browser.