mirror of https://github.com/GNOME/gimp.git
plug-ins/common/mkgen.pl added a pattern rule to install single plugins
* plug-ins/common/mkgen.pl * plug-ins/common/Makefile.am: added a pattern rule to install single plugins * all plugin Makefiles: use $libexecdir instead of $pluginlibdir so we get installed on make install-exec * plug-ins/gap/gap_filter_iterators.c: removed old Colorify_iter_ALT reference -Yosh
This commit is contained in:
parent
8be7ed56b9
commit
204908ef8f
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
Thu Jun 24 18:13:35 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* plug-ins/common/mkgen.pl
|
||||
* plug-ins/common/Makefile.am: added a pattern rule to install
|
||||
single plugins
|
||||
|
||||
* all plugin Makefiles: use $libexecdir instead of $pluginlibdir
|
||||
so we get installed on make install-exec
|
||||
|
||||
* plug-ins/gap/gap_filter_iterators.c: removed old Colorify_iter_ALT
|
||||
reference
|
||||
|
||||
Thu Jun 24 22:49:41 BST 1999 Andy Thomas <alt@gimp.org>
|
||||
|
||||
* layers_dialog.c
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
moduledir = $(gimpplugindir)/modules
|
||||
libexecdir = $(gimpplugindir)/modules
|
||||
|
||||
CPPFLAGS = \
|
||||
-DMODULE_COMPILATION
|
||||
|
@ -15,7 +15,7 @@ EXTRA_DIST = \
|
|||
makefile.msc \
|
||||
module.def
|
||||
|
||||
module_LTLIBRARIES = \
|
||||
libexec_LTLIBRARIES = \
|
||||
libcolorsel_gtk.la \
|
||||
libcolorsel_triangle.la \
|
||||
libcolorsel_water.la
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = AlienMap
|
||||
libexec_PROGRAMS = AlienMap
|
||||
|
||||
AlienMap_SOURCES = \
|
||||
AlienMap.c \
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
SUBDIRS = fractalexplorer-examples
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = FractalExplorer
|
||||
libexec_PROGRAMS = FractalExplorer
|
||||
|
||||
FractalExplorer_SOURCES = \
|
||||
Callbacks.h \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = Lighting
|
||||
libexec_PROGRAMS = Lighting
|
||||
|
||||
Lighting_SOURCES = \
|
||||
amb1.xpm \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = MapObject
|
||||
libexec_PROGRAMS = MapObject
|
||||
|
||||
MapObject_SOURCES = \
|
||||
amb1.xpm \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = bmp
|
||||
libexec_PROGRAMS = bmp
|
||||
|
||||
bmp_SOURCES = \
|
||||
bmp.c \
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
EXTRA_DIST = \
|
||||
mkgen.pl \
|
||||
plugin-defs.pl
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-DLOCALEDIR=\""$(localedir)"\"
|
||||
|
@ -8,7 +12,7 @@ INCLUDES = \
|
|||
$(GTK_CFLAGS) \
|
||||
-I$(includedir)
|
||||
|
||||
pluginlib_PROGRAMS = \
|
||||
libexec_PROGRAMS = \
|
||||
CEL \
|
||||
CML_explorer \
|
||||
$(AA) \
|
||||
|
@ -132,6 +136,14 @@ EXTRA_PROGRAMS = \
|
|||
tiff \
|
||||
xpm
|
||||
|
||||
install-%: %
|
||||
@$(NORMAL_INSTALL)
|
||||
$(mkinstalldirs) $(DESTDIRS)$(libexecdir)
|
||||
@if test -f $<; then \
|
||||
echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $< $(DESTDIR)$(libexecdir)/`echo $<|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
|
||||
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $< $(DESTDIR)$(libexecdir)/`echo $<|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
|
||||
else :; fi
|
||||
|
||||
CEL_SOURCES = \
|
||||
CEL.c
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ foreach (sort keys %plugins) {
|
|||
foreach ($bins, $opts) { s/ \\\n$//s }
|
||||
|
||||
print MK <<EOT;
|
||||
pluginlibdir = \$(gimpplugindir)/plug-ins
|
||||
libexecdir = \$(gimpplugindir)/plug-ins
|
||||
|
||||
AM_CPPFLAGS = \\
|
||||
-DLOCALEDIR=\\""\$(localedir)"\\"
|
||||
|
@ -32,11 +32,19 @@ INCLUDES = \\
|
|||
\$(GTK_CFLAGS) \\
|
||||
-I\$(includedir)
|
||||
|
||||
pluginlib_PROGRAMS = \\
|
||||
libexec_PROGRAMS = \\
|
||||
$bins
|
||||
|
||||
EXTRA_PROGRAMS = \\
|
||||
$opts
|
||||
|
||||
install-\%: \%
|
||||
\@\$(NORMAL_INSTALL)
|
||||
\$(mkinstalldirs) \$(DESTDIRS)\$(libexecdir)
|
||||
\@if test -f \$<; then \\
|
||||
echo " \$(LIBTOOL) --mode=install \$(INSTALL_PROGRAM) \$< \$(DESTDIR)\$(libexecdir)/`echo \$<|sed 's/\$(EXEEXT)\$\$//'|sed '\$(transform)'|sed 's/\$\$/\$(EXEEXT)/'`"; \\
|
||||
\$(LIBTOOL) --mode=install \$(INSTALL_PROGRAM) \$< \$(DESTDIR)\$(libexecdir)/`echo \$<|sed 's/\$(EXEEXT)\$\$//'|sed '\$(transform)'|sed 's/\$\$/\$(EXEEXT)/'`; \\
|
||||
else :; fi
|
||||
EOT
|
||||
|
||||
foreach (sort keys %plugins) {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
||||
pluginlib_PROGRAMS = dbbrowser
|
||||
libexec_PROGRAMS = dbbrowser
|
||||
|
||||
dbbrowser_SOURCES = \
|
||||
dbbrowser.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = faxg3
|
||||
libexec_PROGRAMS = faxg3
|
||||
|
||||
faxg3_SOURCES = \
|
||||
faxg3.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = fits
|
||||
libexec_PROGRAMS = fits
|
||||
|
||||
fits_SOURCES = \
|
||||
fits.c \
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
||||
pluginlib_PROGRAMS = flame
|
||||
libexec_PROGRAMS = flame
|
||||
|
||||
flame_SOURCES = \
|
||||
cmap.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = fp
|
||||
libexec_PROGRAMS = fp
|
||||
|
||||
fp_SOURCES = \
|
||||
fp.c \
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
scriptdatadir = $(gimpdatadir)/scripts
|
||||
|
||||
|
@ -95,7 +95,7 @@ EXTRA_DIST = \
|
|||
iter_ALT/old/plug_in_warp_iter_ALT.inc \
|
||||
$(scriptdata_DATA)
|
||||
|
||||
pluginlib_PROGRAMS = \
|
||||
libexec_PROGRAMS = \
|
||||
gap_plugins \
|
||||
gap_filter
|
||||
|
||||
|
|
|
@ -402,7 +402,6 @@ static void p_delta_LightSettings(t_LightSettings *val, t_LightSettings *val_fro
|
|||
#include "iter_ALT/mod/plug_in_solid_noise_iter_ALT.inc"
|
||||
#include "iter_ALT/mod/plug_in_sparkle_iter_ALT.inc"
|
||||
|
||||
#include "iter_ALT/old/Colorify_iter_ALT.inc"
|
||||
#include "iter_ALT/old/plug_in_CentralReflection_iter_ALT.inc"
|
||||
#include "iter_ALT/old/plug_in_anamorphose_iter_ALT.inc"
|
||||
#include "iter_ALT/old/plug_in_blur2_iter_ALT.inc"
|
||||
|
|
|
@ -16,9 +16,9 @@ EXTRA_DIST = \
|
|||
README \
|
||||
TODO
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = gdyntext
|
||||
libexec_PROGRAMS = gdyntext
|
||||
|
||||
gdyntext_SOURCES = \
|
||||
charmap.c \
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
SUBDIRS = gfig-examples
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
||||
pluginlib_PROGRAMS = gfig
|
||||
libexec_PROGRAMS = gfig
|
||||
|
||||
gfig_SOURCES = \
|
||||
gfig.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = gfli
|
||||
libexec_PROGRAMS = gfli
|
||||
|
||||
gfli_SOURCES = \
|
||||
fli.h \
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(libdir)
|
||||
|
||||
pluginlib_LIBRARIES = libgpc.a
|
||||
lib_LIBRARIES = libgpc.a
|
||||
|
||||
libgpc_a_SOURCES = \
|
||||
gpc.c \
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
EXTRA_DIST = README.ifscompose
|
||||
|
||||
pluginlib_PROGRAMS = ifscompose
|
||||
libexec_PROGRAMS = ifscompose
|
||||
|
||||
ifscompose_SOURCES = \
|
||||
ifscompose.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = maze
|
||||
libexec_PROGRAMS = maze
|
||||
|
||||
maze_SOURCES = \
|
||||
algorithms.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(libdir)
|
||||
libdir = $(libdir)
|
||||
|
||||
pluginlib_LIBRARIES = libmegawidget.a
|
||||
lib_LIBRARIES = libmegawidget.a
|
||||
|
||||
libmegawidget_a_SOURCES = \
|
||||
megawidget.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = mosaic
|
||||
libexec_PROGRAMS = mosaic
|
||||
|
||||
mosaic_SOURCES = \
|
||||
mosaic.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = pagecurl
|
||||
libexec_PROGRAMS = pagecurl
|
||||
|
||||
pagecurl_SOURCES = \
|
||||
pagecurl.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = print
|
||||
libexec_PROGRAMS = print
|
||||
|
||||
print_SOURCES = \
|
||||
print-escp2.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = rcm
|
||||
libexec_PROGRAMS = rcm
|
||||
|
||||
rcm_SOURCES = \
|
||||
rcm.c \
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
|
||||
SUBDIRS = scripts
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = script-fu
|
||||
libexec_PROGRAMS = script-fu
|
||||
|
||||
script_fu_SOURCES = \
|
||||
interp_md5.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = sgi
|
||||
libexec_PROGRAMS = sgi
|
||||
|
||||
sgi_SOURCES = \
|
||||
sgi.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = sinus
|
||||
libexec_PROGRAMS = sinus
|
||||
|
||||
sinus_SOURCES = \
|
||||
sinus.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = struc
|
||||
libexec_PROGRAMS = struc
|
||||
|
||||
struc_SOURCES = \
|
||||
struc.c \
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = unsharp
|
||||
libexec_PROGRAMS = unsharp
|
||||
|
||||
unsharp_SOURCES = \
|
||||
dialog_f.h \
|
||||
|
|
|
@ -4,9 +4,9 @@ scriptdatadir = $(gimpdatadir)/scripts
|
|||
|
||||
scriptdata_DATA = web-browser.scm
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = webbrowser
|
||||
libexec_PROGRAMS = webbrowser
|
||||
|
||||
webbrowser_SOURCES = \
|
||||
webbrowser.c
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
pluginlibdir = $(gimpplugindir)/plug-ins
|
||||
libexecdir = $(gimpplugindir)/plug-ins
|
||||
|
||||
pluginlib_PROGRAMS = xjt
|
||||
libexec_PROGRAMS = xjt
|
||||
|
||||
EXTRA_DIST = README README_xjt_fileformat.txt
|
||||
|
||||
|
|
Loading…
Reference in New Issue