nautilus-vl.spec 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823
  1. %define glib2_version 2.20.0
  2. %define pango_version 1.24.0
  3. %define gtk2_version 2.16.0
  4. %define libgnomeui_version 2.24.1
  5. %define libxml2_version 2.5.10
  6. %define eog_version 2.26.0
  7. %define desktop_file_utils_version 0.3
  8. %define gnome_desktop_version 2.26.0
  9. %define vine_menus_version 3.0
  10. %define gnome_menus_version 2.26.0
  11. %define gnome_vfs2_version 2.24.1
  12. %define startup_notification_version 0.5
  13. %define libexif_version 0.5.12
  14. %define gconf_version 2.28.0
  15. Name: nautilus
  16. Summary: Nautilus is a file manager for GNOME
  17. Summary(ja): Nautilus - GNOME ファイルマネージャ
  18. Version: 2.28.4
  19. Release: 1%{?_dist_release}
  20. License: GPLv2+
  21. Group: User Interface/Desktops
  22. URL: http://www.gnome.org/projects/nautilus/
  23. Source: ftp://ftp.gnome.org/pub/gnome/sources/%{name}/2.28/%{name}-%{version}.tar.bz2
  24. # Some changes to default config
  25. Patch1: nautilus-2.5.7-rhconfig.patch
  26. Patch3: background-no-delay.patch
  27. # Why is this not upstream ?
  28. Patch6: nautilus-2.23.5-dynamic-search.patch
  29. Patch7: rtl-fix.patch
  30. # vine
  31. Patch100: nautilus-2.8.2-vine.patch
  32. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  33. Requires: gamin
  34. Requires: vine-menus >= %{vine_menus_version}
  35. Requires: gvfs, gvfs-fuse, gvfs-smb, gvfs-archive, gvfs-gphoto2
  36. Requires: libexif >= %{libexif_version}
  37. Requires(pre,preun,post): GConf2 >= %{gconf_version}
  38. Requires(post,postun): rarian-compat
  39. BuildRequires: glib2-devel >= %{glib2_version}
  40. BuildRequires: pango-devel >= %{pango_version}
  41. BuildRequires: gtk2-devel >= %{gtk2_version}
  42. BuildRequires: libgnomeui-devel >= %{libgnomeui_version}
  43. BuildRequires: libxml2-devel >= %{libxml2_version}
  44. BuildRequires: gnome-desktop-devel >= %{gnome_desktop_version}
  45. BuildRequires: gamin-devel
  46. BuildRequires: intltool
  47. BuildRequires: desktop-file-utils >= %{desktop_file_utils_version}
  48. BuildRequires: libtool >= 1.4.2-10
  49. BuildRequires: automake, autoconf
  50. BuildRequires: startup-notification-devel >= %{startup_notification_version}
  51. #BuildRequires: tracker-devel >= %{tracker_version}
  52. BuildRequires: libexif-devel >= %{libexif_version}
  53. BuildRequires: unique-devel
  54. BuildRequires: libtool, autoconf
  55. BuildRequires: libSM-devel
  56. Obsoletes: nautilus-extras
  57. Obsoletes: nautilus-suggested
  58. Obsoletes: nautilus-mozilla < 2.0
  59. %description
  60. Nautilus integrates access to files, applications, media,
  61. Internet-based resources and the Web. Nautilus delivers a dynamic and
  62. rich user experience. Nautilus is an free software project developed
  63. under the GNU General Public License and is a core component of the
  64. GNOME desktop project.
  65. %package devel
  66. Summary: Support for developing nautilus extensions
  67. License: LGPLv2+
  68. Group: Development/Libraries
  69. Requires: %{name} = %{version}-%{release}
  70. Requires: pkgconfig
  71. %description devel
  72. This package provides libraries and header files needed
  73. for developing nautilus extensions.
  74. %prep
  75. %setup -q -n %{name}-%{version}
  76. ##patch3 -p1 -b .no-delay
  77. #%patch5 -p1 -b .selinux
  78. ##patch6 -p1 -b .dynamic-search
  79. %patch7 -p1 -b .rtl-fix
  80. %patch100 -p1 -b .vine
  81. %build
  82. gtkdocize
  83. libtoolize --force --copy
  84. autoreconf -f -i
  85. CFLAGS="$RPM_OPT_FLAGS -DUGLY_HACK_TO_DETECT_KDE -DNAUTILUS_OMIT_SELF_CHECK" \
  86. %configure --disable-more-warnings --disable-update-mimedb
  87. export tagname=CC
  88. LANG=en_US make LIBTOOL=/usr/bin/libtool %{?_smp_mflags}
  89. %install
  90. rm -rf $RPM_BUILD_ROOT
  91. export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
  92. export tagname=CC
  93. LANG=en_US %makeinstall LIBTOOL=/usr/bin/libtool
  94. unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
  95. ## these are in desktop-backgrounds-basic
  96. ## (uncomment when we patch the source to look in the right place)
  97. ## /bin/rm -rf $RPM_BUILD_ROOT%{_datadir}/nautilus/patterns
  98. # make sure desktop files validate by ignoring sr@Latn
  99. perl -pi -e 's/sr\@Latn/sp/g' $RPM_BUILD_ROOT%{_datadir}/applications/*.desktop
  100. # desktop-file-install can't handle empty OnlyShowIn correctly
  101. perl -pi -e 's/OnlyShowIn=;/OnlyShowIn=GNOME;/' $RPM_BUILD_ROOT%{_datadir}/applications/nautilus-folder-default-handler.desktop
  102. desktop-file-install --vendor gnome --delete-original \
  103. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  104. --add-only-show-in GNOME \
  105. $RPM_BUILD_ROOT%{_datadir}/applications/*
  106. perl -pi -e 's/OnlyShowIn=GNOME;/OnlyShowIn=;/' $RPM_BUILD_ROOT%{_datadir}/applications/nautilus-folder-default-handler.desktop
  107. rm -f $RPM_BUILD_ROOT%{_libdir}/bonobo/*.{la,a}
  108. rm -f $RPM_BUILD_ROOT%{_libdir}/*.{la,a}
  109. rm -f $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
  110. mkdir -p $RPM_BUILD_ROOT%{_libdir}/nautilus/extensions-2.0
  111. %find_lang %name
  112. %clean
  113. rm -rf $RPM_BUILD_ROOT
  114. %post
  115. /sbin/ldconfig
  116. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  117. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  118. gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/apps_nautilus_preferences.schemas > /dev/null || :
  119. %posttrans
  120. %{_bindir}/update-mime-database %{_datadir}/mime &> /dev/null ||:
  121. gtk-update-icon-cache -q %{_datadir}/icons/hicolor &> /dev/null ||:
  122. scrollkeeper-update > /dev/null 2>&1 || :
  123. %pre
  124. if [ "$1" -gt 1 ]; then
  125. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  126. gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/apps_nautilus_preferences.schemas > /dev/null || :
  127. fi
  128. %preun
  129. if [ "$1" -eq 0 ]; then
  130. export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
  131. gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/apps_nautilus_preferences.schemas > /dev/null || :
  132. fi
  133. %postun
  134. /sbin/ldconfig
  135. if [ $1 -eq 0 ] ; then
  136. touch --no-create %{_datadir}/icons/hicolor &> /dev/null ||:
  137. gtk-update-icon-cache -q %{_datadir}/icons/hicolor &> /dev/null ||:
  138. scrollkeeper-update > /dev/null 2>&1 || :
  139. fi
  140. %files -f %{name}.lang
  141. %defattr(-,root,root)
  142. %doc AUTHORS COPYING COPYING-DOCS COPYING.LIB ChangeLog NEWS README
  143. %{_libdir}/*.so.*
  144. %dir %{_libdir}/nautilus
  145. %dir %{_libdir}/nautilus/extensions-2.0
  146. %{_libexecdir}/nautilus-convert-metadata
  147. %{_datadir}/nautilus
  148. %{_datadir}/pixmaps
  149. %{_datadir}/applications
  150. %{_datadir}/mime/*
  151. %{_datadir}/icons/hicolor/*
  152. %{_bindir}/*
  153. %{_sysconfdir}/gconf/schemas/*
  154. %{_mandir}/man1/*
  155. %files devel
  156. %defattr(-, root, root)
  157. %{_includedir}/nautilus
  158. %{_libdir}/pkgconfig/*
  159. %{_libdir}/*.so
  160. %doc %{_datadir}/gtk-doc/html/libnautilus-extension/*
  161. %changelog
  162. * Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.28.4-1
  163. - new upstream release
  164. - add BuildRequires: libSM-devel
  165. * Sat Nov 7 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-2
  166. - removed Requires: eel2
  167. - added %%posttrans section
  168. * Sat Oct 31 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
  169. - new upstream release
  170. * Wed May 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.3-1
  171. - new upstream release
  172. * Wed Apr 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.2-1
  173. - new upstream release
  174. * Sun Mar 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
  175. - new upstream release
  176. - split -devel subpackage
  177. * Wed Oct 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.1-1
  178. - new upstream release
  179. * Mon Oct 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-2
  180. - patch6 needs autoreconf
  181. * Wed Sep 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
  182. - new upstream release
  183. * Sun Jun 1 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.3-1
  184. - new upstream release
  185. * Thu Apr 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.2-1vl5
  186. - new upstream release
  187. - added Requires: gvfs
  188. * Sun Mar 30 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.22.1-1vl5
  189. - new upstream release
  190. - added Patches from FC
  191. * Thu Mar 13 2008 Tomas Bzatek <tbzatek@redhat.com> - 2.22.0-2
  192. - Don't create application/x-ext-<extension> types for known mimetypes (patch from head)
  193. - Fix a crash in the Properties dialog while changing owner (patch from head)
  194. * Tue Feb 26 2008 Tomas Bzatek <tbzatek@redhat.com> - 2.21.92-2
  195. - Change libbeagle .so name for libbeagle-0.3.0 in nautilus-2.21.1-dynamic-search-r2.patch (#434722)
  196. * Thu Dec 13 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.20.0-0vl1
  197. - new upstream release
  198. - dropped Patch11-13 and added Patch7-9 from Fedora
  199. * Tue Oct 16 2007 - Bastien Nocera <bnocera@redhat.com> - 2.20.0-5
  200. - Add patch from upstream to get audio preview working again
  201. (#332251)
  202. * Tue Oct 2 2007 Matthias Clasen <mclasen@redhat.com> - 2.20.0-3
  203. - Fix a crash with small fonts (#242350)
  204. * Tue Oct 2 2007 Alexander Larsson <alexl@redhat.com> - 2.20.0-1
  205. - Backport fixes for async thumbnail loading from svn
  206. * Sun May 06 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl4
  207. - run autoreconf for Patch11 changes
  208. * Wed May 02 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl3
  209. - remove tracker dependancy, Patch13 detects tracker dynamically.
  210. * Mon Apr 30 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl2
  211. - add Patch13 to support user-dirs
  212. * Sun Apr 29 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl1
  213. - new upstream release
  214. - enable tracker support
  215. - add BuildRequires: tracker-devel, Requires: tracker
  216. * Fri Apr 27 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.0.1-0vl1
  217. - new upstream release
  218. * Mon Aug 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.3-0vl2
  219. - add BuildRequires: gamin-devel, Requires: gamin
  220. - remove fam dependency (replaced by gamin)
  221. * Wed Aug 02 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.3-0vl1
  222. - new upsteram release
  223. * Sat Jul 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-0vl3
  224. - really applied Patch110...
  225. * Fri Jun 30 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-0vl2
  226. - add Patch110 to fix corruption of help option message.
  227. * Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-0vl1
  228. - new upstream release
  229. * Thu Mar 30 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl4
  230. - fix typo in ja.po
  231. * Wed Mar 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl3
  232. - update ja.po to translate patch50 related message.
  233. * Tue Mar 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl2
  234. - add Patch50 to show progressbar on umounting
  235. (ubuntu patch in Bug 313639)
  236. * Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl1
  237. - new upstream release
  238. * Thu Mar 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.92-0vl2
  239. - add Patch10 to avoid background rendering delay
  240. * Tue Mar 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.92-0vl1
  241. - new upstream release
  242. * Mon Feb 06 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.12.2-0vl2
  243. - add fix-non-UTF-8-encoding.patch (patch0)
  244. - cf. http://bugzilla.gnome.org/show_bug.cgi?id=314538
  245. * Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.2-0vl1
  246. - new upstream release
  247. * Thu Oct 06 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.1-0vl1
  248. - new upstream release
  249. * Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.0-0vl1
  250. - new upstream release
  251. * Thu Aug 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.90-0vl1
  252. - new upstream release
  253. * Fri Jul 22 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.1-0vl2
  254. - rebuild
  255. * Mon May 30 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.10.1-0vl1
  256. - new upstream version
  257. * Mon Mar 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl1
  258. - new upstream version
  259. * Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.2-0vl2
  260. - add vine patch to change some defaults.
  261. - change default zoom sine
  262. - set always_use_browser
  263. * Sun Nov 07 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.2-0vl1
  264. - new upstream release
  265. * Fri Oct 29 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.2-0vl3
  266. - add Patch110 to fix libegg(egg-recent-model.c)
  267. save old umask value before create ".recently-used" file.
  268. * Thu Jul 22 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.2-0vl2
  269. - change default desktop font to Sans 9 (from Sans 10)
  270. - add patch10 to build with gtk+-2.4
  271. * Wed Feb 04 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.2-0vl1
  272. - new upstream release
  273. * Fri Oct 17 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1-0vl1
  274. - new upstream release
  275. * Tue Sep 23 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl3
  276. - add backport patch from rawhide (Patch10)
  277. * Thu Sep 11 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl2
  278. - modified vine patch
  279. - change default zoom level to small
  280. - change desktop font to Sans 10
  281. * Thu Sep 11 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl1
  282. - new upstream release
  283. * Mon Sep 08 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.90-0vl3
  284. - add desktop icon patch from rawhide
  285. * Sat Sep 06 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.90-0vl2
  286. - remove obsolete ja.po
  287. * Fri Sep 05 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.90-0vl1
  288. - new upstream release
  289. * Wed Sep 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.9-0vl1
  290. - new upstream release
  291. * Sat Jun 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.4-0vl1
  292. - new upstream release
  293. * Mon Apr 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.3.1-0vl2
  294. - update ja.po
  295. * Thu Apr 3 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.3.1-0vl1
  296. - new upstream release
  297. * Fri Mar 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.2-0vl1
  298. - new upstream release
  299. * Sat Mar 1 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl1
  300. - new upstream release
  301. * Thu Jan 30 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0.2-0vl1
  302. - new upstream release
  303. * Fri Jan 24 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0.1-0vl1
  304. - new upstream release
  305. * Tue Jan 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl1
  306. - new upstream release
  307. * Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.91-0vl2
  308. - add nautilus-cd-burner patch
  309. * Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.91-0vl1
  310. - new upstream release
  311. * Sat Jan 4 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl5
  312. - discard scrollkeeper outputs.
  313. - update PreReq tags.
  314. * Mon Dec 30 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl4
  315. - change icon for nautilus-file-management-properties
  316. - update ja.po
  317. * Mon Dec 30 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl3
  318. - update ja.po
  319. - add translation for .desktop files.
  320. * Thu Dec 26 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl2
  321. - add Requires: vine-menus
  322. * Thu Dec 26 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl1
  323. - new upstream release
  324. * Sun Dec 22 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.4-0vl4
  325. - remove redhatize patch
  326. * Tue Dec 17 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.4-0vl2
  327. - rebuild to remove unneeded dependancy.
  328. * Mon Dec 16 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.4-0vl1
  329. - build for Vine Linux
  330. * Tue Dec 3 2002 Havoc Pennington <hp@redhat.com>
  331. - add explicit startup-notification dependency because build system is
  332. dumb
  333. - 2.1.3
  334. * Wed Nov 13 2002 Havoc Pennington <hp@redhat.com>
  335. - 2.1.2
  336. * Thu Oct 10 2002 Havoc Pennington <hp@redhat.com>
  337. - 2.0.7
  338. - remove patches that are upstream
  339. * Tue Sep 3 2002 Alexander Larsson <alexl@redhat.com> 2.0.6-6
  340. - Add badhack to make weblinks on desktop work
  341. * Mon Sep 2 2002 Havoc Pennington <hp@redhat.com>
  342. - fix #70667 assertion failures
  343. - fix triple click patch
  344. * Mon Sep 2 2002 Jonathan Blandford <jrb@redhat.com>
  345. - don't activate on double click
  346. * Sat Aug 31 2002 Havoc Pennington <hp@redhat.com>
  347. - put button press mask in triple-click patch, maybe it will work
  348. - remove html-hack patch as it does nothing useful
  349. * Sat Aug 31 2002 Havoc Pennington <hp@redhat.com>
  350. - require newer redhat-artwork, -menus, eel2, gnome-vfs2 to avoid
  351. bogus bug reports
  352. - add hack for HTML mime type handling in a web browser, not
  353. nautilus
  354. * Thu Aug 29 2002 Alexander Larsson <alexl@redhat.com>
  355. - Updated to 2.0.6. Removed the patches I put upstream.
  356. - Added patch that fixes #72410
  357. * Wed Aug 28 2002 Owen Taylor <otaylor@redhat.com>
  358. - Add a simple patch so that redhat-config-packages can disable
  359. the new window behavior for mounted CDs behavior.
  360. * Wed Aug 28 2002 Alexander Larsson <alexl@redhat.com> 2.0.5-4
  361. - Add patch to fix bug #70667
  362. * Sun Aug 25 2002 Havoc Pennington <hp@redhat.com>
  363. - remove mp3
  364. * Fri Aug 23 2002 Havoc Pennington <hp@redhat.com>
  365. - ignore the "add_to_session" preference as it only broke stuff
  366. - pad the left margin a bit to cope with poor word wrapping
  367. * Fri Aug 23 2002 Alexander Larsson <alexl@redhat.com> 2.0.5-1
  368. - Update to 2.0.5, remove topleft icon patch
  369. * Thu Aug 15 2002 Alexander Larsson <alexl@redhat.com> 2.0.4-2
  370. - Add patch to fix the bug where desktop icons get
  371. stuck in the top left corner on startup
  372. * Wed Aug 14 2002 Alexander Larsson <alexl@redhat.com> 2.0.4-1
  373. - 2.0.4
  374. * Tue Aug 13 2002 Havoc Pennington <hp@redhat.com>
  375. - obsolete nautilus-mozilla < 2.0 #69839
  376. * Mon Aug 12 2002 Havoc Pennington <hp@redhat.com>
  377. - add rhconfig patch to Bluecurve theme and disable sidebar by default
  378. * Wed Aug 7 2002 Havoc Pennington <hp@redhat.com>
  379. - drop start here files, require redhat-menus that has them
  380. * Tue Aug 6 2002 Havoc Pennington <hp@redhat.com>
  381. - 2.0.3
  382. * Sat Jul 27 2002 Havoc Pennington <hp@redhat.com>
  383. - build for new eel2, gail
  384. * Wed Jul 24 2002 Havoc Pennington <hp@redhat.com>
  385. - and add the libexec components, mumble
  386. * Wed Jul 24 2002 Havoc Pennington <hp@redhat.com>
  387. - put the components in the file list, were moved upstream
  388. * Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
  389. - 2.0.1
  390. * Thu Jun 27 2002 Owen Taylor <otaylor@redhat.com>
  391. - Relibtoolize to fix relink problems for solib components
  392. - Add LANG=en_US to %makeinstall as well
  393. - Back out previous change, force locale to en_US to prevent UTF-8 problems
  394. - Add workaround for intltool-merge bug on ia64
  395. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  396. - automated rebuild
  397. * Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
  398. - 2.0.0
  399. - use desktop-file-install
  400. - require desktop-backgrounds-basic
  401. * Wed Jun 12 2002 Havoc Pennington <hp@redhat.com>
  402. - add wacky hack in hopes of fixing the hang-on-login thing
  403. * Sat Jun 8 2002 Havoc Pennington <hp@redhat.com>
  404. - add build requires on new gail
  405. - rebuild to try to lose broken libgailutil.so.13 dependency
  406. * Sat Jun 08 2002 Havoc Pennington <hp@redhat.com>
  407. - rebuild in different environment
  408. * Wed Jun 5 2002 Havoc Pennington <hp@redhat.com>
  409. - 1.1.19
  410. * Fri May 31 2002 Havoc Pennington <hp@redhat.com>
  411. - rebuild in different environment
  412. * Thu May 30 2002 Havoc Pennington <hp@redhat.com>
  413. - really remove nautilus-devel if we are going to obsolete it
  414. - don't require hwbrowser
  415. * Sun May 26 2002 Tim Powers <timp@redhat.com>
  416. - automated rebuild
  417. * Tue May 21 2002 Havoc Pennington <hp@redhat.com>
  418. - rebuild in different environment
  419. * Tue May 21 2002 Havoc Pennington <hp@redhat.com>
  420. - 1.1.17
  421. * Fri May 3 2002 Havoc Pennington <hp@redhat.com>
  422. - 1.1.14
  423. * Thu Apr 25 2002 Havoc Pennington <hp@redhat.com>
  424. - require eog
  425. - obsolete nautilus-devel
  426. - fix name of schemas file in post
  427. * Mon Apr 22 2002 Alex Larsson <alexl@redhat.com>
  428. - Update to 1.1.13
  429. * Fri Apr 19 2002 Havoc Pennington <hp@redhat.com>
  430. - put tree view in file list
  431. * Thu Apr 18 2002 Havoc Pennington <hp@redhat.com>
  432. - nautilus for gnome 2
  433. - clean up the spec file and file list a bit
  434. * Mon Apr 15 2002 Havoc Pennington <hp@redhat.com>
  435. - merge translations
  436. * Thu Apr 4 2002 Alex Larsson <alexl@redhat.com>
  437. - Add patch to fix trash crash
  438. * Mon Apr 1 2002 Havoc Pennington <hp@redhat.com>
  439. - fix for metadata tmp race
  440. - backport thumbnail speed fix and thumbnail inf. loop fix
  441. * Mon Mar 25 2002 Havoc Pennington <hp@redhat.com>
  442. - add some fixes from CVS version, including one for #61819 and a couple segfaults
  443. * Wed Mar 20 2002 Havoc Pennington <hp@redhat.com>
  444. - fix thumbnails for files with future timestamp, #56862
  445. * Mon Mar 11 2002 Havoc Pennington <hp@redhat.com>
  446. - buildrequires intltool #60633
  447. - apply Alex's pixbuf cache patch to save a few megs #60581
  448. * Wed Feb 27 2002 Havoc Pennington <hp@redhat.com>
  449. - drop Milan-specific features, including png10 and ac25 patches
  450. - copy in 1.0.5 help component to avoid large risky patch
  451. - remove .la files
  452. - drop mozilla from ia64 again
  453. - remove oaf file from nautilus-mozilla that was also in the base
  454. package
  455. * Mon Jan 28 2002 Bill Nottingham <notting@redhat.com>
  456. - enable mozilla support on ia64
  457. * Fri Dec 28 2001 Christopher Blizzard <blizzard@redhat.com>
  458. - require Mozilla 0.9.7
  459. - Add patch that puts mozilla profile startup before embedding is initialized
  460. * Tue Nov 20 2001 Havoc Pennington <hp@redhat.com>
  461. - 1.0.6, require Mozilla 0.9.6
  462. * Tue Oct 23 2001 Alex Larsson <alexl@redhat.com>
  463. - Update to 1.0.5
  464. * Thu Sep 6 2001 Owen Taylor <otaylor@redhat.com>
  465. - Fix handling of GnomeVFSFileInfo structure (#53315)
  466. * Wed Sep 5 2001 Owen Taylor <otaylor@redhat.com>
  467. - Change handling of names on unmount to fix #52325
  468. * Tue Sep 4 2001 Havoc Pennington <hp@redhat.com>
  469. - put nautilus-help.desktop in file list; #53109
  470. * Fri Aug 31 2001 Havoc Pennington <hp@redhat.com>
  471. - Add po files from sources.redhat.com
  472. * Mon Aug 27 2001 Havoc Pennington <hp@redhat.com>
  473. - Add po files from sources.redhat.com
  474. * Thu Aug 23 2001 Alex Larsson <alexl@redhat.com> 1.0.4-38
  475. - Added patch to fix the .directory issuer
  476. * Thu Aug 23 2001 Havoc Pennington <hp@redhat.com>
  477. - I screwed up the build yesterday, so it didn't actually contain the
  478. fixes mentioned. This build should contain them.
  479. * Wed Aug 22 2001 Havoc Pennington <hp@redhat.com>
  480. - fix bug causing 32000 stats or so in large directories,
  481. should speed things up somewhat
  482. - fix #52104 via gruesome kdesktop-detection hack and setting
  483. window type hint on our desktop window
  484. - fix so Start Here icon displays in sidebar
  485. - don't load non-local .desktop files
  486. * Mon Aug 20 2001 Havoc Pennington <hp@redhat.com>
  487. - make Programs icon into a link, to match the other .desktop files
  488. - own various directories #51164
  489. - web page titles in Japanese, #51709
  490. - tree defaults to only directories #51850
  491. * Wed Aug 15 2001 Havoc Pennington <hp@redhat.com>
  492. - make start here icon work again
  493. - kill some warning spew, #51661
  494. - cache getpwnam() results to speed things up a bit
  495. * Tue Aug 14 2001 Owen Taylor <otaylor@redhat.com>
  496. - Fix problem with missing desktop starthere.desktop file
  497. - New snapshot from our branch, fixes:
  498. - On upgrade, icons migrated from GNOME desktop are not properly lined up
  499. (#51436)
  500. - icons dropped on the desktop don't end up where dropped. (#51441)
  501. - Nautilus shouldn't have fam monitor read-only windows. This
  502. keeps CDROMS from being unmounted until you close all
  503. nautilus windows pointing to them. (#51442)
  504. - Warnings about 'cannot statfs...' when moving items to trash.
  505. - Use separate start-here.desktop for panel, since the one used
  506. for the root window only works from Nautilus.
  507. * Fri Aug 10 2001 Alexander Larsson <alexl@redhat.com>
  508. - Changed starthere .desktop files to be links instead
  509. - of spawning a new nautilus. This makes start-here:
  510. - much faster.
  511. * Thu Aug 9 2001 Alexander Larsson <alexl@redhat.com>
  512. - Added hwbrowser dependency
  513. - New snapshot, fixes the mozilla-view submit form problem
  514. * Wed Aug 8 2001 Jonathan Blandford <jrb@redhat.com>
  515. - Rebuild with new xml-i18n-tools
  516. - fix crash in creating new desktop files
  517. * Tue Aug 7 2001 Jonathan Blandford <jrb@redhat.com>
  518. - Fix up DnD code some more
  519. * Thu Aug 02 2001 Havoc Pennington <hp@redhat.com>
  520. - Sync our CVS version; fixes some MUSTFIX
  521. (the one about drawing background on startup,
  522. properly translate desktop files, etc.)
  523. * Wed Aug 1 2001 Alexander Larsson <alexl@redhat.com> 1.0.4-24
  524. - Fix 64bit cleanness issue
  525. - Fix NULL mimetype crash
  526. - Disable additional_text for .desktop files
  527. * Tue Jul 31 2001 Alexander Larsson <alexl@redhat.com> 1.0.4-23
  528. - Fix unmounting devices.
  529. * Tue Jul 31 2001 Alexander Larsson <alexl@redhat.com> 1.0.4-22
  530. - Make it depend on gnome-vfs-1.0.1-13. Needed for .desktop
  531. - mimetype sniffing.
  532. * Mon Jul 30 2001 Alexander Larsson <alexl@redhat.com> 1.0.4-21
  533. - Remove the "don't run as root" warning.
  534. - Remove eazel from bookmarks
  535. - langified (again? did someone change it?)
  536. * Fri Jul 27 2001 Alexander Larsson <alexl@redhat.com>
  537. - Apply a patch that makes nautilus dnd reset work with the latest
  538. - eel release.
  539. * Thu Jul 26 2001 Alexander Larsson <alexl@redhat.com>
  540. - Build on ia64 without the mozilla component.
  541. * Wed Jul 25 2001 Havoc Pennington <hp@redhat.com>
  542. - Fix crash-on-startup showstopper
  543. - Fix can't-find-images bug (this one was only showing up
  544. when built with debug symbols, since it was an uninitialized memory
  545. read)
  546. * Tue Jul 24 2001 Havoc Pennington <hp@redhat.com>
  547. - sync new tarball from our CVS branch,
  548. fixes some drag-and-drop, changes URI scheme names,
  549. etc.
  550. * Tue Jul 24 2001 Owen Taylor <otaylor@redhat.com>
  551. - Add BuildRequires (#49539, 49537)
  552. - Fix %%post, %%postun (#49720)
  553. - Background efficiency improvements and hacks
  554. * Fri Jul 13 2001 Alexander Larsson <alexl@redhat.com>
  555. - Don't launch esd on each mouseover.
  556. * Wed Jul 11 2001 Havoc Pennington <hp@redhat.com>
  557. - move first time druid patch into my "CVS outstanding" patch
  558. - try to really remove Help/Feedback
  559. - try to really fix Help/Community Support
  560. - try again to get Start Here in the Go menu
  561. - try again to get Start Here on the desktop
  562. - don't show file sizes for .desktop files
  563. * Tue Jul 10 2001 Havoc Pennington <hp@redhat.com>
  564. - add newline to ends of .desktop files that were missing them
  565. * Tue Jul 10 2001 Havoc Pennington <hp@redhat.com>
  566. - update to my latest 'cvs diff -u' (adds default
  567. Start Here link, displays .directory name in sidebar)
  568. - include /etc/X11/* links (starthere, sysconfig, serverconfig)
  569. * Tue Jul 10 2001 Jonathan Blandford <jrb@redhat.com>
  570. - Patch to remove firsttime druid and flash
  571. * Mon Jul 09 2001 Havoc Pennington <hp@redhat.com>
  572. - add hacks for displaying desktop files
  573. - add hack to turn off the "unwriteable" emblem
  574. * Sun Jul 8 2001 Tim Powers <timp@redhat.com>
  575. - added defattr to the files lists to be (-,root,root)
  576. - languified
  577. * Sat Jul 7 2001 Alexander Larsson <alexl@redhat.com>
  578. - Need to run autoheader too.
  579. * Fri Jul 6 2001 Alexander Larsson <alexl@redhat.com>
  580. - Make the fam dependency a real runtime dependency
  581. - by linking to libfam (nautilus-1.0.4-fam-lib.patch)
  582. - Cleaned up specfile.
  583. * Fri Jul 6 2001 Alexander Larsson <alexl@redhat.com>
  584. - Change default background and rubberband color.
  585. - Use the sidebar tabs from the default theme
  586. - BuildDepend on fam-devel, depend on fam
  587. - Disable the eazel update pages in the first-time druid.
  588. - Remove the eazel logo from the first-time druid
  589. * Thu Jul 05 2001 Havoc Pennington <hp@redhat.com>
  590. - 1.0.4, removes eazel services icon and wizard page
  591. - Eazel logo is still in startup wizard for now, needs fixing
  592. * Tue Jul 03 2001 Havoc Pennington <hp@redhat.com>
  593. - fix group (s/Desktop/Desktops/) #47134
  594. - remove ammonite dependency
  595. * Wed Jun 27 2001 Havoc Pennington <hp@redhat.com>
  596. - add a different default theme
  597. - clean up file list overspecificity a bit
  598. * Tue Jun 26 2001 Havoc Pennington <hp@redhat.com>
  599. - move to a CVS snapshot of nautilus for now
  600. (Darin is my hero for having distcheck work out of CVS)
  601. * Thu May 10 2001 Jonathan Blandford <jrb@redhat.com>
  602. - clean up defaults a bit
  603. * Wed May 9 2001 Jonathan Blandford <jrb@redhat.com>
  604. - New version
  605. * Tue Apr 17 2001 Gregory Leblanc <gleblanc@grego1.cu-portland.edu>
  606. - Added BuildRequires lines
  607. - Changed Source to point to ftp.gnome.org instead of just the tarball name
  608. - Moved %description sections closer to their %package sections
  609. - Moved %changelog to the end, where so that it's not in the way
  610. - Changed configure and make install options to allow moving of
  611. libraries, includes, binaries more easily
  612. - Removed hard-coded paths (don't define %prefix or %docdir)
  613. - replace %{prefix}/bin with %{_bindir}
  614. - replace %{prefix}/share with %{_datadir}
  615. - replace %{prefix}/lib with %{_libdir}
  616. - replace %{prefix}/include with %{_includedir}
  617. * Tue Oct 10 2000 Robin Slomkowski <rslomkow@eazel.com>
  618. - removed obsoletes from sub packages and added mozilla and trilobite
  619. subpackages
  620. * Wed Apr 26 2000 Ramiro Estrugo <ramiro@eazel.com>
  621. - created this thing