gambas3-vl.spec 59 KB

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