pango-vl.spec 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. %define glib2_version 2.26.0
  2. %define pkgconfig_version 0.12
  3. %define freetype2_version 2.3.9
  4. %define cairo_version 1.10.0
  5. # biarch support
  6. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  7. %define _querymodules_suffix %{nil}
  8. %if %{build_compat32}
  9. %define _querymodules_suffix -32
  10. %endif
  11. Summary: System for layout and rendering of internationalized text.
  12. Summary(ja): 国際化テキストのレイアウト・レンダリングシステム
  13. Name: pango
  14. Version: 1.28.4
  15. Release: 1%{?_dist_release}
  16. License: LGPL
  17. Group: System Environment/Libraries
  18. Source: ftp://ftp.gnome.org/pub/gnome/sources/pango/1.28/pango-%{version}.tar.bz2
  19. URL: http://www.pango.org
  20. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  21. # We need to prereq this so we can run pango-querymodules
  22. Requires: glib2 >= %{glib2_version}
  23. Requires: freetype2 >= %{freetype2_version}
  24. BuildRequires: libtool >= 1.4.2
  25. BuildRequires: glib2-devel >= %{glib2_version}
  26. BuildRequires: pkgconfig >= %{pkgconfig_version}
  27. BuildRequires: freetype2-devel >= %{freetype2_version}
  28. BuildRequires: fontconfig-devel
  29. BuildRequires: libX11-devel, libXft-devel, libXrender-devel
  30. BuildRequires: cairo-devel >= %{cairo_version}
  31. BuildRequires: libSM-devel
  32. BuildRequires: gobject-introspection-devel
  33. Obsoletes: pango-gtkbeta, fribidi-gtkbeta
  34. # Look for pango.modules in an arch-specific directory
  35. Patch0: pango-1.2.5-lib64.patch
  36. Patch1: pango-1.28.1-gobject-introspection.patch
  37. Vendor: Project Vine
  38. Distribution: Vine Linux
  39. %description
  40. Pango is a system for layout and rendering of internationalized text.
  41. %description -l ja
  42. Pango は国際化テキストのレイアウト・レンダリングシステムです。
  43. %package devel
  44. Summary: System for layout and rendering of internationalized text.
  45. Summary(ja): 国際化テキストのレイアウト・レンダリングシステム
  46. Group: Development/Libraries
  47. Requires: pango = %{version}
  48. Requires: glib2-devel >= %{glib2_version}
  49. Requires: freetype2-devel >= %{freetype2_version}
  50. Requires: cairo-devel >= %{cairo_version}
  51. Requires: libX11-devel, libXft-devel, libXrender-devel
  52. Obsoletes: fribidi-gtkbeta-devel, pango-gtkbeta-devel
  53. %description devel
  54. The pango-devel package includes the static libraries, header files,
  55. and developer docs for the pango package.
  56. Install pango-devel if you want to develop programs which will use
  57. pango.
  58. #####################################################################
  59. # compat32
  60. %package -n compat32-%{name}
  61. Summary: System for layout and rendering of internationalized text.
  62. Summary(ja): 国際化テキストのレイアウト・レンダリングシステム
  63. Group: Development/Libraries
  64. %description -n compat32-%{name}
  65. Pango is a system for layout and rendering of internationalized text.
  66. %description -n compat32-%{name} -l ja
  67. Pango は国際化テキストのレイアウト・レンダリングシステムです。
  68. %package -n compat32-%{name}-devel
  69. Summary: Development files for pango
  70. Summary(ja): pango 用の開発ファイル
  71. Group: Development/Libraries
  72. Requires: compat32-%{name} = %{version}
  73. Requires: %{name}-devel = %{version}
  74. %description -n compat32-%{name}-devel
  75. The pango-devel package includes the static libraries, header files,
  76. and developer docs for the pango package.
  77. %prep
  78. %setup -q -n pango-%{version}
  79. %patch0 -p1 -b .lib64
  80. %patch1 -p1 -b .gi
  81. %build
  82. ###%configure --with-included-modules=basic-fc
  83. (if ! test -x configure; then NOCONFIGURE=1 ./autogen.sh; CONFIGFLAGS=--enable-gtk-doc; fi;
  84. %configure CONFIGFLAGS --with-included-modules=basic-fc --disable-silent-rules --enable-introspection=yes)
  85. make %{?_smp_mflags}
  86. %install
  87. rm -rf $RPM_BUILD_ROOT
  88. make DESTDIR=$RPM_BUILD_ROOT install
  89. # biarch support
  90. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pango/%{_arch}
  91. touch $RPM_BUILD_ROOT%{_sysconfdir}/pango/%{_arch}/pango.modules
  92. %if %{build_compat32}
  93. cp $RPM_BUILD_ROOT%{_bindir}/pango-querymodules \
  94. $RPM_BUILD_ROOT%{_bindir}/pango-querymodules%{_querymodules_suffix}
  95. %endif
  96. # remove unpackaged files
  97. rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
  98. rm -f $RPM_BUILD_ROOT%{_libdir}/pango/*/modules/*.la
  99. rm -f $RPM_BUILD_ROOT%{_sysconfdir}/pango/pango.modules
  100. %clean
  101. rm -rf $RPM_BUILD_ROOT
  102. %post
  103. /sbin/ldconfig
  104. %{_bindir}/pango-querymodules > %{_sysconfdir}/pango/%{_arch}/pango.modules
  105. %postun -p /sbin/ldconfig
  106. %if %{build_compat32}
  107. %post -n compat32-%{name}
  108. /sbin/ldconfig
  109. %{_bindir}/pango-querymodules%{_querymodules_suffix} > %{_sysconfdir}/pango/%{_arch}/pango.modules
  110. %postun -p /sbin/ldconfig -n compat32-%{name}
  111. %endif
  112. %files
  113. %defattr(-, root, root)
  114. %doc README AUTHORS COPYING NEWS
  115. %doc pango-view/HELLO.txt
  116. #doc README AUTHORS COPYING ChangeLog
  117. #doc examples/HELLO.utf8
  118. %{_bindir}/pango-querymodules
  119. %{_bindir}/pango-view
  120. %{_libdir}/libpango*-*.so.*
  121. %{_libdir}/pango
  122. %{_libdir}/girepository-1.0
  123. %{_mandir}/man*/*
  124. %dir %{_sysconfdir}/pango
  125. %config %{_sysconfdir}/pango/pangox.aliases
  126. %ghost %{_sysconfdir}/pango/%{_arch}/pango.modules
  127. %files devel
  128. %defattr(-, root, root)
  129. %{_libdir}/libpango*.so
  130. %{_includedir}/*
  131. %{_libdir}/pkgconfig/*
  132. %{_datadir}/gtk-doc/*
  133. %{_datadir}/gir-1.0
  134. %if %{build_compat32}
  135. %files -n compat32-%{name}
  136. %defattr(-, root, root)
  137. %{_libdir}/libpango*-*.so.*
  138. %{_bindir}/pango-querymodules%{_querymodules_suffix}
  139. %{_libdir}/pango
  140. %dir %{_sysconfdir}/pango/%{_arch}
  141. %ghost %{_sysconfdir}/pango/%{_arch}/pango.modules
  142. %files -n compat32-%{name}-devel
  143. %defattr(-, root, root)
  144. %{_libdir}/libpango*.so
  145. %{_libdir}/pkgconfig/*
  146. %endif
  147. %changelog
  148. * Mon Apr 25 2011 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.28.4-1
  149. - new upstream release with security fixes (CVE-2011-0020, 0064)
  150. - add Vendor/Distri tags
  151. * Sat Oct 02 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.28.3-1
  152. - add BuildRequires: libSM-devel, gobject-introspection-devel
  153. - add Patch1 (pango-1.28.1-gobject-introspection.patch)
  154. * Tue Sep 21 2010 IWAI, Masaharu <iwai@alib.jp> 1.28.1-2
  155. - build with rpm-4.8.1-1 for pkg-config file
  156. * Mon Jun 21 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.28.1-1
  157. - new upstream release
  158. * Wed Mar 31 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.28.0-1
  159. - new upstream release
  160. * Sun Jan 10 2010 Shu KONNO <owa@bg.wakwak.com> 1.26.2-2
  161. - changed %%makeinstall to make install with DESTDIR option
  162. * Thu Jan 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.26.2-1
  163. - new upstream release
  164. * Sun Nov 29 2009 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.26.1-1
  165. - new upstream release
  166. * Thu Sep 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.26.0-1
  167. - new upstream release
  168. * Sun Jul 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.5-1
  169. - new upstream release
  170. * Wed Jul 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.4-1
  171. - new upstream release
  172. * Thu May 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.2-1
  173. - new upstream release
  174. * Mon May 04 2009 NAKAMURA Kenta <kenta@vinelinux.org> 1.24.1-2
  175. - removed %%if !%%{build_compat32} case condition
  176. * Mon May 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.1-1
  177. - new upstream release
  178. * Wed Mar 18 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.24.0-1
  179. - new upstream release
  180. * Tue Dec 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.22.4-1
  181. - new upstream release
  182. * Tue Nov 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.22.3-1
  183. - new upstream release
  184. * Fri Oct 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.22.1-1
  185. - new upstream release
  186. * Tue Sep 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.22.0-1
  187. - new upstream release
  188. * Thu Jul 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.5-1
  189. - new upstream release
  190. * Sun May 25 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.20.3-2
  191. - spec in UTF-8 actually
  192. * Sun May 25 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.3-1
  193. - new upstream release
  194. - rebuilt with xorg-x11 7.3
  195. * Wed Apr 9 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.1-1vl5
  196. - new upstream release
  197. * Thu Mar 20 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.0-1vl5
  198. - used %{?_dist_release}
  199. * Wed Mar 12 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.20.0-0vl1
  200. - new upstream release
  201. * Thu Jan 10 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.18.4-0vl1
  202. - new upstream release
  203. * Fri Nov 16 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.18.3-0vl1
  204. - new upstream release
  205. - added Patch0 instead of Patch5
  206. * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.16.4-0vl2
  207. - replace build with new environment
  208. * Sun May 20 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.16.4-0vl2
  209. - rebuild with new environment
  210. * Thu May 03 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.16.4-0vl1
  211. - new upstream release
  212. * Wed Apr 25 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 1.16.2-0vl1
  213. - new upstream release
  214. * Mon Dec 25 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.14.9-0vl1
  215. - new upstream release
  216. * Sun Oct 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.14.7-0vl1
  217. - new upstream release
  218. * Sat Sep 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.14.4-0vl1
  219. - new upstream release
  220. * Thu Aug 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.14.0-0vl1
  221. - new upstream release
  222. * Tue Aug 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.3-0vl3
  223. - rebuild with cairo-1.2.0
  224. * Tue Aug 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.3-0vl2
  225. - add Patch10 to create fake style(italic/bold) for all fonts.
  226. http://bugzilla.gnome.org/show_bug.cgi?id=319808
  227. - This patch is not applied in upstream, but it seems usefull
  228. for us.
  229. * Sun May 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.3-0vl1
  230. - new upstream release
  231. * Sun Apr 30 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.2-0vl1
  232. - new upstream release
  233. * Sat Apr 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.1-0vl1
  234. - new upstream release
  235. * Fri Mar 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.0-0vl2
  236. - fix broken dependancy
  237. * Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.12.0-0vl1
  238. - new upstream release
  239. * Sun Mar 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.11.99-0vl1
  240. - new upstream release
  241. - add compat32 package for x86_64 arch support
  242. - add Patch5 for biarch support
  243. * Sun Jan 29 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.2-0vl1
  244. - new upstream release
  245. * Sat Oct 08 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.1-0vl1
  246. - new upstream release
  247. * Sun Aug 28 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.10.0-0vl1
  248. - new upstream release
  249. * Mon Aug 15 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.1-0vl2
  250. - rebuild with cairo-0.9
  251. - add patch10 to disable building example programs
  252. * Tue Aug 02 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.1-0vl1
  253. - new upstream release
  254. * Mon Jan 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.0-0vl1
  255. - new upstream release
  256. - drop obsolete patches
  257. * Sun Nov 07 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.0-0vl1
  258. - new upstream release
  259. - import upstream patches from fedora package.
  260. * Sat Aug 14 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.1-0vl1
  261. - new upstream release
  262. * Thu Mar 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.0-0vl1
  263. - new upstream release
  264. * Thu Mar 4 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.5-0vl3
  265. - remove unneeded dependancy to freetype2-devel
  266. * Wed Nov 19 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.5-0vl2
  267. - add patch10 to build against freetype-2.1.7
  268. - rebuild with freetype-2.1.7
  269. * Mon Sep 01 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.5-0vl1
  270. - new upstream release
  271. * Tue Jun 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.3-0vl1
  272. - new upstream release
  273. * Mon Feb 10 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.1-0vl1
  274. - new upstream release
  275. * Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-0vl2
  276. - merge patch1,2 from rawhide package.
  277. * Wed Dec 25 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-0vl1
  278. - new upstream release
  279. * Thu Dec 13 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.5-0vl1
  280. - new upstream release
  281. - Build for Vine Linux, specfile are based on rawhide release
  282. * Thu Nov 21 2002 Havoc Pennington <hp@redhat.com>
  283. - change PKG_CONFIG_PATH hack to also search /usr/X11R6/lib64/pkgconfig
  284. * Wed Nov 20 2002 Havoc Pennington <hp@redhat.com>
  285. - explicitly require pangoxft to be built, so we catch situations such
  286. as xft.pc moving to /usr/X11R6
  287. - also add /usr/X11R6/lib/pkgconfig to PKG_CONFIG_PATH as a temporary
  288. hack
  289. * Thu Nov 7 2002 Havoc Pennington <hp@redhat.com>
  290. - 1.1.3
  291. * Thu Oct 31 2002 Owen Taylor <otaylor@redhat.com> 1.1.1-5
  292. - Require the necessary freetype version, don't just
  293. BuildRequires it (#74744)
  294. * Thu Oct 31 2002 Owen Taylor <otaylor@redhat.com> 1.1.1-4
  295. - Own /etc/pango (#73962, Enrico Scholz)
  296. - Remove .la files from the build root
  297. * Mon Oct 7 2002 Havoc Pennington <hp@redhat.com>
  298. - require glib 2.0.6-3, try rebuild on more arches
  299. * Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
  300. - Version 1.1.1 (main change, fixes font selection for FT2 backend,
  301. as in gdmgreeter)
  302. * Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
  303. - Fix linked list manipulation problem that was causing hang for anaconda
  304. - Fix warning from loading mini-fonts with context == NULL
  305. * Wed Aug 14 2002 Owen Taylor <otaylor@redhat.com>
  306. - Fix major memory leak in the last patch
  307. * Tue Aug 13 2002 Owen Taylor <otaylor@redhat.com>
  308. - Actually use language tags at the rendering layer (should fix #68211)
  309. * Mon Jul 15 2002 Owen Taylor <otaylor@redhat.com>
  310. - Remove fixed-ltmain.sh, relibtoolize; to fix relink problems without
  311. - Fix bug causing hex boxes to be misrendered
  312. leaving RPATH (#66005)
  313. - For FT2 backend, supply FT_LOAD_NO_BITMAP to avoid problems with
  314. fonts with embedded bitmaps (#67851)
  315. * Mon Jul 8 2002 Owen Taylor <otaylor@redhat.com>
  316. - Make basic-x shaper work with our big-5 fonts
  317. * Wed Jul 3 2002 Owen Taylor <otaylor@redhat.com>
  318. - New upstream tarball with hooks for change-on-the fly font rendering
  319. * Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
  320. - Up FreeType version to deal with FreeType-2.0.x / 2.1.x \
  321. ABI changes for pango's OpenType code.
  322. * Mon Jun 24 2002 Owen Taylor <otaylor@redhat.com>
  323. - Add some Korean aliases that the installer wants
  324. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  325. - automated rebuild
  326. * Sat Jun 8 2002 Havoc Pennington <hp@redhat.com>
  327. - devel package requires fontconfig/Xft devel packages
  328. * Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
  329. - rebuild in different environment
  330. * Thu Jun 6 2002 Owen Taylor <otaylor@redhat.com>
  331. - Snapshot with Xft2/fontconfig support
  332. * Wed May 29 2002 Owen Taylor <otaylor@redhat.com>
  333. - Version 1.0.2
  334. - Patch for charmaps problem
  335. * Sun May 26 2002 Tim Powers <timp@redhat.com>
  336. - automated rebuild
  337. * Wed May 22 2002 Havoc Pennington <hp@redhat.com>
  338. - rebuild in different environment
  339. * Wed May 22 2002 Havoc Pennington <hp@redhat.com>
  340. - add patch to adjust to newer version of freetype
  341. * Wed Apr 3 2002 Alex Larsson <alexl@redhat.com>
  342. - Update to version 1.0.1, remove patch
  343. * Tue Mar 19 2002 Owen Taylor <otaylor@redhat.com>
  344. - Patch from CVS for big speedup with FreeType-2.0.9
  345. * Mon Mar 11 2002 Owen Taylor <otaylor@redhat.com>
  346. - Rebuild
  347. * Fri Mar 8 2002 Owen Taylor <otaylor@redhat.com>
  348. - Version 1.0.0
  349. * Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
  350. - Update to 0.26
  351. * Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
  352. - Bump for rebuild
  353. * Mon Feb 18 2002 Alex Larsson <alexl@redhat.com>
  354. - Update to 0.25
  355. * Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
  356. - add horrible buildrequires hack
  357. * Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
  358. - 0.24.90 cvs snap
  359. * Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
  360. - Version 0.24
  361. * Wed Jan 09 2002 Tim Powers <timp@redhat.com>
  362. - automated rebuild
  363. * Wed Jan 2 2002 Havoc Pennington <hp@redhat.com>
  364. - new snap 0.23.90
  365. * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
  366. - rebuild with 64-bit-fixed glib
  367. * Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
  368. - Version 0.22
  369. - add explicit check for required glib2 version before we do the build,
  370. so we don't end up with bad RPMs on --nodeps builds
  371. - PreReq the glib2_version version, instead of 1.3.8 hardcoded that
  372. no one had updated recently
  373. * Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
  374. - Version 0.21
  375. * Thu Oct 4 2001 Havoc Pennington <hp@redhat.com>
  376. - cvs snap
  377. - new cvs snap with a bugfix
  378. * Thu Sep 27 2001 Havoc Pennington <hp@redhat.com>
  379. - sync with Owen's changes, fix up dependency versions
  380. * Wed Sep 19 2001 Havoc Pennington <hp@redhat.com>
  381. - 0.19
  382. * Mon Sep 10 2001 Havoc Pennington <hp@redhat.com>
  383. - build CVS snap
  384. * Wed Sep 05 2001 Havoc Pennington <hp@redhat.com>
  385. - no relinking junk
  386. * Tue Sep 4 2001 root <root@dhcpd37.meridian.redhat.com>
  387. - Version 0.18
  388. * Fri Jul 20 2001 Owen Taylor <otaylor@redhat.com>
  389. - Configure --disable-gtk-doc
  390. - BuildRequires freetype-devel, XFree86-devel
  391. * Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
  392. - 0.17
  393. - libtool hackarounds
  394. * Fri May 04 2001 Owen Taylor <otaylor@redhat.com>
  395. - 0.16, rename back to pango from pango-gtkbeta
  396. * Fri Feb 16 2001 Owen Taylor <otaylor@redhat.com>
  397. - Obsolete fribidi-gtkbeta
  398. * Mon Dec 11 2000 Havoc Pennington <hp@redhat.com>
  399. - Remove that patch I just put in
  400. * Mon Dec 11 2000 Havoc Pennington <hp@redhat.com>
  401. - Patch pangox.pc.in to include -Iincludedir
  402. * Fri Nov 17 2000 Owen Taylor <otaylor@redhat.com>
  403. - final 0.13
  404. * Tue Nov 14 2000 Owen Taylor <otaylor@redhat.com>
  405. - New 0.13 tarball
  406. * Mon Nov 13 2000 Owen Taylor <otaylor@redhat.com>
  407. - 0.13pre1
  408. * Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
  409. - Rename to 0.12b to avoid versioning problems
  410. * Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
  411. - Move to a CVS snapshot
  412. * Fri Jul 07 2000 Owen Taylor <otaylor@redhat.com>
  413. - Move back to /usr
  414. - Version 0.12
  415. * Mon Jun 19 2000 Owen Taylor <otaylor@redhat.com>
  416. - Add missing %%defattr
  417. * Thu Jun 8 2000 Owen Taylor <otaylor@redhat.com>
  418. - Rebuild with a prefix of /opt/gtk-beta
  419. * Wed May 31 2000 Owen Taylor <otaylor@redhat.com>
  420. - version 0.11
  421. - add --without-qt
  422. * Wed Apr 26 2000 Owen Taylor <otaylor@redhat.com>
  423. - Make the devel package require *-gtkbeta-* not the normal packages.
  424. * Tue Apr 25 2000 Owen Taylor <otaylor@redhat.com>
  425. - GTK+ snapshot version installing in /opt/gtk-beta
  426. * Fri Feb 11 2000 Owen Taylor <otaylor@redhat.com>
  427. - Created spec file