lynx-vl.spec 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. %define _docdir %{_defaultdocdir}
  2. Summary: A text-based Web browser.
  3. Summary(ja): テキストベースのウェブブラウザ
  4. Name: lynx
  5. Version: 2.8.6
  6. Release: 2%{?_dist_release}
  7. License: GPL
  8. Group: Applications/Internet
  9. URL: http://lynx.isc.org/
  10. # Source0: http://lynx.isc.org/current/lynx2.8.5dev.7.tar.bz2
  11. Source0: http://lynx.isc.org/current/lynx2.8.6.tar.bz2
  12. Source1: lynx.cfg.ja
  13. # Patch0: lynx2-8-3-redhat.patch
  14. Patch0: lynx2-8-6-redhat.patch
  15. Patch1: lynx2-8-6-telnet.patch
  16. Patch2: lynx-284-i18ncfg.patch
  17. Patch3: lynx2-8-6-vine.patch
  18. Requires: indexhtml
  19. Provides: webclient
  20. BuildRequires: openssl-devel, ncurses-devel, slang-devel, zlib-devel
  21. Buildroot: %{_tmppath}/%{name}-root
  22. Vendor: Project Vine
  23. Distribution: Vine Linux
  24. %description
  25. Lynx is a text-based Web browser. Lynx does not display any images,
  26. but it does support frames, tables and most other HTML tags. Lynx's
  27. advantage over graphical browsers is its speed--Lynx starts and exits
  28. quickly and swiftly displays Web pages.
  29. Install lynx if you would like to try this fast, non-graphical browser
  30. (you may learn to appreciate its strengths).
  31. %description -l ja
  32. lynx はテキストベースのウェブブラウザである。lynx は何のイメージも
  33. 表示しないがフレーム、テーブルそして他の HTML タグをサポートする。
  34. グラフィカルなブラウザに対する lynx のアドバンテージはスピードである。
  35. lynx はウェブページを表示するのにすばやく即座に開始したり終了したりする。
  36. この速い、グラフィカルでないブラウザを試したければインストールしなさい。
  37. (その長所のよさがわかるであろう)
  38. %prep
  39. %setup -q -n lynx2-8-6
  40. %patch0 -p0
  41. %patch1 -p0 -b .telnet
  42. # %patch2 -p1 -b .i18ncfg
  43. %patch3 -p0 -b .vine
  44. perl -pi -e "s,^HELPFILE:.*,HELPFILE:file://localhost%{_docdir}/lynx-%{version}/lynx_help/lynx_help_main.html,g" lynx.cfg
  45. perl -pi -e "s,^DEFAULT_INDEX_FILE:.*,DEFAULT_INDEX_FILE:http://www.google.com/,g" lynx.cfg
  46. %build
  47. export CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS"
  48. %configure --libdir=/etc \
  49. --with-screen=slang --enable-warnings \
  50. --enable-default-colors --enable-externs \
  51. --enable-internal-links --enable-nsl-fork \
  52. --enable-persistent-cookies --enable-prettysrc \
  53. --disable-font-switch --enable-source-cache \
  54. --enable-kbd-layout --with-zlib \
  55. --enable-charset-choice --enable-file-upload \
  56. --enable-cgi-links --enable-read-eta \
  57. --enable-addrlist-page --enable-cjk \
  58. --enable-justify-elts --enable-scrollbar \
  59. --enable-libjs --enable-cgi-links --enable-nls \
  60. --with-ssl=/usr
  61. make
  62. %install
  63. rm -rf %{buildroot}
  64. %makeinstall mandir=%{buildroot}%{_mandir}/man1 libdir=%{buildroot}/etc
  65. # Install Lang dependent resources
  66. install -m444 %{SOURCE1} %{buildroot}/etc/lynx.cfg.ja
  67. mkdir -p %{buildroot}%{_sysconfdir}/X11/applnk/Internet
  68. cat > %{buildroot}%{_sysconfdir}/X11/applnk/Internet/lynx.desktop <<EOF
  69. [Desktop Entry]
  70. Name=Lynx
  71. Name[ja]=Lynx
  72. Type=Application
  73. Comment=Text based WWW browser
  74. Comment[ja]=テキストベースWWWブラウザ
  75. Exec=lynx
  76. Terminal=true
  77. EOF
  78. %{find_lang} %{name}
  79. # compress huge files in docs
  80. gzip --best --force docs/CHANGES2*
  81. # eliminate executable bit in %doc
  82. find samples/ -type f -perm +111 | xargs chmod -x
  83. %clean
  84. rm -rf %{buildroot}
  85. %files -f %{name}.lang
  86. %defattr(-,root,root)
  87. %doc docs README INSTALLATION samples
  88. %doc test lynx.hlp lynx_help
  89. %doc COPYING CHANGES PROBLEMS
  90. %config(missingok) %{_sysconfdir}/X11/applnk/Internet/lynx.desktop
  91. %{_bindir}/lynx
  92. %{_mandir}/*/*
  93. %config %{_sysconfdir}/lynx.cfg
  94. #%lang(ja) %config %{_sysconfdir}/lynx.cfg.ja
  95. %changelog
  96. * Sun Feb 06 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.6-2
  97. - rebuild with openssl-1.0.0c
  98. * Sat Jul 26 2008 Shu KONNO <owa@bg.wakwak.com> 2.8.6-1vl5
  99. - applied new versioning policy and spec in utf-8
  100. * Mon Dec 25 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.8.6-0vl3
  101. - rebuild for Vine 4.0/VineSeed (0vl2 is exist in Plus 3.x)
  102. * Sun Dec 17 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.8.6-0vl2
  103. - rebuild for Vine 4.0/VineSeed
  104. - update patch3
  105. * Mon Dec 11 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.8.6-0vl1
  106. - new upstream release with security fix (CVE-2005-3120)
  107. * Tue Jan 08 2002 Toru Sagami <sagami@vinelinux.org> 2.8.5-0vl1
  108. - 2.8.5dev.7.tar.gz2
  109. - BuildRequires: slang-devel, zlib-devel
  110. * Fri Dec 28 2001 Toru Sagami <sagami@vinelinux.org>
  111. - 2.8.4pre.5.tar.bz2
  112. * Mon Sep 03 2001 Toru Sagami <sagami@vinelinux.org>
  113. - 2.8.4-7vl5: eliminate executable bit in %%doc
  114. * Mon Jul 16 2001 <sagami@vinelinux.org>
  115. - 2.8.4-7vl4: updated to 2.8.4pre.5
  116. - rebuilt with openssl-0.9.6b
  117. - compress huge CHANGES* files in docs/
  118. * Sun Jul 08 2001 <sagami@vinelinux.org>
  119. - 2.8.4-7vl3: updated to 2.8.4pre.3
  120. - %%{find_lang}, added some documents
  121. - use ja.po derived from source
  122. * Wed Jan 31 2001 sagami@vinelinux.org
  123. - fixed: default index.html location
  124. * Fri Jan 12 2001 Toru Sagami <czs14350@mb.infoweb.ne.jp>
  125. - 2.8.4-7vl1: based on Rawhide 2.8.4-7
  126. * Mon Sep 6 1999 Norihito Ohmori <ohmori@flatout.org>
  127. - ja.po typo fix
  128. * Wed Aug 25 1999 Norihito Ohmori <ohmori@flatout.org>
  129. - Help file position in lynx.cfg bug fix.
  130. * Tue Jul 20 1999 Norihito Ohmori <ohmori@flatout.org>
  131. - ja.po fix
  132. * Mon Jun 28 1999 Norihito Ohmori <ohmori@flatout.org>
  133. - added ja.po (imcomplete).
  134. - use kterm in lynx.wmconfig
  135. - added Japanese summary and description
  136. - change for Vine
  137. - change default CHARSET to Japanese(EUC).
  138. * Tue Jun 15 1999 Bill Nottingham <notting@redhat.com>
  139. - update to 2.8.2
  140. * Mon Mar 29 1999 Bill Nottingham <notting@redhat.com>
  141. - apply some update patches from the lynx folks
  142. - set user's TEMP dir to their home dir to avoid /tmp races
  143. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  144. - auto rebuild in the new build environment (release 10)
  145. * Wed Feb 24 1999 Bill Nottingham <notting@redhat.com>
  146. - return of wmconfig
  147. * Mon Nov 30 1998 Bill Nottingham <notting@redhat.com>
  148. - create cookie file 0600
  149. * Fri Nov 6 1998 Bill Nottingham <notting@redhat.com>
  150. - update to 2.8.1rel2
  151. * Thu Oct 29 1998 Bill Nottingham <notting@redhat.com>
  152. - build for Raw Hide (slang-1.2.2)
  153. * Sat Oct 10 1998 Cristian Gafton <gafton@redhat.com>
  154. - 2.8.1pre9
  155. - strip binaries
  156. * Mon Oct 05 1998 Cristian Gafton <gafton@redhat.com>
  157. - updated to lynx2.8.1pre.7.tar.gz
  158. * Fri May 08 1998 Prospector System <bugs@redhat.com>
  159. - translations modified for de, fr, tr
  160. * Mon May 04 1998 Cristian Gafton <gafton@redhat.com>
  161. - upgraded to 2.8rel3
  162. - fixed mailto: buffer overflow (used Alan's patch)
  163. * Fri Mar 20 1998 Cristian Gafton <gafton@redhat.com>
  164. - updated to 2.8
  165. - added buildroot
  166. * Tue Jan 13 1998 Erik Troan <ewt@redhat.com>
  167. - updated to 2.7.2
  168. - enabled lynxcgi
  169. * Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
  170. - updated from 2.6 to 2.7.1
  171. - moved /usr/lib/lynx.cfg to /etc/lynx.cfg
  172. - build with slang instead of ncurses
  173. - made default startup file be file:/usr/doc/HTML/index.html