blob: 18c9c463b812ee0ad7a4088a4743961ae2ac2169 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Always build under "/usr"
%define _prefix /usr
%define cmake_modules_dir %{_datadir}/cmake/Modules
Name: tqtinterface
Version: r14
Release: 1%{?dist}
License: GPL
Summary: Trinity QT Interface
Group: System Environment/Libraries
Vendor: Trinity Project
URL: http://www.trinitydesktop.org/
Packager: Francois Andriot <francois.andriot@free.fr>
Prefix: %{_prefix}
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Source0: %{name}-%{version}.tar.gz
BuildRequires: cmake >= 2.8
BuildRequires: tqt3-devel >= 3.4.0
BuildRequires: gcc-c++
BuildRequires: libXi-devel
BuildRequires: pth-devel
Requires: tqt3 >= 3.4.0
%description
Trinity QT Interface
%package devel
Group: Development/Libraries
Summary: %{name} - Development files
Requires: %{name} = %{version}-%{release}
Requires: tqt3-devel >= 3.4.0
%description devel
Development files for %{name}
%prep
%setup -q -n dependencies/%{name}
%build
%__mkdir build
cd build
%cmake \
-DQT_VERSION=3 \
-DINCLUDE_INSTALL_DIR=%{_includedir}/tqt \
-DMOC_EXECUTABLE=/usr/bin/moc-tqt3 \
-DUIC_EXECUTABLE=/usr/bin/uic-tqt3 \
..
%__make %{?_smp_mflags}
%install
%__rm -rf %{?buildroot}
%__make install DESTDIR=%{?buildroot} -C build
# RHEL 5: add newline at end of include files to avoid warnings
%if 0%{?rhel} && 0%{?rhel} <= 5
for i in %{?buildroot}%{_includedir}/tqt/*.h; do
echo "" >>${i}
done
%endif
# Install 'cmake' modules for development use
%__mkdir_p %{?buildroot}%{cmake_modules_dir}
for i in cmake/modules/*.cmake; do
%__install -m 644 $i %{?buildroot}%{cmake_modules_dir}
done
%clean
%__rm -rf %{?buildroot}
%files
%{_bindir}/*
%{_libdir}/*.so.*
%files devel
%{_includedir}/tqt/
%{_libdir}/*.so
%{_libdir}/*.la
%{_libdir}/pkgconfig/*.pc
%{cmake_modules_dir}/*.cmake
%changelog
* Tue Feb 14 2012 Francois Andriot <francois.andriot@free.fr> - r14-1
- Initial build for TDE R14, using 'tqt3' instead of 'qt3'
|