source: projects/specs/trunk/a/attica/attica-vl.spec @ 1850

Revision 1850, 2.5 KB checked in by inagaki, 14 years ago (diff)

rebuilt with rpm-4.8.1

Line 
1Name:           attica
2Summary:        Implementation of the Open Collaboration Services API
3Version:        0.1.4
4Release:        2%{?_dist_release}
5
6Group:          System Environment/Libraries
7License:        LGPLv2+
8URL:            http://www.kde.org
9Source0:        ftp://ftp.kde.org/pub/kde/stable/attica/attica-%{version}.tar.bz2
10BuildRoot:      %{_tmppath}/%{name}-%{version}-root
11
12## upstreamable patches
13
14BuildRequires:  cmake
15BuildRequires:  qt4-devel
16BuildRequires:  openssl-devel
17
18%description
19Attica is a Qt library that implements the Open Collaboration Services
20API version 1.4.
21
22
23%package        devel
24Summary:        Development files for %{name}
25Group:          Development/Libraries
26Requires:       %{name} = %{version}-%{release}
27
28%description    devel
29The %{name}-devel package contains libraries and header files for
30developing applications that use %{name}.
31
32
33%prep
34%setup -q
35
36
37%build
38%ifarch x86_64
39PATH="$PATH:`/usr/bin/pkg-config --variable=bindir Qt`"
40%endif
41mkdir -p %{_target_platform}
42pushd %{_target_platform}
43%cmake ..
44popd
45
46make %{?_smp_mflags} -C %{_target_platform}
47
48
49%install
50rm -rf %{buildroot}
51
52make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
53
54
55%clean
56rm -rf %{buildroot}
57
58
59%post -p /sbin/ldconfig
60%postun -p /sbin/ldconfig
61
62
63%files
64%defattr(-,root,root,-)
65%doc COPYING README
66%{_libdir}/libattica.so.0*
67
68%files devel
69%defattr(-,root,root,-)
70%{_includedir}/attica/
71%{_libdir}/libattica.so
72%{_libdir}/pkgconfig/libattica.pc
73
74
75%changelog
76* Mon Sep 20 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.1.4-2
77- rebuilt with rpm-4.8.1
78
79* Sat Jul 10 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.1.4-1
80- new upstream release
81- dropt Patch50 (merged into upstream)
82
83* Sat Apr 10 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.1.3-1
84- new upstream release
85
86* Thu Feb 11 2010 Shu KONNO <owa@bg.wakwak.com> - 0.1.2-3
87- added qmake path to PATH (if x86_64)
88
89* Thu Feb 11 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.1.2-2
90- initial build for Vine Linux
91
92* Thu Jan 14 2010 Rex Dieter <rdieter@fedoraproject.org> - 0.1.2-1
93- attica-0.1.2
94- patch Version in libattica.pc
95- %%build: %%_cmake_skip_rpath
96
97* Fri Dec 18 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.1.1-1
98- attica-0.1.1
99
100* Wed Dec  9 2009 Rex Dieter <rdieter@fedoraproject.org> - 0.1.0-3
101- upstream tarball
102- %files: tighten up a bit, track sonames
103
104* Mon Dec  7 2009 Lorenzo Villani <lvillani@binaryhelix.net> - 0.1.0-2
105- Out of sourcetree build
106- Use make install/fast
107
108* Sat Dec 5 2009 lvillani <lvillani@enterprise.binaryhelix.net> 0.1.0-1
109- Initial release
110
Note: See TracBrowser for help on using the repository browser.