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

Revision 521, 3.2 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Name:           unique
2Version:        1.0.8
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.20.0
17BuildRequires:  gtk2-devel >= 2.16.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
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* Wed Jan 20 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.0.8-1
70- new upstream release
71- added Japanese description for unique
72- fixed Japanese description for unique-devel
73- fixed BuildRoot
74
75* Sun May 10 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-2
76- new upstream release
77
78* Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-1
79- initial build for Vine Linux
80
81* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.4-4
82- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
83
84* Sat Dec 20 2008 Matthias Clasen  <mclasen@redhat.com> - 1.0.4-3
85- Actually apply the patch
86
87* Sat Dec 20 2008 Matthias Clasen  <mclasen@redhat.com> - 1.0.4-2
88- Fix a nautilus segfault
89
90* Mon Nov 24 2008 Richard Hughes  <rhughes@redhat.com> - 1.0.4-1
91- Update to latest upstream version
92 * Plug a leak in UniqueMessageData
93 * Fix linking with --as-needed
94 * Do not export private functions symbols
95
96* Sat Nov 22 2008 Richard Hughes  <rhughes@redhat.com> - 1.0.0-2
97- Fix up summary text
98
99* Thu Jul 31 2008 Richard Hughes  <rhughes@redhat.com> - 1.0.0-1
100- Update to latest upstream version
101 * First stable release
102 * API is frozen
103 * D-Bus and socket backends supported
104
105* Fri May 16 2008 Richard Hughes  <rhughes@redhat.com> - 0.9.4-5
106- More updates to the spec file from Dan Horak, rh#446407
107
108* Thu May 15 2008 Richard Hughes  <rhughes@redhat.com> - 0.9.4-4
109- Updates to the spec file from Dan Horak, rh#446407
110
111* Thu May 08 2008 Richard Hughes  <rhughes@redhat.com> - 0.9.4-3
112- Initial version
113
Note: See TracBrowser for help on using the repository browser.