source: projects/specs/branches/6/g/gambas2/gambas2-vl.spec @ 3782

Revision 3782, 49.8 KB checked in by kazutaka, 13 years ago (diff)

ソースを更新

Line 
1%define build_vine5 0
2
3%if "%{?_dist_release}" == "vl5"
4%define build_vine5 1
5%endif
6
7Summary:        BASIC compiler, IDE and GUI builder
8Summary(ja):    GUI ビルダーを備えた BASIC ベースの統合開発環境(IDE)
9Name:           gambas2
10Version:        2.23.0
11Release:        1%{?_dist_release}
12Source0:        %{name}-%{version}.tar.bz2
13Source1:        gambas2.desktop
14#Source2:       gambas2-2.6.0-ja.po
15#Source3:       gambas2-2.6.0-ja.mo
16#Patch1:        gambas2-2.21.0-popup-menu.patch
17
18License:        GPL
19Group:          Applications/Development
20URL:            http://gambas.sourceforge.net/
21
22BuildRequires:  gcc >= 3.2, qt-devel >= 3.2, curl-devel >= 7.10.7
23BuildRequires:  libxml2-devel, libxslt-devel, zlib-devel, bzip2-devel
24BuildRequires:  MySQL-devel, postgresql-devel
25%if %{build_vine5}
26BuildRequires:  MySQL-shared
27BuildRequires:  kdelibs-devel, kdebase
28%else
29BuildRequires:  libmysqlclient16
30BuildRequires:  kdelibs3-devel, kdebase3
31%endif
32BuildRequires:  unixODBC-devel, sqlite-devel, sqlite3-devel
33BuildRequires:  pcre-devel, librsvg2-devel
34BuildRequires:  SDL-devel, SDL_mixer-devel, SDL_image-devel
35BuildRequires:  SDL_ttf-devel,SDL_gfx-devel
36BuildRequires:  glibc-devel, libpng-devel, libjpeg-devel
37BuildRequires:  kernel-source, gamin-devel
38BuildRequires:  poppler-devel, gtk2-devel >= 2.10, libffi-devel
39BuildRequires:  xorg-x11-proto-devel, mesa-libGL-devel, mesa-libGLU-devel
40BuildRequires:  xdg-utils, libXtst-devel
41
42BuildRoot:      %{_tmppath}/%{name}-%{version}-root
43
44Packager:       kazutaka
45
46%description
47Gambas is a free development environment based on a Basic interpreter
48with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
49With Gambas, you can quickly design your program GUI, access MySQL or
50PostgreSQL databases, control KDE applications with DCOP, translate
51your program into many languages, create network applications easily,
52build RPMs of your apps automatically, and so on... You have to install
53the necessary components
54
55
56%description -l ja
57Gambas はオブジェクト指向に拡張された BASIC インタプリタベースの、Visual
58Basic(TM) に良く似た(でもクローンではありません!)フリーな開発環境です。
59Gambas を使えば、GUI のすばやいデザイン、MySQL や PostgreSQL データベース
60へのアクセス、DCOP 経由での KDE アプリケーションの制御、プログラムの多言
61語への翻訳、ネットワークアプリケーションの手軽な開発、RPMパッケージの自動
62作成、等々が可能になります。必要に応じてコンポーネントをインストールして
63ください。
64
65#-----------------------------------------------------------------------------
66
67%package runtime
68Summary:        The Gambas runtime
69Summary(ja):    Gambas ランタイム
70Group:          Applications/Development
71Requires(post): xdg-utils
72
73%description runtime
74This package includes the Gambas interpreter needed to run Gambas applications.
75
76%description runtime -l ja
77このパッケージには Gambas アプリケーションの実行に必要なインタプリタ
78が含まれています。
79
80#-----------------------------------------------------------------------------
81
82%package ide
83Summary:        BASIC compiler, IDE and GUI builder
84Summary(ja):    GUI ビルダーを備えた BASIC ベースの統合開発環境(IDE)
85Group:          Applications/Development
86Requires:       %{name}-gb-debug = %{version}
87Requires:       %{name}-gb-eval = %{version}
88Requires:       %{name}-gb-form = %{version}
89Requires:       %{name}-gb-gtk = %{version}
90Requires:       %{name}-gb-pcre = %{version}
91Requires:       %{name}-gb-qt = %{version}
92Requires:       %{name}-gb-qt-ext = %{version}
93Requires:       %{name}-runtime = %{version}
94Requires:       %{name}-gb-settings = %{version}
95Requires:       %{name}-gb-form-mdi = %{version}
96Requires:       %{name}-gb-draw = %{version}
97Requires:       %{name}-gb-desktop = %{version}
98Requires:       %{name}-gb-form-dialog = %{version}
99Requires:       %{name}-gb-gui = %{version}
100
101%description ide
102Gambas is a free development environment based on a Basic interpreter
103with object extensions, like Visual Basic(tm) (but it is NOT a clone!).
104With Gambas, you can quickly design your program GUI, access MySQL or
105PostgreSQL databases, control KDE applications with DCOP, translate
106your program into many languages, create network applications easily,
107build RPMs of your apps automatically, and so on... You have to install
108the necessary components
109
110This package includes the complete Gambas Development Environment, with the
111database manager, the help files, and all components.
112
113%description ide -l ja
114Gambas はオブジェクト指向に拡張された BASIC インタプリタベースの、Visual
115Basic(TM) に良く似た(でもクローンではありません!)フリーな開発環境です。
116Gambas を使えば、GUI のすばやいデザイン、MySQL や PostgreSQL データベース
117へのアクセス、DCOP 経由での KDE アプリケーションの制御、プログラムの多言
118語への翻訳、ネットワークアプリケーションの手軽な開発、RPMパッケージの自動
119作成、等々が可能になります。必要に応じてコンポーネントをインストールして
120ください。
121
122このパッケージには IDE (統合開発環境)、データベースマネージャ、ヘルプ
123ファイル、およびその他のコンポーネントが含まれています。
124
125#-----------------------------------------------------------------------------
126
127%package gb-compress
128Summary:        A compression component
129Summary(ja):    圧縮コンポーネント
130Group:          Applications/Development
131Requires:       %{name}-runtime = %{version}
132
133%description gb-compress
134This component allows you to compress/uncompress data or files with
135the bzip2 and zip algorithms.
136
137%description gb-compress -l ja
138このコンポーネントによりデータやファイルを bzip2 および zip 形式で圧縮
139できるようになります。
140
141#-----------------------------------------------------------------------------
142
143%package gb-settings
144Summary:        The Gambas settings component
145SUmmary(ja):    Gambas 設定用コンポーネント
146Group:          Applications/Development
147Requires:       %{name}-runtime = %{version}
148
149%description gb-settings
150Implements a persistent settings interface for Gambas.
151
152%description gb-settings -l ja
153Gambas 用の設定インターフェースの実装です。
154
155#-----------------------------------------------------------------------------
156
157%package gb-form
158Summary:        The Gambas form component
159SUmmary(ja):    Gambas 用フォームコンポーネント
160Group:          Applications/Development
161Requires:       %{name}-runtime = %{version}
162
163%description gb-form
164Implements a toolkit-independent form class for Gambas.
165
166%description gb-form -l ja
167Gambas 用のツールキットに依存しないフォームクラスの実装です。
168
169#-----------------------------------------------------------------------------
170
171%package gb-form-mdi
172Summary:        The Gambas mdi form component
173SUmmary(ja):    Gambas 用 MDI フォームコンポーネント
174Group:          Applications/Development
175Requires:       %{name}-runtime = %{version}
176
177%description gb-form-mdi
178Implements a new version of the Workspace control for Gambas.
179
180%description gb-form-mdi -l ja
181Gambas 用の新しいバージョンのワークスペースコントロールの実装です。
182
183#-----------------------------------------------------------------------------
184
185%package gb-form-dialog
186Summary:        The Gambas enhanced dialog form component
187SUmmary(ja):    Gambas 用拡張ダイアログフォームコンポーネント
188Group:          Applications/Development
189Requires:       %{name}-runtime = %{version}
190
191%description gb-form-dialog
192Implements a enhanced dialog form class for Gambas.
193
194%description gb-form-dialog -l ja
195Gambas 用の拡張されたダイアログフォームクラスの実装です。
196
197#-----------------------------------------------------------------------------
198%package gb-db
199Summary:        The database component
200Summary(ja):    データベースコンポーネント
201Group:          Applications/Development
202Requires:       %{name}-runtime = %{version}
203
204%description gb-db
205This component allows you to access many databases management systems,
206provided that you install the needed driver packages.
207
208%description gb-db -l ja
209このコンポーネントにより様々な種類のデータベース管理システムにアクセス
210できるようになります。(ただし各データベース用のドライバをあらかじめ
211インストールしておく必要があります。)
212
213#-----------------------------------------------------------------------------
214
215%package gb-db-mysql
216Summary:        The MySQL driver for the Gambas database component
217Summary(ja):    Gambas データベースコンポーネント用の MySQL ドライバ
218Group:          Applications/Development
219Requires:       %{name}-runtime = %{version}, %{name}-gb-db = %{version}, MySQL-client
220
221%description gb-db-mysql
222This component allows you to access MySQL databases.
223
224%description gb-db-mysql -l ja
225このコンポーネントにより MySQL データベースにアクセスできるように
226なります。
227
228#-----------------------------------------------------------------------------
229
230%package gb-db-postgresql
231Summary:        The postgresql driver for the Gambas database component
232Summary(ja):    Gambas データベースコンポーネント用の postgresql ドライバ
233Group:          Applications/Development
234Requires:       %{name}-runtime = %{version}, %{name}-gb-db = %{version}, postgresql, postgresql-libs
235
236%description gb-db-postgresql
237This component allows you to access postgresql databases.
238
239%description gb-db-postgresql -l ja
240このコンポーネントにより postgresql データベースにアクセスできるように
241なります。
242
243#-----------------------------------------------------------------------------
244
245%package gb-db-sqlite
246Summary:        The SQLite driver for the Gambas database component
247Summary(ja):    Gambas データベースコンポーネント用の SQLite ドライバ
248Group:          Applications/Development
249Requires:       %{name}-runtime = %{version}, %{name}-gb-db = %{version}, sqlite3
250Obsoletes:      gambas2-gb-db-sqlite3
251
252%description gb-db-sqlite
253This component allows you to access SQLite databases.
254
255%description gb-db-sqlite -l ja
256このコンポーネントにより SQLite 及び SQLite3 データベースにアクセス
257できるようになります。
258
259#-----------------------------------------------------------------------------
260
261%package gb-db-odbc
262Summary:        The ODBC driver for the Gambas database component
263Summary(ja):    Gambas データベースコンポーネント用の ODBC ドライバ
264Group:          Applications/Development
265Requires:       %{name}-runtime = %{version}, %{name}-gb-db = %{version}
266
267%description gb-db-odbc
268This component allows you to access databases via unixODBC.
269
270%description gb-db-odbc -l ja
271このコンポーネントにより unixODBC経由でデータベースにアクセスできるよう
272になります。
273
274#-----------------------------------------------------------------------------
275
276%package gb-debug
277Summary:        A debugger helper for the IDE
278Summary(ja):    IDE 用のデバッガヘルパー
279Group:          Applications/Development
280Requires:       %{name}-runtime = %{version}
281
282%description gb-debug
283This component helps the IDE to debug Gambas programs.
284
285%description gb-debug -l ja
286このコンポーネントは IDE 上でのデバッグを支援します。
287
288#-----------------------------------------------------------------------------
289
290%package gb-eval
291Summary:        An expression evaluator component
292Summary(ja):    式評価用のコンポーネント
293Group:          Applications/Development
294Requires:       %{name}-runtime = %{version}
295
296%description gb-eval
297This component allows you to evaluate expressions at runtime.
298It is used by the Gambas Eval() function.
299
300%description gb-eval -l ja
301このコンポーネントにより実行時に式を評価できるようになります。
302これは Gambas Eval() ファンクションで使用されます。
303
304#-----------------------------------------------------------------------------
305
306%package gb-net
307Summary:        The networking component
308Summary(ja):    ネットワーク制御用のコンポーネント
309Group:          Applications/Development
310Requires:       %{name}-runtime = %{version}
311
312%description gb-net
313This component allows you to use TCP/IP and UDP sockets, and to access
314any serial ports.
315
316%description gb-net -l ja
317このコンポーネントにより TCP/IP と UDP ソケットの使用、およびシリアル
318ポートへのアクセスができるようになります。
319
320#-----------------------------------------------------------------------------
321
322%package gb-net-curl
323Summary:        The advanced networking component
324Summary(ja):    高度なネットワーク制御用のコンポーネント
325Group:          Applications/Development
326Requires:       %{name}-runtime = %{version}, %{name}-gb-net = %{version}, curl
327
328%description gb-net-curl
329This component allows your programs to easily become FTP or HTTP clients.
330
331%description gb-net-curl -l ja
332このコンポーネントにより FTP または HTTP クライアントの開発が容易に
333できるようになります。
334
335#-----------------------------------------------------------------------------
336
337%package gb-qt
338Summary:        The Qt GUI component
339Summary(ja):    Qt GUI コンポーネント
340Group:          Applications/Development
341Requires:       %{name}-runtime = %{version}, qt >= 3.2
342
343%description gb-qt
344This package includes the Gambas QT GUI component.
345
346%description gb-qt -l ja
347このパッケージには Gambas 用の QT GUI コンポーネントが含まれています。
348
349#-----------------------------------------------------------------------------
350
351%package gb-gtk
352Summary:        The Gambas Gtk GUI component
353Summary(ja):    GTK GUI コンポーネント
354Group:          Applications/Development
355Requires:       %{name}-runtime = %{version}, gtk2 >= 2.4
356
357%description gb-gtk
358This package includes the Gambas GTK GUI component.
359
360%description gb-gtk -l ja
361このパッケージには Gambas 用の GTK GUI コンポーネントが含まれています。
362
363#-----------------------------------------------------------------------------
364
365%package gb-qt-ext
366Summary:        The extended Qt GUI component
367Summary(ja):    拡張 Qt GUI コンポーネント
368Group:          Applications/Development
369Requires:       %{name}-runtime = %{version}, %{name}-gb-qt = %{version}
370
371%description gb-qt-ext
372This component includes somme uncommon QT controls.
373
374%description gb-qt-ext -l es
375このコンポーネントには追加の Qt コントロールが含まれています。
376
377#-----------------------------------------------------------------------------
378
379%package gb-qt-kde
380Summary:        The KDE component
381Summary(ja):    KDE コンポーネント
382Group:          Applications/Development
383Requires:       %{name}-runtime = %{version}, %{name}-gb-qt = %{version}
384Requires:       fam, kdelibs >= 3.1
385
386%description gb-qt-kde
387This component transforms your QT application in a KDE application, and
388allows you to pilot any other KDE application with the DCOP protocol.
389
390%description gb-qt-kde -l ja
391このコンポーネントにより、Qt アプリケーションを KDE アプリケーションに
392変換できます。また DCOP プロトコル経由で KDE アプリケーションを制御でき
393るようになります。
394
395#-----------------------------------------------------------------------------
396
397%package gb-qt-kde-html
398Summary:        The KHTML component
399Summary(ja):    KHTML コンポーネント
400Group:          Applications/Development
401Requires:       %{name}-runtime = %{version}, %{name}-gb-qt-kde = %{version}
402
403%description gb-qt-kde-html
404This component allows you to use the Web Browser widget included in KDE
405
406%description gb-qt-kde-html -l ja
407このコンポーネントにより KDE に含まれるウェブブラウザウィジェットを
408使用できるようになります。
409
410#-----------------------------------------------------------------------------
411
412%package gb-qt-opengl
413Summary:        The QT OpenGL component.
414Summary(ja):    QT 用 OpenGL コンポーネント
415Group:          Applications/Development
416Requires:       %{name}-runtime = %{version}, XOrg-gl
417
418%description gb-qt-opengl
419This component provides QT widget for OpenGL library.
420
421%description gb-qt-opengl -l ja
422このコンポーネントにより OpenGL ライブラリ用の QT ウィジェットが
423利用できるようになります。
424
425
426#-----------------------------------------------------------------------------
427
428%package gb-gtk-ext
429Summary:        The extended Gtk GUI component
430Summary(ja):    拡張 GTK GUI コンポーネント
431Group:          Applications/Development
432Requires:       %{name}-runtime = %{version}, %{name}-gb-gtk = %{version}
433
434%description gb-gtk-ext
435This component includes somme uncommon GTK controls.
436
437%description gb-gtk-ext -l es
438このコンポーネントには追加の GTK コントロールが含まれています。
439
440#-----------------------------------------------------------------------------
441
442%package gb-sdl
443Summary:        The Gambas SDL component
444Summary(ja):    Gambas 用 SDL コンポーネント
445Group:          Applications/Development
446Requires:       %{name}-runtime = %{version}, SDL
447
448%description gb-sdl
449This component provides access to the basic functions and the image
450part of the SDL library.
451It provides a drawing surface that is faster than normal X11 toolkits.
452
453%description gb-sdl -l ja
454このコンポーネントは SDL ライブラリの基本機能およびイメージ機能への
455アクセスを提供しています。
456これは X ツールキットよりも高速な描画サーフェースを提供します。
457
458#-----------------------------------------------------------------------------
459
460%package gb-sdl-sound
461Summary:        The Gambas SDL sound component
462Summary(ja):    SDL サウンドコンポーネント
463Group:          Applications/Development
464Requires:       %{name}-runtime = %{version}, SDL_mixer
465
466%description gb-sdl-sound
467This component uses only the sound part of the SDL library. It allows you to
468simultaneously play many sounds and a music stored in a file.
469
470%description gb-sdl-sound -l ja
471このコンポーネントは SDL ライブラリのサウンド部分のみを使用しています。
472これにより多くの種類の音声や音楽を同時に再生する事ができるようになります。
473
474#-----------------------------------------------------------------------------
475
476%package gb-vb
477Summary:        The Visual Basic(tm) compatibility component
478Summary(ja):    Visual Basic(TM) 互換性用コンポーネント
479Group:          Applications/Development
480Requires:       %{name}-runtime = %{version}
481
482%description gb-vb
483This component aims at including some functions that imitate the behaviour
484of Visual Basic(tm) functions. Use it only if you try to port some VB
485projects.
486
487%description gb-vb -l ja
488このコンポーネントは Visual Basic(TM) の機能を模倣した関数を含むことを
489目的としています。VB プロジェクトを移植する必要がある場合にのみインス
490トールしてください。
491
492#-----------------------------------------------------------------------------
493
494%package gb-xml
495Summary:        The Gambas XML components based on the libxml and libxslt libraries.
496Summary(ja):    libXml および libxslt ライブラリベースの Gambas 用 XML コンポーネント
497Group:          Applications/Development
498Requires:       %{name}-runtime = %{version}
499
500%description gb-xml
501These components brings the power of the libxml and libxslt libraries to
502Gambas.
503
504%description gb-xml -l ja
505このコンポーネントにより libxml および libxslt ライブラリを利用できる
506ようになります。
507
508#-----------------------------------------------------------------------------
509
510%package gb-pcre
511Summary:        The Gambas perl-compatible regular expression compon    ent.
512Summary(ja):    Perl互換の正規表現ライブラリの Gambas 用コンポーネント
513Group:          Applications/Development
514Requires:       %{name}-runtime = %{version}, pcre
515
516%description gb-pcre
517This component provides perl-compatible regular expressions to Gambas for
518powerful text processing and pattern matching.
519
520%description gb-pcre -l ja
521このコンポーネントにより Perl 互換の正規表現ライブラリの持つ強力なテキスト
522処理機能及びパターンマッチング機能が利用できるようになります。
523
524#-----------------------------------------------------------------------------
525
526%package gb-crypt
527Summary:        The Gambas crypt component.
528Summary(ja):    Gambas 用暗号化コンポーネント
529Group:          Applications/Development
530Requires:       %{name}-runtime = %{version}, glibc
531
532%description gb-crypt
533This component provides crypt function to Gambas, that allows
534to use the crypt() Gnu C library function.
535
536%description gb-crypt -l ja
537このコンポーネントにより GNU C ライブラリの crypt() を利用した
538暗号化機能が利用できるようになります。
539
540#-----------------------------------------------------------------------------
541
542%package gb-opengl
543Summary:        The Gambas OpenGL component.
544Summary(ja):    Gambas 用 OpenGL コンポーネント
545Group:          Applications/Development
546Requires:       %{name}-runtime = %{version}, XOrg-gl
547
548%description gb-opengl
549This component provides OpenGL library function to Gambas for
550hardware assisted computer graphics.
551
552%description gb-opengl -l ja
553このコンポーネントにより OpenGL ライブラリを使用したハードウェア描画
554機能が利用できるようになります。
555
556#-----------------------------------------------------------------------------
557
558%package gb-v4l
559Summary:        The Gambas V4L(Video for Linux) component.
560Summary(ja):    Gambas 用 V4L(Video for Linux) コンポーネント
561Group:          Applications/Development
562Requires:       %{name}-runtime = %{version},libpng, libjpeg
563
564%description gb-v4l
565This component provides access to all v4l devices with capture support.
566Capturing images from webcams, TV cards and other sources supported by
567the v4l (video for Linux) interface is available.
568.
569%description gb-v4l -l ja
570このコンポーネントにより すべての V4L デバイスにアクセスできるようになります。
571Webカメラ、TVカード及びその他の V4L がサポートするデバイスから、イメージの
572取り込みが可能になります。
573
574#-----------------------------------------------------------------------------
575
576%package gb-info
577Summary:        The Gambas info component.
578Summary(ja):    Gambas 用 インフォーメションコンポーネント
579Group:          Applications/Development
580Requires:       %{name}-runtime = %{version}
581
582%description gb-info
583This component aims at providing all needed information about installed
584components: classes, symbols, events, controls, properties, and so on.
585
586%description gb-info -l ja
587このコンポーネントは、インストール済みのコンポーネントに関する、クラス、
588シンボル、イベント、コントロール、プロパティ等の、必要とされる全ての
589情報を提供することを目的としています。
590
591#-----------------------------------------------------------------------------
592
593%package gb-pdf
594Summary:        The Gambas PDF component.
595Summary(ja):    Gambas 用 PDF コンポーネント
596Group:          Applications/Development
597Requires:       %{name}-runtime = %{version}
598
599%description gb-pdf
600This component privides functions for decoding PDF documents using
601poppler library.
602
603%description gb-pdf -l ja
604このコンポーネントにより、PDF 文書を描画できるようになります。
605
606#-----------------------------------------------------------------------------
607
608%package gb-image
609Summary:        The Gambas image component.
610Summary(ja):    Gambas 用のイメージ編集コンポーネント
611Group:          Applications/Development
612Requires:       %{name}-runtime = %{version}
613
614%description gb-image
615This component allows you to apply various effects on Image objects.
616
617%description gb-image -l ja
618このコンポーネントにより、イメージオブジェクトに対して様々な効果を
619適用できるようになります。
620
621#-----------------------------------------------------------------------------
622
623%package gb-db-form
624Summary:        The database form component
625Summary(ja):    データベース用フォームコンポーネント
626Group:          Applications/Development
627Requires:       %{name}-runtime = %{version}, %{name}-gb-db = %{version}
628
629%description gb-db-form
630This component provides some data bound controls, i.e. controls that can
631display and edit database records automatically.
632
633%description gb-db-form -l ja
634このコンポーネントはいくつかのデータバウンドコントロールを提供します。
635(例えばデータベースのレコードを自動的に表示/編集できるコントロールなど)
636
637#-----------------------------------------------------------------------------
638
639%package gb-net-smtp
640Summary:        The Gambas SMTP component
641Summary(ja):    Gambas 用 SMTP コンポーネント
642Group:          Applications/Development
643Requires:       %{name}-runtime = %{version}, %{name}-gb-net = %{version}, curl
644
645%description gb-net-smtp
646This component allows you to use SMTP (Simple Mail Transfer Protocol).
647
648%description gb-net-smtp -l ja
649このコンポーネントにより SMTP プロトコルを利用できるようになります。
650
651#-----------------------------------------------------------------------------
652
653%package gb-gtk-svg
654Summary:        The Gambas SVG (Scalable Vector Graphics) component.
655Summary(ja):    Gambas 用 SVG (Scalable Vector Graphics) コンポーネント
656Group:          Applications/Development
657Requires:       %{name}-runtime = %{version}, %{name}-gb-gtk = %{version}
658Requires:       librsvg2 >= 2.14.3
659
660%description gb-gtk-svg
661This component is able to load SVG files and generate an image memory
662of it.
663
664%description gb-gtk-svg -l ja
665このコンポーネントにより SVG (Scalable Vector Graphics) の読み込みと
666画像イメージの生成が可能になります。
667
668#-----------------------------------------------------------------------------
669
670%package gb-web
671Summary:        The Gambas web application development component.
672Summary(ja):    Gambas 用 ウェブアプリケーション開発コンポーネント
673Group:          Applications/Development
674Requires:       %{name}-runtime = %{version}
675
676%description gb-web
677This component allows to make a web application based on a CGI script.
678
679%description gb-web -l ja
680このコンポーネントにより CGI スクリプトによるウェブアプリケーションを
681開発できるようになります。
682
683#-----------------------------------------------------------------------------
684
685%package gb-option
686Summary:        The Gambas command line option component.
687Summary(ja):    Gambas 用コマンドラインオプションコンポーネント
688Group:          Applications/Development
689Requires:       %{name}-runtime = %{version}
690
691%description gb-option
692This component is an interface to the getopt() C library function for
693interpreting the program command-line.
694
695%description gb-option -l ja
696このコンポーネントはプログラムのコマンドラインを解釈する、C ライプラリの
697getopt() 関数へのインターフェースです。
698
699#-----------------------------------------------------------------------------
700
701%package gb-report
702Summary:        The Gambas report component.
703Summary(ja):    Gambas 用 レポートコンポーネント
704Group:          Applications/Development
705Requires:       %{name}-runtime = %{version}
706
707%description gb-report
708This component will become the Gambas report designer.
709
710%description gb-report -l ja
711このコンポーネントはいずれ Gambas 用のレポートデザイナになる予定です。
712
713#-----------------------------------------------------------------------------
714
715%package gb-desktop
716Summary:        The Gambas desktop component.
717Summary(ja):    Gambas 用 デスクトップコンポーネント
718Group:          Applications/Development
719Requires:       %{name}-runtime = %{version}, %{name}-gb-form = %{version}
720
721%description gb-desktop
722This component provides some functions using xdg-tools of Portland Project.
723It can be commonly used in diffrent desktop environment.
724
725%description gb-desktop -l ja
726このコンポーネントは Portland Project の xdg-utils を使った、
727異なるデスクトップ環境で共用できる機能を提供します。
728
729#-----------------------------------------------------------------------------
730
731%package gb-chart
732Summary:        The Gambas chart component.
733Summary(ja):    Gambas 用 グラフコンポーネント
734Group:          Applications/Development
735Requires:       %{name}-runtime = %{version}
736
737%description gb-chart
738This component provides functions to draw chats.
739
740%description gb-chart -l ja
741このコンポーネントはグラフを作図する機能を提供します。
742
743#-----------------------------------------------------------------------------
744
745%package gb-draw
746Summary:        The Gambas draw component.
747Summary(ja):    Gambas 用 描画コンポーネント
748Group:          Applications/Development
749Requires:       %{name}-runtime = %{version}
750
751%description gb-draw
752This component provides drawing class to gambas.
753This component was originally implemented as an intenal
754class, But now it is separated as a component.
755
756%description gb-draw -l ja
757このコンポーネントはグ描画用の Class を提供します。
758このコンポーネントは、元々内部 Class として実装されていましたが、
759別コンポーネントとして分離されました。
760
761#-----------------------------------------------------------------------------
762
763%package gb-gui
764Summary:        The Gambas GUI component.
765Summary(ja):    Gambas 用 GUI コンポーネント
766Group:          Applications/Development
767Requires:       %{name}-runtime = %{version}
768
769%description gb-gui
770This component allows you to load gb.qt component when KDE is
771running or gtk component when GNOME is running.
772
773%description gb-gui -l ja
774このコンポーネントにより、KDE 環境では gb.qt コンポーネントを、
775GNOME 環境では gb.gtk コンポーネントを読み込むことができるように
776なります。
777
778#-----------------------------------------------------------------------------
779
780
781%prep
782%setup -q
783#%patch1 -p3 -b popup
784# copy updated message catalogue
785#%{__cp} -f %{SOURCE2} app/src/gambas2/.lang/ja.po
786#%{__cp} -f %{SOURCE3} app/src/gambas2/.lang/ja.mo
787
788%ifarch ppc
789find . -type f -name configure -exec sed -i 's/-Os/-O2/' {} \;
790%endif
791
792
793%build
794./reconf
795export LDFLAGS="-L/usr/X11R6/%{_lib}"
796%configure \
797        --with-mysql-libraries=%{_libdir}/mysql \
798        --with-qt-includes=%{_libdir}/qt3/include \
799        --with-qt-libraries=%{_libdir}/qt3/lib \
800        --disable-clanlib \
801        --enable-kde
802%{__make}
803
804
805%install
806%{__rm} -rf ${RPM_BUILD_ROOT}
807
808%{__make} install DESTDIR=${RPM_BUILD_ROOT}
809
810# copy pixmap and menu entry.
811%{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/pixmaps
812%{__install} -m644 %{_builddir}/%{name}-%{version}/app/src/gambas2/img/logo/new-logo.png ${RPM_BUILD_ROOT}/%{_datadir}/pixmaps/gambas2.png
813%{__install} -d %{buildroot}%{_datadir}/applications
814%{__install} -p -m644 %{SOURCE1} %{buildroot}%{_datadir}/applications/
815
816# copy mimetype xml to %{_datadir}
817%{__install} -d ${RPM_BUILD_ROOT}/%{_datadir}/gambas2
818%{__install} -m644 main/mime/application-x-gambas.xml ${RPM_BUILD_ROOT}/%{_datadir}/gambas2
819
820
821%pre ide
822# File type is changed from dir to sym link at 1.9.50 to 1.9.51,
823# But rpm cannnot handle these changes. So we need to delete it
824# before upgrading.
825# 2007/03/02 %{_datadir}/gambas2/help/help/odbc is changed from
826# directory to file.
827if [ "$1" -ge "2" ];then
828   if [ -d %{_datadir}/gambas2/help/image ]; then
829      %{__rm} -rf %{_datadir}/gambas2/help/image
830   fi
831   if [ -d %{_datadir}/gambas2/help/img ]; then
832      %{__rm} -rf %{_datadir}/gambas2/help/img
833   fi
834   if [ -d %{_datadir}/gambas2/help/help/odbc ]; then
835      %{__rm} -rf %{_datadir}/gambas2/help/help/odbc
836   fi
837fi
838
839%post runtime
840# register gambas executable mimetype
841xdg-icon-resource install --context mimetypes --size 64 %{_datadir}/%{name}/icons/application-x-gambas.png application-x-gambas
842xdg-mime install %{_datadir}/gambas2/application-x-gambas.xml
843
844%clean
845%{__rm} -rf ${RPM_BUILD_ROOT}
846
847
848%files runtime
849%defattr(-,root,root)
850%doc AUTHORS COPYING ChangeLog INSTALL NEWS README*
851%{_bindir}/gbi2
852%{_bindir}/gbx2
853%{_bindir}/gbr2
854%{_bindir}/gbs2
855%{_bindir}/gbs2.gambas
856%{_bindir}/gbw2
857%{_libdir}/gambas2/gb.component
858%{_libdir}/gambas2/gb.so*
859%{_libdir}/gambas2/gb.la
860%{_datadir}/gambas2/info/gb.info
861%{_datadir}/gambas2/info/gb.list
862%{_datadir}/gambas2/icons/application-x-gambas.png
863%{_datadir}/gambas2/icons/application-x-gambasscript.png
864%{_datadir}/gambas2/icons/application-x-gambasserverpage.png
865%{_datadir}/gambas2/application-x-gambas.xml
866
867%files ide
868%defattr(-,root,root)
869%{_bindir}/gambas2
870%{_bindir}/gambas2.gambas
871%{_bindir}/gbc2
872%{_bindir}/gba2
873%{_bindir}/gambas2-database-manager.gambas
874%{_datadir}/gambas2/help
875%{_datadir}/gambas2/examples
876%{_datadir}/applications/gambas2.desktop
877%{_datadir}/pixmaps/gambas2.png
878
879%files gb-compress
880%defattr(-,root,root)
881%{_libdir}/gambas2/gb.compress.*
882%{_datadir}/gambas2/info/gb.compress.*
883
884%files gb-settings
885%defattr(-,root,root)
886%{_libdir}/gambas2/gb.settings.*
887%{_datadir}/gambas2/info/gb.settings.*
888
889%files gb-form
890%defattr(-,root,root)
891%{_libdir}/gambas2/gb.form.gambas
892%{_libdir}/gambas2/gb.form.component
893%{_datadir}/gambas2/info/gb.form.info
894%{_datadir}/gambas2/info/gb.form.list
895
896%files gb-form-mdi
897%defattr(-,root,root)
898%{_libdir}/gambas2/gb.form.mdi.gambas
899%{_libdir}/gambas2/gb.form.mdi.component
900%{_datadir}/gambas2/info/gb.form.mdi.info
901%{_datadir}/gambas2/info/gb.form.mdi.list
902
903%files gb-form-dialog
904%defattr(-,root,root)
905%{_libdir}/gambas2/gb.form.dialog.gambas
906%{_libdir}/gambas2/gb.form.dialog.component
907%{_datadir}/gambas2/info/gb.form.dialog.info
908%{_datadir}/gambas2/info/gb.form.dialog.list
909
910%files gb-db
911%defattr(-,root,root)
912%{_libdir}/gambas2/gb.db.la
913%{_libdir}/gambas2/gb.db.so*
914%{_libdir}/gambas2/gb.db.component
915%{_datadir}/gambas2/info/gb.db.info
916%{_datadir}/gambas2/info/gb.db.list
917
918%files gb-db-mysql
919%defattr(-,root,root)
920%{_libdir}/gambas2/gb.db.mysql.*
921
922%files gb-db-postgresql
923%defattr(-,root,root)
924%{_libdir}/gambas2/gb.db.postgresql.*
925
926%files gb-db-sqlite
927%defattr(-,root,root)
928%{_libdir}/gambas2/gb.db.sqlite3.*
929%{_libdir}/gambas2/gb.db.sqlite2.*
930
931%files gb-db-odbc
932%defattr(-,root,root)
933%{_libdir}/gambas2/gb.db.odbc.*
934
935%files gb-debug
936%defattr(-,root,root)
937%{_libdir}/gambas2/gb.debug.*
938%{_datadir}/gambas2/info/gb.debug.*
939
940%files gb-eval
941%defattr(-,root,root)
942%{_libdir}/gambas2/gb.eval.*
943%{_datadir}/gambas2/info/gb.eval.*
944
945%files gb-net
946%defattr(-,root,root)
947%{_libdir}/gambas2/gb.net.la
948%{_libdir}/gambas2/gb.net.so*
949%{_libdir}/gambas2/gb.net.component
950%{_datadir}/gambas2/info/gb.net.info
951%{_datadir}/gambas2/info/gb.net.list
952
953%files gb-net-curl
954%defattr(-,root,root)
955%{_libdir}/gambas2/gb.net.curl.la
956%{_libdir}/gambas2/gb.net.curl.so*
957%{_libdir}/gambas2/gb.net.curl.component
958%{_datadir}/gambas2/info/gb.net.curl.info
959%{_datadir}/gambas2/info/gb.net.curl.list
960
961%files gb-qt
962%defattr(-,root,root)
963%{_libdir}/gambas2/gb.qt.la
964%{_libdir}/gambas2/gb.qt.so*
965%{_libdir}/gambas2/gb.qt.component
966%{_libdir}/gambas2/gb.qt.gambas
967%{_datadir}/gambas2/info/gb.qt.info
968%{_datadir}/gambas2/info/gb.qt.list
969
970%files gb-gtk
971%defattr(-,root,root)
972%{_libdir}/gambas2/gb.gtk.la
973%{_libdir}/gambas2/gb.gtk.so*
974%{_libdir}/gambas2/gb.gtk.component
975%{_libdir}/gambas2/gb.gtk.gambas
976%{_datadir}/gambas2/info/gb.gtk.info
977%{_datadir}/gambas2/info/gb.gtk.list
978
979%files gb-qt-ext
980%defattr(-,root,root)
981%{_libdir}/gambas2/gb.qt.ext.la
982%{_libdir}/gambas2/gb.qt.ext.so*
983%{_libdir}/gambas2/gb.qt.ext.component
984%{_datadir}/gambas2/info/gb.qt.ext.info
985%{_datadir}/gambas2/info/gb.qt.ext.list
986
987%files gb-qt-kde
988%defattr(-,root,root)
989%{_libdir}/gambas2/gb.qt.kde.la
990%{_libdir}/gambas2/gb.qt.kde.so*
991%{_libdir}/gambas2/gb.qt.kde.component
992%{_datadir}/gambas2/info/gb.qt.kde.info
993%{_datadir}/gambas2/info/gb.qt.kde.list
994
995%files gb-qt-kde-html
996%defattr(-,root,root)
997%{_libdir}/gambas2/gb.qt.kde.html.la
998%{_libdir}/gambas2/gb.qt.kde.html.so*
999%{_libdir}/gambas2/gb.qt.kde.html.component
1000%{_datadir}/gambas2/info/gb.qt.kde.html.info
1001%{_datadir}/gambas2/info/gb.qt.kde.html.list
1002
1003%files gb-qt-opengl
1004%defattr(-,root,root)
1005%{_libdir}/gambas2/gb.qt.opengl.*
1006%{_datadir}/gambas2/info/gb.qt.opengl.*
1007
1008%files gb-gtk-ext
1009%defattr(-,root,root)
1010%{_libdir}/gambas2/gb.gtk.ext.la
1011%{_libdir}/gambas2/gb.gtk.ext.so*
1012%{_libdir}/gambas2/gb.gtk.ext.component
1013%{_datadir}/gambas2/info/gb.gtk.ext.info
1014%{_datadir}/gambas2/info/gb.gtk.ext.list
1015
1016%files gb-sdl
1017%defattr(-,root,root)
1018%{_libdir}/gambas2/gb.sdl.la
1019%{_libdir}/gambas2/gb.sdl.so
1020%{_libdir}/gambas2/gb.sdl.so.*
1021%{_libdir}/gambas2/gb.sdl.component
1022%{_datadir}/gambas2/info/gb.sdl.info
1023%{_datadir}/gambas2/info/gb.sdl.list
1024
1025%files gb-sdl-sound
1026%defattr(-,root,root)
1027%{_libdir}/gambas2/gb.sdl.sound.la
1028%{_libdir}/gambas2/gb.sdl.sound.so*
1029%{_libdir}/gambas2/gb.sdl.sound.component
1030%{_datadir}/gambas2/info/gb.sdl.sound.info
1031%{_datadir}/gambas2/info/gb.sdl.sound.list
1032
1033%files gb-vb
1034%defattr(-,root,root)
1035%{_libdir}/gambas2/gb.vb.la
1036%{_libdir}/gambas2/gb.vb.so*
1037%{_libdir}/gambas2/gb.vb.component
1038%{_datadir}/gambas2/info/gb.vb.info
1039%{_datadir}/gambas2/info/gb.vb.list
1040
1041%files gb-xml
1042%defattr(-,root,root)
1043%{_libdir}/gambas2/gb.xml.*
1044%{_datadir}/gambas2/info/gb.xml.*
1045
1046%files gb-pcre
1047%defattr(-,root,root)
1048%{_libdir}/gambas2/gb.pcre.la
1049%{_libdir}/gambas2/gb.pcre.so*
1050%{_libdir}/gambas2/gb.pcre.component
1051%{_datadir}/gambas2/info/gb.pcre.info
1052%{_datadir}/gambas2/info/gb.pcre.list
1053
1054%files gb-crypt
1055%defattr(-,root,root)
1056%{_libdir}/gambas2/gb.crypt.*
1057%{_datadir}/gambas2/info/gb.crypt.*
1058
1059%files gb-opengl
1060%defattr(-,root,root)
1061%{_libdir}/gambas2/gb.opengl.*
1062%{_datadir}/gambas2/info/gb.opengl.*
1063
1064%files gb-v4l
1065%defattr(-,root,root)
1066%{_libdir}/gambas2/gb.v4l.*
1067%{_datadir}/gambas2/info/gb.v4l.*
1068
1069%files gb-info
1070%defattr(-,root,root)
1071%{_libdir}/gambas2/gb.info.*
1072%{_datadir}/gambas2/info/gb.info.*
1073
1074%files gb-pdf
1075%defattr(-,root,root)
1076%{_libdir}/gambas2/gb.pdf.*
1077%{_datadir}/gambas2/info/gb.pdf.*
1078
1079%files gb-image
1080%defattr(-,root,root)
1081%{_libdir}/gambas2/gb.image.*
1082%{_datadir}/gambas2/info/gb.image.*
1083
1084%files gb-db-form
1085%defattr(-,root,root)
1086%{_libdir}/gambas2/gb.db.form.*
1087%{_datadir}/gambas2/info/gb.db.form.*
1088
1089%files gb-net-smtp
1090%defattr(-,root,root)
1091%{_libdir}/gambas2/gb.net.smtp.*
1092%{_datadir}/gambas2/info/gb.net.smtp.*
1093
1094%files gb-gtk-svg
1095%defattr(-,root,root)
1096%{_libdir}/gambas2/gb.gtk.svg.*
1097%{_datadir}/gambas2/info/gb.gtk.svg.*
1098
1099%files gb-web
1100%defattr(-,root,root)
1101%{_libdir}/gambas2/gb.web.*
1102%{_datadir}/gambas2/info/gb.web.*
1103
1104%files gb-option
1105%defattr(-,root,root)
1106%{_libdir}/gambas2/gb.option.*
1107%{_datadir}/gambas2/info/gb.option.*
1108
1109%files gb-report
1110%defattr(-,root,root)
1111%{_libdir}/gambas2/gb.report.*
1112%{_datadir}/gambas2/info/gb.report.*
1113
1114%files gb-desktop
1115%defattr(-,root,root)
1116%{_libdir}/gambas2/gb.desktop.*
1117%{_datadir}/gambas2/info/gb.desktop.*
1118
1119%files gb-chart
1120%defattr(-,root,root)
1121%{_libdir}/gambas2/gb.chart.*
1122%{_datadir}/gambas2/info/gb.chart.*
1123
1124%files gb-draw
1125%defattr(-,root,root)
1126%{_libdir}/gambas2/gb.draw.*
1127
1128%files gb-gui
1129%defattr(-,root,root)
1130%{_libdir}/gambas2/gb.gui.*
1131%{_datadir}/gambas2/info/gb.gui.*
1132
1133
1134%changelog
1135* Thu Apr 28 2011 Kazutaka HARADA <kazutaka@vinelinux.org> 2.23.0-1
1136- new upstream release
1137- add Patch1 (upstream merged)
1138
1139* Tue Apr 12 2011 Shu KONNO <owa@bg.wakwak.com> 2.21.0-6
1140- rebuilt with postgresql-9.0.3
1141
1142* Sat Apr  9 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.21.0-5
1143- rebuilt with unixODBC-2.2.14
1144
1145* Sat Mar 12 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.21.0-4
1146- rebuilt with poppler-0.16.3
1147
1148* Wed Oct 06 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.21.0-3
1149- rebuild with poppler-0.14.2
1150
1151* Sat Jul 31 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 2.21.0-2
1152- add Patch1 to fix popup menu on taryicon
1153
1154* Sun Jul 25 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 2.21.0-1
1155- new upstream release
1156- add %%{_bindir}/gbw2 to runtime sub package
1157- add BuildRequires: libXtst-devel
1158
1159* Thu Apr  8 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.20.1-2
1160- temporarily don't use "-Os" on ppc (a toolchain bug?)
1161
1162* Tue Mar 09 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 2.20.1-1
1163- new upstream release
1164- change BuildRequires to kdelibs3-devel, kdebase3 (not version < 4)
1165  for Seed only (refer comment in <BTS:VineLinux:907>)
1166
1167* Sat Mar 06 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 2.20.0-1
1168- new upstream release
1169- change BuildRequires: MySQL-shared to libmysqlclient16 (Seed only)
1170- add BuildRequires: xdg-utils (<BTS:VineLinux:907>)
1171
1172* Sat Jan 09 2010 Kazutaka HARADA <kazutaka@vinelinux.org> 2.19.0-1
1173- new upstream release
1174
1175* Sun Nov 29 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.18.0-1
1176- new upstream release
1177
1178* Thu Nov 05 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.17.0-3
1179- rebuilt with poppler-devel-0.12.1 again
1180
1181* Wed Nov  4 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.17.0-2
1182- rebuilt with poppler-devel-0.12.1
1183
1184* Fri Oct 30 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.17.0-1
1185- new upstream release
1186
1187* Tue Sep 22 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.16.0-1
1188- new upstream release
1189- specify verision for BuildRequires: kdebase/kdelibs-devel < 4
1190- add BuildRequires: sqlite-devel, librsvg2-devel
1191
1192* Fri Jul 31 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.15.2-1
1193- new upstream release
1194
1195* Sun Jul 26 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.15.0-1
1196- new upstream release
1197
1198* Sun Jun 28 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.14.0-1
1199- new upstream release
1200
1201* Fri May 29 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.13.1-1
1202- new upstream release
1203- build with MySQL-5.1.34
1204
1205* Fri May 15 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.13.0-1
1206- new upstream release
1207- re-enable configure option --enable-kde configure option with
1208  to create gb-qt-kde and gb-qt-kde-html (due to kdebase is updated)
1209- re-add BuildRequires: kdebase
1210- add Packager tag
1211
1212* Mon Apr 13 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.12.0-2
1213- remove Requires:glibc, gcc, gcc-c++ from gambas2-runtime
1214
1215* Sat Mar 21 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.12.0-1
1216- new upstream release
1217
1218* Sat Mar 21 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.11.1-2
1219- remove Requires: libstdc++3 from gambas2-runtime
1220
1221* Fri Feb 20 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.11.1-1
1222- new upstream release
1223
1224* Tue Dec 30 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.10.1-1
1225- new upstream release
1226
1227* Sun Dec 14 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.9.0-2
1228- rebuild with poppler-0.10.2
1229
1230* Fri Oct 31 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.9.0-1
1231- new upstream release
1232
1233* Sat Aug 30 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.8.2-1
1234- new upstream release
1235
1236* Sat Aug 23 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.8.1-1
1237- new upstream release
1238- drop Patch1 (included in upstream)
1239
1240* Mon Aug 18 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.8.0-1
1241- new upstream release
1242- spec in utf-8
1243- fix mime file location
1244- add Patch1 to fix trayicon bug in gb.gtk
1245
1246* Sun Jun 15 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.7.0-1
1247- new upstream release.
1248- drop Source2 & Source3 (translation is already inclueded in upstream)
1249- register mimetype for gambas2 executable with runtime
1250  - add mimetype xml and icons
1251  - add Requires(post): xdg-utils
1252  - run xdg tools in %%post
1253
1254* Sun May 11 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.6.0-1
1255- new upstream release.
1256- drop patch0 (inclueded in upstream)
1257- add Requires: gb-desktop, gb-form-dialog, gb-gui for ide.
1258- update japanese message catalog.
1259- add --disable-kde configure option and not create gb-qt-kde and
1260  gb-qt-kde-html temporarily. (wait for update of kdebase)
1261
1262* Fri Apr 04 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.5.0-1
1263- new upstream release.
1264- add updated japanese message as Source2 & Source3.
1265
1266* Mon Mar 31 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.4.1-2
1267- rebuild with poppler-0.8.0.
1268- add Patch0 to compile with poppler-0.8.0.
1269
1270* Thu Mar 20 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.4.1-1
1271- new upstream release.
1272
1273* Wed Mar 19 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.4.0-1
1274- new upstream release.
1275- apply new versioning policy.
1276
1277* Tue Mar 04 2008 Shu KONNO <owa@bg.wakwak.com> 2.2.1-0vl2
1278- rebuild for x86_64.
1279        - replace X11 libraries path with macro in LDFLAGS.
1280        - replace mysql libraries path with macro in %%configure.
1281        - add configure option --with-qt-{includes,libraries}.
1282
1283* Sun Mar 02 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.2.1-0vl1
1284- new upstream release.
1285- drop Patch0.
1286- add BuildRequires: libffi-devel.
1287
1288* Wed Jan 02 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.0.0-0vl1
1289- new upstream release.
1290- drop Source2 & Source3 (Already included in upstream).
1291
1292* Wed Dec 19 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.92-0vl1
1293- new upstream release.
1294- added BuildRequires: MySQL-shared.
1295
1296* Thu Dec 06 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.91-0vl1
1297- new upstream release.
1298- add new components gb-gtk-ext, gb-chart, gb-draw and gb-gui.
1299- remove gb-ldap component. (By upstream)
1300- drop Patch1. (Already merged in upstream)
1301- add workarund script in %%pre.
1302- update japanese message catalogues.ad
1303
1304* Sun Sep 09 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.50-0vl3
1305- add Patch1 to build with poppler-0.6 (VineSeed).
1306- rebuild with poppler-0.6.
1307
1308* Fri Aug 31 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.50-0vl2
1309- rebuild for Vine Seed.
1310  * Thu Aug 30 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.50-0vl1
1311  - new upstream release.
1312  - add new component gb-form-dialog.
1313  - export LDFLAGS in %%build section.
1314  - update japanese message catalogues.
1315
1316* Thu Aug 30 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.50-0vl1
1317- new upstream release.
1318- add new component gb-form-dialog.
1319- export LDFLAGS in %%build section.
1320- update japanese message catalogues.
1321
1322* Sat May 19 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.49-0vl1
1323- new upstream release.
1324- build with new environment/toolchain.
1325- add new component gb-desktop.
1326- update japanese message catalogues.
1327
1328* Wed Apr 03 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.48-0vl1
1329- new upstream release.
1330- update japanese message catalogues.
1331
1332* Fri Feb 09 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.47-0vl2
1333- add updated japanese message catalogues as Source2 & Source3.
1334
1335* Sat Jan 27 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.47-0vl1
1336- new upstream release.
1337- add new components gb-option and gb-report.
1338
1339* Sat Nov 25 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.46a-0vl1
1340- source update.
1341- add updated japanese message catalogue.(but it will remove in next release)
1342
1343* Fri Nov 03 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.45-0vl1
1344- source update.
1345- add new component gb-web.
1346- build with MySQL-5.0.27.
1347
1348* Wed Oct 18 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.44-0vl1
1349- source update.
1350- add new component gb-gtk-svg.
1351
1352* Wed Sep 27 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.43-0vl1
1353- source update.
1354
1355* Wed Sep 12 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.42-0vl1
1356- source update.
1357- enable to build gb-pdf component.
1358
1359* Sun Sep 10 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.41-0vl1
1360- source update.
1361- drop BuildRequires: poppler-devel.
1362- add BuildRequres: gamin-devel.
1363
1364* Sun Aug 28 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.40-0vl1
1365- source update.
1366- gb-sdl-image component is removed (merged into gb-sdl-common).
1367- gb-sdl-opengl component is removed (merged into gb-opengl).
1368- gb-sdl-common is renamed to gb-sdl.
1369
1370* Mon Aug 11 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.38-0vl1
1371- source update.
1372
1373* Mon Aug 07 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.37-0vl1
1374- source update.
1375- change logo image for .desktop.
1376
1377* Fri Jul 28 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.35-0vl1
1378- source update.
1379- add /usr/bin/gambas2.gambas in ide package.
1380- add Requires gb-form-mdi in ide package.
1381- update Summary and Description of ide package.
1382
1383* Mon Jul 03 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.33-0vl1
1384- source update.
1385
1386* Sun Jun 18 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.32-0vl1
1387- source update.
1388- gb-qt-editor component is removed.
1389- add new component gb-form-mdi.
1390
1391* Mon May 22 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.30-0vl1
1392- source update.
1393
1394* Thu May 04 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.29-0vl1
1395- source update.
1396
1397* Mon Apr 03 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.28-0vl1
1398- source update.
1399- add subpackage gb-net-smtp.
1400- add /usr/bin/gbr2 in runtime component.
1401- disable gb-pdf componet.(couldn't compile with poppler-0.5.1)
1402- change Group to Applications/Development.
1403
1404* Tue Feb 21 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.25-0vl1
1405- source update.
1406- add subpackages gb-image and gb-db-form.
1407- minimize dependencies of ide subpackage.
1408- add patch0 (to be able to run renamed database-manager from ide).
1409- add postfix ".gambas" to renamed gambas2-database-manager.
1410
1411* Sat Feb 05 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.24-0vl1
1412- source update.
1413- remove and obsolete gb-db-sqlite3 component.
1414  (New driver automatically switch between sqlite and sqlite3.)
1415- change gb-db-sqlite dependencies (from sqlite to sqlite3).
1416
1417* Sat Jan 28 2006 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.23-0vl1
1418- source update.
1419
1420* Fri Dec 23 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.22-0vl1
1421- source update.
1422- add subpackage gb-pdf, gb-ldap and gb-qt-opengl.
1423  (gb-corba require omniORB-4 but not exist in repositry.)
1424-
1425* Sun Sep 18 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.20-0vl1
1426- source update.
1427
1428* Fri Aug 31 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.18-0vl1
1429- source update.
1430- add subpackage gb-info.
1431- add %{_libdir}/gambas2/gb.sdl.image.gambas in gb-sdl-image.
1432- delete quick workaround for compilation problem.
1433
1434* Fri Aug 12 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.16-0vl1
1435- source update.
1436- remove SOURCE2.(problem solved)
1437
1438* Wed Aug 10 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.15-0vl1
1439- source update.
1440- add subpackages gb-{crypt,opengl,sdl-opengl,v4l}.
1441- add %{_libdir}/gambas2/gb.qt.gambas in gb.qt component.
1442- use '%{__make} install' instead of %%makeinstall.(to use DESIDIR viriable)
1443- unset perl script.(no more necessary)
1444- add SOURCE2 to temporarily fix compilation problem.
1445  (may solve in next release)
1446- add quick workaround for compilation problem.
1447
1448* Sun Jun 25 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.10-0vl1
1449- source update.
1450
1451* Sun Jun 05 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.9-0vl3
1452- add configure option --disable-clanlib (not usable yet).
1453
1454* Fri Jun 03 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.9-0vl1
1455- source update.
1456
1457* Tue May 31 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.8-0vl0
1458- build for Vine Plus/3.0.
1459
1460* Sun May 15 2005 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 1.9.8-0vl1
1461- initial build for VineSeed Plus.(based on src.rpm for Mandrake?)
1462- install desktop file into %{_datadir}/applications
1463- install icon file into %{_datadir}/pixmaps
1464- modify Makefiles to enable non-root user build.
1465- change executable link.(original Makefile makes unwanted LINK.)
1466
Note: See TracBrowser for help on using the repository browser.