source: projects/specs/trunk/u/unique/unique-vl.spec @ 805

Revision 805, 3.3 KB checked in by Takemikaduchi, 14 years ago (diff)

change spec file of gnome-2.30

Line 
1Name:           unique
2Version:        1.1.6
3Release:        1%{?_dist_release}
4Summary:        Single instance support for applications
5Summary(ja):    アプリケーションのシングルインスタンス支援
6
7Group:          System Environment/Libraries
8License:        LGPLv2+
9URL:            http://www.gnome.org/~ebassi/source/
10Source0:        http://www.gnome.org/~ebassi/source/libunique-%{version}.tar.bz2
11BuildRoot: %{_tmppath}/%{name}-%{version}-root
12
13BuildRequires:  dbus-glib-devel
14BuildRequires:  gnome-doc-utils >= 0.3.2
15BuildRequires:  libtool
16BuildRequires:  glib2-devel >= 2.12.0
17BuildRequires:  gtk2-devel >= 2.11.0
18
19%description
20Unique is a library for writing single instance applications, that is
21applications that are run once and every further call to the same binary
22either exits immediately or sends a command to the running instance.
23
24%package devel
25Summary: Libraries and headers for Unique
26Summary(ja): Unique のライブラリとヘッダ
27Group: Development/Libraries
28Requires: %{name} = %{version}-%{release}
29Requires: pkgconfig
30Requires: gtk-doc >= 1.11
31Requires: dbus-glib-devel
32Requires: gtk2-devel
33
34%description devel
35Headers and libraries for Unique.
36
37%prep
38%setup -q -n libunique-%{version}
39
40%build
41%configure --enable-gtk-doc --disable-static
42make %{?_smp_mflags}
43
44%install
45rm -rf $RPM_BUILD_ROOT
46make install DESTDIR=$RPM_BUILD_ROOT
47rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
48
49%clean
50rm -rf $RPM_BUILD_ROOT
51
52%post -p /sbin/ldconfig
53
54%postun -p /sbin/ldconfig
55
56%files
57%defattr(-,root,root,-)
58%doc AUTHORS ChangeLog COPYING README
59%{_libdir}/lib*.so.*
60
61%files devel
62%defattr(-,root,root,-)
63%doc %{_datadir}/gtk-doc/html/unique/
64%{_includedir}/unique-1.0/
65%{_libdir}/pkgconfig/*
66%{_libdir}/lib*.so
67
68%changelog
69* Sun Apr 04 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.1.6-1
70- new upstream release
71
72* Wed Jan 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.0.8-1
73- new upstream release
74- added Japanese description for unique
75- fixed Japanese description for unique-devel
76- fixed BuildRoot
77
78* Sun May 10 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-2
79- new upstream release
80
81* Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-1
82- initial build for Vine Linux
83
84* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-4
85- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
86
87* Sat Dec 20 2008 Matthias Clasen  <mclasen@redhat.com> - 1.0.4-3
88- Actually apply the patch
89
90* Sat Dec 20 2008 Matthias Clasen  <mclasen@redhat.com> - 1.0.4-2
91- Fix a nautilus segfault
92
93* Mon Nov 24 2008 Richard Hughes  <rhughes@redhat.com> - 1.0.4-1
94- Update to latest upstream version
95 * Plug a leak in UniqueMessageData
96 * Fix linking with --as-needed
97 * Do not export private functions symbols
98
99* Sat Nov 22 2008 Richard Hughes  <rhughes@redhat.com> - 1.0.0-2
100- Fix up summary text
101
102* Thu Jul 31 2008 Richard Hughes  <rhughes@redhat.com> - 1.0.0-1
103- Update to latest upstream version
104 * First stable release
105 * API is frozen
106 * D-Bus and socket backends supported
107
108* Fri May 16 2008 Richard Hughes  <rhughes@redhat.com> - 0.9.4-5
109- More updates to the spec file from Dan Horak, rh#446407
110
111* Thu May 15 2008 Richard Hughes  <rhughes@redhat.com> - 0.9.4-4
112- Updates to the spec file from Dan Horak, rh#446407
113
114* Thu May 08 2008 Richard Hughes  <rhughes@redhat.com> - 0.9.4-3
115- Initial version
116
Note: See TracBrowser for help on using the repository browser.