see plug-ins/perl/Changes

This commit is contained in:
Marc Lehmann 2000-02-19 22:39:01 +00:00
parent 590b5a5437
commit b955e7f474
6 changed files with 14 additions and 6 deletions

View File

@ -16,6 +16,8 @@ Revision history for Gimp-Perl extension.
- applied libintl fix by yasuhiro@awa.tohoku.ac.jp.
- applied save_image/PNG-noextra switch patch by pkaempf@box.echo.ch.
- applied Perl-Server reuseaddress fix by gphan@webjuice.com.
- corrected the libintl fix to really work.
- added fr and ru translations.
1.19 Thu Jan 6 00:21:58 CET 2000
- used N_ to mark all the menu paths, since gimp now tries to

View File

@ -134,5 +134,7 @@ po/de.po
po/it.po
po/cs.po
po/no.po
po/fr.po
po/ru.po
po/update.sh

View File

@ -325,7 +325,7 @@ WriteMakefile(
'Gimp/Module.pm' => '$(INST_LIBDIR)/Gimp/Module.pm',
'Gimp/Config.pm' => '$(INST_LIBDIR)/Gimp/Config.pm',
},
'LDFROM' => expand("\$(OBJECT) $LIBS"), # $INTLLIBS
'LDFROM' => expand("\$(OBJECT) $LIBS $INTLLIBS"),
'INC' => "$INC1 $GIMP_INC_NOUI $CPPFLAGS $CFLAGS",
'DEFINE' => "$DEFINE1 $DEFS",
'EXE_FILES' => [qw(scm2perl scm2scm gimpdoc xcftopnm embedxpm)],

View File

@ -23,6 +23,7 @@ firetext! AND _grayscale_ for map_gradient(!)
sota-chrome pagesize of 2 is _wrong_
bugs
* damnit libintl crazy shit
[DONE] * alow gimp_selection_shrink with a zero argument.
* font_text with negative size? bug report #5523
* gimp-perl list archives.. where and add this to the gimp.html page!

View File

@ -1,8 +1,10 @@
# this is ugly, but it makes Gimp installable from within CPAN
$topdir=".";
use Cwd 'abs_path';
$topdir.="/.." while ! -f "$topdir/MANIFEST";
$topdir = ".";
$topdir .= "/.." while ! -f "$topdir/MANIFEST";
$topdir = abs_path $topdir;
$^W=0;
@ -67,6 +69,7 @@ while (($k,$v)=each(%cfg)) {
}
$GIMPTOOL = expand($GIMPTOOL);
$INTLLIBS = expand($INTLLIBS);
if ($IN_GIMP) {
$GIMP = $bindir."/gimp" if $IN_GIMP;

View File

@ -7,7 +7,7 @@ test -f MANIFEST || exec echo "must be started in plug-ins/perl/po"
msgmerge -w 83 po/gimp-perl.pot - >gimp-perl.pot~ &&
mv gimp-perl.pot~ po/gimp-perl.pot
for po in po/*.po; do
msgmerge -w 83 $po po/gimp-perl.pot >$po~ && mv $po~ $po
done
#for po in po/*.po; do
# msgmerge -w 83 $po po/gimp-perl.pot >$po~ && mv $po~ $po
#done