source: projects/specs/branches/6/c/colord/colord-vl.spec @ 4619

Revision 4619, 4.5 KB checked in by Takemikaduchi, 13 years ago (diff)

add colord (Vine6), new upstream release (Vine7)

Line 
1Summary:   Color daemon
2Name:      colord
3Version:   0.1.10
4Release:   1%{?_dist_release}
5License:   GPLv2+ and LGPLv2+
6URL:       http://gitorious.org/colord
7Source0:   http://people.freedesktop.org/~hughsient/releases/%{name}-%{version}.tar.xz
8
9BuildRequires: dbus-devel
10BuildRequires: docbook-utils
11BuildRequires: gettext
12BuildRequires: glib2-devel
13BuildRequires: intltool
14BuildRequires: lcms2-devel
15BuildRequires: libgudev1-devel
16BuildRequires: libusb1-devel
17BuildRequires: polkit-devel
18BuildRequires: sane-devel
19BuildRequires: sqlite3-devel
20Requires: shared-color-profiles
21
22Vendor: Project Vine
23Distribution: Vine Linux
24Packager: Takemikaduchi
25
26%description
27colord is a low level system activated daemon that maps color devices
28to color profiles in the system context.
29
30%package devel
31Summary: Development package for %{name}
32Requires: %{name} = %{version}-%{release}
33
34%description devel
35Files for development with %{name}.
36
37%prep
38%setup -q
39
40%build
41%configure \
42        --disable-static \
43        --disable-rpath \
44        --disable-examples \
45        --disable-dependency-tracking
46
47sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
48sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
49
50make %{?_smp_mflags}
51
52%install
53make install DESTDIR=$RPM_BUILD_ROOT
54
55# Remove static libs and libtool archives.
56find %{buildroot} -name '*.la' -exec rm -f {} ';'
57find %{buildroot} -name '*.a' -exec rm -f {} ';'
58
59# databases
60touch $RPM_BUILD_ROOT%{_localstatedir}/lib/colord/mapping.db
61touch $RPM_BUILD_ROOT%{_localstatedir}/lib/colord/storage.db
62
63%find_lang %{name}
64
65%post -p /sbin/ldconfig
66
67%postun -p /sbin/ldconfig
68
69%files -f %{name}.lang
70%defattr(-,root,root,-)
71%doc README AUTHORS NEWS COPYING
72%{_libexecdir}/colord
73%dir %{_localstatedir}/lib/colord
74%{_bindir}/*
75%{_sysconfdir}/dbus-1/system.d/org.freedesktop.ColorManager.conf
76%{_datadir}/dbus-1/interfaces/org.freedesktop.ColorManager*.xml
77%{_datadir}/polkit-1/actions/org.freedesktop.color.policy
78%{_datadir}/dbus-1/system-services/org.freedesktop.ColorManager.service
79%{_datadir}/man/man1/*.1.gz
80%{_libdir}/libcolord.so.*
81%config %{_sysconfdir}/colord.conf
82/lib/udev/rules.d/*.rules
83%dir %{_datadir}/color/icc/colord
84%{_datadir}/color/icc/colord/*.ic?
85%{_libdir}/colord-sensors
86%ghost %{_localstatedir}/lib/colord/*.db
87
88%files devel
89%defattr(-,root,root,-)
90%{_includedir}/colord-1
91%{_libdir}/libcolord.so
92%{_libdir}/pkgconfig/colord.pc
93
94%changelog
95* Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp 0.1.10-1
96- initial build for Vine Linux
97
98
99* Wed Jul 06 2011 Richard Hughes <richard@hughsie.com> 0.1.10-1
100- New upstream version
101
102* Mon Jun 13 2011 Richard Hughes <richard@hughsie.com> 0.1.9-1
103- New upstream version
104
105* Fri Jun 02 2011 Richard Hughes <richard@hughsie.com> 0.1.8-1
106- New upstream version
107- Add a webcam device kind
108- Add a timestamp when making profiles default
109- Add support for reading and writing ICC profile metadata
110- Allow the client to pass file descriptors out of band to CreateProfile
111- Prettify the device vendor and model names
112- Split out the sensors into runtime-loadable shared objects
113- Provide some GIO async variants for the methods in CdClient
114- Ensure GPhoto2 devices get added to the device list
115
116* Fri May 06 2011 Richard Hughes <richard@hughsie.com> 0.1.7-1
117- New upstream version.
118- Create /var/lib/colord at buildtime not runtime for SELinux
119- Ensure profiles with embedded profile checksums are parsed correctly
120- Move the colorimeter rules to be run before 70-acl.rules
121- Stop watching the client when the sensor is finalized
122- Ensure the source is destroyed when we unref CdUsb to prevent a crash
123- Only enable the volume mount tracking when searching volumes
124
125* Tue Apr 26 2011 Richard Hughes <rhughes@redhat.com> 0.1.6-2
126- Own /var/lib/colord and /var/lib/colord/*.db
127
128* Sun Apr 24 2011 Richard Hughes <richard@hughsie.com> 0.1.6-1
129- New upstream version.
130
131* Thu Mar 31 2011 Richard Hughes <richard@hughsie.com> 0.1.5-1
132- New upstream version.
133
134* Wed Mar 09 2011 Richard Hughes <richard@hughsie.com> 0.1.4-1
135- New upstream version.
136
137* Mon Feb 28 2011 Richard Hughes <richard@hughsie.com> 0.1.3-1
138- New upstream version.
139
140* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-3
141- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
142
143* Fri Jan 28 2011 Richard Hughes <richard@hughsie.com> 0.1.1-2
144- Rebuild in the vain hope koji isn't broken today.
145
146* Wed Jan 26 2011 Richard Hughes <richard@hughsie.com> 0.1.1-1
147- New upstream version.
148
149* Thu Jan 13 2011 Richard Hughes <richard@hughsie.com> 0.1.0-1
150- Initial version for Fedora package review.
Note: See TracBrowser for help on using the repository browser.