diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:30:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:30:19 +0000 |
commit | 5c1676dfe6d2f3c837a5e074117b45613fd29a72 (patch) | |
tree | cbffb45144febf451e54061db2b21395faf94bfe /plug-ins/common/mkgen.pl | |
parent | Initial commit. (diff) | |
download | gimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.tar.xz gimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.zip |
Adding upstream version 2.10.34.upstream/2.10.34upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'plug-ins/common/mkgen.pl')
-rwxr-xr-x | plug-ins/common/mkgen.pl | 234 |
1 files changed, 234 insertions, 0 deletions
diff --git a/plug-ins/common/mkgen.pl b/plug-ins/common/mkgen.pl new file mode 100755 index 0000000..1e95284 --- /dev/null +++ b/plug-ins/common/mkgen.pl @@ -0,0 +1,234 @@ +#!/usr/bin/perl -w + +use lib '../../pdb'; + +require 'util.pl'; + +*write_file = \&Gimp::CodeGen::util::write_file; +*FILE_EXT = \$Gimp::CodeGen::util::FILE_EXT; + +$destdir = "."; +$builddir = "."; + +$ignorefile = ".gitignore"; +$rcfile = "gimprc.common"; + +$outmk = "$builddir/Makefile.am$FILE_EXT"; +$outignore = "$builddir/$ignorefile$FILE_EXT"; +$outrc = "$builddir/$rcfile$FILE_EXT"; + +open MK, "> $outmk"; +open IGNORE, "> $outignore"; +open RC, "> $outrc"; + +require './plugin-defs.pl'; + +$bins = ""; $opts = ""; $dirs = ""; + +foreach (sort keys %plugins) { + my $makename = $_; + $makename =~ s/-/_/g; + + if (exists $plugins{$_}->{optional}) { + $bins .= "${makename}_libexec_PROGRAMS = \$(\U$makename\E)\n"; + $opts .= "\t$_ \\\n"; + } + else { + $bins .= "${makename}_libexec_PROGRAMS = $_\n"; + } + + $dirs .= "${makename}_libexecdir = \$(gimpplugindir)/plug-ins/$_\n"; +} + +$extra = ""; +foreach (@extra) { $extra .= "\t$_\t\\\n" } +if ($extra) { + $extra =~ s/\t\\\n$//s; + $extra = "\t\\\n$extra"; +} + +foreach ($bins, $opts) { s/ \\\n$//s } + +print MK <<EOT; + + +## --------------------------------------------------------- +## This file is autogenerated by mkgen.pl and plugin-defs.pl +## --------------------------------------------------------- + +## Modify those two files instead of this one; for most +## plug-ins you should only need to modify plugin-defs.pl. + +if OS_WIN32 +mwindows = -mwindows +else +libm = -lm +endif + +if PLATFORM_OSX +xobjective_c = "-xobjective-c" +framework_cocoa = -framework Cocoa +endif + +if HAVE_WINDRES +include \$(top_srcdir)/build/windows/gimprc-plug-ins.rule +include $rcfile +endif + +libgimp = \$(top_builddir)/libgimp/libgimp-\$(GIMP_API_VERSION).la +libgimpbase = \$(top_builddir)/libgimpbase/libgimpbase-\$(GIMP_API_VERSION).la +libgimpcolor = \$(top_builddir)/libgimpcolor/libgimpcolor-\$(GIMP_API_VERSION).la +libgimpconfig = \$(top_builddir)/libgimpconfig/libgimpconfig-\$(GIMP_API_VERSION).la +libgimpmath = \$(top_builddir)/libgimpmath/libgimpmath-\$(GIMP_API_VERSION).la \$(libm) +libgimpmodule = \$(top_builddir)/libgimpmodule/libgimpmodule-\$(GIMP_API_VERSION).la +libgimpui = \$(top_builddir)/libgimp/libgimpui-\$(GIMP_API_VERSION).la +libgimpwidgets = \$(top_builddir)/libgimpwidgets/libgimpwidgets-\$(GIMP_API_VERSION).la + + +AM_LDFLAGS = \$(mwindows) + +EXTRA_DIST = \\ + mkgen.pl \\ + plugin-defs.pl$extra \\ + $rcfile + +AM_CPPFLAGS = \\ + -I\$(top_srcdir) \\ + \$(GTK_CFLAGS) \\ + \$(GEGL_CFLAGS) \\ + -I\$(includedir) + +$dirs + +$bins + +EXTRA_PROGRAMS = \\ +$opts + +install-\%: \% + \@\$(NORMAL_INSTALL) + \$(mkinstalldirs) \$(DESTDIR)\$(gimpplugindir)/plug-ins/\$< + \@p=\$<; p1=`echo \$\$p|sed 's/\$(EXEEXT)\$\$//'`; \\ + if test -f \$\$p \\ + || test -f \$\$p1 \\ + ; then \\ + f=`echo "\$\$p1" | sed 's,^.*/,,;\$(transform);s/\$\$/\$(EXEEXT)/'`; \\ + echo " \$(INSTALL_PROGRAM_ENV) \$(LIBTOOL) --mode=install \$(INSTALL_PROGRAM) \$\$p \$(DESTDIR)\$(gimpplugindir)/plug-ins/\$\$p/\$\$f"; \\ + \$(INSTALL_PROGRAM_ENV) \$(LIBTOOL) --mode=install \$(INSTALL_PROGRAM) \$\$p \$(DESTDIR)\$(gimpplugindir)/plug-ins/\$\$p/\$\$f || exit 1; \\ + else :; fi +EOT + +print IGNORE <<EOT; +/.deps +/.libs +/Makefile +/Makefile.in +EOT + +foreach (sort keys %plugins) { + my $makename = $_; + $makename =~ s/-/_/g; + + my $libgimp = ""; + + if (exists $plugins{$_}->{ui}) { + $libgimp .= "\$(libgimpui)"; + $libgimp .= "\t\t\\\n\t\$(libgimpwidgets)"; + $libgimp .= "\t\\\n\t\$(libgimpmodule)"; + $libgimp .= "\t\\\n\t"; + } + + $libgimp .= "\$(libgimp)"; + $libgimp .= "\t\t\\\n\t\$(libgimpmath)"; + $libgimp .= "\t\t\\\n\t\$(libgimpconfig)"; + $libgimp .= "\t\\\n\t\$(libgimpcolor)"; + $libgimp .= "\t\t\\\n\t\$(libgimpbase)"; + + my $glib; + if (exists $plugins{$_}->{ui}) { + $glib = "\$(GTK_LIBS)\t\t\\"; + } else { + $glib = "\$(CAIRO_LIBS)\t\t\\\n\t\$(GDK_PIXBUF_LIBS)\t\\"; + + if (exists $plugins{$_}->{gio} && + ! exists $plugins{$_}->{gegl}) { + $glib .= "\n\t\$(GIO_LIBS)\t\t\\"; + } + } + + if (exists $plugins{$_}->{gegl}) { + $glib .= "\n\t\$(GEGL_LIBS)\t\t\\"; + } + + my $optlib = ""; + + if (exists $plugins{$_}->{libs}) { + $optlib = "\n\t\$(" . $plugins{$_}->{libs} . ")\t\t\\"; + } + + if (exists $plugins{$_}->{ldflags}) { + my $ldflags = $plugins{$_}->{ldflags}; + + print MK <<EOT; + +${makename}_LDFLAGS = $ldflags +EOT + } + + if (exists $plugins{$_}->{cflags}) { + my $cflags = $plugins{$_}->{cflags}; + my $cflagsvalue = $cflags =~ /FLAGS/ ? "\$($cflags)" : $cflags; + + print MK <<EOT; + +${makename}_CFLAGS = $cflagsvalue +EOT + } + + if (exists $plugins{$_}->{cppflags}) { + my $cppflags = $plugins{$_}->{cppflags}; + + print MK <<EOT; + +${makename}_CPPFLAGS = $cppflags +EOT + } + + my $deplib = "\$(RT_LIBS)\t\t\\\n\t\$(INTLLIBS)"; + if (exists $plugins{$_}->{libdep}) { + my @lib = split(/:/, $plugins{$_}->{libdep}); + foreach $lib (@lib) { + $deplib = "\$(\U$lib\E_LIBS)\t\t\\\n\t$deplib"; + } + } + + my $rclib = "\$(${makename}_RC)"; + + print MK <<EOT; + +${makename}_SOURCES = \\ + $_.c + +${makename}_LDADD = \\ + $libgimp \\ + $glib$optlib + $deplib \\ + $rclib +EOT + + print RC <<EOT; +${makename}_RC = $_.rc.o +EOT + + print IGNORE "/$_\n"; + print IGNORE "/$_.exe\n"; +} + +close RC; +close MK; +close IGNORE; + +&write_file($outmk, $destdir); +&write_file($outignore, $destdir); +&write_file($outrc, $destdir); + |