xorg-x11-apps-vl.spec 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. %define pkgname apps
  2. Summary: X.Org X11 applications
  3. Summary(ja): X.Org X11 アプリケーション
  4. Name: xorg-x11-%{pkgname}
  5. # NOTE: The package version should be set to the X11 major release from which
  6. # the OS release is based upon.
  7. Version: 7.6
  8. Release: 5%{?_dist_release}
  9. License: MIT/X11
  10. Group: User Interface/X
  11. URL: http://www.x.org
  12. # Clock apps
  13. Source0: ftp://ftp.x.org/pub/individual/app/oclock-1.0.2.tar.bz2
  14. Source1: ftp://ftp.x.org/pub/individual/app/xclock-1.0.5.tar.bz2
  15. # X Window Dump (xwd) utilities
  16. Source2: ftp://ftp.x.org/pub/individual/app/xwd-1.0.4.tar.bz2
  17. Source3: ftp://ftp.x.org/pub/individual/app/xwud-1.0.3.tar.bz2
  18. Source4: ftp://ftp.x.org/pub/individual/app/xpr-1.0.3.tar.bz2
  19. # Miscellaneous other applications
  20. Source5: ftp://ftp.x.org/pub/individual/app/luit-1.1.0.tar.bz2
  21. Source6: ftp://ftp.x.org/pub/individual/app/x11perf-1.5.4.tar.bz2
  22. Source7: ftp://ftp.x.org/pub/individual/app/xbiff-1.0.3.tar.bz2
  23. Source8: ftp://ftp.x.org/pub/individual/app/xclipboard-1.1.1.tar.bz2
  24. Source9: ftp://ftp.x.org/pub/individual/app/xconsole-1.0.4.tar.bz2
  25. Source10: ftp://ftp.x.org/pub/individual/app/xcursorgen-1.0.4.tar.bz2
  26. Source11: ftp://ftp.x.org/pub/individual/app/xeyes-1.1.1.tar.bz2
  27. Source12: ftp://ftp.x.org/pub/individual/app/xkill-1.0.3.tar.bz2
  28. Source13: ftp://ftp.x.org/pub/individual/app/xload-1.1.0.tar.bz2
  29. Source14: ftp://ftp.x.org/pub/individual/app/xlogo-1.0.3.tar.bz2
  30. Source15: ftp://ftp.x.org/pub/individual/app/xmag-1.0.4.tar.bz2
  31. Source16: ftp://ftp.x.org/pub/individual/app/xmessage-1.0.3.tar.bz2
  32. Source17: ftp://ftp.x.org/pub/individual/app/xinput-1.5.4.tar.bz2
  33. Source18: ftp://ftp.x.org/pub/individual/app/xcalc-1.0.4.1.tar.bz2
  34. Patch2: xconsole-1.0.3-streams-me-softer.patch
  35. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  36. BuildRequires: autoconf, automake
  37. BuildRequires: pkgconfig
  38. BuildRequires: xorg-x11-util-macros
  39. BuildRequires: xorg-x11-xbitmaps
  40. BuildRequires: zlib-devel
  41. BuildRequires: libfontenc-devel
  42. BuildRequires: libX11-devel
  43. BuildRequires: libXmu-devel
  44. BuildRequires: libXext-devel
  45. BuildRequires: libXt-devel
  46. BuildRequires: libXaw-devel
  47. BuildRequires: libXpm-devel
  48. BuildRequires: libXft-devel
  49. BuildRequires: libXrender-devel
  50. BuildRequires: libxkbfile-devel
  51. BuildRequires: libXcursor-devel
  52. BuildRequires: libpng-devel
  53. BuildRequires: libXfixes-devel
  54. BuildRequires: libXi-devel
  55. Requires(pre): xorg-x11-filesystem
  56. Provides: luit oclock x11perf xbiff xclipboard xclock xconsole xcursorgen
  57. Provides: xeyes xkill xload xlogo xmag xmessage xpr xwd xwud xinput xcalc
  58. # NOTE: xwd, xwud, luit used to be in these.
  59. Obsoletes: XFree86, XOrg
  60. # NOTE: x11perf, xclipboard used to be in these.
  61. Obsoletes: XFree86-tools, XOrg-tools
  62. Vendor: Project Vine
  63. Distribution: Vine Linux
  64. %description
  65. A collection of common X Window System applications.
  66. %prep
  67. %setup -q -c %{name}-%{version} -a1 -a2 -a3 -a4 -a5 -a6 -a7 -a8 -a9 -a10 -a11 -a12 -a13 -a14 -a15 -a16 -a17 -a18
  68. ## %patch2 -p0 -b .streams-me-softer
  69. %build
  70. # Build all apps
  71. {
  72. for app in * ; do
  73. pushd $app
  74. case $app in
  75. x11perf*)
  76. aclocal ; automake ; autoconf
  77. ;;
  78. luit*)
  79. autoconf
  80. ;;
  81. esac
  82. %configure --disable-xprint
  83. make
  84. popd
  85. done
  86. }
  87. %install
  88. rm -rf $RPM_BUILD_ROOT
  89. # Install all apps
  90. {
  91. for app in * ; do
  92. pushd $app
  93. make install DESTDIR=$RPM_BUILD_ROOT
  94. popd
  95. done
  96. }
  97. %clean
  98. rm -rf $RPM_BUILD_ROOT
  99. %files
  100. %defattr(-,root,root,-)
  101. #%doc
  102. %{_bindir}/luit
  103. %{_bindir}/oclock
  104. %{_bindir}/x11perf
  105. %{_bindir}/x11perfcomp
  106. %{_bindir}/xbiff
  107. %{_bindir}/xcalc
  108. %{_bindir}/xclipboard
  109. %{_bindir}/xclock
  110. %{_bindir}/xconsole
  111. %{_bindir}/xcursorgen
  112. %{_bindir}/xcutsel
  113. %{_bindir}/xdpr
  114. %{_bindir}/xeyes
  115. %{_bindir}/xinput
  116. %{_bindir}/xkill
  117. %{_bindir}/xload
  118. %{_bindir}/xlogo
  119. %{_bindir}/xmag
  120. %{_bindir}/xmessage
  121. %{_bindir}/xpr
  122. %{_bindir}/xwd
  123. %{_bindir}/xwud
  124. %dir %{_datadir}/X11
  125. %{_datadir}/X11/app-defaults/Clock-color
  126. %{_datadir}/X11/app-defaults/XCalc
  127. %{_datadir}/X11/app-defaults/XCalc-color
  128. %{_datadir}/X11/app-defaults/XClipboard
  129. %{_datadir}/X11/app-defaults/XClock
  130. %{_datadir}/X11/app-defaults/XClock-color
  131. %{_datadir}/X11/app-defaults/XConsole
  132. %{_datadir}/X11/app-defaults/XLoad
  133. %{_datadir}/X11/app-defaults/XLogo
  134. %{_datadir}/X11/app-defaults/XLogo-color
  135. %{_datadir}/X11/app-defaults/Xmag
  136. %{_datadir}/X11/app-defaults/Xmessage
  137. %{_datadir}/X11/app-defaults/Xmessage-color
  138. %dir %{_libdir}/X11/x11perfcomp
  139. %{_libdir}/X11/x11perfcomp/Xmark
  140. %{_libdir}/X11/x11perfcomp/fillblnk
  141. %{_libdir}/X11/x11perfcomp/perfboth
  142. %{_libdir}/X11/x11perfcomp/perfratio
  143. #%dir %{_mandir}/man1x
  144. %{_mandir}/man1/xcursorgen.1*
  145. %{_mandir}/man1/Xmark.1*
  146. %{_mandir}/man1/luit.1*
  147. %{_mandir}/man1/oclock.1*
  148. %{_mandir}/man1/x11perf.1*
  149. %{_mandir}/man1/x11perfcomp.1*
  150. %{_mandir}/man1/xbiff.1*
  151. %{_mandir}/man1/xcalc.1*
  152. %{_mandir}/man1/xclipboard.1*
  153. %{_mandir}/man1/xclock.1*
  154. %{_mandir}/man1/xconsole.1*
  155. %{_mandir}/man1/xcutsel.1*
  156. %{_mandir}/man1/xdpr.1*
  157. %{_mandir}/man1/xeyes.1*
  158. %{_mandir}/man1/xinput.1*
  159. %{_mandir}/man1/xkill.1*
  160. %{_mandir}/man1/xload.1*
  161. %{_mandir}/man1/xlogo.1*
  162. %{_mandir}/man1/xmag.1*
  163. %{_mandir}/man1/xmessage.1*
  164. %{_mandir}/man1/xpr.1*
  165. %{_mandir}/man1/xwd.1*
  166. %{_mandir}/man1/xwud.1*
  167. %changelog
  168. * Sun Jan 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.6-5
  169. - xinput-1.5.4
  170. * Sun Aug 14 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.6-4
  171. - x11perf-1.5.4
  172. * Mon Feb 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.6-3
  173. - xcalc-1.0.4.1
  174. * Sat Feb 05 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.6-2
  175. - xbiff-1.0.3
  176. * Sat Jan 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.6-1
  177. - x11perf-1.5.3
  178. * Sat Dec 18 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.5-4
  179. - xwd-1.0.4
  180. - wud-1.0.3
  181. - xclipboard-1.1.1
  182. - xcursorgen-1.0.4
  183. - xeyes-1.1.1
  184. - xkill-1.0.3
  185. - xinput-1.5.3
  186. - xcalc-1.0.4
  187. * Sun Nov 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 7.5-3
  188. - oclock-1.0.2
  189. - xlock-1.0.5
  190. - xconsole-1.0.4
  191. - luit-1.1.0
  192. - x11perf-1.5.2
  193. - xbiff-1.0.2
  194. - xlogo-1.0.3
  195. - xload-1.1.0
  196. - xmag-1.0.4
  197. - xinput-1.5.2
  198. - drop Patch2
  199. - add BuildRequires: libXi-devel
  200. * Fri Mar 26 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 7.5-2
  201. - luit-1.0.5
  202. - xeyes-1.1.0
  203. - xlogo-1.0.2
  204. - xmessage-1.0.3
  205. - xinput-1.5.1
  206. - added xcalc-1.0.3 <wishes:161>
  207. * Thu Nov 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.5-1
  208. - xclock-1.0.4
  209. - xwd-1.0.3
  210. - xwud-1.0.2
  211. - xpr-1.0.3
  212. - luit-1.0.4
  213. - x11perf-1.5.1
  214. - xclipboard-1.1.0
  215. - xcursorgen-1.0.3
  216. - xeyes-1.0.991
  217. - xkill-1.0.2
  218. - xmag-1.0.3
  219. - xinput-1.5.0
  220. * Wed May 20 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.4-3
  221. - xinput-1.4.2
  222. * Mon Apr 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 7.4-2
  223. - xinput-1.4.1
  224. * Mon Nov 10 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.4-1
  225. - bump to 7.4 version
  226. - add xinput-1.3.0
  227. * Sat Jul 05 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.3-2
  228. - xwd 1.0.2
  229. - luit 1.0.3
  230. - x11perf 1.5
  231. * Sun May 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.3-1
  232. - new versioning policy
  233. * Thu Jan 17 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 7.3-0vl1
  234. - initial build for Vine Linux
  235. * Mon Sep 24 2007 Adam Jackson <ajax@redhat.com> 7.3-1
  236. - xconsole 1.0.3
  237. - xmessage 1.0.2
  238. - Bump to 7.3-1
  239. * Tue Aug 21 2007 Dave Airlie <airlied@redhat.com> 7.2-1
  240. - luit-1.0.2 xclock 1.0.3 xmag 1.0.2 xpr 1.0.2 xload 1.0.2 xcursorgen 1.0.2
  241. - bump to 7.2 version
  242. * Tue Jan 30 2007 Adam Jackson <ajax@redhat.com> 7.1-4
  243. - Fix man page globs and rebuild for FC7.
  244. * Mon Oct 2 2006 Soren Sandmann <sandmann@redhat.com> 7.1-3.fc6
  245. - Fix race condition in luit (Bug 197165).
  246. * Wed Jul 19 2006 Mike A. Harris <mharris@redhat.com> 7.1-2.fc6
  247. - Remove app-defaults dir from file manifest, as it is owned by libXt (#174021)
  248. - Add 'dist' tag to package release string.
  249. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> 7.1-1.1
  250. - rebuild
  251. * Tue Jun 20 2006 Mike A. Harris <mharris@redhat.com> 7.1-1
  252. - Added xload-1.0.1-setuid.diff to fix potential security issue (#196094)
  253. - Artificially inflate package version-release to 7.1 to match the X11R7.1
  254. release that all of the tarballs are taken from.
  255. - Update to xconsole-1.0.2, xcursorgen-1.0.1 from X11R7.1
  256. - Add temporary dependency on autoconf, automake for brew builds.
  257. * Fri May 26 2006 Adam Jackson <ajackson@redhat.com> 1.0.3-2
  258. - Add more BuildRequires to fix mock builds. (#191896)
  259. * Thu Apr 27 2006 Adam Jackson <ajackson@redhat.com> 1.0.3-1
  260. - Updated xclock and xconsole
  261. * Thu Mar 02 2006 Adam Jackson <ajackson@redhat.com> 1.0.2-1
  262. - Bump x11perf to 1.4.1 from upstream.
  263. * Fri Feb 24 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-2
  264. - Added luit-1.0.1-locale.alias-datadir.patch to fix bug (#181785)
  265. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> 1.0.1-1.2
  266. - bump again for double-long bug on ppc(64)
  267. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> 1.0.1-1.1
  268. - rebuilt for new gcc4.1 snapshot and glibc changes
  269. * Wed Jan 18 2006 Mike A. Harris <mharris@redhat.com> 1.0.1-1
  270. - Upgraded all apps to version 1.0.1 from X11R7.0
  271. * Sat Dec 17 2005 Mike A. Harris <mharris@redhat.com> 1.0.0-1
  272. - Upgraded all apps to version 1.0.0 from X11R7 RC4.
  273. - Changed manpage dir from man1x to man1 to match upstream default now.
  274. - Dropped all of the datadir-cleanups patches added in the previous build.
  275. - Added x11perf-1.0.0-x11perf-datadir-cleanups.patch as it is still needed
  276. to put the helper scripts in datadir.
  277. - Added --disable-xprint to configure, as a great symbolic jesture.
  278. * Wed Nov 22 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-4
  279. - Added "Requires(pre): xorg-x11-filesystem >= 0.99.2-3" to workaround
  280. (#173384)
  281. - Added the following patches, and invoke aclocal/automake/autoconf on them
  282. to force app-defaults and other datafiles into _datadir instead of _libdir:
  283. - oclock-0.99.1-oclock-datadir-cleanups.patch
  284. - x11perf-0.99.1-x11perf-datadir-cleanups.patch
  285. - xclipboard-0.99.1-xclipboard-datadir-cleanups.patch
  286. - xclock-0.99.1-xclock-datadir-cleanups.patch
  287. - xconsole-0.99.2-xconsole-datadir-cleanups.patch
  288. - xload-0.99.1-xload-datadir-cleanups.patch
  289. - xlogo-0.99.1-xlogo-datadir-cleanups.patch
  290. - xmag-0.99.1-xmag-datadir-cleanups.patch
  291. - xmessage-0.99.1-xmessage-datadir-cleanups.patch
  292. - Added luit-0.99.1-luit-locale-dir-fix.patch to fix bug (#173702)
  293. * Mon Nov 14 2005 Jeremy Katz <katzj@redhat.com> 0.99.2-3
  294. - add Requires(pre) on newer filesystem package (#172610)
  295. * Sun Nov 13 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-2
  296. - Add "Obsoletes: XFree86, XFree86-tools, xorg-x11, xorg-x11-tools", as
  297. various utils have moved here from there in monolithic X packaging.
  298. - Add "BuildRequires: xbitmaps-devel" for xbiff.
  299. - Rebuild against new libXaw 0.99.2-2, which has fixed DT_SONAME. (#173027)
  300. * Fri Nov 11 2005 Mike A. Harris <mharris@redhat.com> 0.99.2-1
  301. - Initial build, with all apps taken from X11R7 RC2.
  302. - Use "make install DESTDIR=$RPM_BUILD_ROOT" as the makeinstall macro fails on
  303. some packages.
  304. - Temporary hack to move xcursorgen manpage to 'man1' dir.