see plug-ins/perl/Changes

This commit is contained in:
Marc Lehmann
2000-02-05 23:30:43 +00:00
parent bce26fb34a
commit de5cb7cddb
4 changed files with 8 additions and 6 deletions

View File

@ -13,6 +13,7 @@ Revision history for Gimp-Perl extension.
- updated examples/xachlego. - updated examples/xachlego.
- added examples/blended2, examples/translogo. - added examples/blended2, examples/translogo.
- removed examples/giflogo. - removed examples/giflogo.
- applied libintl fix by yasuhiro@awa.tohoku.ac.jp.
1.19 Thu Jan 6 00:21:58 CET 2000 1.19 Thu Jan 6 00:21:58 CET 2000
- used N_ to mark all the menu paths, since gimp now tries to - used N_ to mark all the menu paths, since gimp now tries to

View File

@ -4,7 +4,7 @@ do '../config.pl';
sub MY::const_config { sub MY::const_config {
my $self = shift; my $self = shift;
$self->{LDDLFLAGS}="$self->{LDDLFLAGS} $GIMP_LIBS_NOUI $LDFLAGS $LIBS"; $self->{LDDLFLAGS}="$self->{LDDLFLAGS} $GIMP_LIBS_NOUI $LDFLAGS $LIBS $INTLLIBS";
package MY; package MY;
$self->SUPER::const_config(@_); $self->SUPER::const_config(@_);
} }

View File

@ -205,7 +205,7 @@ install-plugins ::
\$(CHMOD) 755 * ; \\ \$(CHMOD) 755 * ; \\
\$(MY_FIXIN) * ; \\ \$(MY_FIXIN) * ; \\
for plugin in * ; do \\ for plugin in * ; do \\
$GT \"\$\$plugin\" \$(DESTDIR)$GT2 ; \\ $GT \"\$\$plugin\" $GT2 ; \\
done done
\$(RM_RF) inst-temp \$(RM_RF) inst-temp
@ -228,9 +228,9 @@ install-po:
for (<po/*.po>) { for (<po/*.po>) {
my($po)=m!/(.*)\.po$!; #/# for brainy vim my($po)=m!/(.*)\.po$!; #/# for brainy vim
print " $po"; print " $po";
$postamble .= " \$(MKPATH) \$(DESTDIR)\$(datadir)/locale/$po/LC_MESSAGES\n"; $postamble .= " \$(MKPATH) \$(datadir)/locale/$po/LC_MESSAGES\n";
$postamble .= " -\$(MSGFMT) -o \$(DESTDIR)\$(datadir)/locale/$po/LC_MESSAGES/gimp-perl.mo po/$po.po\n"; $postamble .= " -\$(MSGFMT) -o \$(datadir)/locale/$po/LC_MESSAGES/gimp-perl.mo po/$po.po\n";
$postamble .= " -\$(CHMOD) 644 \$(DESTDIR)\$(datadir)/locale/$po/LC_MESSAGES/gimp-perl.mo\n"; $postamble .= " -\$(CHMOD) 644 \$(datadir)/locale/$po/LC_MESSAGES/gimp-perl.mo\n";
} }
} else { } else {
print " skipped"; print " skipped";
@ -325,7 +325,7 @@ WriteMakefile(
'Gimp/Module.pm' => '$(INST_LIBDIR)/Gimp/Module.pm', 'Gimp/Module.pm' => '$(INST_LIBDIR)/Gimp/Module.pm',
'Gimp/Config.pm' => '$(INST_LIBDIR)/Gimp/Config.pm', 'Gimp/Config.pm' => '$(INST_LIBDIR)/Gimp/Config.pm',
}, },
'LDFROM' => expand("\$(OBJECT) $INTLLIBS"), 'LDFROM' => expand("\$(OBJECT) $LIBS $INTLLIBS"),
'INC' => "$INC1 $GIMP_INC_NOUI $CPPFLAGS $CFLAGS", 'INC' => "$INC1 $GIMP_INC_NOUI $CPPFLAGS $CFLAGS",
'DEFINE' => "$DEFINE1 $DEFS", 'DEFINE' => "$DEFINE1 $DEFS",
'EXE_FILES' => [qw(scm2perl scm2scm gimpdoc xcftopnm embedxpm)], 'EXE_FILES' => [qw(scm2perl scm2scm gimpdoc xcftopnm embedxpm)],

View File

@ -42,6 +42,7 @@ $^W=0;
INC1 => '', INC1 => '',
DEFINE1 => '', DEFINE1 => '',
LIBS => q[@LIBS@],
INTLLIBS => q[@INTLLIBS@], INTLLIBS => q[@INTLLIBS@],
MSGFMT => q[@MSGFMT@], MSGFMT => q[@MSGFMT@],
); );