Initial commit of the cmake conversion of the libasyncio project. The test testsimple...
[libasyncio] / libasyncio.spec.in
1 # @HAVE_LIBI2NCOMMON_TRUE@%define with_libi2ncommon 1
2 # @HAVE_LIBI2NCOMMON_FALSE@%define with_libi2ncommon 0
3 # @HAVE_LIBT2N_TRUE@%define with_libt2n 1
4 # @HAVE_LIBT2N_FALSE@%define with_libt2n 0
5 %define with_libi2ncommon 1
6 %define with_libt2n 1
7
8 Summary:   library with asynchronous io functionality
9 Name:      libasyncio
10 Version:   @VERSION@
11 Release:   1
12 License:   GPL version 2 + linking exception
13 Group:     Intranator
14 Vendor:    Intra2net AG
15 Source:    %{name}-%{version}.tar.gz
16 # Buildroot: /tmp/%{name}-%{version}-root
17 Prefix:    /usr
18 Requires:  libi2ncommon >= 1.0
19 Requires:   boost >= 1.32.0
20 Requires:  libasynio-utils = %{version}
21 # BuildRequires: libtool
22 BuildRequires: boost-devel >= 1.32.0
23 Obsoletes: libsimpleio
24
25 %description 
26 library with asynchronous io functionality
27
28
29 %package   devel
30 Summary:   library with asynchronous io functionality
31 Group:     Intranator/Development
32 Requires:  libi2ncommon-devel
33 Requires:  boost-devel >= 1.32.0
34 Obsoletes: libsimpleio-devel
35
36
37 %description devel
38 development files for library with asynchronous io functionality
39
40
41 %package utils
42 Summary:   library with asynchronous io functionality
43 Group:     Intranator
44 %if %{with libi2ncommon}
45 Requires:  libi2ncommon >= 1.0
46 %endif
47 Requires: boost >= 1.32.0
48
49 %description utils
50 A collection of util function and classes used within asyncio, but
51 are also usable for other purposes, too.
52
53
54 %package utils-devel
55 Summary:   library with asynchronous io functionality
56 Group:     Intranator/Development
57 Requires:  boost-devel >= 1.32.0
58
59 %description utils-devel
60 development files for asyncio utils.
61
62
63 %if %{with libt2n}
64 %package t2n
65 Summary:    glue library for using t2n with libasyncio
66 Group:      Intranator
67 BuildRequires: libt2n-devel >= 0.4
68 Requires:   libt2n >= 0.4
69 Obsoletes:  libsimpleio-t2n
70
71 %description t2n
72 glue lib for using t2n with simpleio.
73
74
75 %package t2n-devel
76 Summary:    glue library for using t2n with libasyncio
77 Group:      Intranator/Development
78 Requires:   libt2n-devel >= 0.4
79
80 %description t2n-devel
81 development files for glue lib for using t2n with simpleio.
82 %endif
83
84
85
86 %prep
87 %setup -q
88
89 %build
90 export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/intranator/lib/pkgconfig
91 # autoreconf --force -i
92 # ./configure $RPM_BUILD_WITH_OPTIMIZE --prefix=%{prefix}
93
94 mkdir build
95 cd build
96
97 export CFLAGS="$RPM_OPT_FLAGS"
98 export CXXFLAGS="$RPM_OPT_FLAGS"
99
100 CMAKE_OPTS=""
101 %if %{with libi2ncommon}
102     CMAKE_OPTS="$CMAKE_OPTS -DWITH_LIBI2NCOMMON=ON"
103 %endif
104 %if %{with libt2n}
105     CMAKE_OPTS="$CMAKE_OPTS -DWITH_LIBT2N=ON"
106 %endif
107
108 cmake -DCMAKE_INSTALL_PREFIX="%{prefix}" $CMAKE_OPTS ../
109
110 dmake %{?_smp_mflags}
111
112 # for dir in utils asyncio; do
113 #     make -C $dir headerlist
114 # done
115
116 export BOOST_TEST_LOG_LEVEL=test_suite
117 dmake check
118
119 %install
120 cd build
121 make DESTDIR=$RPM_BUILD_ROOT install
122
123 # Remove unpackaged files
124 rm -f $RPM_BUILD_ROOT/usr/lib/libasyncio_utils.a
125 rm -f $RPM_BUILD_ROOT/usr/lib/libasyncio_utils.la
126
127 %clean
128 rm -fr $RPM_BUILD_ROOT
129
130 %post
131 /sbin/ldconfig
132
133 %files
134 %defattr(-,root,root)
135 %doc LICENSE COPYING.GPL
136 %{prefix}/lib/libasyncio.so*
137
138 %files devel -f headerlist.asyncio
139 %defattr(-,root,root)
140 %{prefix}/lib/libasyncio.*a*
141 %{prefix}/lib/pkgconfig/libasyncio.pc
142
143
144 %files utils
145 %defattr(-,root,root)
146 %{prefix}/lib/libasyncio_utils.so*
147
148
149 %files utils-devel -f headerlist.utils
150 %defattr(-,root,root)
151 %{prefix}/lib/libasyncio.*a*
152 %{prefix}/lib/pkgconfig/libasyncio_utils.pc
153
154 %if %{with libt2n}
155 %files t2n
156 %defattr(-,root,root)
157 %doc LICENSE
158 %{prefix}/lib/libasyncio_t2n.so*
159
160 %files t2n-devel
161 %defattr(-,root,root)
162 %{prefix}/lib/libasyncio_t2n.*a*
163 %{prefix}/lib/pkgconfig/libasyncio_t2n.pc
164 %{prefix}/include/asyncio_t2n*.hpp
165 %endif