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