xpenguins-vl.spec 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. %define name xpenguins
  2. %define version 2.2
  3. %define release 2%{?_dist_release}
  4. Summary: Cute little penguins that walk along the tops of your windows
  5. Summary(ja): デスクトップやウィンドウの上を歩き回る可愛いペンギン達
  6. Name: %{name}
  7. Version: %{version}
  8. Release: %{release}
  9. License: GPL
  10. Source0: %{name}-%{version}.tar.gz
  11. #Packager: Robin Hogan <R.J.Hogan@reading.ac.uk>
  12. URL: http://xpenguins.seul.org/
  13. Group: Applications/Other
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. BuildRequires: xorg-x11-devel
  16. %description
  17. XPenguins animates a friendly family of penguins in your root window.
  18. They drop in from the top of the screen, walk along the tops of your
  19. windows, up the side of your windows, levitate, skateboard, and do
  20. other similarly exciting things. XPenguins is now themeable so if
  21. you're bored of penguins, try something else. The themes that come
  22. with this package are "Penguins", "Classic Penguins", "Big Penguins",
  23. "Turtles" and "Bill".
  24. %description -l ja
  25. あなたのルートウィンドウ上を可愛らしいペンギン一家が歩き回る
  26. プログラムです.スクリーンの一番上から落ちて来て,ウィンドウの上や横を
  27. 歩き回ったり,飛び回ったり,スケボーで走り回ったり,その他楽しい動作を
  28. 見せてくれます.この xpenguin はテーマ機能をサポートしていますので,
  29. 他のテーマを試すことも出来ます.このパッケージに入っているテーマは
  30. "Penguins", "Classic Penguins", "Big Penguins", "Turtles", "Bill" です.
  31. %prep
  32. %setup
  33. %build
  34. %configure
  35. make
  36. %install
  37. rm -rf ${RPM_BUILD_ROOT}
  38. %makeinstall
  39. %clean
  40. rm -rf ${RPM_BUILD_ROOT}
  41. %files
  42. %defattr(-,root,root)
  43. %doc README AUTHORS COPYING ChangeLog lay-out-frames.scm resize-frames.scm
  44. %attr(755,root,root) %{_bindir}/xpenguins
  45. %{_mandir}/man1/*
  46. %{_datadir}/%{name}/themes/Penguins/*
  47. %{_datadir}/%{name}/themes/Big_Penguins/*
  48. %{_datadir}/%{name}/themes/Classic_Penguins/*
  49. %{_datadir}/%{name}/themes/Turtles/*
  50. %{_datadir}/%{name}/themes/Bill/*
  51. %changelog
  52. * Wed Oct 15 2008 Shu KONNO <owa@bg.wakwak.com> 2.2-2vl5
  53. - applied new versioning policy, spec in utf-8
  54. * Wed Jul 12 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2-1vl2
  55. - rebuilt with new toolchains
  56. - s/Copyright/License/
  57. - changed Group to Applications/Other
  58. * Mon Sep 23 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.2-1vl1
  59. - based on upstream's 2.2-1 and built for Vine Linux
  60. * Mon Oct 1 2001 Robin Hogan <R.J.Hogan@reading.ac.uk> 2.1.5-1
  61. - Removed Lemmings (now in xpenguins_themes), added Bill, Big Penguins
  62. - Added resize-frames.scm to docs
  63. * Wed Aug 22 2001 Robin Hogan <R.J.Hogan@reading.ac.uk> 2.1.3-1
  64. - Added Lemmings theme
  65. * Sat May 5 2001 Robin Hogan <R.J.Hogan@reading.ac.uk> 1.9.1-1
  66. - First spec file used with autoconf
  67. * Tue May 23 2000 Robin Hogan <R.J.Hogan@reading.ac.uk> 1.2-1
  68. - Use BuildRoot.
  69. # end of file