source: projects/specs/trunk/lib/libd/libdaemon/libdaemon-vl.spec @ 8067

Revision 8067, 3.6 KB checked in by Takemikaduchi, 10 years ago (diff)

new upstream release or rebuild

Line 
1Summary: C library for writing of UNIX daemons
2Name: libdaemon
3Version: 0.14
4Release: 3%{_dist_release}
5Source0: %{name}-%{version}.tar.gz
6License: LGPLv2
7Group: System Environment/Libraries
8URL: http://0pointer.de/lennart/projects/libdaemon/
9BuildRoot: %{_tmppath}/%{name}-%{version}-root
10
11Vendor: Project Vine
12Distribution: Vine Linux
13
14%description
15libdaemon is a leightweight C library which eases the writing of UNIX daemons.
16Shared libraries and documents is included in this package.
17
18%package devel
19Summary: libdaemon developing environment
20Group: Development/Libraries
21Requires: %{name} = %{version}
22
23%description devel
24libdaemon is a leightweight C library which eases the writing of UNIX daemons.
25Environment for programming using libdaemon is included in devel pakcage.
26
27%prep
28%setup -q
29
30%build
31%configure --disable-static --disable-doxygen --disable-lynx
32make
33
34%install
35make DESTDIR=$RPM_BUILD_ROOT install
36make DESTDIR=$RPM_BUILD_ROOT install-pkgconfigDATA
37
38rm -rf $RPM_BUILD_ROOT%{_docdir}/%{name}
39
40%clean
41[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
42
43%post -p /sbin/ldconfig
44
45%postun -p /sbin/ldconfig
46
47%files
48%defattr(-,root,root)
49%doc LICENSE README doc/README.html doc/style.css
50%{_libdir}/%{name}.so.*
51
52%files devel
53%defattr(-,root,root)
54%doc LICENSE examples
55%{_includedir}/%{name}/
56%exclude %{_libdir}/%{name}.la
57%{_libdir}/%{name}.so
58%{_libdir}/pkgconfig/*
59
60%changelog
61* Sat Dec 28 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14-3
62- rebuild with VineSeed environment
63
64* Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.14-2
65- rebuild with rpm-4.8.1 for pkg-config file
66
67* Fri May 21 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.14-1
68- new upstream release
69- removed static libraries from devel package
70
71* Wed Mar 04 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 0.13-1
72- new upstream release
73
74* Mon May 05 2008 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 0.12-1
75- rebuild with new versioning policy
76
77* Sun Jul 22 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.12-0vl1
78- new upstream release
79
80* Sun Sep 17 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.10-0vl4
81- changed devel Group to Development/Libraries
82
83* Fri May 12 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
84- 0.10-0vl3
85- rebuild for VineSeed with gpg sign
86
87* Wed May 10 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
88- 0.10-0vl2
89- rebuild for VineSeed
90
91* Wed May 10 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
92- 0.10-0vl1
93- upstream release & build for VinePlus 3.x
94- update url
95
96* Sun Feb 12 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
97- 0.8-0vl3
98- rebuild for VineSeed
99
100* Wed Aug 31 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
101- 0.8-0vl2
102- upstream release for VinePlus 3.0/3.1/3.2
103- brush up doc files
104
105* Wed Aug 31 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
106- 0.8-0vl1
107- upstream release for VinePlus 2.5/2.6
108- brush up doc files
109
110* Sat Mar 26 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
111- 0.7-0vl2
112- upstream release for VinePlus 3.0/3.1
113
114* Fri Mar 25 2005 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
115- 0.7-0vl1
116- upstream release for VinePlus 2.5/2.6
117
118* Thu Dec 02 2004 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
119- 0.6-0vl2
120- upstream release for VinePlus 3.0/3.1
121
122* Thu Dec 02 2004 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
123- 0.6-0vl1
124- upstream release for VinePlus 2.5/2.6
125
126* Fri Feb 27 2004 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
127- 0.5-0vl1
128- upstream release
129- add files list (pkgconfig data)
130
131* Sun Aug 03 2003 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
132- 0.2-0vl2
133- add Vendor / Distribution tag for VineLinux
134
135* Sat Aug 02 2003 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp>
136- 0.2-0vl1
137- for Vine 2.5/2.6
138
139
Note: See TracBrowser for help on using the repository browser.