gambas3-vl.spec 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779
  1. Summary: BASIC compiler, IDE and GUI builder
  2. Summary(ja): GUI ビルダーを備えた BASIC ベースの統合開発環境(IDE)
  3. Name: gambas3
  4. Version: 3.5.4
  5. Release: 4%{?_dist_release}
  6. Source0: %{name}-%{version}.tar.bz2
  7. Source1: gambas3.desktop
  8. #Source2: gambas2-2.6.0-ja.po
  9. #Source3: gambas2-2.6.0-ja.mo
  10. Patch100: gambas-3.5.4-postgresql-path.patch
  11. License: GPL
  12. Group: Applications/Development
  13. URL: http://gambas.sourceforge.net/
  14. BuildRequires: qt4-devel >= 4.3.4
  15. BuildRequires: curl-devel >= 7.13
  16. BuildRequires: libxml2-devel
  17. BuildRequires: libxslt-devel
  18. BuildRequires: zlib-devel
  19. BuildRequires: bzip2-devel
  20. BuildRequires: libpq-devel
  21. BuildRequires: libmysqlclient-devel
  22. BuildRequires: unixODBC-devel
  23. BuildRequires: sqlite-devel
  24. BuildRequires: sqlite3-devel
  25. BuildRequires: pcre-devel
  26. BuildRequires: librsvg2-devel
  27. BuildRequires: SDL-devel
  28. BuildRequires: SDL_mixer-devel
  29. BuildRequires: SDL_image-devel
  30. BuildRequires: SDL_ttf-devel
  31. BuildRequires: SDL_gfx-devel
  32. BuildRequires: glibc-devel
  33. BuildRequires: libpng-devel
  34. BuildRequires: libjpeg-devel
  35. BuildRequires: kernel-source
  36. BuildRequires: gamin-devel
  37. BuildRequires: poppler-devel >= 0.5
  38. BuildRequires: libffi-devel
  39. BuildRequires: gtk2-devel >= 2.10
  40. BuildRequires: gtkglext-devel
  41. BuildRequires: xorg-x11-proto-devel
  42. BuildRequires: mesa-libGL-devel
  43. BuildRequires: mesa-libGLU-devel
  44. BuildRequires: xdg-utils
  45. BuildRequires: libXtst-devel
  46. BuildRequires: libXmu-devel
  47. BuildRequires: glew-devel
  48. BuildRequires: cairo-devel >= 1.6.0
  49. BuildRequires: libgnome-keyring-devel
  50. BuildRequires: dbus-devel
  51. BuildRequires: imlib2-devel >= 1.4.0
  52. BuildRequires: libv4l-devel
  53. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  54. Vendor: Project Vine
  55. Distribution: Vine Linux
  56. Packager: kazutaka
  57. %description
  58. Gambas is a free development environment based on a Basic interpreter
  59. with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
  60. With Gambas, you can quickly design your program GUI, access MySQL or
  61. PostgreSQL databases, control KDE applications with DCOP, translate
  62. your program into many languages, create network applications easily,
  63. build RPMs of your apps automatically, and so on... You have to install
  64. the necessary components
  65. %description -l ja
  66. Gambas はオブジェクト指向に拡張された BASIC インタプリタベースの、Visual
  67. Basic(TM) に良く似た(でもクローンではありません!)フリーな開発環境です。
  68. Gambas を使えば、GUI のすばやいデザイン、MySQL や PostgreSQL データベース
  69. へのアクセス、DCOP 経由での KDE アプリケーションの制御、プログラムの多言
  70. 語への翻訳、ネットワークアプリケーションの手軽な開発、RPMパッケージの自動
  71. 作成、等々が可能になります。必要に応じてコンポーネントをインストールして
  72. ください。
  73. #-----------------------------------------------------------------------------
  74. %package runtime
  75. Summary: The Gambas runtime
  76. Summary(ja): Gambas ランタイム
  77. Group: Applications/Development
  78. Requires: %{name}-gb-debug = %{version}-%{release}
  79. Requires: %{name}-gb-eval = %{version}-%{release}
  80. Requires: %{name}-gb-geom = %{version}-%{release}
  81. Requires: %{name}-gb-draw = %{version}-%{release}
  82. Requires: %{name}-gb-gui = %{version}-%{release}
  83. Requires(post): xdg-utils
  84. Obsoletes: %{name}-gb-info < 3.0.0
  85. Provides: %{name}-gb-info = %{version}-%{release}
  86. %description runtime
  87. This package includes the Gambas interpreter needed to run Gambas applications.
  88. %description runtime -l ja
  89. このパッケージには Gambas アプリケーションの実行に必要なインタプリタ
  90. が含まれています。
  91. #-----------------------------------------------------------------------------
  92. %package devel
  93. Summary: The development package for Gambas
  94. Summary(ja): Gambas の開発用パッケージ
  95. Group: Applications/Development
  96. %description devel
  97. This package includes all tools needed to compile Gambas projects without
  98. having to install the complete development environment.
  99. %description devel -l ja
  100. このパッケージには、IDE をインストールせずに Gambas アプリケーションを
  101. コンパイルするのに必要なツールが含まれています。
  102. #-----------------------------------------------------------------------------
  103. %package scripter
  104. Summary: The Gambas scripter package
  105. Summary(ja): Gambas スクリプト実行用パッケージ
  106. Group: Applications/Development
  107. Requires: %{name}-runtime = %{version}-%{release}
  108. Requires: %{name}-devel = %{version}-%{release}
  109. %description scripter
  110. This package includes the scripter program that allows to write script
  111. files in Gambas.
  112. %description scripter -l ja
  113. このパッケージには、Gambas で記述したスクリプトを実行する scripter
  114. プログラムが含まれています。
  115. #-----------------------------------------------------------------------------
  116. %package ide
  117. Summary: BASIC compiler, IDE and GUI builder
  118. Summary(ja): GUI ビルダーを備えた BASIC ベースの統合開発環境(IDE)
  119. Group: Applications/Development
  120. Requires: %{name}-runtime = %{version}-%{release}
  121. Requires: %{name}-devel = %{version}-%{release}
  122. Requires: %{name}-gb-db = %{version}-%{release}
  123. Requires: %{name}-gb-db-form = %{version}-%{release}
  124. Requires: %{name}-gb-debug = %{version}-%{release}
  125. Requires: %{name}-gb-desktop = %{version}-%{release}
  126. Requires: %{name}-gb-eval = %{version}-%{release}
  127. Requires: %{name}-gb-eval-highlight = %{version}-%{release}
  128. Requires: %{name}-gb-form = %{version}-%{release}
  129. Requires: %{name}-gb-form-dialog = %{version}-%{release}
  130. Requires: %{name}-gb-form-mdi = %{version}-%{release}
  131. Requires: %{name}-gb-image = %{version}-%{release}
  132. Requires: %{name}-gb-image-effect = %{version}-%{release}
  133. Requires: %{name}-gb-qt4 = %{version}-%{release}
  134. Requires: %{name}-gb-qt4-ext = %{version}-%{release}
  135. Requires: %{name}-gb-qt4-webkit = %{version}-%{release}
  136. Requires: %{name}-gb-settings = %{version}-%{release}
  137. %description ide
  138. Gambas is a free development environment based on a Basic interpreter
  139. with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
  140. With Gambas, you can quickly design your program GUI, access MySQL or
  141. PostgreSQL databases, control KDE applications with DCOP, translate
  142. your program into many languages, create network applications easily,
  143. build RPMs of your apps automatically, and so on... You have to install
  144. the necessary components
  145. This package includes the complete Gambas Development Environment, with the
  146. database manager, the help files, and all components.
  147. %description ide -l ja
  148. Gambas はオブジェクト指向に拡張された BASIC インタプリタベースの、Visual
  149. Basic(TM) に良く似た(でもクローンではありません!)フリーな開発環境です。
  150. Gambas を使えば、GUI のすばやいデザイン、MySQL や PostgreSQL データベース
  151. へのアクセス、DCOP 経由での KDE アプリケーションの制御、プログラムの多言
  152. 語への翻訳、ネットワークアプリケーションの手軽な開発、RPMパッケージの自動
  153. 作成、等々が可能になります。必要に応じてコンポーネントをインストールして
  154. ください。
  155. このパッケージには IDE (統合開発環境)、データベースマネージャ、ヘルプ
  156. ファイル、およびその他のコンポーネントが含まれています。
  157. #-----------------------------------------------------------------------------
  158. %package gb-args
  159. Summary: The Gambas program arguments parser
  160. Summary(ja): Gambas 用プログラム引数解析コンポーネント
  161. Group: Applications/Development
  162. Requires: %{name}-runtime = %{version}-%{release}
  163. %description gb-args
  164. This component allows you to extract options from the program arguments.
  165. %description gb-args -l ja
  166. このコンポーネントによりプログラムの引数からオプションを抽出できる
  167. ようになります。
  168. #-----------------------------------------------------------------------------
  169. %package gb-cairo
  170. Summary: A cairo component
  171. Summary(ja): Cairo コンポーネント
  172. Group: Applications/Development
  173. Requires: %{name}-runtime = %{version}-%{release}
  174. %description gb-cairo
  175. This component allows you to handle vectorial drawing based on Cairo
  176. 2D graphics library.
  177. %description gb-cairo -l ja
  178. このコンポーネントにより Cairo 2D グラフィックライブラリを利用した
  179. ベクトル形式の描画機能を利用できるようになります。
  180. #-----------------------------------------------------------------------------
  181. %package gb-chart
  182. Summary: The Gambas chart component
  183. Summary(ja): Gambas 用 グラフコンポーネント
  184. Group: Applications/Development
  185. Requires: %{name}-runtime = %{version}-%{release}
  186. %description gb-chart
  187. This component provides functions to draw chats.
  188. %description gb-chart -l ja
  189. このコンポーネントはグラフを作図する機能を提供します。
  190. #-----------------------------------------------------------------------------
  191. %package gb-clipper
  192. Summary: A polygon management based on Clipper library for Gambas
  193. Summary(ja): Gambas 用 Clipper ライブラリベースのポリゴン管理コンポーネント
  194. Group: Applications/Development
  195. Requires: %{name}-runtime = %{version}-%{release}
  196. %description gb-clipper
  197. This component implements polygon clipping methods based on the
  198. Clipper library.
  199. %description gb-clipper -l ja
  200. このコンポーネントは Clipper ライブラリベースのポリゴンの切り出し機能を
  201. 実装しています。
  202. #-----------------------------------------------------------------------------
  203. %package gb-complex
  204. Summary: A complex number component
  205. Summary(ja): 複素数コンポーネント
  206. Group: Applications/Development
  207. Requires: %{name}-runtime = %{version}-%{release}
  208. %description gb-complex
  209. This component brings complex numbers support to the interpreter.
  210. %description gb-complex -l ja
  211. このコンポーネントによりインタープリターに複素数のサポートします。
  212. #-----------------------------------------------------------------------------
  213. %package gb-compress
  214. Summary: A compression component
  215. Summary(ja): 圧縮コンポーネント
  216. Group: Applications/Development
  217. Requires: %{name}-runtime = %{version}-%{release}
  218. %description gb-compress
  219. This component allows you to compress/uncompress data or files with
  220. the bzip2 and zip algorithms.
  221. %description gb-compress -l ja
  222. このコンポーネントによりデータやファイルを bzip2 および zip 形式で圧縮
  223. できるようになります。
  224. #-----------------------------------------------------------------------------
  225. %package gb-crypt
  226. Summary: The Gambas crypt component
  227. Summary(ja): Gambas 用暗号化コンポーネント
  228. Group: Applications/Development
  229. Requires: %{name}-runtime = %{version}-%{release}
  230. %description gb-crypt
  231. This component provides crypt function to Gambas, that allows
  232. to use the crypt() Gnu C library function.
  233. %description gb-crypt -l ja
  234. このコンポーネントにより GNU C ライブラリの crypt() を利用した
  235. 暗号化機能が利用できるようになります。
  236. #-----------------------------------------------------------------------------
  237. %package gb-data
  238. Summary: More container datatypes component
  239. Summary(ja): 様々なコンテナデータ型コンポーネント
  240. Group: Applications/Development
  241. Requires: %{name}-runtime = %{version}-%{release}
  242. %description gb-data
  243. %{summary}
  244. #-----------------------------------------------------------------------------
  245. %package gb-db
  246. Summary: The database component
  247. Summary(ja): データベースコンポーネント
  248. Group: Applications/Development
  249. Requires: %{name}-runtime = %{version}-%{release}
  250. %description gb-db
  251. This component allows you to access many databases management systems,
  252. provided that you install the needed driver packages.
  253. %description gb-db -l ja
  254. このコンポーネントにより様々な種類のデータベース管理システムにアクセス
  255. できるようになります。(ただし各データベース用のドライバをあらかじめ
  256. インストールしておく必要があります。)
  257. #-----------------------------------------------------------------------------
  258. %package gb-db-form
  259. Summary: The database form component
  260. Summary(ja): データベース用フォームコンポーネント
  261. Group: Applications/Development
  262. Requires: %{name}-runtime = %{version}-%{release}
  263. Requires: %{name}-gb-db = %{version}-%{release}
  264. %description gb-db-form
  265. This component provides some data bound controls, i.e. controls that can
  266. display and edit database records automatically.
  267. %description gb-db-form -l ja
  268. このコンポーネントはいくつかのデータバウンドコントロールを提供します。
  269. (例えばデータベースのレコードを自動的に表示/編集できるコントロールなど)
  270. #-----------------------------------------------------------------------------
  271. %package gb-db-mysql
  272. Summary: The MySQL driver for the Gambas database component
  273. Summary(ja): Gambas データベースコンポーネント用の MySQL ドライバ
  274. Group: Applications/Development
  275. Requires: %{name}-runtime = %{version}-%{release}
  276. Requires: %{name}-gb-db = %{version}-%{release}
  277. %description gb-db-mysql
  278. This component allows you to access MySQL databases.
  279. %description gb-db-mysql -l ja
  280. このコンポーネントにより MySQL データベースにアクセスできるように
  281. なります。
  282. #-----------------------------------------------------------------------------
  283. %package gb-db-odbc
  284. Summary: The ODBC driver for the Gambas database component
  285. Summary(ja): Gambas データベースコンポーネント用の ODBC ドライバ
  286. Group: Applications/Development
  287. Requires: %{name}-runtime = %{version}-%{release}
  288. Requires: %{name}-gb-db = %{version}-%{release}
  289. %description gb-db-odbc
  290. This component allows you to access databases via unixODBC.
  291. %description gb-db-odbc -l ja
  292. このコンポーネントにより unixODBC経由でデータベースにアクセスできるよう
  293. になります。
  294. #-----------------------------------------------------------------------------
  295. %package gb-db-postgresql
  296. Summary: The postgresql driver for the Gambas database component
  297. Summary(ja): Gambas データベースコンポーネント用の postgresql ドライバ
  298. Group: Applications/Development
  299. Requires: %{name}-runtime = %{version}-%{release}
  300. Requires: %{name}-gb-db = %{version}-%{release}
  301. %description gb-db-postgresql
  302. This component allows you to access postgresql databases.
  303. %description gb-db-postgresql -l ja
  304. このコンポーネントにより postgresql データベースにアクセスできるように
  305. なります。
  306. #-----------------------------------------------------------------------------
  307. %package gb-db-sqlite2
  308. Summary: The SQLite2 driver for the Gambas database component
  309. Summary(ja): Gambas データベースコンポーネント用の SQLite2 ドライバ
  310. Group: Applications/Development
  311. Requires: %{name}-runtime = %{version}-%{release}
  312. Requires: %{name}-gb-db = %{version}-%{release}
  313. Requires: sqlite
  314. %description gb-db-sqlite2
  315. This component allows you to access SQLite2 databases.
  316. %description gb-db-sqlite2 -l ja
  317. このコンポーネントにより SQLite2 データベースにアクセスできるように
  318. なります。
  319. #-----------------------------------------------------------------------------
  320. %package gb-db-sqlite3
  321. Summary: The SQLite3 driver for the Gambas database component
  322. Summary(ja): Gambas データベースコンポーネント用の SQLite3 ドライバ
  323. Group: Applications/Development
  324. Requires: %{name}-runtime = %{version}-%{release}
  325. Requires: %{name}-gb-db = %{version}-%{release}
  326. Requires: sqlite3
  327. %description gb-db-sqlite3
  328. This component allows you to access SQLite3 databases.
  329. %description gb-db-sqlite3 -l ja
  330. このコンポーネントにより SQLite3 データベースにアクセスできるように
  331. なります。
  332. #-----------------------------------------------------------------------------
  333. %package gb-debug
  334. Summary: A debugger helper for the IDE
  335. Summary(ja): IDE 用のデバッガヘルパー
  336. Group: Applications/Development
  337. Requires: %{name}-runtime = %{version}-%{release}
  338. %description gb-debug
  339. This component helps the IDE to debug Gambas programs.
  340. %description gb-debug -l ja
  341. このコンポーネントは IDE 上でのデバッグを支援します。
  342. #-----------------------------------------------------------------------------
  343. %package gb-desktop
  344. Summary: The Gambas desktop component.
  345. Summary(ja): Gambas 用 デスクトップコンポーネント
  346. Group: Applications/Development
  347. Requires: %{name}-runtime = %{version}-%{release}
  348. Requires: %{name}-gb-form = %{version}-%{release}
  349. Requires: %{name}-gb-image = %{version}-%{release}
  350. %description gb-desktop
  351. This component provides some functions based on the xdg-tools of Portland
  352. Project. It can be commonly used in diffrent desktop environment.
  353. %description gb-desktop -l ja
  354. このコンポーネントは Portland Project の xdg-utils をベースにした、
  355. 異なるデスクトップ環境で共用できる機能を提供します。
  356. #-----------------------------------------------------------------------------
  357. %package gb-draw
  358. Summary: The Gambas draw component.
  359. Summary(ja): Gambas 用 描画コンポーネント
  360. Group: Applications/Development
  361. Requires: %{name}-runtime = %{version}-%{release}
  362. %description gb-draw
  363. This component provides drawing class to gambas.
  364. This component was originally implemented as an intenal
  365. class, But now it is separated as a component.
  366. %description gb-draw -l ja
  367. このコンポーネントは描画用のクラスを提供します。
  368. このコンポーネントは、元々内部クラスとして実装されていましたが、
  369. 別コンポーネントとして分離されました。
  370. #-----------------------------------------------------------------------------
  371. %package gb-dbus
  372. Summary: The Gambas dbus component.
  373. Summary(ja): Gambas 用 dbus コンポーネント
  374. Group: Applications/Development
  375. Requires: %{name}-runtime = %{version}-%{release}
  376. %description gb-dbus
  377. This component allows to take part in the D-Bus system.
  378. %description gb-dbus -l ja
  379. このコンポーネントにより、D-Bus システムを経由したメッセージの
  380. 送受信が利用できるようになります。
  381. #-----------------------------------------------------------------------------
  382. %package gb-eval
  383. Summary: An expression evaluator component
  384. Summary(ja): 式評価用のコンポーネント
  385. Group: Applications/Development
  386. Requires: %{name}-runtime = %{version}-%{release}
  387. %description gb-eval
  388. This component allows you to evaluate expressions at runtime.
  389. It is used by the Gambas Eval() function.
  390. %description gb-eval -l ja
  391. このコンポーネントにより実行時に式を評価できるようになります。
  392. これは Gambas Eval() ファンクションで使用されます。
  393. #-----------------------------------------------------------------------------
  394. %package gb-eval-highlight
  395. Summary: An expression evaluator highlight component
  396. Summary(ja): 式評価のハイライト用コンポーネント
  397. Group: Applications/Development
  398. Requires: %{name}-runtime = %{version}-%{release}
  399. Requires: %{name}-gb-eval = %{version}-%{release}
  400. %description gb-eval-highlight
  401. This component provides some useful features for analyzing and highlighting
  402. a line of Gambas code.
  403. %description gb-eval-highlight -l ja
  404. このコンポーネントは、Gambas のコードを分析する時に便利なハイライト表示
  405. 機能を提供します。
  406. #-----------------------------------------------------------------------------
  407. %package gb-form
  408. Summary: The Gambas form component
  409. SUmmary(ja): Gambas 用フォームコンポーネント
  410. Group: Applications/Development
  411. Requires: %{name}-runtime = %{version}-%{release}
  412. %description gb-form
  413. Implements a toolkit-independent form class for Gambas.
  414. %description gb-form -l ja
  415. Gambas 用のツールキットに依存しないフォームクラスの実装です。
  416. #-----------------------------------------------------------------------------
  417. %package gb-form-dialog
  418. Summary: The Gambas enhanced dialog form component
  419. SUmmary(ja): Gambas 用拡張ダイアログフォームコンポーネント
  420. Group: Applications/Development
  421. Requires: %{name}-runtime = %{version}-%{release}
  422. %description gb-form-dialog
  423. Implements a enhanced dialog form class for Gambas.
  424. %description gb-form-dialog -l ja
  425. Gambas 用の拡張されたダイアログフォームクラスの実装です。
  426. #-----------------------------------------------------------------------------
  427. %package gb-form-mdi
  428. Summary: The Gambas mdi form component
  429. SUmmary(ja): Gambas 用 MDI フォームコンポーネント
  430. Group: Applications/Development
  431. Requires: %{name}-runtime = %{version}-%{release}
  432. %description gb-form-mdi
  433. Implements a new version of the Workspace control for Gambas.
  434. %description gb-form-mdi -l ja
  435. Gambas 用の新しいバージョンのワークスペースコントロールの実装です。
  436. #-----------------------------------------------------------------------------
  437. %package gb-geom
  438. Summary: The Gambas Geometry component
  439. Summary(ja): Gambas 用幾何学コンポーネント
  440. Group: Applications/Development
  441. Requires: %{name}-runtime = %{version}-%{release}
  442. %description gb-geom
  443. This package includes the Gambas Geometry component.
  444. %description gb-geom -l ja
  445. このパッケージには Gambas 用の 幾何学コンポーネントが含まれています。
  446. #-----------------------------------------------------------------------------
  447. %package gb-gtk
  448. Summary: The Gambas Gtk GUI component
  449. Summary(ja): GTK GUI コンポーネント
  450. Group: Applications/Development
  451. Requires: %{name}-runtime = %{version}-%{release}
  452. Requires: gtk2 >= 2.10
  453. %description gb-gtk
  454. This package includes the Gambas GTK GUI component.
  455. %description gb-gtk -l ja
  456. このパッケージには Gambas 用の GTK GUI コンポーネントが含まれています。
  457. #-----------------------------------------------------------------------------
  458. %package gb-httpd
  459. Summary: The Gambas httpd component
  460. Summary(ja): GTK OpenGL コンポーネント
  461. Group: Applications/Development
  462. Requires: %{name}-runtime = %{version}-%{release}
  463. Requires: apache2
  464. %description gb-httpd
  465. This package includes the Gambas httpd component.
  466. %description gb-httpd -l ja
  467. このパッケージには Gambas 用の httpd コンポーネントが含まれています。
  468. #-----------------------------------------------------------------------------
  469. %package gb-gtk-opengl
  470. Summary: The Gambas Gtk OpenGL component
  471. Summary(ja): GTK OpenGL コンポーネント
  472. Group: Applications/Development
  473. Requires: %{name}-runtime = %{version}-%{release}
  474. %description gb-gtk-opengl
  475. This package includes the Gambas GTK OpenGL component.
  476. %description gb-gtk-opengl -l ja
  477. このパッケージには Gambas 用の GTK OpenGL コンポーネントが含まれています。
  478. #-----------------------------------------------------------------------------
  479. %package gb-gui
  480. Summary: The Gambas GUI component.
  481. Summary(ja): Gambas 用 GUI コンポーネント
  482. Group: Applications/Development
  483. Requires: %{name}-runtime = %{version}-%{release}
  484. %description gb-gui
  485. This component allows you to load gb.qt4 component when KDE is
  486. running or gtk component when GNOME is running.
  487. %description gb-gui -l ja
  488. このコンポーネントにより、KDE 環境では gb.qt4 コンポーネントを、
  489. GNOME 環境では gb.gtk コンポーネントを読み込むことができるように
  490. なります。
  491. #-----------------------------------------------------------------------------
  492. %package gb-image
  493. Summary: The Gambas image component.
  494. Summary(ja): Gambas 用のイメージ編集コンポーネント
  495. Group: Applications/Development
  496. Requires: %{name}-runtime = %{version}-%{release}
  497. %description gb-image
  498. This component implements image and color management routines. The filter and
  499. effects routines are now located in the gb.image.effect component.
  500. %description gb-image -l ja
  501. このコンポーネントはイメージ及び色管理用のルーチンを実装しています。
  502. 実際のフィルタやエフェクトは gb.image.effect コンポーネントに含まれています。
  503. #-----------------------------------------------------------------------------
  504. %package gb-image-effect
  505. Summary: The Gambas image effect component.
  506. Summary(ja): Gambas 用のイメージエフェクトコンポーネント
  507. Group: Applications/Development
  508. Requires: %{name}-runtime = %{version}-%{release}
  509. Requires: %{name}-gb-image = %{version}-%{release}
  510. %description gb-image-effect
  511. This component implements image filtering routines.
  512. %description gb-image-effect -l ja
  513. このコンポーネントはイメージへのフィルタやエフェクト用ルーチンを実装して
  514. います。
  515. #-----------------------------------------------------------------------------
  516. %package gb-image-imlib
  517. Summary: The Gambas imlib component.
  518. Summary(ja): Gambas 用の Imlib コンポーネント
  519. Group: Applications/Development
  520. Requires: %{name}-runtime = %{version}-%{release}
  521. Requires: %{name}-gb-image = %{version}-%{release}
  522. Requires: imlib2 >= 1.4.0
  523. %description gb-image-imlib
  524. This component implements image routines based on the Imlib2 library.
  525. %description gb-image-imlib -l ja
  526. このコンポーネントは Imlib2 ライブラリを利用したイメージ用ルーチンを実装
  527. しています。
  528. #-----------------------------------------------------------------------------
  529. %package gb-image-io
  530. Summary: The Gambas image io component.
  531. Summary(ja): Gambas 用のイメージ入出力コンポーネント
  532. Group: Applications/Development
  533. Requires: %{name}-runtime = %{version}-%{release}
  534. Requires: %{name}-gb-image = %{version}-%{release}
  535. %description gb-image-io
  536. This component implements image loading and saving routines.
  537. %description gb-image-io -l ja
  538. このコンポーネントはイメージの入出力用ルーチンを実装しています。
  539. #-----------------------------------------------------------------------------
  540. %package gb-libxml
  541. Summary: The Gambas libxml component.
  542. Summary(ja): Gambas 用の libxml コンポーネント
  543. Group: Applications/Development
  544. Requires: %{name}-runtime = %{version}-%{release}
  545. %description gb-libxml
  546. This component implements image routines based on the libxml library.
  547. %description gb-libxml -l ja
  548. このコンポーネントは libxml ライブラリを利用したイメージ用ルーチンを実装
  549. しています。
  550. #-----------------------------------------------------------------------------
  551. %package gb-logging
  552. Summary: The Gambas loggin component.
  553. Summary(ja): Gambas 用の loggin コンポーネント
  554. Group: Applications/Development
  555. Requires: %{name}-runtime = %{version}-%{release}
  556. %description gb-logging
  557. This package includes the Gambas loggin component.
  558. %description gb-logging -l j
  559. このパッケージには Gambas 用のロギングコンポーネントが含まれています。
  560. #-----------------------------------------------------------------------------
  561. %package gb-map
  562. Summary: The Gambas map component.
  563. Summary(ja): Gambas 用の map コンポーネント
  564. Group: Applications/Development
  565. Requires: %{name}-runtime = %{version}-%{release}
  566. %description gb-map
  567. This component allows to display map tiles from different sources on
  568. multiples layers.
  569. %description gb-map -l ja
  570. このパッケージにより、様々なレイヤー上に様々なソースから入手した地図を
  571. 表示することができます。
  572. #-----------------------------------------------------------------------------
  573. %package gb-memcached
  574. Summary: The Gambas Memcached component.
  575. Summary(ja): Gambas 用の Memcached コンポーネント
  576. Group: Applications/Development
  577. Requires: %{name}-runtime = %{version}-%{release}
  578. %description gb-memcached
  579. This component aims at providing a fully usable interface of Memcached.
  580. %description gb-memcached -l ja
  581. このコンポーネントにより Memcached の機能を全て網羅したインターフェースを
  582. 利用することができます。
  583. #-----------------------------------------------------------------------------
  584. %package gb-mysql
  585. Summary: The MySQL specific routine for the Gambas database component
  586. Summary(ja): Gambas データベースコンポーネントの MySQL 専用ドライバ
  587. Group: Applications/Development
  588. Requires: %{name}-runtime = %{version}-%{release}
  589. Requires: %{name}-gb-db = %{version}-%{release}
  590. %description gb-mysql
  591. This component allows you to access MySQL databases with MySQL specific
  592. routines.
  593. %description gb-mysql -l ja
  594. このコンポーネントにより MySQL データベースに固有のデータ形式でアクセスでき
  595. るようになります。
  596. #-----------------------------------------------------------------------------
  597. %package gb-ncurses
  598. Summary: The Gambas ncurses component.
  599. Summary(ja): Gambas 用の ncurses コンポーネント
  600. Group: Applications/Development
  601. Requires: %{name}-runtime = %{version}-%{release}
  602. %description gb-ncurses
  603. This component implements image routines based on the ncurses library.
  604. %description gb-ncurses -l ja
  605. このコンポーネントは ncurses ライブラリを利用したイメージ用ルーチンを実装
  606. しています。
  607. #-----------------------------------------------------------------------------
  608. %package gb-net
  609. Summary: The networking component
  610. Summary(ja): ネットワーク制御用のコンポーネント
  611. Group: Applications/Development
  612. Requires: %{name}-runtime = %{version}-%{release}
  613. %description gb-net
  614. This component allows you to use TCP/IP and UDP sockets, and to access
  615. any serial ports.
  616. %description gb-net -l ja
  617. このコンポーネントにより TCP/IP と UDP ソケットの使用、およびシリアル
  618. ポートへのアクセスができるようになります。
  619. #-----------------------------------------------------------------------------
  620. %package gb-net-curl
  621. Summary: The advanced networking component
  622. Summary(ja): 高度なネットワーク制御用のコンポーネント
  623. Group: Applications/Development
  624. Requires: %{name}-runtime = %{version}-%{release}
  625. Requires: %{name}-gb-net = %{version}-%{release}
  626. Requires: curl >= 7.13
  627. %description gb-net-curl
  628. This component allows your programs to easily become FTP or HTTP clients.
  629. %description gb-net-curl -l ja
  630. このコンポーネントにより FTP または HTTP クライアントの開発が容易に
  631. できるようになります。
  632. #-----------------------------------------------------------------------------
  633. %package gb-net-smtp
  634. Summary: The Gambas SMTP component
  635. Summary(ja): Gambas 用 SMTP コンポーネント
  636. Group: Applications/Development
  637. Requires: %{name}-runtime = %{version}-%{release}
  638. Requires: %{name}-gb-net = %{version}-%{release}
  639. %description gb-net-smtp
  640. This component allows you to use SMTP (Simple Mail Transfer Protocol).
  641. %description gb-net-smtp -l ja
  642. このコンポーネントにより SMTP プロトコルを利用できるようになります。
  643. #-----------------------------------------------------------------------------
  644. %package gb-opengl
  645. Summary: The Gambas OpenGL component.
  646. Summary(ja): Gambas 用 OpenGL コンポーネント
  647. Group: Applications/Development
  648. Requires: %{name}-runtime = %{version}-%{release}
  649. Requires: XOrg-gl
  650. %description gb-opengl
  651. This component provides OpenGL library function to Gambas for
  652. hardware assisted computer graphics.
  653. %description gb-opengl -l ja
  654. このコンポーネントにより OpenGL ライブラリを使用したハードウェア描画
  655. 機能が利用できるようになります。
  656. #-----------------------------------------------------------------------------
  657. %package gb-opengl-glsl
  658. Summary: The Gambas OpenGL shading language component.
  659. Summary(ja): Gambas 用 OpenGL シェーディング言語コンポーネント
  660. Group: Applications/Development
  661. Requires: %{name}-runtime = %{version}-%{release}
  662. Requires: XOrg-gl
  663. %description gb-opengl-glsl
  664. This component provides OpenGL shading language library function to Gambas
  665. for hardware assisted computer graphics.
  666. %description gb-opengl-glsl -l ja
  667. このコンポーネントにより OpenGL シェーディング言語ライブラリを使用した
  668. ハードウェア描画機能が利用できるようになります。
  669. #-----------------------------------------------------------------------------
  670. %package gb-opengl-glu
  671. Summary: The Gambas OpenGL utility component.
  672. Summary(ja): Gambas 用 OpenGL ユーティリティコンポーネント
  673. Group: Applications/Development
  674. Requires: %{name}-runtime = %{version}-%{release}
  675. Requires: XOrg-gl
  676. %description gb-opengl-glu
  677. This component provides OpenGL utility library function.
  678. %description gb-opengl-glu -l ja
  679. このコンポーネントにより OpenGL ユーティリティライブラリ機能が利用
  680. できるようになります。
  681. #-----------------------------------------------------------------------------
  682. %package gb-opengl-sge
  683. Summary: A simple OpenGL game engine for Gambas
  684. Summary(ja): Gambas 用のシンプルな OpenGL ゲームエンジン
  685. Group: Applications/Development
  686. Requires: %{name}-runtime = %{version}-%{release}
  687. Requires: XOrg-gl
  688. %description gb-opengl-sge
  689. This component is a simple OpenGL game engine based on the MD2 model format.
  690. %description gb-opengl-sge -l ja
  691. このコンポーネントにより MD2 モデルフォーマットをベースとしたシンプルな
  692. OpenGL ゲームエンジンを利用することができます。
  693. #-----------------------------------------------------------------------------
  694. %package gb-openssl
  695. Summary: The Gambas OpenSSL library routines.
  696. Summary(ja): Gambas 用 OpenSSL ライブラリルーチン
  697. Group: Applications/Development
  698. Requires: %{name}-runtime = %{version}-%{release}
  699. Requires: openssl
  700. %description gb-openssl
  701. This package includes the Gambas OpenSLL component.
  702. %description gb-openssl -l ja
  703. このパッケージには Gambas 用の OpenSSL コンポーネントが含まれています。
  704. #-----------------------------------------------------------------------------
  705. %package gb-option
  706. Summary: The Gambas command line option component.
  707. Summary(ja): Gambas 用コマンドラインオプションコンポーネント
  708. Group: Applications/Development
  709. Requires: %{name}-runtime = %{version}-%{release}
  710. %description gb-option
  711. This component is an interface to the getopt() C library function for
  712. interpreting the program command-line.
  713. %description gb-option -l ja
  714. このコンポーネントはプログラムのコマンドラインを解釈する、C ライプラリの
  715. getopt() 関数へのインターフェースです。
  716. #-----------------------------------------------------------------------------
  717. %package gb-pcre
  718. Summary: The Gambas perl-compatible regular expression compon ent.
  719. Summary(ja): Perl互換の正規表現ライブラリの Gambas 用コンポーネント
  720. Group: Applications/Development
  721. Requires: %{name}-runtime = %{version}-%{release}
  722. Requires: pcre
  723. %description gb-pcre
  724. This component provides perl-compatible regular expressions to Gambas for
  725. powerful text processing and pattern matching.
  726. %description gb-pcre -l ja
  727. このコンポーネントにより Perl 互換の正規表現ライブラリの持つ強力なテキスト
  728. 処理機能及びパターンマッチング機能が利用できるようになります。
  729. #-----------------------------------------------------------------------------
  730. %package gb-pdf
  731. Summary: The Gambas PDF component.
  732. Summary(ja): Gambas 用 PDF コンポーネント
  733. Group: Applications/Development
  734. Requires: %{name}-runtime = %{version}-%{release}
  735. Requires: poppler >= 0.5
  736. %description gb-pdf
  737. This component privides functions for decoding PDF documents using
  738. poppler library.
  739. %description gb-pdf -l ja
  740. このコンポーネントにより、PDF 文書を描画できるようになります。
  741. #-----------------------------------------------------------------------------
  742. %package gb-qt4
  743. Summary: The Qt4 GUI component
  744. Summary(ja): Qt4 GUI コンポーネント
  745. Group: Applications/Development
  746. Requires: %{name}-runtime = %{version}-%{release}
  747. Requires: qt4 >= 4.3.4
  748. %description gb-qt4
  749. This package includes the Gambas QT4 GUI component.
  750. %description gb-qt4 -l ja
  751. このパッケージには Gambas 用の QT4 GUI コンポーネントが含まれています。
  752. #-----------------------------------------------------------------------------
  753. %package gb-qt4-ext
  754. Summary: The extended Qt GUI component
  755. Summary(ja): 拡張 Qt GUI コンポーネント
  756. Group: Applications/Development
  757. Requires: %{name}-runtime = %{version}-%{release}
  758. Requires: %{name}-gb-qt4 = %{version}-%{release}
  759. %description gb-qt4-ext
  760. This component includes somme uncommon QT controls.
  761. %description gb-qt4-ext -l es
  762. このコンポーネントには追加の Qt コントロールが含まれています。
  763. #-----------------------------------------------------------------------------
  764. %package gb-qt4-webkit
  765. Summary: The browser component based on WebKit
  766. Summary(ja): WebKit ベースのブラウザコンポーネント
  767. Group: Applications/Development
  768. Requires: %{name}-runtime = %{version}-%{release}
  769. Requires: %{name}-gb-qt4 = %{version}-%{release}
  770. %description gb-qt4-webkit
  771. This component allows to embed the WebKit browser in your application.
  772. %description gb-qt4-webkit -l ja
  773. このコンポーネントにより WebKit ブラウザをアプリケーションに組み込む
  774. ことができるようになります。
  775. #-----------------------------------------------------------------------------
  776. %package gb-qt4-opengl
  777. Summary: The QT4 OpenGL component.
  778. Summary(ja): QT4 用 OpenGL コンポーネント
  779. Group: Applications/Development
  780. Requires: %{name}-runtime = %{version}-%{release}
  781. Requires: XOrg-gl
  782. %description gb-qt4-opengl
  783. This component provides QT4 widget for OpenGL library.
  784. %description gb-qt4-opengl -l ja
  785. このコンポーネントにより OpenGL ライブラリ用の QT4 ウィジェットが
  786. 利用できるようになります。
  787. #-----------------------------------------------------------------------------
  788. %package gb-report
  789. Summary: The Gambas report component.
  790. Summary(ja): Gambas 用 レポートコンポーネント
  791. Group: Applications/Development
  792. Requires: %{name}-runtime = %{version}-%{release}
  793. %description gb-report
  794. This component will become the Gambas report designer.
  795. %description gb-report -l ja
  796. このコンポーネントはいずれ Gambas 用のレポートデザイナになる予定です。
  797. #-----------------------------------------------------------------------------
  798. %package gb-sdl
  799. Summary: The Gambas SDL component
  800. Summary(ja): Gambas 用 SDL コンポーネント
  801. Group: Applications/Development
  802. Requires: %{name}-runtime = %{version}-%{release}
  803. Requires: SDL
  804. %description gb-sdl
  805. This component provides access to the basic functions and the image
  806. part of the SDL library.
  807. It provides a drawing surface that is faster than normal X11 toolkits.
  808. %description gb-sdl -l ja
  809. このコンポーネントは SDL ライブラリの基本機能およびイメージ機能への
  810. アクセスを提供しています。
  811. これは X ツールキットよりも高速な描画サーフェースを提供します。
  812. #-----------------------------------------------------------------------------
  813. %package gb-sdl-sound
  814. Summary: The Gambas SDL sound component
  815. Summary(ja): SDL サウンドコンポーネント
  816. Group: Applications/Development
  817. Requires: %{name}-runtime = %{version}-%{release}
  818. Requires: SDL_mixer
  819. %description gb-sdl-sound
  820. This component uses only the sound part of the SDL library. It allows you to
  821. simultaneously play many sounds and a music stored in a file.
  822. %description gb-sdl-sound -l ja
  823. このコンポーネントは SDL ライブラリのサウンド部分のみを使用しています。
  824. これにより多くの種類の音声や音楽を同時に再生する事ができるようになります。
  825. #-----------------------------------------------------------------------------
  826. %package gb-settings
  827. Summary: The Gambas settings component
  828. Summary(ja): Gambas 設定用コンポーネント
  829. Group: Applications/Development
  830. Requires: %{name}-runtime = %{version}-%{release}
  831. %description gb-settings
  832. Implements a persistent settings interface for Gambas.
  833. %description gb-settings -l ja
  834. Gambas 用の設定インターフェースの実装です。
  835. #-----------------------------------------------------------------------------
  836. %package gb-signal
  837. Summary: The Gambas POSIX signal component
  838. Summary(ja): Gambas 用 POSIX シグナルコンポーネント
  839. Group: Applications/Development
  840. Requires: %{name}-runtime = %{version}-%{release}
  841. %description gb-signal
  842. This component allows to ignore POSIX signals, or intercept them inside an
  843. event handler.
  844. %description gb-signal -l ja
  845. このコンポーネントにより、イベントハンドラ中で POSIX シグナルを無理したり
  846. 横取りすることが可能になります。
  847. #-----------------------------------------------------------------------------
  848. %package gb-v4l
  849. Summary: The Gambas V4L(Video for Linux) component.
  850. Summary(ja): Gambas 用 V4L(Video for Linux) コンポーネント
  851. Group: Applications/Development
  852. Requires: %{name}-runtime = %{version}-%{release}
  853. Requires: libpng
  854. Requires: libjpeg
  855. %description gb-v4l
  856. This component provides access to all v4l devices with capture support.
  857. Capturing images from webcams, TV cards and other sources supported by
  858. the v4l (video for Linux) interface is available.
  859. .
  860. %description gb-v4l -l ja
  861. このコンポーネントにより すべての V4L デバイスにアクセスできるようになります。
  862. Webカメラ、TVカード及びその他の V4L がサポートするデバイスから、イメージの
  863. 取り込みが可能になります。
  864. #-----------------------------------------------------------------------------
  865. %package gb-vb
  866. Summary: The Visual Basic(tm) compatibility component
  867. Summary(ja): Visual Basic(TM) 互換性用コンポーネント
  868. Group: Applications/Development
  869. Requires: %{name}-runtime = %{version}-%{release}
  870. %description gb-vb
  871. This component aims at including some functions that imitate the behaviour
  872. of Visual Basic(tm) functions. Use it only if you try to port some VB
  873. projects.
  874. %description gb-vb -l ja
  875. このコンポーネントは Visual Basic(TM) の機能を模倣した関数を含むことを
  876. 目的としています。VB プロジェクトを移植する必要がある場合にのみインス
  877. トールしてください。
  878. #-----------------------------------------------------------------------------
  879. %package gb-xml
  880. Summary: The Gambas XML components based on the libxml2 library
  881. Summary(ja): libXml2 ライブラリベースの Gambas 用 XML コンポーネント
  882. Group: Applications/Development
  883. Requires: %{name}-runtime = %{version}-%{release}
  884. %description gb-xml
  885. This component allows you to read and write XML files. It is based on libxml2.
  886. %description gb-xml -l ja
  887. このコンポーネントにより libxml2 ライブラリを利用した XML ファイルの
  888. 読み書きが可能になります。
  889. #-----------------------------------------------------------------------------
  890. %package gb-xml-html
  891. Summary: XML-HTML protocol implementation for Gambas
  892. Summary(ja): Gambas 用 XML-HTML プロトコルの実装
  893. Group: Applications/Development
  894. Requires: %{name}-runtime = %{version}-%{release}
  895. Requires: %{name}-gb-xml = %{version}-%{release}
  896. %description gb-xml-html
  897. These components provides XML-HTML protocol implementation for Gambas.
  898. %description gb-xml-html -l ja
  899. このコンポーネントは Gambas 用の XML-HTML プロトコルの実装を提供します。
  900. #-----------------------------------------------------------------------------
  901. %package gb-xml-rpc
  902. Summary: XML-RPC protocol implementation for Gambas
  903. Summary(ja): Gambas 用 XML-RPC プロトコルの実装
  904. Group: Applications/Development
  905. Requires: %{name}-runtime = %{version}-%{release}
  906. Requires: %{name}-gb-xml = %{version}-%{release}
  907. %description gb-xml-rpc
  908. These components provides XML-RPC protocol implementation for Gambas.
  909. %description gb-xml-rpc -l ja
  910. このコンポーネントは Gambas 用の XML-RPC プロトコルの実装を提供します。
  911. #-----------------------------------------------------------------------------
  912. %package gb-xml-xslt
  913. Summary: The Gambas XSLT components based on the libxslt library
  914. Summary(ja): libXslt ライブラリベースの Gambas 用 XSLT コンポーネント
  915. Group: Applications/Development
  916. Requires: %{name}-runtime = %{version}-%{release}
  917. Requires: %{name}-gb-xml = %{version}-%{release}
  918. %description gb-xml-xslt
  919. This component allows you to parse XML files to HTML files.
  920. It is based on libxslt.
  921. %description gb-xml-xslt -l ja
  922. このコンポーネントにより libxslt ライブラリを利用した XML ファイルの
  923. HTML への変換が可能になります。
  924. #-----------------------------------------------------------------------------
  925. %package gb-web
  926. Summary: The Gambas web application development component.
  927. Summary(ja): Gambas 用 ウェブアプリケーション開発コンポーネント
  928. Group: Applications/Development
  929. Requires: %{name}-runtime = %{version}-%{release}
  930. %description gb-web
  931. This component allows to make a web application based on a CGI script.
  932. %description gb-web -l ja
  933. このコンポーネントにより CGI スクリプトによるウェブアプリケーションを
  934. 開発できるようになります。
  935. #-----------------------------------------------------------------------------
  936. %prep
  937. %setup -q
  938. # copy updated message catalogue
  939. #%{__cp} -f %{SOURCE2} app/src/gambas2/.lang/ja.po
  940. #%{__cp} -f %{SOURCE3} app/src/gambas2/.lang/ja.mo
  941. %ifarch ppc
  942. find . -type f -name configure -exec sed -i 's/-Os/-O2/' {} \;
  943. %endif
  944. %patch100 -p1 -b .postgresql-path
  945. %build
  946. #export LDFLAGS="-L/usr/X11R6/%{_lib}"
  947. autoreconf -f -i
  948. %configure --disable-firebird
  949. # --with-mysql-libraries=%{_libdir}/mysql \
  950. # --with-qt-includes=%{_libdir}/qt3/include \
  951. # --with-qt-libraries=%{_libdir}/qt3/lib \
  952. # --disable-clanlib \
  953. # --enable-kde
  954. %{__make}
  955. %install
  956. %{__rm} -rf ${RPM_BUILD_ROOT}
  957. %{__make} install DESTDIR=${RPM_BUILD_ROOT}
  958. # remove unnecessary files
  959. find $RPM_BUILD_ROOT/%{_libdir} -name "*.la" -exec %{__rm} -f "{}" \;
  960. find $RPM_BUILD_ROOT/%{_libdir} -name "*.a" -exec %{__rm} -f "{}" \;
  961. # copy pixmap and menu entry.
  962. %{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/pixmaps
  963. %{__install} -m644 ${RPM_BUILD_DIR}/%{name}-%{version}/app/src/gambas3/img/logo/logo.png ${RPM_BUILD_ROOT}/%{_datadir}/pixmaps/gambas3.png
  964. %{__install} -d ${RPM_BUILD_ROOT}%{_datadir}/applications
  965. %{__install} -p -m644 %{SOURCE1} ${RPM_BUILD_ROOT}%{_datadir}/applications/
  966. # copy mimetype xml to %{_datadir}
  967. %{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/%{name}
  968. %{__install} -m644 main/mime/application-x-gambas3.xml ${RPM_BUILD_ROOT}/%{_datadir}/%{name}/
  969. %post runtime
  970. # register gambas executable mimetype
  971. xdg-icon-resource install --context mimetypes --size 64 %{_datadir}/%{name}/icons/application-x-gambas.png application-x-gambas
  972. xdg-mime install %{_datadir}/%{name}/application-x-gambas3.xml
  973. %clean
  974. %{__rm} -rf ${RPM_BUILD_ROOT}
  975. %files runtime
  976. %defattr(-,root,root)
  977. %doc AUTHORS COPYING ChangeLog INSTALL NEWS README*
  978. %{_bindir}/gbr3
  979. %{_bindir}/gbx3
  980. %{_libdir}/gambas3/gb.component
  981. %{_libdir}/gambas3/gb.so*
  982. %{_datadir}/gambas3/info/gb.info
  983. %{_datadir}/gambas3/info/gb.list
  984. %{_datadir}/gambas3/icons
  985. %{_datadir}/gambas3/application-x-gambas3.xml
  986. %files devel
  987. %defattr(-,root,root)
  988. %{_bindir}/gba3
  989. %{_bindir}/gbc3
  990. %{_bindir}/gbi3
  991. %files scripter
  992. %defattr(-,root,root)
  993. %{_bindir}/gbs3
  994. %{_bindir}/gbs3.gambas
  995. %{_bindir}/gbw3
  996. %files ide
  997. %defattr(-,root,root)
  998. %{_bindir}/gambas3
  999. %{_bindir}/gbs3.gambas
  1000. %{_datadir}/gambas3/control
  1001. %{_datadir}/gambas3/examples
  1002. %{_datadir}/applications/gambas3.desktop
  1003. %{_datadir}/pixmaps/gambas3.png
  1004. %files gb-args
  1005. %defattr(-,root,root)
  1006. %{_libdir}/gambas3/gb.args.component
  1007. %{_libdir}/gambas3/gb.args.gambas
  1008. %{_datadir}/gambas3/info/gb.args.*
  1009. %files gb-cairo
  1010. %defattr(-,root,root)
  1011. %{_libdir}/gambas3/gb.cairo.*
  1012. %{_datadir}/gambas3/info/gb.cairo.*
  1013. %files gb-chart
  1014. %defattr(-,root,root)
  1015. %{_libdir}/gambas3/gb.chart.*
  1016. %{_datadir}/gambas3/info/gb.chart.*
  1017. %files gb-clipper
  1018. %defattr(-,root,root)
  1019. %{_libdir}/gambas3/gb.clipper.component
  1020. %{_libdir}/gambas3/gb.clipper.so*
  1021. %{_datadir}/gambas3/info/gb.clipper.*
  1022. %files gb-complex
  1023. %defattr(-,root,root)
  1024. %{_libdir}/gambas3/gb.complex.*
  1025. %{_datadir}/gambas3/info/gb.complex.*
  1026. %files gb-compress
  1027. %defattr(-,root,root)
  1028. %{_libdir}/gambas3/gb.compress.*
  1029. %{_datadir}/gambas3/info/gb.compress.*
  1030. %files gb-crypt
  1031. %defattr(-,root,root)
  1032. %{_libdir}/gambas3/gb.crypt.*
  1033. %{_datadir}/gambas3/info/gb.crypt.*
  1034. %files gb-data
  1035. %defattr(-,root,root)
  1036. %{_libdir}/gambas3/gb.data.*
  1037. %{_datadir}/gambas3/info/gb.data.*
  1038. %files gb-db
  1039. %defattr(-,root,root)
  1040. %{_libdir}/gambas3/gb.db.gambas
  1041. %{_libdir}/gambas3/gb.db.so*
  1042. %{_libdir}/gambas3/gb.db.component
  1043. %{_datadir}/gambas3/info/gb.db.info
  1044. %{_datadir}/gambas3/info/gb.db.list
  1045. %files gb-db-form
  1046. %defattr(-,root,root)
  1047. %{_libdir}/gambas3/gb.db.form.*
  1048. %{_datadir}/gambas3/info/gb.db.form.*
  1049. %files gb-db-mysql
  1050. %defattr(-,root,root)
  1051. %{_libdir}/gambas3/gb.db.mysql.*
  1052. %{_datadir}/gambas3/info/gb.db.mysql.*
  1053. %files gb-db-odbc
  1054. %defattr(-,root,root)
  1055. %{_libdir}/gambas3/gb.db.odbc.*
  1056. %{_datadir}/gambas3/info/gb.db.odbc.*
  1057. %files gb-db-postgresql
  1058. %defattr(-,root,root)
  1059. %{_libdir}/gambas3/gb.db.postgresql.*
  1060. %{_datadir}/gambas3/info/gb.db.postgresql.*
  1061. %files gb-db-sqlite2
  1062. %defattr(-,root,root)
  1063. %{_libdir}/gambas3/gb.db.sqlite2.*
  1064. %{_datadir}/gambas3/info/gb.db.sqlite2.*
  1065. %files gb-db-sqlite3
  1066. %defattr(-,root,root)
  1067. %{_libdir}/gambas3/gb.db.sqlite3.*
  1068. %{_datadir}/gambas3/info/gb.db.sqlite3.*
  1069. %files gb-debug
  1070. %defattr(-,root,root)
  1071. %{_libdir}/gambas3/gb.debug.*
  1072. %{_datadir}/gambas3/info/gb.debug.*
  1073. %files gb-desktop
  1074. %defattr(-,root,root)
  1075. %{_libdir}/gambas3/gb.desktop.*
  1076. %{_datadir}/gambas3/info/gb.desktop.*
  1077. %files gb-draw
  1078. %defattr(-,root,root)
  1079. %{_libdir}/gambas3/gb.draw.*
  1080. %files gb-dbus
  1081. %defattr(-,root,root)
  1082. %{_libdir}/gambas3/gb.dbus.*
  1083. %{_datadir}/gambas3/info/gb.dbus.*
  1084. %files gb-eval
  1085. %defattr(-,root,root)
  1086. %{_libdir}/gambas3/gb.eval.component
  1087. %{_libdir}/gambas3/gb.eval.so*
  1088. %{_datadir}/gambas3/info/gb.eval.info
  1089. %{_datadir}/gambas3/info/gb.eval.list
  1090. %files gb-eval-highlight
  1091. %defattr(-,root,root)
  1092. %{_libdir}/gambas3/gb.eval.highlight.*
  1093. %{_datadir}/gambas3/info/gb.eval.highlight.*
  1094. %files gb-form
  1095. %defattr(-,root,root)
  1096. %{_libdir}/gambas3/gb.form.gambas
  1097. %{_libdir}/gambas3/gb.form.component
  1098. %{_libdir}/gambas3/gb.form.stock.gambas
  1099. %{_libdir}/gambas3/gb.form.stock.component
  1100. %{_datadir}/gambas3/info/gb.form.info
  1101. %{_datadir}/gambas3/info/gb.form.list
  1102. %{_datadir}/gambas3/info/gb.form.stock.info
  1103. %{_datadir}/gambas3/info/gb.form.stock.list
  1104. %files gb-form-dialog
  1105. %defattr(-,root,root)
  1106. %{_libdir}/gambas3/gb.form.dialog.gambas
  1107. %{_libdir}/gambas3/gb.form.dialog.component
  1108. %{_datadir}/gambas3/info/gb.form.dialog.info
  1109. %{_datadir}/gambas3/info/gb.form.dialog.list
  1110. %files gb-form-mdi
  1111. %defattr(-,root,root)
  1112. %{_libdir}/gambas3/gb.form.mdi.gambas
  1113. %{_libdir}/gambas3/gb.form.mdi.component
  1114. %{_datadir}/gambas3/info/gb.form.mdi.info
  1115. %{_datadir}/gambas3/info/gb.form.mdi.list
  1116. %files gb-geom
  1117. %defattr(-,root,root)
  1118. %{_libdir}/gambas3/gb.geom.so*
  1119. %files gb-gtk
  1120. %defattr(-,root,root)
  1121. %{_libdir}/gambas3/gb.gtk.so*
  1122. %{_libdir}/gambas3/gb.gtk.component
  1123. %{_datadir}/gambas3/info/gb.gtk.info
  1124. %{_datadir}/gambas3/info/gb.gtk.list
  1125. %files gb-gtk-opengl
  1126. %defattr(-,root,root)
  1127. %{_libdir}/gambas3/gb.gtk.opengl.*
  1128. %{_datadir}/gambas3/info/gb.gtk.opengl.*
  1129. %files gb-gui
  1130. %defattr(-,root,root)
  1131. %{_libdir}/gambas3/gb.gui.*
  1132. %{_datadir}/gambas3/info/gb.gui.*
  1133. %files gb-httpd
  1134. %defattr(-,root,root)
  1135. %{_libdir}/gambas3/gb.httpd.component
  1136. %{_libdir}/gambas3/gb.httpd.so*
  1137. %{_datadir}/gambas3/info/gb.httpd.*
  1138. %files gb-image
  1139. %defattr(-,root,root)
  1140. %{_libdir}/gambas3/gb.image.so*
  1141. %{_libdir}/gambas3/gb.image.component
  1142. %{_datadir}/gambas3/info/gb.image.info
  1143. %{_datadir}/gambas3/info/gb.image.list
  1144. %files gb-image-effect
  1145. %defattr(-,root,root)
  1146. %{_libdir}/gambas3/gb.image.effect.so*
  1147. %{_libdir}/gambas3/gb.image.effect.component
  1148. %{_datadir}/gambas3/info/gb.image.effect.info
  1149. %{_datadir}/gambas3/info/gb.image.effect.list
  1150. %files gb-image-imlib
  1151. %defattr(-,root,root)
  1152. %{_libdir}/gambas3/gb.image.imlib.so*
  1153. %{_libdir}/gambas3/gb.image.imlib.component
  1154. %{_datadir}/gambas3/info/gb.image.imlib.info
  1155. %{_datadir}/gambas3/info/gb.image.imlib.list
  1156. %files gb-image-io
  1157. %defattr(-,root,root)
  1158. %{_libdir}/gambas3/gb.image.io.so*
  1159. %{_libdir}/gambas3/gb.image.io.component
  1160. %{_datadir}/gambas3/info/gb.image.io.info
  1161. %{_datadir}/gambas3/info/gb.image.io.list
  1162. %files gb-libxml
  1163. %defattr(-,root,root)
  1164. %{_libdir}/gambas3/gb.libxml.*
  1165. %{_datadir}/gambas3/info/gb.libxml.*
  1166. %files gb-logging
  1167. %defattr(-,root,root)
  1168. %{_libdir}/gambas3/gb.logging.component
  1169. %{_libdir}/gambas3/gb.logging.gambas
  1170. %{_datadir}/gambas3/info/gb.logging.*
  1171. %files gb-map
  1172. %defattr(-,root,root)
  1173. %{_libdir}/gambas3/gb.map.component
  1174. %{_libdir}/gambas3/gb.map.gambas
  1175. %{_datadir}/gambas3/info/gb.map.*
  1176. %files gb-memcached
  1177. %defattr(-,root,root)
  1178. %{_libdir}/gambas3/gb.memcached.component
  1179. %{_libdir}/gambas3/gb.memcached.gambas
  1180. %{_datadir}/gambas3/info/gb.memcached.*
  1181. %files gb-mysql
  1182. %defattr(-,root,root)
  1183. %{_libdir}/gambas3/gb.mysql.*
  1184. %{_datadir}/gambas3/info/gb.mysql.*
  1185. %files gb-ncurses
  1186. %defattr(-,root,root)
  1187. %{_libdir}/gambas3/gb.ncurses.*
  1188. %{_datadir}/gambas3/info/gb.ncurses.*
  1189. %files gb-net
  1190. %defattr(-,root,root)
  1191. %{_libdir}/gambas3/gb.net.so*
  1192. %{_libdir}/gambas3/gb.net.component
  1193. %{_datadir}/gambas3/info/gb.net.info
  1194. %{_datadir}/gambas3/info/gb.net.list
  1195. %files gb-net-curl
  1196. %defattr(-,root,root)
  1197. %{_libdir}/gambas3/gb.net.curl.so*
  1198. %{_libdir}/gambas3/gb.net.curl.component
  1199. %{_datadir}/gambas3/info/gb.net.curl.info
  1200. %{_datadir}/gambas3/info/gb.net.curl.list
  1201. %files gb-net-smtp
  1202. %defattr(-,root,root)
  1203. %{_libdir}/gambas3/gb.net.smtp.*
  1204. %{_datadir}/gambas3/info/gb.net.smtp.*
  1205. %files gb-opengl
  1206. %defattr(-,root,root)
  1207. %{_libdir}/gambas3/gb.opengl.so*
  1208. %{_libdir}/gambas3/gb.opengl.component
  1209. %{_datadir}/gambas3/info/gb.opengl.info
  1210. %{_datadir}/gambas3/info/gb.opengl.list
  1211. %files gb-opengl-glsl
  1212. %defattr(-,root,root)
  1213. %{_libdir}/gambas3/gb.opengl.glsl.so*
  1214. %{_libdir}/gambas3/gb.opengl.glsl.component
  1215. %{_datadir}/gambas3/info/gb.opengl.glsl.info
  1216. %{_datadir}/gambas3/info/gb.opengl.glsl.list
  1217. %files gb-opengl-glu
  1218. %defattr(-,root,root)
  1219. %{_libdir}/gambas3/gb.opengl.glu.so*
  1220. %{_libdir}/gambas3/gb.opengl.glu.component
  1221. %{_datadir}/gambas3/info/gb.opengl.glu.info
  1222. %{_datadir}/gambas3/info/gb.opengl.glu.list
  1223. %files gb-opengl-sge
  1224. %defattr(-,root,root)
  1225. %{_libdir}/gambas3/gb.opengl.sge.component
  1226. %{_libdir}/gambas3/gb.opengl.sge.so*
  1227. %{_datadir}/gambas3/info/gb.opengl.sge.*
  1228. %files gb-openssl
  1229. %defattr(-,root,root)
  1230. %{_libdir}/gambas3/gb.openssl.component
  1231. %{_libdir}/gambas3/gb.openssl.so*
  1232. %{_datadir}/gambas3/info/gb.openssl.*
  1233. %files gb-option
  1234. %defattr(-,root,root)
  1235. %{_libdir}/gambas3/gb.option.*
  1236. %{_datadir}/gambas3/info/gb.option.*
  1237. %files gb-pcre
  1238. %defattr(-,root,root)
  1239. %{_libdir}/gambas3/gb.pcre.so*
  1240. %{_libdir}/gambas3/gb.pcre.component
  1241. %{_datadir}/gambas3/info/gb.pcre.info
  1242. %{_datadir}/gambas3/info/gb.pcre.list
  1243. %files gb-pdf
  1244. %defattr(-,root,root)
  1245. %{_libdir}/gambas3/gb.pdf.*
  1246. %{_datadir}/gambas3/info/gb.pdf.*
  1247. %files gb-qt4
  1248. %defattr(-,root,root)
  1249. %{_libdir}/gambas3/gb.qt4.so*
  1250. %{_libdir}/gambas3/gb.qt4.component
  1251. %{_datadir}/gambas3/info/gb.qt4.info
  1252. %{_datadir}/gambas3/info/gb.qt4.list
  1253. %files gb-qt4-ext
  1254. %defattr(-,root,root)
  1255. %{_libdir}/gambas3/gb.qt4.ext.so*
  1256. %{_libdir}/gambas3/gb.qt4.ext.component
  1257. %{_datadir}/gambas3/info/gb.qt4.ext.info
  1258. %{_datadir}/gambas3/info/gb.qt4.ext.list
  1259. %files gb-qt4-webkit
  1260. %defattr(-,root,root)
  1261. %{_libdir}/gambas3/gb.qt4.webkit.so*
  1262. %{_libdir}/gambas3/gb.qt4.webkit.component
  1263. %{_datadir}/gambas3/info/gb.qt4.webkit.info
  1264. %{_datadir}/gambas3/info/gb.qt4.webkit.list
  1265. %files gb-qt4-opengl
  1266. %defattr(-,root,root)
  1267. %{_libdir}/gambas3/gb.qt4.opengl.*
  1268. %{_datadir}/gambas3/info/gb.qt4.opengl.*
  1269. %files gb-report
  1270. %defattr(-,root,root)
  1271. %{_libdir}/gambas3/gb.report.*
  1272. %{_datadir}/gambas3/info/gb.report.*
  1273. %files gb-sdl
  1274. %defattr(-,root,root)
  1275. %doc %{_datadir}/gambas3/gb.sdl/README
  1276. %{_libdir}/gambas3/gb.sdl.so
  1277. %{_libdir}/gambas3/gb.sdl.so.*
  1278. %{_libdir}/gambas3/gb.sdl.component
  1279. %{_datadir}/gambas3/gb.sdl/LICENSE
  1280. %{_datadir}/gambas3/info/gb.sdl.info
  1281. %{_datadir}/gambas3/info/gb.sdl.list
  1282. %{_datadir}/gambas3/gb.sdl/_default.bdf
  1283. %files gb-sdl-sound
  1284. %defattr(-,root,root)
  1285. %{_libdir}/gambas3/gb.sdl.sound.so*
  1286. %{_libdir}/gambas3/gb.sdl.sound.component
  1287. %{_datadir}/gambas3/info/gb.sdl.sound.info
  1288. %{_datadir}/gambas3/info/gb.sdl.sound.list
  1289. %files gb-settings
  1290. %defattr(-,root,root)
  1291. %{_libdir}/gambas3/gb.settings.*
  1292. %{_datadir}/gambas3/info/gb.settings.*
  1293. %files gb-signal
  1294. %defattr(-,root,root)
  1295. %{_libdir}/gambas3/gb.signal.*
  1296. %{_datadir}/gambas3/info/gb.signal.*
  1297. %files gb-v4l
  1298. %defattr(-,root,root)
  1299. %{_libdir}/gambas3/gb.v4l.*
  1300. %{_datadir}/gambas3/info/gb.v4l.*
  1301. %files gb-vb
  1302. %defattr(-,root,root)
  1303. %{_libdir}/gambas3/gb.vb.so*
  1304. %{_libdir}/gambas3/gb.vb.component
  1305. %{_datadir}/gambas3/info/gb.vb.info
  1306. %{_datadir}/gambas3/info/gb.vb.list
  1307. %files gb-xml
  1308. %defattr(-,root,root)
  1309. %{_libdir}/gambas3/gb.xml.gambas
  1310. %{_libdir}/gambas3/gb.xml.so*
  1311. %{_libdir}/gambas3/gb.xml.component*
  1312. %{_datadir}/gambas3/info/gb.xml.info
  1313. %{_datadir}/gambas3/info/gb.xml.list
  1314. %files gb-xml-html
  1315. %defattr(-,root,root)
  1316. %{_libdir}/gambas3/gb.xml.html.so*
  1317. %{_libdir}/gambas3/gb.xml.html.component*
  1318. %{_datadir}/gambas3/info/gb.xml.html.info
  1319. %{_datadir}/gambas3/info/gb.xml.html.list
  1320. %files gb-xml-rpc
  1321. %defattr(-,root,root)
  1322. %{_libdir}/gambas3/gb.xml.rpc.gambas
  1323. %{_libdir}/gambas3/gb.xml.rpc.component*
  1324. %{_datadir}/gambas3/info/gb.xml.rpc.info
  1325. %{_datadir}/gambas3/info/gb.xml.rpc.list
  1326. %files gb-xml-xslt
  1327. %defattr(-,root,root)
  1328. %{_libdir}/gambas3/gb.xml.xslt.so*
  1329. %{_libdir}/gambas3/gb.xml.xslt.component*
  1330. %{_datadir}/gambas3/info/gb.xml.xslt.info
  1331. %{_datadir}/gambas3/info/gb.xml.xslt.list
  1332. %files gb-web
  1333. %defattr(-,root,root)
  1334. %{_libdir}/gambas3/gb.web.*
  1335. %{_datadir}/gambas3/info/gb.web.*
  1336. %changelog
  1337. * Thu Oct 15 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.5.4-4
  1338. - rebuild with glew-1.13.0
  1339. * Sat Jul 12 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.4-3
  1340. - fixed dependency.
  1341. * Thu Jul 10 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.4-2
  1342. - made to use libpq-devel(PostgreSQL-9).
  1343. * Tue Jul 08 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.5.4-1
  1344. - new upstream release
  1345. - remove BuildRequires: kdebase3, kdelibs3-devel
  1346. - change BuildRequires: postgresql8-devel instead of postgresql-devel
  1347. - change BuildRequires: libmysqlclient-devel instead of MySQL-devel
  1348. * Sat Dec 28 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.5.1-1
  1349. - new upstream release
  1350. - create follow subpackages
  1351. - gb-args
  1352. - gb-clipper
  1353. - gb-geom
  1354. - gb-httpd
  1355. - gb-logging
  1356. - gb-map
  1357. - gb-memcached
  1358. - gb-opengl-sge
  1359. - gb-openssl
  1360. * Wed Jan 09 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3.4-1
  1361. - new upstream release
  1362. * Thu Oct 25 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3.3-2
  1363. - rebuild with pcre-8.31
  1364. * Sun Oct 14 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.3.3-1
  1365. - new upstream release
  1366. - create db-complex, gb-data, gb-gtk-opengl, gb-libxml, gb-ncurses, gb-xml-html sub packages
  1367. * Sun Apr 29 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.1-1
  1368. - new upstream release
  1369. * Tue Jan 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.0-1
  1370. - new upstream release
  1371. - remove gb-gtk-opengl, gb-info sub package
  1372. - add gb-opengl-glu sub package
  1373. * Wed Jun 8 2011 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.99.0-6.svn3396
  1374. - add BR: libXmu-devel, glew-devel, libv4l-devel
  1375. * Tue Apr 12 2011 Shu KONNO <owa@bg.wakwak.com> 2.99.0-5.svn3396
  1376. - rebuilt with postgresql-9.0.3
  1377. * Sat Apr 9 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.99.0-4.svn3396
  1378. - rebuilt with unixODBC-2.2.14
  1379. * Sat Mar 12 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.99.0-3.svn3396
  1380. - rebuilt with poppler-0.16.3
  1381. * Fri Dec 24 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 2.99.0-2.svn3396
  1382. - source updated to latest revision
  1383. * Mon Dec 06 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 2.99.0-1.svn3344
  1384. - initial build for Vine Linux