source: projects/specs/trunk/g/gimp/gimp-vl.spec @ 11730

Revision 11730, 23.1 KB checked in by ara_t, 6 years ago (diff)

gimp: update to 2.8.22

Line 
1%define verdir  v2.8
2%define binver  2.8
3%define subver  2.0
4
5Summary:        The GNU Image Manipulation Program
6Summary(ja):    GNU 画像加工プログラム
7Name:    gimp
8Version: 2.8.22
9Release: 1%{?_dist_release}
10
11License: GPL, LGPL
12Group:   Applications/Graphics
13URL:     http://www.gimp.org/
14Source:  ftp://ftp.gimp.org/pub/gimp/%{verdir}/%{name}-%{version}.tar.bz2
15
16Patch10: gimp-2.0-desktopfile-no-gimp-remote.patch
17
18Patch100: gimp-2.8.0-gimprc-vine.patch
19
20BuildRoot: %{_tmppath}/%{name}-%{version}-root
21
22Obsoletes: gimp-data-min
23Obsoletes: gimp-libgimp
24
25Requires: xdg-utils
26
27BuildRequires: gtk2-devel >= 2.24.10
28BuildRequires: libpng-devel
29BuildRequires: libtiff-devel
30BuildRequires: libjpeg-devel
31BUildRequires: lcms-devel
32BuildRequires: librsvg2-devel
33BuildRequires: aalib-devel
34BuildRequires: alsa-lib-devel
35BuildRequires: libexif-devel
36BuildRequires: gegl-devel >= 0.2.0
37BuildRequires: poppler-devel >= 0.14.2
38BuildRequires: curl-devel
39BuildRequires: libwmf-devel
40BuildRequires: dbus-glib-devel
41BuildRequires: gvfs-devel
42BuildRequires: alsa-lib-devel
43BuildRequires: python-devel
44BuildRequires: libXpm-devel
45BuildRequires: libXmu-devel
46BuildRequires: pygtk2-devel
47BuildRequires: libxslt
48BuildRequires: gtk-doc
49
50Vendor: Project Vine
51Distribution: Vine Linux
52Packager: Takemikaduchi
53
54
55%description
56The GIMP (GNU Image Manipulation Program) is a powerful image
57composition and editing program, which can be extremely useful for
58creating logos and other graphics for Web pages.  The GIMP has many of
59the tools and filters you would expect to find in similar commercial
60offerings, and some interesting extras as well. The GIMP provides a
61large image manipulation toolbox, including channel operations and
62layers, effects, sub-pixel imaging and anti-aliasing, and conversions,
63all with multi-level undo.
64
65The GIMP includes a scripting facility, but many of the included
66scripts rely on fonts that we cannot distribute.  The GIMP FTP site
67has a package of fonts that you can install by yourself, which
68includes all the fonts needed to run the included scripts.  Some of
69the fonts have unusual licensing requirements; all the licenses are
70documented in the package.  Get
71ftp://ftp.gimp.org/pub/gimp/fonts/freefonts-0.10.tar.gz and
72ftp://ftp.gimp.org/pub/gimp/fonts/sharefonts-0.10.tar.gz if you are so
73inclined.  Alternatively, choose fonts which exist on your system
74before running the scripts.
75
76Install the GIMP if you need a powerful image manipulation
77program. You may also want to install other GIMP packages:
78gimp-libgimp if you're going to use any GIMP plug-ins and
79gimp-data-extras, which includes various extra files for the GIMP.
80
81#'
82%description -l ja
83GIMP (GNU 画像処理プログラム)は、ウェブページ用のロゴやその他の画像を
84作る際に役立つ、強力な描画・編集プログラムです。GIMPには、同様の商用
85ソフトにあなたが望むような数多くのツールやフィルタはもとより、いくつ
86かの面白い追加機能も含まれています。GIMPは、チャンネル操作,レイヤー,
87効果,サブピクセル処理,アンチエイリアシング,変換,複数回のアンドゥ
88対応を含む多機能なツールボックスを提供します。
89
90GIMPはスクリプト機能を備えていますが、組み込みスクリプトの多くは我々が
91配布できないフォントに依存しています。GIMPのFTPサイトには、組み込まれ
92たスクリプトを実行するのに必要な全てのフォントを含んだ、ご自分で
93インストールできるフォントのパッケージがあります。いくつかのフォント
94には見慣れないライセンス要件が設定されています。
95(全てのライセンスについてはパッケージ中の文書に記載があります)
96必要な人は
97ftp://ftp.gimp.org/pub/gimp/fonts/freefonts-0.10.tar.gz と
98ftp://ftp.gimp.org/pub/gimp/fonts/sharefonts-0.10.tar.gz から
99取得して下さい。別の手段として、スクリプトの実行前にあなたのシステムに
100既にあるフォントを選んでおく方法があります。
101
102もしあなたが強力な画像処理プログラムを必要としているならば、GIMP を
103インストールして下さい。また、恐らくあなたはその他の GIMP 用パッケージ
104もインストールしたいと思うでしょう。
105(gimp-libgimp : GIMP プラグインを使用する場合に必要。
106gimp-data-extras : GIMP用のさまざまな拡張ファイル。)
107
108%package devel
109Summary: GIMP plugin and extension development kit
110Summary(ja): GIMP プラグイン・拡張機能開発キット
111Group:    Development/Libraries
112Requires: %{name} = %{version}-%{release}
113Requires: gtk2-devel >= 2.4.4, glib2-devel >= 2.4.5
114
115%description devel
116The gimp-devel package contains the static libraries and header files
117for writing GNU Image Manipulation Program (GIMP) plug-ins and
118extensions.
119
120Install gimp-devel if you're going to create plug-ins and/or
121extensions for the GIMP.  You'll also need to install gimp-limpgimp
122and gimp, and you may want to install gimp-data-extras.
123
124
125%prep
126%setup -q -n %{name}-%{version}
127%patch100 -p1 -b .gimprc
128
129%build
130autoreconf -if
131%{configure} \
132    --without-print \
133    --without-libmng \
134    --without-webkit \
135    --without-hal \
136    --with-libexif \
137    --with-gvfs \
138    --enable-mp
139
140%{__make} %{?_smp_mflags}
141
142%install
143%{__rm} -rf ${RPM_BUILD_ROOT}
144%{make_install}
145
146%{__mkdir_p} ${RPM_BUILD_ROOT}%{_datadir}/applications
147cp ./desktop/%{name}.desktop ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop
148desktop-file-install --vendor gnome             \
149                     --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \
150                     --delete-original                               \
151                     --remove-category RasterGraphics                \
152                     --add-category GNOME                            \
153                     --add-category Application                      \
154                     --add-category Graphics                         \
155                     ${RPM_BUILD_ROOT}%{_datadir}/applications/%{name}.desktop
156
157# %{__ln_s} -f gimp-%{binver} ${RPM_BUILD_ROOT}%{_bindir}/gimp
158# %{__ln_s} -f gimp-remote-%{binver} ${RPM_BUILD_ROOT}%{_bindir}/gimp-remote
159%{__ln_s} -f gimptool-%{subver} ${RPM_BUILD_ROOT}%{_bindir}/gimptool
160
161## removed unpacked files
162%{__rm} -f ${RPM_BUILD_ROOT}%{_libdir}/*.la
163%{__rm} -f ${RPM_BUILD_ROOT}%{_libdir}/%{name}/%{subver}/modules/*.la
164%{__rm} -f ${RPM_BUILD_ROOT}%{_libdir}/%{name}/%{subver}/python/*.la
165# conflict to gimp-print package
166#rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}/%{subver}/plug-ins/print
167
168%post
169%{_syssbindir}/ldconfig
170gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
171
172%postun
173%{_syssbindir}/ldconfig
174gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
175
176%clean
177%{__rm} -rf %{buildroot}
178
179
180%files
181%attr (-, root, man) %doc AUTHORS COPYING ChangeLog HACKING NEWS README
182%attr (-, root, man) %doc README.i18n
183#%attr (-, root, man) %doc docs/*.txt
184%defattr (-, root, root)
185%{_sysconfdir}/%{name}/%{subver}/controllerrc
186%{_sysconfdir}/%{name}/%{subver}/gimprc
187%{_sysconfdir}/%{name}/%{subver}/gtkrc
188%{_sysconfdir}/%{name}/%{subver}/menurc
189%{_sysconfdir}/%{name}/%{subver}/sessionrc
190%{_sysconfdir}/%{name}/%{subver}/templaterc
191%{_sysconfdir}/%{name}/%{subver}/unitrc
192%{_bindir}/*
193%dir %{_libdir}/%{name}/%{subver}/environ
194%dir %{_libdir}/%{name}/%{subver}/modules
195%dir %{_libdir}/%{name}/%{subver}/plug-ins
196%{_libdir}/%{name}/%{subver}/interpreters/default.interp
197%{_libdir}/%{name}/%{subver}/interpreters/pygimp.interp
198%{_libdir}/%{name}/%{subver}/environ/*
199%{_libdir}/%{name}/%{subver}/modules/*.so
200%{_libdir}/%{name}/%{subver}/plug-ins/*
201%{_libdir}/%{name}/%{subver}/python/*
202%{_libdir}/lib*.so.*
203%{_datadir}/appdata/gimp.appdata.xml
204%{_datadir}/applications/*.desktop
205%{_datadir}/icons/hicolor/*/*/%{name}.png
206%dir %{_datadir}/%{name}/%{subver}/
207%{_datadir}/%{name}/%{subver}/brushes
208%{_datadir}/%{name}/%{subver}/dynamics
209%{_datadir}/%{name}/%{subver}/fonts
210%{_datadir}/%{name}/%{subver}/fractalexplorer
211%{_datadir}/%{name}/%{subver}/gfig
212%{_datadir}/%{name}/%{subver}/gflare
213%{_datadir}/%{name}/%{subver}/gimpressionist
214%{_datadir}/%{name}/%{subver}/gradients
215%{_datadir}/%{name}/%{subver}/images/*.png
216%{_datadir}/%{name}/%{subver}/menus
217%{_datadir}/%{name}/%{subver}/palettes
218%{_datadir}/%{name}/%{subver}/patterns
219%{_datadir}/%{name}/%{subver}/scripts
220%{_datadir}/%{name}/%{subver}/tags
221%{_datadir}/%{name}/%{subver}/themes
222%{_datadir}/%{name}/%{subver}/tips
223%{_datadir}/%{name}/%{subver}/tool-presets
224%{_datadir}/%{name}/%{subver}/ui
225%{_datadir}/locale/*
226%{_mandir}/man1/*
227%{_mandir}/man5/*
228
229
230%files devel
231%defattr (-, root, root)
232%{_libdir}/*.so
233%{_includedir}/gimp-%{subver}/libgimp/*.h
234%{_includedir}/gimp-%{subver}/libgimpbase/*.h
235
236%{_includedir}/gimp-%{subver}/libgimpcolor/*.h
237%{_includedir}/gimp-%{subver}/libgimpconfig/*.h
238%{_includedir}/gimp-%{subver}/libgimpmath/*.h
239%{_includedir}/gimp-%{subver}/libgimpmodule/*.h
240%{_includedir}/gimp-%{subver}/libgimpthumb/*.h
241%{_includedir}/gimp-%{subver}/libgimpwidgets/*.h
242%{_libdir}/pkgconfig/*.pc
243%{_datadir}/aclocal/*.m4
244%{_datadir}/gtk-doc/html/*
245
246
247%changelog
248* Sat Jun 30 2018 Toshiaki Ara <ara_t@384.jp> 2.8.22-1
249- update to 2.8.22
250
251* Sat Nov 05 2016 Toshiaki Ara <ara_t@384.jp> 2.8.18-1
252- new upstream release
253
254* Sun Nov 22 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.16-1
255- new upstream release
256
257* Sun Aug 31 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.14-1
258- new upstream release
259- remove Patch0 (gimp-2.8.10-git20140709.patch)
260
261* Sun Jul 13 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.10-4
262- change Patch0 (gimp-2.8.10-git20140709.patch)
263
264* Tue Jul 08 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.10-3
265- rebuild with poppler-0.26.2
266
267* Sat May 03 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.10-2
268- rebuild with poppler-0.24.5
269- add Patch0 (gimp-2.8.10-freetype-2.5.x.patch)
270
271* Sun Dec 01 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.10-1
272- new upstream release
273
274* Sat Oct 26 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.6-2
275- rebuild with poppler-0.24.2
276
277* Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.6-1
278- new upstream release
279
280* Sun Mar 10 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-1
281- new upstream release
282
283* Tue Aug 28 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.2-1
284- new upstream release
285
286* Sun May 06 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.0-1
287- new upstream release
288- update Patch100 (gimp-2.8.0-gimprc-vine.patch)
289
290* Wed Apr 18 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.12-2
291- rebuild with poppler-0.18.4
292
293* Thu Feb 02 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.12-1
294- new upstream release
295- remove Patch0
296
297* Sat Jan 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.11-6
298- remove BuildRequires: hal-devel
299- add configure option (--without-hal)
300- update Patch0 (gimp-2.6-git20120103.patch)
301- add BuildRequires: dbus-glib-devel, libxslt
302
303* Wed Sep 07 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.11-5
304- add Patch0 (gimp-2.6-git20110825.patch)
305  (including security fix for CVE-2010-4540,4541,4542,4543 and CVE-2011-1782,2896)
306- remove Patch21,22
307
308* Wed Apr 27 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.11-4
309- add Patch21 (05_CVE-2010-454x.patch) from debian
310  (including security fix for CVE-2010-4540,4541,4542)
311- add Patch22 (06_CVE-2010-4543.patch) from debian
312  (including security fix for CVE-2010-4543)
313
314* Fri Apr 22 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.11-3
315- update Patch100 to use xdg-open instead of htmlview
316- add R: xdg-utils, remove R: htmlview
317
318* Sat Mar 12 2011 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.11-2
319- rebuilt with poppler-0.16.3
320
321* Sat Oct 16 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.11-1
322- new upstream release
323
324* Wed Oct 06 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.10-3
325- rebuild with poppler-0.14.2
326
327* Sat Sep 25 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.10-2
328- rebuild with rpm-4.8.1 for pkg-config file
329
330* Mon Jul 19 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.10-1
331- new upstream release
332
333* Sun Apr 18 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.8-2
334- rebuild with gegl-0.1.2
335
336* Sun Mar 14 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.6.8-1
337- new upstream release
338- add BuildRequires: python-devel, libXpm, libXmu, pygtk2-devel
339
340* Mon Aug 17 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.7-1
341- new upstream release
342
343* Fri May 29 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.6.6-3
344- rebuilt
345
346* Sat Apr 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp>  2.6.6-2
347- add --without-webkit --with-gvfs
348- add BR: poppler-devel, curl-devel, libwmf-devel, hal-devel,
349          dbus-devel, gvfs-devel, alsa-lib-devel
350
351* Fri Apr 03 2009 Daisuke SUZUKI <daisuke@linux.or.jp>  2.6.6-1
352- new upstream release
353
354* Sun Dec 14 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.6.3-2
355- rebuild with poppler-0.10.2
356
357* Sat Nov 22 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.3-1
358- new upstream release
359
360* Wed Oct 29 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.2-1
361- new upstream release
362
363* Thu Oct 09 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.1-1
364- new upstream release
365
366* Tue Oct 07 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.0-1
367- new upstream release
368- add BR: gegl-devel
369
370* Mon Aug 25 2008 Shu KONNO <owa@bg.wakwak.com> 2.4.7-1vl5
371- updated gimp to 2.4.7
372- set binver macro to 2.4
373- updated gimp-2.2.17-gimprc-vine.patch to 2.4.7
374- dropt gimp-2.0-desktopfile-no-gimp-remote.patch
375- changed option in %%configure
376        - dropt --disable-python
377        - dropt --disable-perl
378        - added --disable-print, instead of --without-print
379- applied new versioning policy, spec in utf-8
380
381* Sat Sep  8 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.17-0vl3
382- updated Patch100
383- rebuilt with librsvg2-2.18.2
384
385* Sat Sep  8 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.17-0vl2
386- added Patch100 for using internal browser <BTS:545>
387
388* Fri Aug 17 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.17-0vl1
389- new upstream release
390
391* Thu Apr 19 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.14-0vl1
392- new upstream release
393- build with libexif, add BuildRequires: libexif-devel
394
395* Fri Dec 01 2006 KAZUKI SHIMURA <kazuki@ma.ccnw.ne.jp> 2.2.13-0vl1
396- new upstream release
397- add Requires: %%{name} = %%{version}-%%{release} to -devel package
398- add BuildRequires:
399        libpng-devel, libtiff-devel, libjpeg-devel, lcms-devel,
400        librsvg2-devel, aalib-devel, gtkhtml2-devel, alsa-lib-devel
401
402* Thu Aug 31 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.2.12-0vl2
403- rebuilt without libwmf-devel
404
405* Sun Jul  9 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.12-0vl1
406- new upstream release
407
408* Sun Apr 16 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.11-0vl1
409- new upstream release
410- updated BuildRequires
411
412* Thu Jan  5 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.10-0vl1
413- new upstream release
414
415* Mon Nov 21 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.9-0vl2
416- remove libwmf dependency
417
418* Thu Nov 10 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.9-0vl1
419- new upstream release
420
421* Mon Oct  3 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.8-0vl1
422- new upstream release
423- added Japanese translation catalogue from CVS
424
425* Mon May 16 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.2.7-0vl3
426- 2.2.7-0vl2's packager is not Suzuki-san but Inagaki-san. Fixed.
427- release number conflict - increased release number
428  - Wed May 11 2005 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 2.2.7-0vl2
429  - rebuilt to fix unwanted dependencies with lcms (ppc only)
430
431* Sun May 15 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.2.7-0vl2
432- added --without-libexif option to %configue
433- added %{_includedir}/gimp-%{subver}/libgimpthumb/*.h to devel
434- changed devel package Group to Development/Libraries
435
436* Tue May 10 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.7-0vl1
437- new upstream release
438
439* Mon Apr 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.6-0vl2
440- rebuild without alsa-lib
441
442* Mon Apr 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.6-0vl1
443- new upstream release
444- fixed broken symlinks to gimptool
445
446* Sun Mar 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.4-0vl2
447- remove alsa-lib dependency
448
449* Sat Mar 19 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.4-0vl1
450- new upstream release
451
452* Tue Jan 11 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.2-0vl1
453- new upstream release
454
455* Wed Dec 22 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.2.0-0vl1
456- new upstream release
457
458* Thu Nov 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.6-0vl2
459- rebuild with new environment
460
461* Wed Nov 03 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.6-0vl1
462- new upstream release
463
464* Mon Sep 27 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.5-0vl1
465- new upstream release
466
467* Sun Aug 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.4-0vl1
468- new upstream release
469
470* Mon Jul 19 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.3-0vl1
471- new upstream release
472
473* Thu Jun 17 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.2-0vl2
474- added BuildRequires: libart_lgpl-devel
475
476* Thu Jun 17 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.2-0vl1
477- new upstream release
478
479* Fri Apr 16 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.1-0vl1
480- new upstream release
481
482* Wed Mar 24 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0-0vl2
483- remove obsolete po/ja.po and po-libgimp/ja.po
484- update po-script-fu/ja.po
485
486* Wed Mar 24 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.0-0vl1
487- new upstream release
488
489* Mon Mar  8 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl0.pre4
490- new upstream release
491- modify desktop file to exec "gimp" instead of "gimp-remote-version"
492- do not build/install static libs
493
494* Tue Feb 10 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl0.pre3
495- new upstream release
496
497* Tue Jan 27 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0-0vl0.pre2
498- new upstream release
499
500* Sun Sep 14 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.20-0vl1
501- new upstream release
502
503* Sun Sep 14 2003 KAZUKI SHIMURA <rito@pos.to> 1.3.19-0vl4
504- rebuild with --without-libmng
505
506* Tue Sep 09 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.19-0vl3
507- update ja.po
508
509* Sat Sep 06 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.19-0vl2
510- add missing files..
511
512* Fri Sep 05 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.19-0vl1
513- new upstream release
514
515* Sun Aug 03 2003 Satoshi MACHINO <machino@vinelinux.org> 1.3.14-0vl5
516- rebuilt without libmng-devel
517
518* Sat Jun 21 2003 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.3.14-0vl4
519- rebuilt
520
521* Tue Jun 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.14-0vl3
522- rebuilt
523
524* Tue Jun 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.14-0vl2
525- rebuilt
526
527* Tue Jun 03 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.14-0vl1
528- new upstream release
529
530* Fri Apr 18 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.13-0vl1
531- new upstream release
532
533* Thu Jan  9 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.11-0vl2
534- fixed Requires for -devel package.
535
536* Thu Jan  9 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 1.3.11-0vl1
537- new upstream release
538- this is experimental package for gnome2
539
540* Mon Mar 04 2002 Toru Sagami <sagami@vinelinux.org> 1.2.3-0vl2
541- include missing -1.2 man pages
542
543* Sat Feb 16 2002 Jun Nishii <jun@vinelinux.org> 1.2.3-0vl1
544- ver.up
545
546* Thu Jan 10 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-0vl5
547- rebuild on XFree86-3.3.6
548
549* Thu Jan 10 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-0vl5
550- FIX: Requires: %%{name} = %%{version} for devel subpackage
551
552* Fri Dec 21 2001 Toru Sagami <sagami@vinelinux.org> 1.2.2-0vl4
553- quit replacing gimp-std-plugins.ja.po on our glibc22 system
554- Requires: %%{name}-%%{version} for devel subpackage
555- freshen gimp-help-ja as of 1120
556
557* Tue Sep 04 2001 Toru Sagami <sagami@vinelinux.org>
558- 1.2.2-0vl3: freshen gimp-help-ja as of 0903
559- enable pre script and make it work for upgrading to symlink from directory
560- let pre/triggres scripts exit 0
561
562* Fri Aug 31 2001 <shom@vinelinux.org> 1.2.2-0vl2
563- add all BuildPrereq
564- change help-ja location (dir:help/{C,ja}
565symlink:help/{en,en_US,ja,ja_JP,ja_JP.eucJP})
566- add helpbrowser setlocale patch (Patch0)
567- add %pre (for invalid symlinks, dirs in 1.2.2-0vl1 and help-ja)
568
569* Thu Aug 16 2001 <sagami@vinelinux.org>
570- 1.2.2-0vl1
571- FIXME: revive gimp-std-plugins.ja.po to prevent NLS error.
572- tweaked spec around installing help-ja (install files into "en", not "c")
573- %%triggerpostun to cope with obsoleted gimp-help-ja uninstallation
574
575* Thu Aug 16 2001 Masaki Shinomiya <shino@pos.to>
576- Include Japanese help 0729
577- Requires: gtk+ version >= 1.2.8
578
579* Fri Aug 03 2001 <sagami@vinelinux.org>
580- 1.2.2-0vl0: updated to release 1.2.2
581- move gimptool.1 to devel subpackage and eliminate ABOUT-NLS from %%doc
582
583* Fri May 25 2001 MATSUBAYASHI 'Shaolin' Kohji <shaolin@vinelinux.org>
584- 1.2.1-0vl3
585- rebuilt with glib/gtk = 1.2.10
586
587* Mon Feb 05 2001 Toru Sagami <czs14350@mb.infoweb.ne.jp>
588- fixed files section so as not to own mandir itself
589
590* Tue Jan 23 2001 Toru Sagami <czs14350@mb.infoweb.ne.jp>
591- 1.2.1-0vl1
592
593* Sat Jan 13 2001 Jun Nishii <jun@vinelinux.org>
594- 1.2.0-0vl2
595- fix Group of gimp-lib
596- remove screenshot.patch because the bug seems to be fixed.
597- optimize by -O2
598
599* Fri Dec 29 2000 Yoichi Imai <yoichi@silver-forest.com>
600- 1.2.0-0vl1
601- removed strip
602- removed fontset patch, gimp-std-plugins.ja.po
603- used %{_.*?dir}
604- added some path of files
605
606* Tue Oct 17 2000 Jun Nishii <jun@vinelinux.org>
607- 1.1.27-0vl2
608- added gimp-1.1.23-screenshot.patch
609
610* Sun Oct  8 2000 Jun Nishii <jun@vinelinux.org>
611- 1.1.27-0vl1
612- guash 2.3.0
613
614* Tue Sep 12 2000 Jun Nishii <jun@vinelinux.org>
615- 1.1.25-0vl1
616- obsoletes /etc/X11/wmconfig
617
618* Mon Jun 26 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
619- updated to 1.1.24
620- added gimp-std-plugins.ja.po to prevent NLS error for the temporary.
621
622* Thu Jun  1 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
623- updated to 1.1.23
624
625* Mon Apr 24 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
626- updated to 1.1.20
627- added /usr/bin/gimptool to devel.
628
629* Tue Apr  4 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
630- updated to 1.1.19
631
632* Sat Mar 25 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
633- added GIMP.desktop file
634
635* Mon Mar 6 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
636- updated to 1.1.18
637
638* Mon Feb 14 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
639- updated to 1.1.17
640
641* Fri Feb 11 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
642- updated to 1.1.16
643- remove unnecessary patches and sources (hack_jp,  Success, GrayScale, ja.po)
644- added guash plug-ins
645
646* Sat Jan 22 2000 Jun Nishii <jun@vinelinux.org>
647- 1.1.15-0vl2
648- rebuild to avoid esxtra dependency for Vine Linux 2.0
649
650* Wed Jan 19 2000 Yasuyuki Furukawa <furukawa@vinelinux.org>
651- gimp-1.1.15
652- modified Success patch and hack_jp patch for 1.1.15
653
654* Tue Dec 21 1999 Jun Nishii <jun@vinelinux.org>
655- gimp-1.1.14
656
657* Sun Nov 28 1999 Jun NISHII <jun@vinelinux.org>
658- plugins.patch
659
660* Sat Nov 27 1999 Jun NISHII <jun@vinelinux.org>
661- gimp-1.1.13
662- merge patch from ftp://ftp.tba.org.tohoku.ac.jp/pub/gimp/
663
664* Thu Nov 25 1999 Jun NISHII <jun@vinelinux.org>
665- merge many jp patches
666
667* Mon Oct 25 1999 Jun Nishii <jun@vinelinux.org>
668- added defattr for vine-devel
669
670* Sat Oct 23 1999 Jun Nishii <jun@vinelinux.org>
671- merge fontset patch from gimp-ML
672
673* Sun Oct 17 1999 Jun Nishii <jun@vinelinux.org>
674- 1.1.10
675- separate gimp and gimpe-libgimp again
676
677* Fri Aug 6 1999 Jun Nishii <jun@vinelinux.org>
678- 1.1.7
679- build without threads and mp suppored to get stability
680
681* Fri Jul 30 1999 Jun Nishii <jun@vinelinux.org>
682- build with threads and mp suppored
683- merge gimp and gimp-libgimp
684
685* Thu Jun 10 1999 Toru Hoshina <hoshina@best.com>
686- Added spline patch, because I love SOTA chrome logo :-)
687
688* Wed Mar 10 1999 Tsutomu Yasuda <_tom_@sf.airnet.ne.jp>
689- First release
Note: See TracBrowser for help on using the repository browser.