gnome-utils-vl.spec 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  1. %define glib2_version 2.30.0
  2. %define pango_version 1.28.4
  3. %define gtk3_version 3.2.0
  4. %define gnome_panel_version 3.2.0
  5. %define gtop2_version 2.28.2
  6. %define canberra_version 0.28
  7. %define desktop_file_utils_version 0.17
  8. %define po_package gnome-utils-3.0
  9. Summary: GNOME utility programs.
  10. Summary(ja): GNOME ユーティリティプログラム
  11. Name: gnome-utils
  12. Version: 3.2.1
  13. Release: 1%{?_dist_release}
  14. License: GPLv2+
  15. Group: Applications/System
  16. URL: http://www.gnome.org
  17. Source: http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.2/%{name}-%{version}.tar.xz
  18. # End testing
  19. Patch2: gnome-utils-2.26.0-gdate.patch
  20. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  21. BuildRequires: glib2-devel >= %{glib2_version}
  22. BuildRequires: pango-devel >= %{pango_version}
  23. BuildRequires: gtk3-devel >= %{gtk3_version}
  24. BuildRequires: gnome-panel-devel >= %{gnome_panel_version}
  25. BuildRequires: libgtop2-devel >= %{gtop2_version}
  26. BuildRequires: libcanberra-gtk3-devel >= %{canberra_version}
  27. BuildRequires: desktop-file-utils >= %{desktop_file_utils_version}
  28. BuildRequires: GConf2-devel >= 2.14
  29. BuildRequires: libbonoboui-devel
  30. BuildRequires: gnome-doc-utils
  31. BuildRequires: libSM-devel
  32. BuildRequires: gsettings-desktop-schemas
  33. Obsoletes: gnome
  34. Obsoletes: baobab
  35. Provides: baobab
  36. Requires(post): scrollkeeper
  37. Requires(post): desktop-file-utils >= %{desktop_file_utils_version}
  38. Requires(post): GConf2 >= 2.14
  39. Requires(preun): GConf2 >= 2.14
  40. Requires(pre): GConf2 >= 2.14
  41. Requires(postun): scrollkeeper
  42. Requires(postun): desktop-file-utils >= %{desktop_file_utils_version}
  43. Requires: libbonoboui
  44. Requires: libICE
  45. Requires: libSM
  46. Requires: gnome-screenshot = %{version}-%{release}
  47. Vendor: Project Vine
  48. Distribution: Vine Linux
  49. %description
  50. GNOME (GNU Network Object Model Environment) is a user-friendly set of
  51. GUI applications and desktop tools to be used in conjunction with a
  52. window manager for the X Window System. The gnome-utils package
  53. includes a set of small "desk accessory" utility applications for GNOME
  54. such as a calculator.
  55. %package devel
  56. Summary: Development environment for gnome-utils
  57. Summary(ja): gnome-utilsの開発環境
  58. Group: Development/Libraries
  59. Requires: %{name} = %{version}-%{release}
  60. Requires: pkgconfig
  61. Requires: gtk3-devel
  62. %description devel
  63. Header files and libraries for building a extension library for the
  64. gnome-utils.
  65. %package -n gnome-screenshot
  66. Summary: gnome screenshot utility
  67. Summary(ja): GNOMEスクリーンショットユーティリティ
  68. Group: Applications/System
  69. Conflicts: gnome-utils < 2.26.0-2vl5
  70. %description -n gnome-screenshot
  71. This package contains GNOME screenshot utility.
  72. %description -n gnome-screenshot -l ja
  73. このパッケージには GNOME 用のスクリーンショットユーティリティが
  74. 含まれています。
  75. %prep
  76. %setup -q
  77. # fix help link
  78. sed -i "s/ghelp:user-guide#goseditmainmenu-53/ghelp:gnome-help#screen-shot-record/" \
  79. gnome-screenshot/gnome-screenshot.c
  80. # Hide from menus
  81. #pushd gsearchtool
  82. #echo "NoDisplay=true" >> gnome-search-tool.desktop.in
  83. #popd
  84. %build
  85. %configure --disable-scrollkeeper --disable-schemas-install
  86. # Start testing
  87. sed -i "s/ it ko / it ja ko /" gsearchtool/help/Makefile
  88. # End testing
  89. make %{?_smp_mflags}
  90. %install
  91. rm -rf $RPM_BUILD_ROOT
  92. export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1
  93. make install DESTDIR=$RPM_BUILD_ROOT
  94. unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL
  95. # make gnome-system-log use consolehelper until it starts using polkit
  96. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pam.d
  97. /bin/cat <<EOF >$RPM_BUILD_ROOT%{_sysconfdir}/pam.d/gnome-system-log
  98. #%%PAM-1.0
  99. auth include config-util
  100. account include config-util
  101. session include config-util
  102. EOF
  103. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps
  104. /bin/cat <<EOF >$RPM_BUILD_ROOT%{_sysconfdir}/security/console.apps/gnome-system-log
  105. USER=root
  106. PROGRAM=/usr/sbin/gnome-system-log
  107. SESSION=true
  108. FALLBACK=true
  109. EOF
  110. mkdir -p $RPM_BUILD_ROOT%{_sbindir}
  111. /bin/mv $RPM_BUILD_ROOT%{_bindir}/gnome-system-log $RPM_BUILD_ROOT%{_sbindir}
  112. /bin/ln -s /usr/bin/consolehelper $RPM_BUILD_ROOT%{_bindir}/gnome-system-log
  113. sed -i -e "s/accessories-dictionary\.png/accessories-dictionary/" \
  114. $RPM_BUILD_ROOT%{_datadir}/applications/gnome-dictionary.desktop
  115. desktop-file-install --vendor gnome --delete-original \
  116. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  117. $RPM_BUILD_ROOT%{_datadir}/applications/*
  118. desktop-file-install --vendor gnome --delete-original \
  119. --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  120. --copy-generic-name-to-name \
  121. $RPM_BUILD_ROOT%{_datadir}/applications/gnome-baobab.desktop
  122. # save space by linking identical images in translated docs
  123. for n in baobab gnome-dictionary gnome-search-tool gnome-system-log; do
  124. helpdir=$RPM_BUILD_ROOT%{_datadir}/gnome/help/$n
  125. for f in $helpdir/C/figures/*.png; do
  126. b="$(basename $f)"
  127. for d in $helpdir/*; do
  128. if [ -d "$d" -a "$d" != "$helpdir/C" ]; then
  129. g="$d/figures/$b"
  130. if [ -f "$g" ]; then
  131. if cmp -s $f $g; then
  132. rm "$g"; ln -s "../../C/figures/$b" "$g"
  133. fi
  134. fi
  135. fi
  136. done
  137. done
  138. done
  139. ## delete, duplicates file roller
  140. /bin/rm -rf $RPM_BUILD_ROOT%{_bindir}/archive-generator
  141. /bin/rm -rf $RPM_BUILD_ROOT%{_datadir}/applications/*archive-generator*
  142. /bin/rm -rf $RPM_BUILD_ROOT%{_datadir}/gnome/help/archive-generator
  143. /bin/rm -rf $RPM_BUILD_ROOT%{_datadir}/omf/gnome-utils/*archive-generator*
  144. /bin/rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.*a
  145. /bin/rm -f $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/icon-theme.cache
  146. # blow scrollkeeper crap
  147. /bin/rm -rf $RPM_BUILD_ROOT/var/scrollkeeper
  148. /bin/rm -rf $RPM_BUILD_ROOT/var/lib/scrollkeeper
  149. %find_lang %{po_package} --all-name --with-gnome
  150. %clean
  151. rm -rf $RPM_BUILD_ROOT
  152. %post
  153. /sbin/ldconfig
  154. scrollkeeper-update -q
  155. update-desktop-database -q
  156. touch --no-create %{_datadir}/icons/hicolor
  157. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  158. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  159. fi
  160. %postun
  161. /sbin/ldconfig
  162. scrollkeeper-update -q
  163. update-desktop-database -q
  164. touch --no-create %{_datadir}/icons/hicolor
  165. if [ -x /usr/bin/gtk-update-icon-cache ]; then
  166. gtk-update-icon-cache -q %{_datadir}/icons/hicolor
  167. fi
  168. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  169. %posttrans
  170. glib-compile-schemas %{_datadir}/glib-2.0/schemas ||:
  171. %files -f %{po_package}.lang
  172. %defattr(-, root, root)
  173. %{_sysconfdir}/security/console.apps/*
  174. %{_sysconfdir}/pam.d/*
  175. %{_sysconfdir}/gconf/schemas/*.schemas
  176. %{_bindir}/*
  177. %{_sbindir}/*
  178. %{_libdir}/lib*.so.*
  179. %{_datadir}/GConf/gsettings/*.convert
  180. %{_datadir}/applications/*
  181. %{_datadir}/baobab/
  182. %{_datadir}/gnome-dictionary/
  183. %{_datadir}/gnome-utils/
  184. %{_datadir}/icons/hicolor/*
  185. %{_datadir}/gdict-1.0/
  186. %{_datadir}/glib-2.0/schemas/*.xml
  187. %{_datadir}/pixmaps/*
  188. %{_datadir}/thumbnailers/gnome-font-viewer.thumbnailer
  189. %{_mandir}/man*/*
  190. %exclude %{_datadir}/glib-2.0/schemas/org.gnome.gnome-screenshot.gschema.xml
  191. %exclude %{_bindir}/gnome*screenshot
  192. %exclude %{_datadir}/applications/gnome-screenshot.desktop
  193. %exclude %{_datadir}/locale/ja/LC_MESSAGES/*
  194. %files devel
  195. %defattr(-, root, root)
  196. %{_libdir}/lib*.so
  197. %{_includedir}/gdict-1.0
  198. %{_libdir}/pkgconfig/*
  199. %{_datadir}/gtk-doc/html/*
  200. %files -n gnome-screenshot
  201. %defattr(-, root, root)
  202. %doc AUTHORS COPYING ChangeLog NEWS README
  203. %{_bindir}/gnome*screenshot
  204. %{_datadir}/applications/gnome-screenshot.desktop
  205. %{_datadir}/glib-2.0/schemas/org.gnome.gnome-screenshot.gschema.xml
  206. %{_datadir}/gnome-screenshot/
  207. %{_datadir}/locale/ja/LC_MESSAGES/*
  208. %changelog
  209. * Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.1-1
  210. - new upstream release
  211. * Thu Sep 29 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
  212. - new upstream release
  213. - change BuildRequires: gtk3-devel instead of gtk2-devel
  214. - remove Source2,3,4
  215. * Sat Sep 24 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 3.1.92-2
  216. - update translation. (test)
  217. - fixed help uri of gnome-screenshot.
  218. - show menu item of gnome-search-tool.
  219. * Fri Sep 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.92-1
  220. - new upstream release
  221. * Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.90-1
  222. - new upstream release
  223. * Sun Aug 21 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.5-1
  224. - new upstream release
  225. * Mon Aug 15 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.2-1
  226. - new upstream release
  227. - add BuildRequires: gsettings-desktop-schemas
  228. - change BuildRequires: libcanberra-gtk3-devel instead of libcanberra-devel
  229. - drop Patch2
  230. * Fri Dec 10 2010 Yoji TOTYODA <bsyamato@sea.plala.or.jp> 2.32.0-5
  231. - create -devel sub package
  232. * Tue Nov 09 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.32.0-3
  233. - fixed translation.
  234. * Sun Nov 07 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.32.0-2
  235. - fixed translation.
  236. * Mon Oct 04 2010 Yoji TOTYODA <bsyamato@sea.plala.or.jp> 2.32.0-1
  237. - new upstream release
  238. * Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.0-2
  239. - rebuild with rpm-4.8.1 for pkg-config file
  240. - change BuildRequires: gnome-panel-devel instead of gnome-panel
  241. * Sun Apr 04 2010 Yoji TOTYODA <bsyamato@sea.plala.or.jp> 2.30.0-1
  242. - new upstream release
  243. * Wed Mar 10 2010 Yoji TOTYODA <bsyamato@sea.plala.or.jp> 2.28.3-1
  244. - new upstream release
  245. * Tue Dec 15 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.28.1-3
  246. - add GConf2-devel, libbonoboui-devel, gnome-doc-uitls, libICE-devel, libSM-devel to BR.
  247. - add libbonoboui, libICE, libSM to Requires.
  248. * Tue Dec 15 2009 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.28.1-2
  249. - add Patch2.(http://bts.vinelinux.org/guest.cgi?action=view_report&id=853&project=VineLinux)
  250. * Sun Nov 1 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.28.1-1
  251. - new upstream release
  252. * Tue Jun 09 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-4
  253. - add BR: libgtop2-devel
  254. - remove BR: libgnomeprintui-devel
  255. - install/uninstall gnome-system-log.schemas in scriptlet
  256. * Tue Apr 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-3
  257. - split gnome-screenshot from main package
  258. - add missing 'done' in %%preun scriptlet
  259. * Tue Mar 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-2
  260. - fix %%pre/%%post/%%preun scripts
  261. - logview is removed
  262. * Sun Mar 22 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.26.0-1
  263. - new upstream release
  264. * Wed Oct 28 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.1-1
  265. - new upstream release
  266. * Wed Sep 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.24.0-1
  267. - new upstream release
  268. * Fri Aug 15 2008 Shu KONNO <owa@bg.wakwak.com> 2.20.0.1-1vl5
  269. - applied new versioning policy, spec in utf-8
  270. * Wed Jan 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.20.0.1-0vl1
  271. - new upstream release
  272. - added %pre and %preun and %postun section
  273. * Wed May 02 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl1
  274. - new upstream release
  275. - Patch2 to fix broken strings in baobab.
  276. - check_UTF8() breaks non-UTF8 strings on non-UTF8 locale.
  277. * Wed May 02 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.0-0vl1
  278. - new upstream release
  279. * Sat Apr 28 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.0-0vl1
  280. - new upstream release
  281. - add Obsoletes:/Provides: baobab, that is now included in gnome-utils
  282. * Fri Jan 19 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.14.0-0vl3
  283. - rebuilt fot VineSeed
  284. * Fri Jan 19 2007 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.14.0-0vl2.1
  285. - add patch1 for fix floppy issue <BTS:457> (Thanks to micky_hatya-san)
  286. - add BuildRequires: gnome-desktop-devel, libgnomeprintui-devel
  287. - add Vendor/Distribution tag
  288. * Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl2
  289. - rename gdict.schemas to gnome-dictionary.schemas
  290. - add gnome-screenshot.schemas
  291. * Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl1
  292. - new upstream release
  293. * Tue Mar 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.93-0vl1
  294. - new upstream release
  295. * Sat Dec 31 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.2-0vl1
  296. - new upstream release
  297. - add Patch10 to fix crash bug in gnome-screenshot
  298. (http://bugzilla.gnome.org/show_bug.cgi?id=319188)
  299. * Thu Oct 06 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.1-0vl1
  300. - new upstream release
  301. * Mon Sep 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.12.0-0vl1
  302. - new upstream release
  303. * Mon Jul 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.1-0vl1
  304. - new upstream release
  305. - build with hal
  306. * Mon Mar 21 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.0-0vl1
  307. - new upstream version
  308. * Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl1
  309. - new upstream release
  310. * Thu Jan 15 2004 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4.1-0vl1
  311. - new upstream release
  312. * Mon Nov 17 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4.0-0vl2
  313. - fixed spec file character code EUC-JP
  314. * Thu Sep 11 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl1
  315. - new upstream release
  316. * Thu Sep 04 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.3.90-0vl1
  317. - new upstream release
  318. * Tue Aug 26 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.3-0vl1
  319. - new upstream release
  320. * Sun May 18 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl1
  321. - new upstream release
  322. * Tue Jan 28 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0.3-0vl1
  323. - new upstream release
  324. * Sat Jan 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0.1-0vl1
  325. - new upstream release
  326. * Tue Jan 21 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl1
  327. - new upstream release
  328. - include gnome-system-log
  329. * Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.90-0vl1
  330. - new upstream release
  331. * Thu Dec 26 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.5-0vl1
  332. - new upstream release
  333. * Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.4-0vl1
  334. - build for Vine Linux
  335. * Tue Sep 3 2002 Matt Wilson <msw@redhat.com>
  336. - corrected the return code 3 gdialog dialog types
  337. * Wed Aug 28 2002 Tim Waugh <twaugh@redhat.com>
  338. - Fix gnome-calculator key bindings (bug #67885).
  339. * Thu Aug 15 2002 Havoc Pennington <hp@redhat.com>
  340. - enable gdialog by popular demand
  341. - build require e2fsprogs-devel so gfloppy builds
  342. - patch for #70258 (locate doesn't notice new files)
  343. * Mon Aug 12 2002 Havoc Pennington <hp@redhat.com>
  344. - 2.0.2
  345. * Thu Aug 1 2002 Havoc Pennington <hp@redhat.com>
  346. - build require newer versions of things
  347. - 2.0.1
  348. - remove gnome-system-log and more thoroughly remove archive-generator
  349. * Tue Jul 23 2002 Havoc Pennington <hp@redhat.com>
  350. - remove archive-generator, duplicates file-roller
  351. * Wed Jun 26 2002 Owen Taylor <otaylor@redhat.com>
  352. - Fix find_lang
  353. * Wed Jun 19 2002 Havoc Pennington <hp@redhat.com>
  354. - disable schema install in make install, fixes rebuild
  355. * Mon Jun 17 2002 Havoc Pennington <hp@redhat.com>
  356. - 2.0.0
  357. - use desktop-file-install
  358. * Tue May 28 2002 Havoc Pennington <hp@redhat.com>
  359. - rebuild in different environment
  360. * Tue May 28 2002 Havoc Pennington <hp@redhat.com>
  361. - move to GNOME 2 version
  362. * Mon Apr 15 2002 Havoc Pennington <hp@redhat.com>
  363. - merge translations
  364. * Tue Mar 5 2002 Havoc Pennington <hp@redhat.com>
  365. - put gdialog back since the nautilus scripts fad has everyone asking for it,
  366. #54415
  367. - depend on automake-1.4 binary instead of automake14
  368. - strip trailing newline from data in guname, #52598
  369. - build requires libglade-devel
  370. * Tue Feb 5 2002 Bill Nottingham <notting@redhat.com>
  371. - get rid of weird binary names
  372. * Wed Jan 30 2002 Jonathan Blandford <jrb@redhat.com>
  373. - Rebuild package.
  374. * Mon Jan 21 2002 Havoc Pennington <hp@redhat.com>
  375. - automake14
  376. - /usr/foo to bindir etc.
  377. - use makeinstall and configure macros
  378. - patch for glade header move
  379. * Mon Aug 27 2001 Havoc Pennington <hp@redhat.com>
  380. - Add po files from sources.redhat.com
  381. * Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
  382. - Bump release + rebuild.
  383. * Thu Apr 19 2001 Jonathan Blandford <jrb@redhat.com>
  384. - new version
  385. * Thu Mar 15 2001 Havoc Pennington <hp@redhat.com>
  386. - translations
  387. * Fri Feb 23 2001 Trond Eivind Glomsr藷?<teg@redhat.com>
  388. - use %%{_tmppath}
  389. - move changelog to end of file
  390. - langify, remember to run %%find_lang twice as there
  391. are two different sets of locale files
  392. * Thu Feb 08 2001 Owen Taylor <otaylor@redhat.com>
  393. - Fix missing gfloppy.keys, gfloppy.mime files
  394. * Mon Jan 29 2001 Havoc Pennington <hp@redhat.com>
  395. - add dialog-prefs.glade file which was missing from upstream tarball;
  396. fixes #25036
  397. * Fri Jan 19 2001 Havoc Pennington <hp@redhat.com>
  398. - 1.2.1
  399. - remove patch for gdict segfault, fixed upstream
  400. - remove logview, cromagnon, gdiskfree, gstripchart,
  401. splash, gdialog, gw, idetool
  402. - run automake so removals take effect
  403. * Mon Aug 21 2000 Havoc Pennington <hp@redhat.com>
  404. - patch from Tim Waugh to fix segfault on cancel in the settings
  405. dialog; bug 16477
  406. - put in an error dialog if no DNS, bug 16475
  407. * Mon Aug 21 2000 Havoc Pennington <hp@redhat.com>
  408. - Put gcolorsel glade files in the file list, closes
  409. 14314
  410. * Fri Aug 11 2000 Jonathan Blandford <jrb@redhat.com>
  411. - Up Epoch and release
  412. * Sat Aug 05 2000 Havoc Pennington <hp@redhat.com>
  413. - Use mail not mailx in guname, bug 14316
  414. * Mon Jul 17 2000 Havoc Pennington <hp@redhat.com>
  415. - remove Docdir
  416. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  417. - automatic rebuild
  418. * Mon Jun 19 2000 Elliot Lee <sopwith@redhat.com>
  419. - 1.2.0
  420. * Fri May 19 2000 Havoc Pennington <hp@redhat.com>
  421. - Add gfloppy .glade file to file list
  422. * Fri May 19 2000 Havoc Pennington <hp@redhat.com>
  423. - 1.1.0; remove man pages glob from file list (upstream no
  424. longer comes with man pages)
  425. * Thu May 11 2000 Matt Wilson <msw@redhat.com>
  426. - 1.0.51
  427. * Mon Feb 14 2000 Elliot Lee <sopwith@redhat.com>
  428. - Add -mieee to CFLAGS to fix bug #9346.
  429. * Fri Feb 04 2000 Owen Taylor <otaylor@redhat.com>
  430. - minor patch to fix up size requisition in guname
  431. * Thu Feb 03 2000 Preston Brown <pbrown@redhat.com>
  432. - rebuild to pick up gzipped man page
  433. * Thu Feb 3 2000 Jonathan Blandford <jrb@redhat.com>
  434. - added patch to allow negative time to gtt.
  435. * Sun Aug 1 1999 Dax Kelson <dax@gurulabs.com>
  436. - version 1.0.12
  437. * Fri Mar 19 1999 Michael Fulbright <drmike@redhat.com>
  438. - strip binaries
  439. * Sun Mar 14 1999 Michael Fulbright <drmike@redhat.com>
  440. - removed gshutdown (confusing for newbies)
  441. * Mon Feb 15 1999 Michael Fulbright <drmike@redhat.com>
  442. - version 0.99.8
  443. * Sat Feb 06 1999 Michael Fulbright <drmike@redhat.com>
  444. - version 0.99.6
  445. * Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
  446. - version 0.99.3
  447. * Wed Jan 06 1999 Michael Fulbright <drmike@redhat.com>
  448. - version 0.99.1
  449. * Wed Dec 16 1998 Michael Fulbright <drmike@redhat.com>
  450. - updated for GNOME freeze
  451. * Wed Sep 23 1998 Michael Fulbright <msf@redhat.com>
  452. - Upgraded to 0.30
  453. * Mon Apr 6 1998 Marc Ewing <marc@redhat.com>
  454. - Integrate into gnome-utils CVS source tree