gtk2-vl.spec 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209
  1. # Note that this is NOT a relocatable package
  2. %define glib2_base_version 2.28.0
  3. %define glib2_version %{glib2_base_version}-1
  4. %define pango_base_version 1.20
  5. %define pango_version %{pango_base_version}-1
  6. %define atk_base_version 1.29.2
  7. %define atk_version %{atk_base_version}-1
  8. %define cairo_base_version 1.6
  9. %define cairo_version %{cairo_base_version}-1
  10. %define gdkpixbuf2_base_version 2.21.1
  11. %define gdkpixbuf2_version %{gdkpixbuf2_base_version}-1
  12. %define gobject_introspection_version 0.9.8
  13. %define base_version 2.24.30
  14. %define bin_version 2.10.0
  15. # biarch support
  16. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  17. %define _query_suffix %{nil}
  18. %if %{build_compat32}
  19. %define _query_suffix -32
  20. %endif
  21. Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X.
  22. Summary(ja): X 用 GUI 作成ライブラリ: GIMP ツールキット(GTK+)
  23. Name: gtk2
  24. Version: %{base_version}
  25. Release: 2%{?_dist_release}
  26. License: LGPLv2+
  27. Group: System Environment/Libraries
  28. Source: http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.24/gtk+-%{version}.tar.xz
  29. # biarch support
  30. Patch1: gtk2-2.24.21-lib64.patch
  31. Patch100: gtk+-2.24.8-vine-default-theme.patch
  32. # security fix(es)
  33. # this patch will be included the next version (2.4.31).
  34. Patch1000: CVE-2013-7447.patch
  35. BuildRequires: atk-devel >= %{atk_version}
  36. BuildRequires: pango-devel >= %{pango_version}
  37. BuildRequires: glib2-devel >= %{glib2_version}
  38. BuildRequires: cairo-devel >= %{cairo_version}
  39. BuildRequires: gdk-pixbuf2-devel >= %{gdkpixbuf2_version}
  40. BuildRequires: libtiff-devel >= 3.7
  41. BuildRequires: libjpeg-turbo-devel
  42. BuildRequires: libpng-devel
  43. BuildRequires: jasper-devel
  44. BuildRequires: gtk-doc
  45. #BuildRequires: automake17, autoconf
  46. BuildRequires: gamin-devel
  47. BuildRequires: cups-devel
  48. BuildRequires: libICE-devel
  49. BuildRequires: libXext-devel
  50. BuildRequires: libXi-devel
  51. BuildRequires: libXrandr-devel >= 1.3.0
  52. BuildRequires: libXrender-devel
  53. BuildRequires: libXcursor-devel
  54. BuildRequires: libXfixes-devel
  55. BuildRequires: libXinerama-devel
  56. BuildRequires: libXcomposite-devel
  57. BuildRequires: libXdamage-devel
  58. BuildRequires: gobject-introspection-devel >= %{gobject_introspection_version}
  59. BuildRoot: %{_tmppath}/gtk-%{version}-root
  60. Obsoletes: gtk+-gtkbeta
  61. Obsoletes: Inti
  62. Provides: gail = %{version}-%{release}
  63. Obsoletes: gail < 2.14
  64. Conflicts: gtk2-engines < 2.6.0
  65. URL: http://www.gtk.org
  66. # required for icon themes apis to work
  67. Requires: hicolor-icon-theme
  68. # We need to prereq these so we can run gtk-query-immodules-2.0
  69. Requires(post): glib2 >= %{glib2_version}
  70. Requires(post): atk >= %{atk_version}
  71. Requires(post): pango >= %{pango_version}
  72. Requires(post): libSM >= 1.1.0
  73. # We need to prereq libtiff >= 3.7 to run gdk-pixbuf-query-loaders
  74. Requires(post): libtiff >= 3.7
  75. Requires: libXrandr >= 1.3.0
  76. Vendor: Project Vine
  77. Distribution: Vine Linux
  78. Packager: daisuke, Takemikaduchi
  79. %description
  80. GTK+ is a multi-platform toolkit for creating graphical user
  81. interfaces. Offering a complete set of widgets, GTK+ is suitable for
  82. projects ranging from small one-off tools to complete application
  83. suites.
  84. %package devel
  85. Summary: Development tools for GTK+ applications.
  86. Summary(ja): GTK+ (GIMP ツールキット) アプリケーション開発ツール
  87. Group: Development/Libraries
  88. Requires: gtk2 = %{version}
  89. Requires: pango-devel >= %{pango_version}
  90. Requires: gdk-pixbuf2-devel >= %{gdkpixbuf2_version}
  91. Requires: atk-devel >= %{atk_version}
  92. Requires: glib2-devel >= %{glib2_version}
  93. Requires: libX11-devel, libXcursor-devel, libXinerama-devel
  94. Requires: libXext-devel, libXi-devel, libXrandr-devel
  95. Requires: libXfixes-devel, libXcomposite-devel
  96. Requires: libpng-devel
  97. Obsoletes: gtk+-gtkbeta-devel
  98. Obsoletes: Inti-devel
  99. Provides: gail-devel = %{version}-%{release}
  100. Obsoletes: gail-devel < 2.14
  101. ## avoid header collisions
  102. Conflicts: gtk+-devel <= 1.2.8
  103. Conflicts: gdk-pixbuf-devel <= 0.11
  104. %description devel
  105. The gtk+-devel package contains the header files and developer
  106. docs for the GTK+ widget toolkit.
  107. #######################################################################
  108. # compat32
  109. %package -n compat32-%{name}
  110. Summary: The GIMP ToolKit (GTK+), a library for creating GUIs for X.
  111. Summary(ja): X 用 GUI 作成ライブラリ: GIMP ツールキット(GTK+)
  112. Group: System Environment/Libraries
  113. Requires(post): compat32-glib2 >= %{glib2_version}
  114. Requires(post): compat32-atk >= %{atk_version}
  115. Requires(post): compat32-pango >= %{pango_version}
  116. Requires(post): compat32-gdk-pixbuf2 >= %{gdkpixbuf2_version}
  117. Requires(post): compat32-libSM >= 1.1.0
  118. Requires(post): compat32-libtiff >= 3.7
  119. Requires: compat32-libXrandr >= 1.3.0
  120. %description -n compat32-%{name}
  121. GTK+ is a multi-platform toolkit for creating graphical user
  122. interfaces. Offering a complete set of widgets, GTK+ is suitable for
  123. projects ranging from small one-off tools to complete application
  124. suites.
  125. %package -n compat32-%{name}-devel
  126. Summary: Development tools for GTK+ applications.
  127. Summary(ja): GTK+ (GIMP ツールキット) アプリケーション開発ツール
  128. Group: Development/Libraries
  129. Requires: compat32-%{name} = %{version}
  130. Requires: %{name}-devel = %{version}
  131. Requires: compat32-libX11-devel, compat32-libXcursor-devel, compat32-libXinerama-devel
  132. Requires: compat32-libXext-devel, compat32-libXi-devel, compat32-libXrandr-devel
  133. Requires: compat32-libXfixes-devel, compat32-libXcomposite-devel
  134. Requires: compat32-libpng-devel
  135. %description -n compat32-%{name}-devel
  136. The gtk+-devel package contains the header files and developer
  137. docs for the GTK+ widget toolkit.
  138. %prep
  139. %setup -q -n gtk+-%{version}
  140. %patch1 -p1 -b .lib64
  141. %patch100 -p1 -b .vine-default-theme
  142. %patch1000 -p1 -b .CVE-2013-7447
  143. #for i in config.guess config.sub ; do
  144. # test -f %{_datadir}/libtool/$i && cp %{_datadir}/libtool/$i .
  145. #done
  146. %build
  147. if ! pkg-config --exists pangoxft ; then
  148. echo "No pangoxft.pc!"
  149. exit 1
  150. fi
  151. #libtoolize --force --copy
  152. #autoreconf -i
  153. %configure --with-xinput=xfree \
  154. --disable-gtk-doc \
  155. --enable-man \
  156. --enable-debug=minimum \
  157. --disable-rebuilds \
  158. --disable-glibtest \
  159. --with-included-loaders=png \
  160. --enable-introspection=yes
  161. # fight unused direct deps
  162. sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  163. make %{?_smp_mflags} ARCH=%{_arch}
  164. # truncate NEWS
  165. awk '/^Overview of Changes/ { seen+=1 }
  166. { if (seen < 2) print }
  167. { if (seen == 2) { print "For older news, see http://git.gnome.org/cgit/gtk+/plain/NEWS"; exit } }' NEWS > tmp; mv tmp NEWS
  168. %install
  169. rm -rf $RPM_BUILD_ROOT
  170. %makeinstall RUN_QUERY_IMMODULES_TEST=false RUN_QUERY_LOADER_TEST=false
  171. %find_lang gtk20
  172. %find_lang gtk20-properties
  173. cat gtk20.lang gtk20-properties.lang > all.lang
  174. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gtk-2.0
  175. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gtk-2.0/%{_arch}
  176. #
  177. # Make cleaned-up versions of examples and tutorial for installation
  178. #
  179. mkdir -p tmpdocs/tutorial
  180. # install -m 0644 docs/html/gtk_tut.html docs/html/gtk_tut-[0-9]*.html docs/html/*.gif tmpdocs/tutorial
  181. for dir in examples/* ; do
  182. if [ -d $dir ] ; then
  183. mkdir -p tmpdocs/$dir
  184. for file in $dir/* ; do
  185. case $file in
  186. *pre1.2.7)
  187. ;;
  188. *)
  189. install -m 0644 $file tmpdocs/$dir
  190. ;;
  191. esac
  192. done
  193. fi
  194. done
  195. # Install the demo programs
  196. #cd tests
  197. #../libtool --mode=install install testgtk $RPM_BUILD_ROOT%{_bindir}
  198. #../libtool --mode=install install testtext $RPM_BUILD_ROOT%{_bindir}
  199. # We need to have separate 32-bit and 64-bit binaries
  200. # for places where we have two copies of the GTK+ package installed.
  201. # (we might have x86_64 and i686 packages on the same system, for example.)
  202. %if %{build_compat32}
  203. cp $RPM_BUILD_ROOT%{_bindir}/gtk-query-immodules-2.0 \
  204. $RPM_BUILD_ROOT%{_bindir}/gtk-query-immodules-2.0%{_query_suffix}
  205. %endif
  206. # Remove unpackaged files
  207. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
  208. rm -rf $RPM_BUILD_ROOT%{_datadir}/themes/Raleigh
  209. %clean
  210. rm -rf $RPM_BUILD_ROOT
  211. %post
  212. /sbin/ldconfig
  213. %{_bindir}/gtk-query-immodules-2.0 > %{_sysconfdir}/gtk-2.0/%{_arch}/gtk.immodules
  214. %postun
  215. /sbin/ldconfig
  216. if [ $1 = 0 ]; then
  217. /bin/rm -f %{_sysconfdir}/gtk-2.0/%{_arch}/gtk.immodules
  218. fi
  219. %triggerpostun -- gtk2 <= 2.8.11
  220. /bin/rm -f %{_sysconfdir}/gtk-2.0/gtk.immodules
  221. %if %{build_compat32}
  222. %post -n compat32-%{name}
  223. /sbin/ldconfig
  224. %{_bindir}/gtk-query-immodules-2.0%{_query_suffix} > %{_sysconfdir}/gtk-2.0/%{_arch}/gtk.immodules
  225. %postun -n compat32-%{name}
  226. /sbin/ldconfig
  227. if [ $1 = 0 ]; then
  228. /bin/rm -f %{_sysconfdir}/gtk-2.0/%{_arch}/gtk.immodules
  229. fi
  230. %endif
  231. %files -f all.lang
  232. %defattr(-, root, root)
  233. %doc AUTHORS COPYING ChangeLog NEWS README
  234. %{_bindir}/gtk-demo
  235. %{_bindir}/gtk-builder-convert
  236. %{_bindir}/gtk-query-immodules-2.0
  237. %{_bindir}/gtk-update-icon-cache
  238. %{_libdir}/libgtk-x11-2.0.so.*
  239. %{_libdir}/libgdk-x11-2.0.so.*
  240. %{_libdir}/libgailutil.so.*
  241. %dir %{_libdir}/gtk-2.0
  242. %{_libdir}/gtk-2.0/%{bin_version}
  243. %dir %{_libdir}/gtk-2.0/modules
  244. %{_libdir}/gtk-2.0/modules/lib*.so
  245. %{_datadir}/gtk-2.0
  246. %{_datadir}/themes/Default
  247. %{_datadir}/themes/Emacs
  248. %dir %{_sysconfdir}/gtk-2.0
  249. %dir %{_sysconfdir}/gtk-2.0/%{_arch}
  250. %{_sysconfdir}/gtk-2.0/im-multipress.conf
  251. %{_libdir}/girepository-1.0
  252. %files devel
  253. %defattr(-, root, root)
  254. %{_libdir}/lib*.so
  255. %dir %{_libdir}/gtk-2.0
  256. %{_libdir}/gtk-2.0/include
  257. %{_datadir}/gtk-doc/
  258. %{_mandir}/man1/*
  259. %{_includedir}/*
  260. %{_datadir}/aclocal/*
  261. %{_libdir}/pkgconfig/*
  262. %{_datadir}/gir-1.0
  263. %doc tmpdocs/tutorial
  264. %doc tmpdocs/examples
  265. # compat32
  266. %if %{build_compat32}
  267. %files -n compat32-%{name}
  268. %defattr(-, root, root)
  269. %{_bindir}/gtk-query-immodules-2.0%{_query_suffix}
  270. %{_libdir}/libgtk-x11-2.0.so.*
  271. %{_libdir}/libgdk-x11-2.0.so.*
  272. %{_libdir}/libgailutil.so.*
  273. %dir %{_libdir}/gtk-2.0
  274. %{_libdir}/gtk-2.0/%{bin_version}
  275. %dir %{_libdir}/gtk-2.0/modules
  276. %{_libdir}/gtk-2.0/modules/lib*.so
  277. %dir %{_sysconfdir}/gtk-2.0
  278. %dir %{_sysconfdir}/gtk-2.0/%{_arch}
  279. %files -n compat32-%{name}-devel
  280. %defattr(-, root, root)
  281. %{_libdir}/lib*.so
  282. %dir %{_libdir}/gtk-2.0
  283. %{_libdir}/gtk-2.0/include
  284. %endif
  285. %changelog
  286. * Sun May 29 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4.30-2
  287. - added Patch1000 (CVE-2013-7447.patch).
  288. * Mon May 09 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.30-1
  289. - new upstream release
  290. * Sat Dec 19 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.29-1
  291. - new upstream release
  292. * Thu May 14 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.28-1
  293. - new upstream release
  294. * Sun May 10 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.27-2
  295. - remove *.la files
  296. * Sun Mar 08 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.27-1
  297. - new upstream release
  298. * Sun Mar 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.26-1
  299. - new upstream release
  300. * Sun Nov 16 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 2.24.25-1
  301. - new upstream release
  302. * Sat Jun 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.24-1
  303. - new upstream release
  304. * Fri Mar 28 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.23-1
  305. - new upstream release
  306. * Mon Dec 30 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.22-2
  307. - rebuild with VineSeed environment
  308. * Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.22-1
  309. - new upstream release
  310. - upate Patch1 (gtk2-2.24.21-lib64.patch)
  311. - remove Patch0 (gtk-2.24.20-revert-move-the-module-cache-files-below-libdir.patch)
  312. * Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.20-1
  313. - new upstream release
  314. - add Patch0 (gtk-2.24.20-revert-move-the-module-cache-files-below-libdir.patch)
  315. * Sat May 18 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.18-1
  316. - new upstream release
  317. * Sun Mar 10 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.17-1
  318. - new upstream release
  319. * Sun Mar 03 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.16-1
  320. - new upstream release
  321. * Sun Feb 17 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.15-1
  322. - new upstream release
  323. * Wed Jan 02 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.14-1
  324. - new upstream release
  325. * Wed Sep 26 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.13-1
  326. - new upstream release
  327. * Tue Jul 17 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.11-1
  328. - new upstream release
  329. * Sun Mar 04 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.10-1
  330. - new upstream release
  331. * Mon Jan 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.9-1
  332. - new upstream release
  333. * Wed Nov 16 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.8-1
  334. - new upstream release
  335. - update Patch100 (gtk+-2.24.8-vine-default-theme.patch)
  336. * Sat Oct 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.7-1
  337. - new upstream release
  338. * Sat Sep 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.6-1
  339. - new upstream release
  340. * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.5-1
  341. - new upstream release
  342. * Sun Apr 03 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.4-1
  343. - new upstream release
  344. * Wed Mar 23 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.3-2
  345. - rebuild with krb5-libs-1.8.2
  346. * Sat Mar 19 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.3-1
  347. - new upstream release
  348. * Tue Feb 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.1-1
  349. - new upstream release
  350. * Sat Feb 12 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.24.0-1
  351. - new upstream release
  352. * Sat Nov 20 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.22.1-1
  353. - new upstream release
  354. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.22.0-1
  355. - new upstream release
  356. - add BuildRequires: gdk-pixbuf2-devel, gobject-introspection-devel
  357. - remove BuildRequires: gtk2-devel = 2.21.2
  358. - add configure option (--enable-instrospection=yes)
  359. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.21.3-1
  360. - new upstream release
  361. - fix Patch0
  362. - add BuildRequires: gtk2-devel = 2.21.2 (2.21.3 only)
  363. - add Requires: gdk-pixbuf2-devel (devel package)
  364. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.21.2-1
  365. - new upstream release
  366. - change BuildRequires: libjpeg-turbo-devel instead of libjpeg-devel
  367. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 2.20.1-2
  368. - build with rpm-4.8.1-1 for pkg-config file
  369. * Tue May 11 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.20.1-1
  370. - new upstream release
  371. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.20.0-1
  372. - new upstream release
  373. * Sun Mar 28 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.9-1
  374. - new upstream release
  375. * Tue Feb 16 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.7-1
  376. - new upstream release
  377. - drop upstreamed patch
  378. * Sat Jan 09 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.5-2
  379. - use refreshed old patch for multiarch support
  380. * Thu Jan 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.5-1
  381. - new upstream release
  382. - change Patch1 (gtk+-2.10.11-lib64.patch -> gtk-lib64.patch)
  383. - add Patch101 (stackoverflow.patch) from FC package
  384. - drop libtoolize and autoreconf
  385. * Sun Nov 29 2009 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.18.3-1
  386. - new upstream release
  387. * Tue Oct 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.2-2
  388. - add BR: libICE-devel, libXext-devel, libXi-devel
  389. * Sun Oct 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.2-1
  390. - new upstream release
  391. * Fri Sep 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.0-1
  392. - new upstream release
  393. - drop testgtk/testtext
  394. * Sun Jul 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.5-1
  395. - new upstream release
  396. * Thu Jul 02 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.4-1
  397. - new upstream release
  398. * Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.3-2
  399. - add Patch1 from git master
  400. - avoid warnings in atom conversion
  401. - http://git.gnome.org/cgit/gtk+/commit/?id=4b16b875db66c72003606c4199b23899ed451e78
  402. * Mon Jun 29 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.3-1
  403. - new upstream release
  404. * Sun May 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.2-1
  405. - new upstream release
  406. - remove patch2 (merged in upstream)
  407. * Tue May 05 2009 NAKAMURA Kenta <kenta@vinelinux.org> 2.16.1-2
  408. - updated %%files section of compat32 subpackage
  409. - removed %%if !%%{build_compat32} case condition
  410. - updated Requires and Requires(post)
  411. * Mon Apr 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.1-1
  412. - new upstream release
  413. * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16.0-1
  414. - new upstream release
  415. - update BuildRequires/Requires
  416. * Sun Jan 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.7-1
  417. - new upstream release
  418. * Tue Dec 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.6-1
  419. - new upstream release
  420. * Wed Nov 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.5-1
  421. - new upstream release
  422. * Sun Nov 02 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.4-2
  423. - add Patch3,4 from upstream
  424. * Sun Oct 19 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.4-1
  425. - new upstream release
  426. * Thu Sep 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.3-1
  427. - new upstream release
  428. * Tue Sep 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.2-2
  429. - rebuild with pango-1.22.0,cairo-1.7.6
  430. * Sat Sep 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.2-1
  431. - new upstream release
  432. * Sat Sep 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-2
  433. - add BuildRequires: jasper-devel
  434. * Fri Sep 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-1
  435. - new upstream release
  436. - add Provides/Obsoletes: gail
  437. * Thu Jul 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.11-1
  438. - new upstream release
  439. * Thu Jun 5 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.10-1
  440. - new upstream release
  441. * Wed Apr 2 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.9-2vl5
  442. - added Patch1-4 drom Fedora
  443. * Mon Oct 22 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.1-4
  444. - Fix a crash in gnome-system-log (#321701)
  445. * Wed Oct 17 2007 Matthias Clasen <mclasen@redhat.com> - 2.12.1-2
  446. - Fix a crash in the firefox print preview (#336771)
  447. * Thu Mar 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.9-1vl5
  448. - used %%{?_dist_release}
  449. * Wed Mar 12 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.9-0vl1
  450. - new upstream release
  451. * Sat Mar 8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.8-0vl1
  452. - new upstream release
  453. * Thu Feb 7 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.7-0vl1
  454. - new upstream release
  455. * Thu Jan 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.5-0vl1
  456. - new upstream release
  457. * Sun Dec 9 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.3-0vl1
  458. - new upstream release
  459. * Thu Nov 15 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.12.1-0vl1
  460. - new upstream release
  461. - rebuild with new glib2, atk, pango
  462. * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.12-0vl2
  463. - rebuild with new environment
  464. * Thu May 03 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.12-0vl1
  465. - new upstream release
  466. * Tue Apr 24 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.10.11-0vl1
  467. - new upstream release
  468. * Thu Aug 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.20-0vl3
  469. - rebuild with glib2-2.12.1, cairo-1.2.2, pango-1.14.0
  470. * Sat Jul 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.20-0vl2
  471. - new upstream release
  472. * Mon Jun 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.19-0vl2
  473. - change default theme to Vine (Patch10)
  474. * Mon Jun 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.19-0vl1
  475. - new upstream release
  476. * Sun May 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.18-0vl1
  477. - new upstream release
  478. * Tue May 23 2006 NAKAMURA Kenta <kenta@vinelinux.org> 2.8.17-0vl2
  479. - add BuildRequires: gtk-doc
  480. - rename binaries to -32 if build_compat32 option is enabled
  481. * Sat Apr 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.17-0vl1
  482. - new upstream release
  483. * Thu Mar 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.16-0vl1
  484. - new upstream release
  485. * Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.15-0vl1
  486. - new upstream release
  487. * Thu Mar 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.14-0vl1
  488. - new upstream release
  489. * Sun Mar 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.13-0vl2
  490. - remove old query caches
  491. * Sun Mar 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.13-0vl1
  492. - new upstream release
  493. - add compat32 subpackage for x86_64 arch support.
  494. - add Patch0 for biarch support.
  495. * Sun Jan 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.11-0vl1
  496. - new upstream release
  497. * Thu Jan 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.10-0vl1
  498. - new upstream release
  499. - remove Patch10 that is merged in upstream
  500. * Wed Jan 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.9-0vl3
  501. - add Patch10 to fix gtkfilefilter bug
  502. http://bugzilla.gnome.org/show_bug.cgi?id=317687
  503. * Wed Dec 28 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.8.9-0vl2
  504. - {_unpackaged_files,_missing_doc_files}_terminate_build now undefined
  505. * Sat Dec 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.9-0vl1
  506. - new upstream release
  507. * Wed Nov 30 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.8-0vl1
  508. - new upstream release
  509. * Wed Oct 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.6-0vl1
  510. - new upstream release
  511. * Thu Sep 29 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.4-0vl1
  512. - new upstream release
  513. * Sun Sep 18 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.3-0vl1
  514. - new upstream release
  515. * Wed Aug 24 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.1-0vl1
  516. - new upstream release
  517. * Mon Aug 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0-0vl2
  518. - add PreReq: cairo >= 0.9.0 to run %%post scripts
  519. * Mon Aug 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0-0vl1
  520. - new upstream release
  521. * Fri Aug 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.5-0vl1
  522. - new upstream release
  523. * Tue Aug 02 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.7.4-0vl1
  524. - new upstream release
  525. * Mon Jun 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.8-0vl1
  526. - new upstream release
  527. - drop patch3 which is merged in upstream
  528. * Thu Jun 16 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.7-0vl3
  529. - add Patch3 to remove unneeded debug message from BMP loader
  530. * Tue May 03 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.7-0vl2
  531. - add PreReq: libtiff >= 3.7 to run gdk-pixbuf-query-loaders
  532. in %%post script
  533. * Wed Apr 13 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.7-0vl1
  534. - new upstream release
  535. * Mon Apr 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.5-0vl2
  536. - add Patch1 to fix many broken images (#169870.)
  537. * Sat Apr 09 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.5-0vl1
  538. - new upstream release
  539. * Fri Mar 04 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.4-0vl1
  540. - new upstream release
  541. * Sat Feb 05 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.2-0vl1
  542. - new upstream release
  543. * Mon Jan 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.1-0vl1
  544. - new upstream release
  545. * Sat Dec 04 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.14-0vl1
  546. - new upstream release
  547. * Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.13-0vl2
  548. - rebuild with pango-1.6/atk-1.8
  549. * Fri Oct 15 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.13-0vl1
  550. - new upstream release
  551. * Mon Oct 11 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.11-0vl1
  552. - new upstream release
  553. * Sun Sep 19 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.10-0vl1
  554. - new upstream release
  555. * Mon Aug 16 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.7-0vl1
  556. - new upstream release
  557. * Sat Aug 14 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.6-0vl1
  558. - new upstream release
  559. * Fri Jul 16 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4-0vl1
  560. - new upstream release
  561. * Sun Jun 13 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.4.3-0vl2
  562. - added BuildRequires: automake17
  563. * Sun Jun 13 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.3-0vl1
  564. - new upstream release
  565. * Sat Jun 5 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.2-0vl1
  566. - new upstream release
  567. * Sun May 2 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1-0vl1
  568. - new upstream release
  569. * Fri Mar 19 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0-0vl1
  570. - new upstream release
  571. - drop obsolete patches
  572. - update gtkmenushadow patch
  573. * Sun Feb 15 2004 Tomoya TAKA <taka@vinelinux.org> 2.2.4-0vl3
  574. - add freetype217 patch
  575. - fix %%postun
  576. * Sun Nov 09 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.4-0vl2
  577. - import some patches from Fedora
  578. * Fri Sep 05 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.4-0vl1
  579. - new upstream release
  580. * Sat Aug 30 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.3-0vl4
  581. - rebuild with new pango/atk
  582. * Sat Aug 30 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.3-0vl3
  583. - new upstream release
  584. - import patch5,6 from rawhide.
  585. - drop patch20 that is merged in upstream
  586. * Sat Aug 23 2003 Tomoya TAKA <taka@vinelinux.org> 2.2.2-0vl3
  587. - add gtkimcontextxim.patch (patch20) based on Owen Taylor's patch
  588. submitted to bugzilla.gnome.org #115077
  589. cf. http://bugzilla.gnome.org/show_bug.cgi?id=115077
  590. * Sun Jul 06 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.2-0vl2
  591. - update gtkmenu shadow patch
  592. * Tue Jun 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.2-0vl1
  593. - new upstream release
  594. * Sun Jun 08 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl6
  595. - replace dropshadow patch with xfce's one.
  596. - enable dropshadow
  597. * Sat May 24 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl5
  598. - rebuilt
  599. * Mon Apr 28 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl4
  600. - fixed dropshadow patch, but still not enable.
  601. * Fri Apr 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl3
  602. - rebuild with new libpng
  603. * Fri Apr 25 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl2
  604. - add patch4, 5 from rawhide.
  605. - add experimental patch10 to support drop shadow.
  606. (disabled by default)
  607. * Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.1-0vl1
  608. - new upstream release
  609. - drop patch4
  610. * Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.3-0vl3
  611. - merge patch3,4 from rawhide package
  612. * Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl2
  613. - rebuild with new glib/atk/pango
  614. * Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl1
  615. - new upstream release
  616. * Sun Dec 15 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.4-0vl3
  617. - add --enable-debug-minimum to configure.
  618. - add patch10 to disable gtktextview debugging.
  619. * Sun Dec 15 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.1.4-0vl1
  620. - new upstream release
  621. - build for Vine Linux
  622. - disable debug.
  623. * Fri Nov 22 2002 Havoc Pennington <hp@redhat.com>
  624. - rebuild with xft support
  625. * Wed Nov 20 2002 Havoc Pennington <hp@redhat.com>
  626. - rebuild to hack around xft.pc being in the wrong place
  627. - buildreq the pango with pangoxft
  628. * Thu Nov 7 2002 Havoc Pennington <hp@redhat.com>
  629. - 2.1.3
  630. - remove TODO from doc, no longer exists
  631. - remove 64bit patch, now upstream
  632. - comment out scroll_to patch, jrb has to deal with this
  633. - remove keycode patch now upstream
  634. - remove usintl patch now upstream
  635. - remove imenvar patch, now upstream
  636. - remove xftprefs patch now upstream
  637. - remove xftdraw patch now upstream
  638. - remove installdir patch (no longer applies) and do "makeinstall RUN_QUERY_IMMODULES_TEST=false"
  639. - remove extranotify patch, now upstream
  640. - add gdk-pixbuf-query-loaders to file list
  641. - remove gdk-pixbuf.loaders and gtk.immodules in postun as they are
  642. not owned by the package (these should probably live in /var since they
  643. aren't config files and we overwrite them all the time)
  644. * Thu Oct 3 2002 Owen Taylor <otaylor@redhat.com>
  645. - Add a fix for a 64bit problem in gtktypeutils.h
  646. - Bump in rebuild for RPM configuration problem
  647. * Sun Aug 25 2002 Jonathan Blandford <jrb@redhat.com>
  648. - fix gtk_tree_view_scroll_to_cell
  649. * Fri Aug 23 2002 Owen Taylor <otaylor@redhat.com>
  650. - Fixed Raleigh theme missing from package list
  651. * Mon Aug 19 2002 Owen Taylor <otaylor@redhat.com>
  652. - Fix a memory leak in xftprefs.patch
  653. - Fix extra settings notifies on startup that were causing significant
  654. performance problems as fonts were reloaded.
  655. * Tue Aug 13 2002 Owen Taylor <otaylor@redhat.com>
  656. - Fixes to GtkIMContextSimple compose table for us-intl keyboards
  657. (#70995, Alexandre Oliva)
  658. - Fix problem with keycodes passed to GtkIMContextXIM
  659. * Thu Aug 8 2002 Owen Taylor <otaylor@redhat.com>
  660. - Remove fixed-ltmain.sh, no longer needed
  661. - Fix bug with GTK_IM_MODULE environment variable
  662. - Remove profile.d entries setting GDK_USE_XFT, since we now default to it on
  663. - Backport patch from CVS HEAD to get Xft to work on non-RENDER XServers
  664. - Version 2.0.6
  665. * Tue Jul 16 2002 Owen Taylor <otaylor@redhat.com>
  666. - Fix cut and paste error in xftprefs patch pointed out by Anders Carlsson
  667. * Mon Jul 8 2002 Owen Taylor <otaylor@redhat.com>
  668. - Add patch to hook Xft up to XSETTINGS
  669. * Tue Jul 2 2002 Jonathan Blandford <jrb@redhat.com>
  670. - tree-view fixes for anaconda. Already in CVS.
  671. * Fri Jun 21 2002 Owen Taylor <otaylor@redhat.com>
  672. - Default GDK_USE_XFT to on, not off
  673. * Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
  674. - 2.0.5
  675. - remove xft configure.in patch
  676. * Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
  677. - rebuild in different environment
  678. * Fri Jun 7 2002 Havoc Pennington <hp@redhat.com>
  679. - rebuild
  680. * Thu Jun 6 2002 Owen Taylor <otaylor@redhat.com>
  681. - Add patch so that configuration works with pango-1.1/fontconfig
  682. * Tue Jun 4 2002 Havoc Pennington <hp@redhat.com>
  683. - 2.0.3
  684. * Mon Jun 03 2002 Havoc Pennington <hp@redhat.com>
  685. - rebuild in different environment
  686. * Mon Jun 3 2002 Havoc Pennington <hp@redhat.com>
  687. - drop /etc/gtk-2.0/gtkrc from the file list, will now be provided by redhat-artwork
  688. * Wed May 29 2002 Havoc Pennington <hp@redhat.com>
  689. - rebuild in different environment
  690. * Wed May 29 2002 Havoc Pennington <hp@redhat.com>
  691. - add profile.d entries to set GDK_USE_XFT
  692. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  693. - automated rebuild
  694. * Thu Apr 25 2002 Havoc Pennington <hp@redhat.com>
  695. - rebuild in different environment
  696. - hardcode automake 1.4 req
  697. * Fri Apr 19 2002 Havoc Pennington <hp@redhat.com>
  698. - do the prefix/lib -> libdir thing
  699. - include key themes in the package
  700. * Mon Apr 15 2002 root <otaylor@redhat.com>
  701. - Fix missing .po files (#63336)
  702. * Thu Apr 11 2002 Owen Taylor <otaylor@redhat.com>
  703. - Add reference docs to -devel package (#61184)
  704. - Use GTK2_RC_FILES, not GTK_RC_FILES, since KDE points GTK_RC_FILES
  705. to gtk-1.2 ~/.gtkrc
  706. * Wed Apr 3 2002 Alex Larsson <alexl@redhat.com>
  707. - Change dependency for glib2 since gtk and glib versions mismatch
  708. * Wed Apr 3 2002 Alex Larsson <alexl@redhat.com>
  709. - Update to version 2.0.2
  710. * Fri Mar 8 2002 Owen Taylor <otaylor@redhat.com>
  711. - Version 2.0.0
  712. * Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
  713. - Update to 1.3.15
  714. * Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
  715. - Bump for rebuild
  716. * Mon Feb 18 2002 Alex Larsson <alexl@redhat.com>
  717. - Update to 1.3.14
  718. * Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
  719. - add horrible buildrequires hack
  720. * Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
  721. - 1.3.13.91 snapshot
  722. * Mon Feb 11 2002 Matt Wilson <msw@redhat.com>
  723. - build from CVS snapshot
  724. - use setup -q
  725. * Wed Jan 30 2002 Owen Taylor <otaylor@redhat.com>
  726. - Version 1.3.13
  727. * Tue Jan 22 2002 Havoc Pennington <hp@redhat.com>
  728. - automake14
  729. * Wed Jan 2 2002 Havoc Pennington <hp@redhat.com>
  730. - 1.3.12.90 snapshot
  731. * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
  732. - Version 1.3.11
  733. - check atk/pango versions explicitly prior to build,
  734. so that --nodeps tricks don't result in bad binary RPMs
  735. * Fri Oct 5 2001 Havoc Pennington <hp@redhat.com>
  736. - pixbuf loaders were missing from file list
  737. - conflict with gdk-pixbuf-devel <= 0.11
  738. * Thu Oct 4 2001 Havoc Pennington <hp@redhat.com>
  739. - cvs snap
  740. * Thu Sep 27 2001 Havoc Pennington <hp@redhat.com>
  741. - sync with Owen's version
  742. * Thu Sep 20 2001 Havoc Pennington <hp@redhat.com>
  743. - smp_mflags
  744. - langify
  745. * Wed Sep 19 2001 Havoc Pennington <hp@redhat.com>
  746. - 1.3.8
  747. - add automake hackarounds
  748. * Thu Sep 13 2001 Havoc Pennington <hp@redhat.com>
  749. - conflict with old GTK with headers not moved
  750. - prereq new version of pango
  751. * Mon Sep 10 2001 Havoc Pennington <hp@redhat.com>
  752. - update to CVS snapshot
  753. * Wed Sep 5 2001 Havoc Pennington <hp@redhat.com>
  754. - build require specific versions of dependencies
  755. * Tue Sep 4 2001 Owen Taylor <otaylor@redhat.com>
  756. - Version 1.3.7
  757. * Thu Jul 26 2001 Havoc Pennington <hp@redhat.com>
  758. - Obsolete Inti and Inti-devel, #49967
  759. * Sat Jul 21 2001 Owen Taylor <otaylor@redhat.com>
  760. - PreReq specific pango and atk versions (#49434)
  761. - Don't package gtk.immodules (#49584)
  762. - Added BuildRequires for libtiff-devel, libjpeg-devel, libpng-devel (#49495)
  763. - Configure with --disable-gtk-doc (#48987)
  764. - Package libgdk_pixbuf_xlib (#47753)
  765. * Sat Jul 7 2001 Tim Powers <timp@redhat.com>
  766. - languify to satisfy rpmlint
  767. * Thu Jun 21 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  768. - use something better than libtool
  769. * Wed Jun 13 2001 Havoc Pennington <hp@redhat.com>
  770. - 1.3.6
  771. - libtool hackery
  772. - obsolete gtk+-gtkbeta-devel
  773. * Fri May 4 2001 Owen Taylor <otaylor@redhat.com>
  774. - Version 1.3.5
  775. - Rename to gtk2
  776. * Fri Nov 17 2000 Owen Taylor <otaylor@redhat.com>
  777. - Final 1.3.2
  778. * Tue Nov 14 2000 Owen Taylor <otaylor@redhat.com>
  779. - New snapshot
  780. * Mon Nov 13 2000 Owen Taylor <otaylor@redhat.com>
  781. - 1.3.2pre1 snapshot version
  782. * Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
  783. - Rename to 1.3.1b to avoid version increment difficulties
  784. * Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
  785. - Fix .pc files to not contain -I%{_includedir}
  786. * Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
  787. - Update to a CVS snapshot
  788. * Fri Jul 14 2000 Owen Taylor <otaylor@redhat.com>
  789. - Removed stray b from %%postun
  790. - Real 1.3.1 tarball fixing stupid omission in gtk-config
  791. * Fri Jul 07 2000 Owen Taylor <otaylor@redhat.com>
  792. - Version 1.3.1
  793. - move back to /usr
  794. - Remove gtk-config.1 manpage from build since
  795. it conflicts with gtk+-devel. When we go to
  796. gtk+ gtk+1.2 setup, we should add it back
  797. * Fri Jun 30 2000 Owen Taylor <otaylor@redhat.com>
  798. - Rename gtkrc-default source so that it GTK+ package can't remove it
  799. * Thu Jun 8 2000 Owen Taylor <otaylor@redhat.com>
  800. - Rebuild with a prefix of /opt/gtk-beta
  801. * Wed May 31 2000 Owen Taylor <otaylor@redhat.com>
  802. - New version
  803. * Tue Apr 25 2000 Owen Taylor <otaylor@redhat.com>
  804. - Snapshot version to install in /opt/pango
  805. * Mon Feb 21 2000 Owen Taylor <otaylor@redhat.com>
  806. - Fix weird excess problem that somehow turned up in %{_sysconfdir}/gtkrc.LANG
  807. * Mon Feb 14 2000 Owen Taylor <otaylor@redhat.com>
  808. - More patches from 1.2.7
  809. * Fri Feb 04 2000 Owen Taylor <otaylor@redhat.com>
  810. - Set the charset explicitely for the default font to avoid
  811. problems with XFree86-4.0 where the default charset is
  812. iso10646-1, not iso8859-1.
  813. - Fix problems with size requisitions for scrolled windows
  814. that was causing looping. (RH bug #7997)
  815. * Thu Feb 03 2000 Owen Taylor <otaylor@redhat.com>
  816. - Explicitely set the foreground of the tooltips to black
  817. to avoid bad interactions with themes that set a
  818. light foreground color.
  819. * Thu Feb 03 2000 Owen Taylor <otaylor@redhat.com>
  820. - Added large patch of bugfixes in stable branch of CVS
  821. * Tue Oct 12 1999 Owen Taylor <otaylor@redhat.com>
  822. - Added Akira Higuti's patch for line-wrapping in GTK+
  823. * Thu Oct 7 1999 Owen Taylor <otaylor@redhat.com>
  824. - version 1.2.6
  825. * Thu Sep 23 1999 Owen Taylor <otaylor@redhat.com>
  826. - version 1.2.5
  827. - install tutorial GIFs
  828. * Wed Sep 22 1999 Owen Taylor <otaylor@redhat.com>
  829. - Upgrade to real 1.2.5pre2
  830. - Changed name so upgrade to 1.2.5 will work :-(
  831. - Add extra gtkrc files
  832. - Add examples and English language tutorial to -devel package
  833. * Fri Sep 17 1999 Owen Taylor <otaylor@redhat.com>
  834. - Upgraded to 1.2.5pre2. (Actually, pre-pre-2)
  835. * Tue Aug 17 1999 Michael Fulbright <drmike@redhat.com>
  836. - added threaded patch
  837. * Mon Jun 7 1999 Owen Taylor <otaylor@redhat.com>
  838. - Update for GTK+-1.2.3
  839. - Patches that will be in GTK+-1.2.4
  840. - Patch to keep GTK+ from coredumping on X IO errors
  841. - Patch to improve compatilibity with GTK-1.2.1 (allow
  842. event mask to be set on realized widgets)
  843. * Mon Apr 19 1999 Michael Fulbright <drmike@redhat.com>
  844. - fixes memory leak
  845. * Mon Apr 12 1999 Owen Taylor <otaylor@redhat.com>
  846. - The important bug fixes that will be in GTK+-1.2.2
  847. * Thu Apr 01 1999 Michael Fulbright <drmike@redhat.com>
  848. - patches from owen to handle various gdk bugs
  849. * Sun Mar 28 1999 Michael Fulbright <drmike@redhat.com>
  850. - added XFree86-devel requirement for gtk+-devel
  851. * Thu Mar 25 1999 Michael Fulbright <drmike@redhat.com>
  852. - version 1.2.1
  853. * Wed Mar 17 1999 Michael Fulbright <drmike@redhat.com>
  854. - removed /usr/info/dir.gz file from package
  855. * Fri Feb 26 1999 Michael Fulbright <drmike@redhat.com>
  856. - Version 1.2.0
  857. * Thu Feb 25 1999 Michael Fulbright <drmike@redhat.com>
  858. - version 1.2.0pre2, patched to use --sysconfdir=%{_sysconfdir}
  859. * Mon Feb 15 1999 Michael Fulbright <drmike@redhat.com>
  860. - patched in Owen's patch to fix Metal theme
  861. * Fri Feb 05 1999 Michael Fulbright <drmike@redhat.com>
  862. - bumped up to 1.1.15
  863. * Wed Feb 03 1999 Michael Fulbright <drmike@redhat.com>
  864. - bumped up to 1.1.14
  865. * Mon Jan 18 1999 Michael Fulbright <drmike@redhat.com>
  866. - bumped up to 1.1.13
  867. * Wed Jan 06 1999 Michael Fulbright <drmike@redhat.com>
  868. - bumped up to 1.1.12
  869. * Wed Dec 16 1998 Michael Fulbright <drmike@redhat.com>
  870. - added Theme directory to file list
  871. - up to 1.1.7 for GNOME freeze
  872. * Sun Oct 25 1998 Shawn T. Amundson <amundson@gtk.org>
  873. - Fixed Source: to point to v1.1
  874. * Tue Aug 04 1998 Michael Fulbright <msf@redhat.com>
  875. - change %postun to %preun
  876. * Sat Jun 27 1998 Shawn T. Amundson
  877. - Changed version to 1.1.0
  878. * Thu Jun 11 1998 Dick Porter <dick@cymru.net>
  879. - Removed glib, since it is its own module now
  880. * Mon Apr 13 1998 Marc Ewing <marc@redhat.com>
  881. - Split out glib package
  882. * Wed Apr 8 1998 Shawn T. Amundson <amundson@gtk.org>
  883. - Changed version to 1.0.0
  884. * Tue Apr 7 1998 Owen Taylor <otaylor@gtk.org>
  885. - Changed version to 0.99.10
  886. * Thu Mar 19 1998 Shawn T. Amundson <amundson@gimp.org>
  887. - Changed version to 0.99.9
  888. - Changed gtk home page to www.gtk.org
  889. * Thu Mar 19 1998 Shawn T. Amundson <amundson@gimp.org>
  890. - Changed version to 0.99.8
  891. * Sun Mar 15 1998 Marc Ewing <marc@redhat.com>
  892. - Added aclocal and bin stuff to file list.
  893. - Added -k to the SMP make line.
  894. - Added lib/glib to file list.
  895. * Sat Mar 14 1998 Shawn T. Amundson <amundson@gimp.org>
  896. - Changed version to 0.99.7
  897. * Sat Mar 14 1998 Shawn T. Amundson <amundson@gimp.org>
  898. - Updated ftp url and changed version to 0.99.6
  899. * Thu Mar 12 1998 Marc Ewing <marc@redhat.com>
  900. - Reworked to integrate into gtk+ source tree
  901. - Truncated ChangeLog. Previous Authors:
  902. Trond Eivind Glomsrod <teg@pvv.ntnu.no>
  903. Michael K. Johnson <johnsonm@redhat.com>
  904. Otto Hammersmith <otto@redhat.com>