blob: 2e0b389baca242b4cd81554e12b61ba660ef8aba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Always build under "/usr"
%define _prefix /usr
Name: avahi-tqt
Version: r14
Release: 1%{?dist}
License: GPL
Summary: Avahi TQT Interface
Group: System Environment/Libraries
Vendor: Trinity Project
Packager: Francois Andriot <francois.andriot@free.fr>
URL: http://www.trinitydesktop.org/
Prefix: %{_prefix}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Source0: %{name}-%{version}.tar.gz
# Allows building with TQT3 instead of QT3
Patch1: avahi-tqt-moc-tqt3.patch
BuildRequires: gcc-c++
BuildRequires: avahi-devel
BuildRequires: cmake >= 2.8
BuildRequires: tqt3-devel >= 3.4.0
BuildRequires: tqtinterface-devel
Requires: tqt3 >= 3.4.0
Requires: tqtinterface
%description
Avahi TQT Interface
%package devel
Requires: %{name}
Summary: %{name} - Development files
Group: Development/Libraries
%description devel
Development files for %{name}
%prep
%setup -q -n dependencies/%{name}
%patch1 -p1
%build
./autogen.sh
%configure \
--enable-compat-libdns_sd \
--with-systemdsystemunitdir=/lib/systemd/system
%install
%__rm -rf %{?buildroot}
%__make install DESTDIR=%{?buildroot}
%clean
%__rm -rf %{?buildroot}
%files
%{_libdir}/*.so.*
%files devel
%{_includedir}/%{name}
%{_libdir}/*.so
%{_libdir}/*.la
%{_libdir}/pkgconfig/*.pc
%exclude %{_libdir}/libavahi-tqt.a
%changelog
* Thu Feb 16 2012 Francois Andriot <francois.andriot@free.fr> - r14-1
- Initial build for TDE R14, using 'tqt3' instead of 'qt3'
|