1 | %define __libtoolize /bin/true |
---|
2 | %define __spec_install_post /usr/lib/rpm/brp-compress |
---|
3 | Summary: Library for writing network programs |
---|
4 | Name: linc |
---|
5 | Version: 1.0.1 |
---|
6 | Release: 1 |
---|
7 | Source: ftp://ftp.gnome.org/pub/GNOME/pre-gnome2/sources/linc/%{name}-%{version}.tar.gz |
---|
8 | Group: System Environment/Libraries |
---|
9 | License: LGPL |
---|
10 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
---|
11 | BuildRequires: pkgconfig >= 0.8 |
---|
12 | Requires: glib2 >= 1.3.11 |
---|
13 | BuildRequires: glib2-devel >= 1.3.11 |
---|
14 | |
---|
15 | |
---|
16 | %description |
---|
17 | linc is a library that eases the task of writing networked servers and |
---|
18 | clients. It takes care of connection initiation and maintainance, and |
---|
19 | the details of varioustransports. It is used by the new ORBit to |
---|
20 | handle message transmission/receipt. |
---|
21 | |
---|
22 | %package devel |
---|
23 | Summary: Development libraries and header files for linc. |
---|
24 | Group: Development/Libraries |
---|
25 | Requires: %name = %{version} |
---|
26 | Requires: pkgconfig >= 0.8 |
---|
27 | Requires: glib2 >= 1.3.11 |
---|
28 | Requires: glib2-devel >= 1.3.11 |
---|
29 | |
---|
30 | |
---|
31 | %description devel |
---|
32 | linc is a library that eases the task of writing networked servers and |
---|
33 | clients. It takes care of connection initiation and maintainance, and |
---|
34 | the details of varioustransports. It is used by the new ORBit to |
---|
35 | handle message transmission/receipt. |
---|
36 | |
---|
37 | This package contains the header files and libraries needed to write |
---|
38 | or compile programs that use linc. |
---|
39 | |
---|
40 | %prep |
---|
41 | %setup -q -n %{name}-%{version} |
---|
42 | |
---|
43 | %build |
---|
44 | %configure |
---|
45 | make %{?_smp_mflags} |
---|
46 | |
---|
47 | %install |
---|
48 | rm -rf %{buildroot} |
---|
49 | %makeinstall |
---|
50 | |
---|
51 | %post -p /sbin/ldconfig |
---|
52 | |
---|
53 | %postun -p /sbin/ldconfig |
---|
54 | |
---|
55 | %clean |
---|
56 | rm -rf %{buildroot} |
---|
57 | |
---|
58 | %files |
---|
59 | %defattr(-,root,root) |
---|
60 | %doc AUTHORS COPYING ChangeLog README NEWS |
---|
61 | %{_libdir}/*.so.* |
---|
62 | |
---|
63 | %files devel |
---|
64 | %defattr(-,root,root) |
---|
65 | %{_includedir}/* |
---|
66 | %{_libdir}/*.so |
---|
67 | %{_libdir}/*a |
---|
68 | %{_libdir}/pkgconfig/* |
---|
69 | %{_bindir}/* |
---|
70 | %{_datadir}/aclocal/* |
---|
71 | |
---|
72 | |
---|
73 | %changelog |
---|
74 | * Tue Mar 05 2002 Chris Chabot <chabotc@reviewboard.com> |
---|
75 | - Converted to configure.in |
---|
76 | - final spit and polish |
---|
77 | |
---|
78 | * Tue Jan 22 2002 Gregory Leblanc <gleblanc@linuxweasel.com> |
---|
79 | - removed tabs from the header |
---|
80 | - turn off libtoolize |
---|
81 | - cleanup and add missing files to files section |
---|
82 | |
---|
83 | * Sat Jan 19 2002 Chris Chabot <chabotc@reviewboard.com> |
---|
84 | - Imported into gnome 2.0 alpha |
---|
85 | - Bumped version to 0.13 |
---|
86 | - Cleanups, moved versions to defines |
---|
87 | |
---|
88 | * Wed Jan 2 2002 Havoc Pennington <hp@redhat.com> |
---|
89 | - 0.1.12.90 snap |
---|
90 | |
---|
91 | * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com> |
---|
92 | - new cvs snap 0.1.9.90, rebuild for glib 1.3.11 |
---|
93 | |
---|
94 | * Fri Oct 26 2001 Havoc Pennington <hp@redhat.com> |
---|
95 | - new cvs snap, rebuild on new glib |
---|
96 | |
---|
97 | * Tue Oct 9 2001 Havoc Pennington <hp@redhat.com> |
---|
98 | - new cvs snap with headers moved |
---|
99 | - hrm, put headers in the devel package, doh |
---|
100 | |
---|
101 | * Thu Oct 4 2001 Havoc Pennington <hp@redhat.com> |
---|
102 | - cvs snap action |
---|
103 | |
---|
104 | * Thu Sep 27 2001 Havoc Pennington <hp@redhat.com> |
---|
105 | - move to released 0.1.5 tarball |
---|
106 | |
---|
107 | * Fri Sep 21 2001 Havoc Pennington <hp@redhat.com> |
---|
108 | - -devel package requires specific glib, update to new cvs snap |
---|
109 | |
---|
110 | * Mon Sep 10 2001 Havoc Pennington <hp@redhat.com> |
---|
111 | - update to CVS snapshot |
---|
112 | |
---|
113 | * Tue Sep 4 2001 Havoc Pennington <hp@pobox.com> |
---|
114 | - create package |
---|
115 | |
---|
116 | |
---|