mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00
Remove autotools
This commit is contained in:
parent
52fb1e93f9
commit
26dce72d2c
342 changed files with 6 additions and 20141 deletions
50
.gitignore
vendored
50
.gitignore
vendored
|
@ -4,53 +4,3 @@
|
||||||
|
|
||||||
# Atom editor
|
# Atom editor
|
||||||
/.vscode
|
/.vscode
|
||||||
|
|
||||||
# Autotools
|
|
||||||
*.la
|
|
||||||
*.lo
|
|
||||||
*.o
|
|
||||||
*~
|
|
||||||
/*.config
|
|
||||||
/*.creator
|
|
||||||
/*.creator.user
|
|
||||||
/*.files
|
|
||||||
/*.includes
|
|
||||||
/ChangeLog
|
|
||||||
/Gimp-3.0.gir
|
|
||||||
/Gimp-3.0.typelib
|
|
||||||
/INSTALL
|
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/aclocal.m4
|
|
||||||
/authors.md
|
|
||||||
/autom4te.cache
|
|
||||||
/compile
|
|
||||||
/config.cache
|
|
||||||
/config.guess
|
|
||||||
/config.h
|
|
||||||
/config.h.in
|
|
||||||
/config.log
|
|
||||||
/config.rpath
|
|
||||||
/config.status
|
|
||||||
/config.status.lineno
|
|
||||||
/config.sub
|
|
||||||
/configure
|
|
||||||
/cscope.files
|
|
||||||
/cscope.out
|
|
||||||
/depcomp
|
|
||||||
/gimp-3.0.pc
|
|
||||||
/gimp-zip
|
|
||||||
/gimpthumb-3.0.pc
|
|
||||||
/gimpui-3.0.pc
|
|
||||||
/git-version.h
|
|
||||||
/gtk-doc.make
|
|
||||||
/install-sh
|
|
||||||
/libtool
|
|
||||||
/ltmain.sh
|
|
||||||
/missing
|
|
||||||
/mkinstalldirs
|
|
||||||
/py-compile
|
|
||||||
/stamp-h
|
|
||||||
/stamp-h.in
|
|
||||||
/stamp-h1
|
|
||||||
/test-driver
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Default commit CI should only run the following pipelines:
|
# Default commit CI should only run the following pipelines:
|
||||||
# - Linux autotools and meson (base & fast)
|
# - Linux meson (base & fast)
|
||||||
# - Win64 crossbuild (base & fast)
|
# - Win64 crossbuild (base & fast)
|
||||||
# Scheduled CI ($CI_PIPELINE_SOURCE == "schedule") will run regularly:
|
# Scheduled CI ($CI_PIPELINE_SOURCE == "schedule") will run regularly:
|
||||||
# - Win 32/64 native builds (base but slow)
|
# - Win 32/64 native builds (base but slow)
|
||||||
|
@ -8,12 +8,10 @@
|
||||||
# - cppcheck (static code analysis)
|
# - cppcheck (static code analysis)
|
||||||
# - Flatpak build (slow and doesn't need constant publishing)
|
# - Flatpak build (slow and doesn't need constant publishing)
|
||||||
# Releases ($CI_COMMIT_TAG != null) should run only:
|
# Releases ($CI_COMMIT_TAG != null) should run only:
|
||||||
# - Linux autotools (distcheck source tarball)
|
|
||||||
# - Win 32/64 native builds (Windows installer creation)
|
# - Win 32/64 native builds (Windows installer creation)
|
||||||
#
|
#
|
||||||
# To force step-specific pipelines without waiting for commits and/or
|
# To force step-specific pipelines without waiting for commits and/or
|
||||||
# pipelines, these are the variable you should set:
|
# pipelines, these are the variable you should set:
|
||||||
# - GIMP_CI_AUTOTOOLS: trigger the autotools/gcc build.
|
|
||||||
# - GIMP_CI_MESON_GCC: trigger the meson/gcc build.
|
# - GIMP_CI_MESON_GCC: trigger the meson/gcc build.
|
||||||
# - GIMP_CI_MESON_CLANG: trigger the meson/clang build.
|
# - GIMP_CI_MESON_CLANG: trigger the meson/clang build.
|
||||||
# - GIMP_CI_CROSSROAD_WIN32: trigger the crossroad/meson build for Win 32-bit.
|
# - GIMP_CI_CROSSROAD_WIN32: trigger the crossroad/meson build for Win 32-bit.
|
||||||
|
@ -21,10 +19,10 @@
|
||||||
# - GIMP_CI_MSYS2_WIN32: trigger the native MSYS2 build for Win 32-bit.
|
# - GIMP_CI_MSYS2_WIN32: trigger the native MSYS2 build for Win 32-bit.
|
||||||
# - GIMP_CI_MSYS2_WIN64: trigger the native MSYS2 build for Win 64-bit.
|
# - GIMP_CI_MSYS2_WIN64: trigger the native MSYS2 build for Win 64-bit.
|
||||||
# - GIMP_CI_WIN_INSTALLER: trigger both native MSYS2 builds then creates Windows installer.
|
# - GIMP_CI_WIN_INSTALLER: trigger both native MSYS2 builds then creates Windows installer.
|
||||||
# - GIMP_CI_SOURCES: trigger the autotools/gcc build and the source tarball job.
|
# - GIMP_CI_SOURCES: trigger the meson/gcc build and the source tarball job.
|
||||||
# - GIMP_CI_CPPCHECK: trigger cppcheck static analysis.
|
# - GIMP_CI_CPPCHECK: trigger cppcheck static analysis.
|
||||||
# - GIMP_CI_FLATPAK: trigger the nightly flatpak build and publishing.
|
# - GIMP_CI_FLATPAK: trigger the nightly flatpak build and publishing.
|
||||||
# - GIMP_CI_RASTER_ICONS: trigger the autotools and meson builds without vector icons.
|
# - GIMP_CI_RASTER_ICONS: trigger the meson build without vector icons.
|
||||||
|
|
||||||
include: 'https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml'
|
include: 'https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml'
|
||||||
|
|
||||||
|
@ -54,7 +52,6 @@ build-image:
|
||||||
# On releases.
|
# On releases.
|
||||||
- if: '$CI_COMMIT_TAG != null'
|
- if: '$CI_COMMIT_TAG != null'
|
||||||
# Custom builds though web GUI, API or schedules.
|
# Custom builds though web GUI, API or schedules.
|
||||||
- if: '$GIMP_CI_AUTOTOOLS != null'
|
|
||||||
- if: '$GIMP_CI_SOURCES != null'
|
- if: '$GIMP_CI_SOURCES != null'
|
||||||
- if: '$GIMP_CI_MESON_GCC != null'
|
- if: '$GIMP_CI_MESON_GCC != null'
|
||||||
- if: '$GIMP_CI_MESON_CLANG != null'
|
- if: '$GIMP_CI_MESON_CLANG != null'
|
||||||
|
@ -73,7 +70,7 @@ build-image:
|
||||||
- echo "FROM debian:testing" > Dockerfile
|
- echo "FROM debian:testing" > Dockerfile
|
||||||
- echo "RUN apt-get update" >> Dockerfile
|
- echo "RUN apt-get update" >> Dockerfile
|
||||||
- echo "RUN apt-get install -y --no-install-recommends \\" >> Dockerfile
|
- echo "RUN apt-get install -y --no-install-recommends \\" >> Dockerfile
|
||||||
- echo "appstream at-spi2-core automake autopoint build-essential desktop-file-utils ffmpeg gettext ghostscript gi-docgen git glib-networking gobject-introspection graphviz graphviz-dev hicolor-icon-theme iso-codes libaa1-dev libappstream-glib-dev libbz2-dev libcfitsio-dev libdbus-glib-1-dev libexif-dev libgexiv2-dev libgirepository1.0-dev libgs-dev libgtk-3-bin libgtk-3-dev libgudev-1.0-dev libheif-dev libjson-glib-dev libjxl-dev liblcms2-dev liblzma-dev libmng-dev libmypaint-dev libopenexr-dev libpoppler-glib-dev libraw-dev libraw20 librsvg2-dev libspiro-dev libsuitesparse-dev libtiff-dev libtiff5-dev libtool libumfpack5 libwebp-dev libwmf-dev libxmu-dev libxpm-dev luajit meson mypaint-brushes poppler-data python3 python3-pip valac xauth xsltproc xvfb xz-utils yelp-tools" >> Dockerfile
|
- echo "appstream at-spi2-core build-essential desktop-file-utils ffmpeg gettext ghostscript gi-docgen git glib-networking gobject-introspection graphviz graphviz-dev hicolor-icon-theme iso-codes libaa1-dev libappstream-glib-dev libbz2-dev libcfitsio-dev libdbus-glib-1-dev libexif-dev libgexiv2-dev libgirepository1.0-dev libgs-dev libgtk-3-bin libgtk-3-dev libgudev-1.0-dev libheif-dev libjson-glib-dev libjxl-dev liblcms2-dev liblzma-dev libmng-dev libmypaint-dev libopenexr-dev libpoppler-glib-dev libraw-dev libraw20 librsvg2-dev libspiro-dev libsuitesparse-dev libtiff-dev libtiff5-dev libtool libumfpack5 libwebp-dev libwmf-dev libxmu-dev libxpm-dev luajit meson mypaint-brushes poppler-data python3 python3-pip valac xauth xsltproc xvfb xz-utils yelp-tools" >> Dockerfile
|
||||||
|
|
||||||
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:build-debian-latest --cache=true --cache-ttl=120h
|
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:build-debian-latest --cache=true --cache-ttl=120h
|
||||||
|
|
||||||
|
@ -104,7 +101,7 @@ build-image-win64:
|
||||||
# specifically g++-mingw-w64-x86-64-posix and gcc-mingw-w64-x86-64-posix.
|
# specifically g++-mingw-w64-x86-64-posix and gcc-mingw-w64-x86-64-posix.
|
||||||
# Note that we can't install both the -posix and -win32 versions since
|
# Note that we can't install both the -posix and -win32 versions since
|
||||||
# update gcc-mingw-w64 (25).
|
# update gcc-mingw-w64 (25).
|
||||||
- echo "automake autopoint build-essential cmake cpio g++-mingw-w64-x86-64-posix gcc-mingw-w64-x86-64-posix gettext git libgdk-pixbuf2.0-dev libgirepository1.0-dev libglib2.0-bin librsvg2-dev meson pkg-config python3 python3-distutils python3-docutils python3-pip rpm python3-zstandard xsltproc xvfb" >> Dockerfile
|
- echo "build-essential cmake cpio g++-mingw-w64-x86-64-posix gcc-mingw-w64-x86-64-posix gettext git libgdk-pixbuf2.0-dev libgirepository1.0-dev libglib2.0-bin librsvg2-dev meson pkg-config python3 python3-distutils python3-docutils python3-pip rpm python3-zstandard xsltproc xvfb" >> Dockerfile
|
||||||
|
|
||||||
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:build-win64-latest --cache=true --cache-ttl=120h
|
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:build-win64-latest --cache=true --cache-ttl=120h
|
||||||
|
|
||||||
|
@ -127,7 +124,7 @@ build-image-win32:
|
||||||
- echo "FROM debian:testing" > Dockerfile
|
- echo "FROM debian:testing" > Dockerfile
|
||||||
- echo "RUN apt-get update" >> Dockerfile
|
- echo "RUN apt-get update" >> Dockerfile
|
||||||
- echo "RUN apt-get install -y --no-install-recommends \\" >> Dockerfile
|
- echo "RUN apt-get install -y --no-install-recommends \\" >> Dockerfile
|
||||||
- echo "automake autopoint build-essential cpio g++-mingw-w64-i686 gcc-mingw-w64-i686 gettext git libgdk-pixbuf2.0-dev libglib2.0-bin librsvg2-dev meson pkg-config python3 python3-distutils python3-docutils python3-pip python3-zstandard rpm xsltproc xvfb" >> Dockerfile
|
- echo "build-essential cpio g++-mingw-w64-i686 gcc-mingw-w64-i686 gettext git libgdk-pixbuf2.0-dev libglib2.0-bin librsvg2-dev meson pkg-config python3 python3-distutils python3-docutils python3-pip python3-zstandard rpm xsltproc xvfb" >> Dockerfile
|
||||||
|
|
||||||
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:build-win32-latest --cache=true --cache-ttl=120h
|
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE:build-win32-latest --cache=true --cache-ttl=120h
|
||||||
|
|
||||||
|
@ -142,7 +139,6 @@ deps-debian:
|
||||||
# On releases.
|
# On releases.
|
||||||
- if: '$CI_COMMIT_TAG != null'
|
- if: '$CI_COMMIT_TAG != null'
|
||||||
# Custom builds though web GUI, API or schedules.
|
# Custom builds though web GUI, API or schedules.
|
||||||
- if: '$GIMP_CI_AUTOTOOLS != null'
|
|
||||||
- if: '$GIMP_CI_SOURCES != null'
|
- if: '$GIMP_CI_SOURCES != null'
|
||||||
- if: '$GIMP_CI_MESON_GCC != null'
|
- if: '$GIMP_CI_MESON_GCC != null'
|
||||||
- if: '$GIMP_CI_MESON_CLANG != null'
|
- if: '$GIMP_CI_MESON_CLANG != null'
|
||||||
|
@ -203,30 +199,6 @@ deps-debian:
|
||||||
- export PATH="${INSTALL_PREFIX}/bin:$PATH"
|
- export PATH="${INSTALL_PREFIX}/bin:$PATH"
|
||||||
needs: ["deps-debian"]
|
needs: ["deps-debian"]
|
||||||
|
|
||||||
gimp-distcheck-debian:
|
|
||||||
rules:
|
|
||||||
# On commits and merge requests.
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "push"'
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
|
||||||
# On releases.
|
|
||||||
- if: '$CI_COMMIT_TAG != null'
|
|
||||||
# Custom builds though web GUI, API or schedules.
|
|
||||||
- if: '$GIMP_CI_AUTOTOOLS != null'
|
|
||||||
- if: '$GIMP_CI_SOURCES != null'
|
|
||||||
extends: .gimp-debian-base
|
|
||||||
script:
|
|
||||||
- mkdir _build
|
|
||||||
- cd _build
|
|
||||||
- ../autogen.sh
|
|
||||||
--prefix="${INSTALL_PREFIX}"
|
|
||||||
--enable-debug
|
|
||||||
--enable-gi-docgen
|
|
||||||
--enable-g-ir-doc
|
|
||||||
--enable-windows-installer
|
|
||||||
- make -j "$(nproc)"
|
|
||||||
- make -j "$(nproc)" check
|
|
||||||
- make -j "$(nproc)" distcheck
|
|
||||||
|
|
||||||
gimp-meson-debian:
|
gimp-meson-debian:
|
||||||
rules:
|
rules:
|
||||||
# On commits and merge requests.
|
# On commits and merge requests.
|
||||||
|
@ -291,26 +263,6 @@ gimp-meson-raster-icons:
|
||||||
- ninja -C _build
|
- ninja -C _build
|
||||||
- ninja -C _build test
|
- ninja -C _build test
|
||||||
|
|
||||||
gimp-autotools-raster-icons:
|
|
||||||
rules:
|
|
||||||
# Custom builds only (web GUI, API or schedules).
|
|
||||||
- if: '$GIMP_CI_RASTER_ICONS != null'
|
|
||||||
extends: .gimp-debian-base
|
|
||||||
script:
|
|
||||||
- tools/generate-icon-makefiles.py
|
|
||||||
- diff="$(git diff)"
|
|
||||||
- if [ -n "$diff" ]; then
|
|
||||||
echo "Outdated icon-list.mk - please run tools/generate-icon-makefiles.py";
|
|
||||||
echo "$diff";
|
|
||||||
exit 1;
|
|
||||||
fi
|
|
||||||
- mkdir _build
|
|
||||||
- cd _build
|
|
||||||
- ../autogen.sh
|
|
||||||
--prefix="${INSTALL_PREFIX}"
|
|
||||||
--disable-vector-icons
|
|
||||||
- make -j "$(nproc)"
|
|
||||||
|
|
||||||
## WINDOWS 64-bit CI (native MSYS2) ##
|
## WINDOWS 64-bit CI (native MSYS2) ##
|
||||||
|
|
||||||
deps-win64-native:
|
deps-win64-native:
|
||||||
|
@ -772,34 +724,6 @@ win-installer-nightly:
|
||||||
- C:\msys64\usr\bin\bash -lc "bash -x ./build/windows/gitlab-ci/installer-gimp-msys2.sh > installer.log 2>&1"
|
- C:\msys64\usr\bin\bash -lc "bash -x ./build/windows/gitlab-ci/installer-gimp-msys2.sh > installer.log 2>&1"
|
||||||
needs: ["packaging-win32-native", "packaging-win64-native"]
|
needs: ["packaging-win32-native", "packaging-win64-native"]
|
||||||
|
|
||||||
sources-autotools:
|
|
||||||
rules:
|
|
||||||
# On commits.
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "push"'
|
|
||||||
# On releases.
|
|
||||||
- if: '$CI_COMMIT_TAG != null'
|
|
||||||
# Custom builds though web GUI, API or schedules.
|
|
||||||
- if: '$GIMP_CI_SOURCES != null'
|
|
||||||
stage: distribution
|
|
||||||
dependencies:
|
|
||||||
- gimp-distcheck-debian
|
|
||||||
artifacts:
|
|
||||||
name: "GIMP-sources-${CI_COMMIT_SHORT_SHA}"
|
|
||||||
when: always
|
|
||||||
expire_in: 2 days
|
|
||||||
paths:
|
|
||||||
- gimp-*.tar.bz2
|
|
||||||
- gimp-*.tar.bz2.SHA256SUMS
|
|
||||||
- gimp-*.tar.bz2.SHA512SUMS
|
|
||||||
script:
|
|
||||||
- mv _build/gimp-*.tar.bz2 .
|
|
||||||
- BASENAME=`ls gimp-*.tar.bz2 | sed 's/.tar.bz2//'` &&
|
|
||||||
FILENAME="$BASENAME-autotools.tar.bz2" &&
|
|
||||||
mv $BASENAME.tar.bz2 $FILENAME &&
|
|
||||||
sha256sum gimp-*.tar.bz2 > ${FILENAME}.SHA256SUMS &&
|
|
||||||
sha512sum gimp-*.tar.bz2 > ${FILENAME}.SHA512SUMS
|
|
||||||
needs: ["gimp-distcheck-debian"]
|
|
||||||
|
|
||||||
sources-meson:
|
sources-meson:
|
||||||
rules:
|
rules:
|
||||||
# On commits.
|
# On commits.
|
||||||
|
|
167
Makefile.am
167
Makefile.am
|
@ -1,167 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4macros ${ACLOCAL_FLAGS}
|
|
||||||
|
|
||||||
if WITH_PDBGEN
|
|
||||||
PDB = pdb
|
|
||||||
endif
|
|
||||||
|
|
||||||
SUBDIRS = \
|
|
||||||
m4macros \
|
|
||||||
cursors \
|
|
||||||
themes \
|
|
||||||
po \
|
|
||||||
po-libgimp \
|
|
||||||
po-plug-ins \
|
|
||||||
po-python \
|
|
||||||
po-script-fu \
|
|
||||||
po-tips \
|
|
||||||
po-windows-installer \
|
|
||||||
data \
|
|
||||||
desktop \
|
|
||||||
menus \
|
|
||||||
libgimpbase \
|
|
||||||
tools \
|
|
||||||
$(PDB) \
|
|
||||||
icons \
|
|
||||||
libgimpcolor \
|
|
||||||
libgimpmath \
|
|
||||||
libgimpconfig \
|
|
||||||
libgimpmodule \
|
|
||||||
libgimpthumb \
|
|
||||||
libgimpwidgets \
|
|
||||||
libgimp \
|
|
||||||
app \
|
|
||||||
app-tools \
|
|
||||||
$(GIMP_MODULES) \
|
|
||||||
$(GIMP_PLUGINS) \
|
|
||||||
$(GIMP_EXTENSIONS) \
|
|
||||||
etc \
|
|
||||||
devel-docs \
|
|
||||||
docs \
|
|
||||||
build
|
|
||||||
|
|
||||||
pkgconfigdir = $(libdir)/pkgconfig
|
|
||||||
pkgconfig_DATA = \
|
|
||||||
gimp-@GIMP_PKGCONFIG_VERSION@.pc \
|
|
||||||
gimpthumb-@GIMP_PKGCONFIG_VERSION@.pc \
|
|
||||||
gimpui-@GIMP_PKGCONFIG_VERSION@.pc
|
|
||||||
|
|
||||||
|
|
||||||
AUTHORS: authors.xml authors.xsl
|
|
||||||
if HAVE_XSLTPROC
|
|
||||||
$(XSLTPROC) -o $(@) $(top_srcdir)/authors.xsl $< || rm -f $(@)
|
|
||||||
endif
|
|
||||||
|
|
||||||
authors.md: authors.xml authors4gimp-web.xsl
|
|
||||||
if HAVE_XSLTPROC
|
|
||||||
$(XSLTPROC) --stringparam today "`date --iso-8601=seconds`" -o $(@) $(top_srcdir)/authors4gimp-web.xsl $< || rm -f $(@)
|
|
||||||
endif
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
|
||||||
AUTHORS \
|
|
||||||
COPYING \
|
|
||||||
ChangeLog \
|
|
||||||
ChangeLog.pre-1-0 \
|
|
||||||
ChangeLog.pre-1-2 \
|
|
||||||
ChangeLog.pre-2-0 \
|
|
||||||
ChangeLog.pre-2-2 \
|
|
||||||
ChangeLog.pre-2-4 \
|
|
||||||
ChangeLog.pre-2-6 \
|
|
||||||
ChangeLog.pre-git \
|
|
||||||
INSTALL \
|
|
||||||
LICENSE \
|
|
||||||
NEWS \
|
|
||||||
NEWS.pre-2-0 \
|
|
||||||
NEWS.pre-2-2 \
|
|
||||||
NEWS.pre-2-4 \
|
|
||||||
NEWS.pre-2-6 \
|
|
||||||
NEWS.pre-2-8 \
|
|
||||||
NEWS.pre-2-10 \
|
|
||||||
README \
|
|
||||||
README.i18n \
|
|
||||||
authors.dtd \
|
|
||||||
authors.xml \
|
|
||||||
authors.xsl \
|
|
||||||
git-version.h
|
|
||||||
|
|
||||||
|
|
||||||
AM_DISTCHECK_CONFIGURE_FLAGS = --enable-gi-docgen --with-python=force --with-javascript=force --with-lua=force
|
|
||||||
|
|
||||||
|
|
||||||
check-defs:
|
|
||||||
@$(PYTHON) $(top_srcdir)/tools/defcheck.py $(top_srcdir) || \
|
|
||||||
( echo "*** .def files inconsistent ***"; exit 1; )
|
|
||||||
|
|
||||||
validate-authors:
|
|
||||||
if HAVE_XMLLINT
|
|
||||||
@cd $(srcdir); \
|
|
||||||
$(XMLLINT) --noout --valid authors.xml || \
|
|
||||||
( echo "*** authors.xml INVALID ***"; exit 1; )
|
|
||||||
endif
|
|
||||||
|
|
||||||
all-local: AUTHORS
|
|
||||||
|
|
||||||
dist-hook: check-defs validate-authors
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CHANGELOG_START = 74424325abb54620b370f2595445b2b2a19fe5e7
|
|
||||||
|
|
||||||
ChangeLog: $(srcdir)/ChangeLog $(srcdir)/ChangeLog.pre-git
|
|
||||||
$(srcdir)/ChangeLog:
|
|
||||||
@echo Creating $@ based on git log
|
|
||||||
@if test -d "$(srcdir)/.git"; then \
|
|
||||||
(GIT_DIR=$(top_srcdir)/.git ./missing --run \
|
|
||||||
git log $(CHANGELOG_START)^.. --stat) | fmt --split-only > $@.tmp \
|
|
||||||
&& mv -f $@.tmp $@ && echo Appending ChangeLog.pre-git && cat ChangeLog.pre-git >> $@ \
|
|
||||||
|| ($(RM) $@.tmp; \
|
|
||||||
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
|
|
||||||
(test -f $@ || echo git-log is required to generate this file >> $@)); \
|
|
||||||
else \
|
|
||||||
test -f $@ || \
|
|
||||||
(echo A git checkout and git-log is required to generate ChangeLog >&2 && \
|
|
||||||
echo A git checkout and git-log is required to generate this file >> $@); \
|
|
||||||
fi
|
|
||||||
.PHONY: $(srcdir)/ChangeLog
|
|
||||||
|
|
||||||
generated_sources = \
|
|
||||||
git-version.h
|
|
||||||
|
|
||||||
# Build git-version.h before anything in the subdirs as this is needed
|
|
||||||
# in the about and debug dialog (app/) and in the debug tool (tools/).
|
|
||||||
BUILT_SOURCES = $(generated_sources)
|
|
||||||
|
|
||||||
CLEANFILES = $(generated_sources)
|
|
||||||
|
|
||||||
# If git is available, always check if git-version.h should be
|
|
||||||
# updated. If git is not available, don't do anything if git-version.h
|
|
||||||
# already exists because then we are probably working with a tarball
|
|
||||||
# in which case the git-version.h we ship is correct.
|
|
||||||
git-version.h: update-git-version-header
|
|
||||||
@if test -e "$(top_srcdir)/.git"; then \
|
|
||||||
git_version="`git --git-dir=$(top_srcdir)/.git describe --always`"; \
|
|
||||||
git_version_abbrev="`git --git-dir=$(top_srcdir)/.git rev-parse --short HEAD`"; \
|
|
||||||
git_last_commit_year="`git --git-dir=$(top_srcdir)/.git log -n1 --reverse --pretty=%ci | cut -b 1-4`"; \
|
|
||||||
elif test ! -f "$@"; then \
|
|
||||||
git_version="Unknown, shouldn't happen"; \
|
|
||||||
git_version_abbrev="$$git_version"; \
|
|
||||||
git_last_commit_timestamp=-1; \
|
|
||||||
git_last_commit_year="`date -u '+%Y'`"; \
|
|
||||||
fi; \
|
|
||||||
if test -n "$$git_version"; then \
|
|
||||||
echo "#ifndef __GIT_VERSION_H__" > "$@.tmp"; \
|
|
||||||
echo "#define __GIT_VERSION_H__" >> "$@.tmp"; \
|
|
||||||
echo "#define GIMP_GIT_VERSION \"$$git_version\"" >> "$@.tmp"; \
|
|
||||||
echo "#define GIMP_GIT_VERSION_ABBREV \"$$git_version_abbrev\"" >> "$@.tmp"; \
|
|
||||||
echo "#define GIMP_GIT_LAST_COMMIT_YEAR \"$$git_last_commit_year\"" >> "$@.tmp"; \
|
|
||||||
echo "#endif /* __GIT_VERSION_H__ */" >> "$@.tmp"; \
|
|
||||||
fi
|
|
||||||
@if ( test -f "$@.tmp" && test -f "$@" && cmp "$@.tmp" "$@" > /dev/null ); then \
|
|
||||||
rm -f "$@.tmp"; \
|
|
||||||
elif test -f "$@.tmp"; then \
|
|
||||||
mv "$@.tmp" "$@"; \
|
|
||||||
echo " git HEAD changed: $@ regenerated"; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
.PHONY: update-git-version-header
|
|
|
@ -1,9 +0,0 @@
|
||||||
m4_include([m4macros/alsa.m4])
|
|
||||||
m4_include([m4macros/ax_compare_version.m4])
|
|
||||||
m4_include([m4macros/ax_cxx_compile_stdcxx.m4])
|
|
||||||
m4_include([m4macros/ax_gcc_func_attribute.m4])
|
|
||||||
m4_include([m4macros/ax_prog_cc_for_build.m4])
|
|
||||||
m4_include([m4macros/ax_prog_perl_version.m4])
|
|
||||||
m4_include([m4macros/detectcflags.m4])
|
|
||||||
m4_include([m4macros/python3dev.m4])
|
|
||||||
m4_include([m4macros/vapigen.m4])
|
|
6
app-tools/.gitignore
vendored
6
app-tools/.gitignore
vendored
|
@ -1,6 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/gimp-debug-tool-2.99
|
|
||||||
/gimp-debug-tool-2.99.exe
|
|
|
@ -1,85 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AUTOMAKE_OPTIONS = subdir-objects
|
|
||||||
|
|
||||||
libapp = $(top_builddir)/app/libapp.a
|
|
||||||
libappwidgets = $(top_builddir)/app/widgets/libappwidgets.a
|
|
||||||
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
||||||
|
|
||||||
if PLATFORM_OSX
|
|
||||||
xobjective_c = "-xobjective-c"
|
|
||||||
xobjective_cxx = "-xobjective-c++"
|
|
||||||
xnone = "-xnone"
|
|
||||||
framework_appkit = -framework AppKit
|
|
||||||
endif
|
|
||||||
|
|
||||||
if OS_WIN32
|
|
||||||
bin_PROGRAMS = gimp-debug-tool-@GIMP_TOOL_VERSION@
|
|
||||||
else
|
|
||||||
|
|
||||||
if PLATFORM_OSX
|
|
||||||
bin_PROGRAMS = gimp-debug-tool-@GIMP_TOOL_VERSION@
|
|
||||||
else
|
|
||||||
libexec_PROGRAMS = gimp-debug-tool-@GIMP_TOOL_VERSION@
|
|
||||||
endif
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
gimp_debug_tool_@GIMP_TOOL_VERSION@_SOURCES = \
|
|
||||||
gimp-debug-tool.c
|
|
||||||
|
|
||||||
gimp_debug_tool_@GIMP_TOOL_VERSION@_CPPFLAGS = \
|
|
||||||
-DCC_VERSION=\""$(CC_VERSION)"\" \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
$(AM_CPPFLAGS) \
|
|
||||||
$(GIO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
$(FONTCONFIG_CFLAGS)
|
|
||||||
|
|
||||||
gimp_debug_tool_@GIMP_TOOL_VERSION@_LDADD = \
|
|
||||||
$(libappwidgets) \
|
|
||||||
$(libapp) \
|
|
||||||
$(libgimpbase) \
|
|
||||||
$(GIO_LIBS) \
|
|
||||||
$(GEGL_LIBS) \
|
|
||||||
$(GTK_LIBS) \
|
|
||||||
$(FONTCONFIG_LIBS)
|
|
||||||
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DGIMP_APP_VERSION=\"@GIMP_APP_VERSION@\" \
|
|
||||||
-DLOCALEDIR=\""$(gimplocaledir)"\" \
|
|
||||||
-DPREFIX=\""$(prefix)"\" \
|
|
||||||
-DEXEC_PREFIX=\""$(exec_prefix)"\" \
|
|
||||||
-DBINDIR=\""$(bindir)"\" \
|
|
||||||
-DSBINDIR=\""$(sbindir)"\" \
|
|
||||||
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
||||||
-DDATADIR=\""$(datadir)"\" \
|
|
||||||
-DDATAROOTDIR=\""$(datarootdir)"\" \
|
|
||||||
-DSYSCONFDIR=\""$(sysconfdir)"\" \
|
|
||||||
-DSHAREDSTATEDIR=\""$(sharedstatedir)"\" \
|
|
||||||
-DLOCALSTATEDIR=\""$(localstatedir)"\" \
|
|
||||||
-DLIBDIR=\""$(libdir)"\" \
|
|
||||||
-DINFODIR=\""$(infodir)"\" \
|
|
||||||
-DMANDIR=\""$(mandir)"\" \
|
|
||||||
-DGIMPPLUGINDIR=\""$(gimpplugindir)"\" \
|
|
||||||
-DGIMPDATADIR=\""$(gimpdatadir)"\" \
|
|
||||||
-DCC=\""$(CC)"\" \
|
|
||||||
-DGIMPDIR=\""$(gimpdir)"\" \
|
|
||||||
-DGIMP_PLUGIN_VERSION=\""$(GIMP_PLUGIN_VERSION)"\" \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
AM_CFLAGS = \
|
|
||||||
$(xobjective_c)
|
|
||||||
|
|
||||||
AM_CXXFLAGS = \
|
|
||||||
$(xobjective_cxx)
|
|
||||||
|
|
||||||
AM_LDFLAGS = \
|
|
||||||
$(framework_appkit) \
|
|
||||||
$(xnone)
|
|
9
app/.gitignore
vendored
9
app/.gitignore
vendored
|
@ -1,9 +0,0 @@
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/gimp-2.*
|
|
||||||
/gimp-console-2.*
|
|
||||||
/gimp.rc
|
|
||||||
/libapp.a
|
|
||||||
/makefile.mingw
|
|
297
app/Makefile.am
297
app/Makefile.am
|
@ -1,297 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
if PLATFORM_OSX
|
|
||||||
xobjective_c = "-xobjective-c"
|
|
||||||
xobjective_cxx = "-xobjective-c++"
|
|
||||||
xnone = "-xnone"
|
|
||||||
endif
|
|
||||||
|
|
||||||
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
||||||
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
|
||||||
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
||||||
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
||||||
libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la
|
|
||||||
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
|
||||||
libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la
|
|
||||||
|
|
||||||
# Sort this by architectural dependencies, lowest level at the top,
|
|
||||||
# so that when e.g. changing a header-file the subdirs are built in
|
|
||||||
# the right order
|
|
||||||
SUBDIRS = \
|
|
||||||
config \
|
|
||||||
core \
|
|
||||||
operations \
|
|
||||||
gegl \
|
|
||||||
text \
|
|
||||||
vectors \
|
|
||||||
paint \
|
|
||||||
plug-in \
|
|
||||||
xcf \
|
|
||||||
file \
|
|
||||||
file-data \
|
|
||||||
pdb \
|
|
||||||
widgets \
|
|
||||||
propgui \
|
|
||||||
display \
|
|
||||||
tools \
|
|
||||||
dialogs \
|
|
||||||
actions \
|
|
||||||
menus \
|
|
||||||
gui \
|
|
||||||
. \
|
|
||||||
tests
|
|
||||||
|
|
||||||
# Put the GIMP core in a lib so we can conveniently link against that
|
|
||||||
# in test cases
|
|
||||||
noinst_LIBRARIES = libapp.a
|
|
||||||
|
|
||||||
if ENABLE_GIMP_CONSOLE
|
|
||||||
bin_PROGRAMS = gimp-@GIMP_APP_VERSION@ gimp-console-@GIMP_APP_VERSION@
|
|
||||||
else
|
|
||||||
bin_PROGRAMS = gimp-@GIMP_APP_VERSION@
|
|
||||||
endif
|
|
||||||
|
|
||||||
libapp_sources = \
|
|
||||||
about.h \
|
|
||||||
app.c \
|
|
||||||
app.h \
|
|
||||||
errors.c \
|
|
||||||
errors.h \
|
|
||||||
gimpcoreapp.c \
|
|
||||||
gimpcoreapp.h \
|
|
||||||
gimpconsoleapp.c \
|
|
||||||
gimpconsoleapp.h \
|
|
||||||
language.c \
|
|
||||||
language.h \
|
|
||||||
sanity.c \
|
|
||||||
sanity.h \
|
|
||||||
signals.c \
|
|
||||||
signals.h \
|
|
||||||
unique.c \
|
|
||||||
unique.h \
|
|
||||||
gimp-debug.c \
|
|
||||||
gimp-debug.h \
|
|
||||||
gimp-intl.h \
|
|
||||||
gimp-log.c \
|
|
||||||
gimp-log.h \
|
|
||||||
gimp-priorities.h \
|
|
||||||
gimp-update.c \
|
|
||||||
gimp-update.h \
|
|
||||||
gimp-version.c \
|
|
||||||
gimp-version.h
|
|
||||||
|
|
||||||
libapp_a_SOURCES = $(libapp_sources)
|
|
||||||
|
|
||||||
gimp_@GIMP_APP_VERSION@_SOURCES = $(libapp_sources) main.c
|
|
||||||
|
|
||||||
|
|
||||||
if PLATFORM_LINUX
|
|
||||||
libdl = -ldl
|
|
||||||
endif
|
|
||||||
|
|
||||||
if PLATFORM_OSX
|
|
||||||
framework_cocoa = -framework Cocoa
|
|
||||||
endif
|
|
||||||
|
|
||||||
if OS_WIN32
|
|
||||||
win32_ldflags = -mwindows -Wl,--tsaware $(WIN32_LARGE_ADDRESS_AWARE)
|
|
||||||
|
|
||||||
# for GimpDashboard and GimpBacktrace
|
|
||||||
psapi_cflags = -DPSAPI_VERSION=1
|
|
||||||
libpsapi = -lpsapi
|
|
||||||
|
|
||||||
# for GimpBacktrace
|
|
||||||
libdbghelp = -ldbghelp
|
|
||||||
|
|
||||||
# for I_RpcExceptionFilter()
|
|
||||||
librpcrt4 = -lrpcrt4
|
|
||||||
|
|
||||||
if HAVE_EXCHNDL
|
|
||||||
exchndl = -lexchndl
|
|
||||||
endif
|
|
||||||
|
|
||||||
else
|
|
||||||
libm = -lm
|
|
||||||
endif
|
|
||||||
|
|
||||||
if ENABLE_RELOCATABLE_RESOURCES
|
|
||||||
munix = -Wl,-rpath '-Wl,$$ORIGIN/../lib'
|
|
||||||
endif
|
|
||||||
|
|
||||||
if HAVE_WINDRES
|
|
||||||
include $(top_srcdir)/build/windows/gimprc.rule
|
|
||||||
GIMPRC = gimp-$(GIMP_APP_VERSION).rc.o
|
|
||||||
GIMPCONSOLERC = gimp-console-$(GIMP_APP_VERSION).rc.o
|
|
||||||
endif
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DGIMPDIR=\""$(gimpdir)"\" \
|
|
||||||
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
|
||||||
-DGIMP_USER_VERSION=\"$(GIMP_USER_VERSION)\" \
|
|
||||||
-DGIMP_TOOL_VERSION=\"$(GIMP_TOOL_VERSION)\" \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp\" \
|
|
||||||
-DGIMP_APP_GLUE_COMPILATION \
|
|
||||||
-DCC_VERSION=\""$(CC_VERSION)"\" \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
$(PANGOCAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(LCMS_CFLAGS) \
|
|
||||||
$(GEXIV2_CFLAGS) \
|
|
||||||
$(psapi_cflags) \
|
|
||||||
$(xobjective_c) \
|
|
||||||
-I$(includedir) \
|
|
||||||
-I$(builddir)/gui
|
|
||||||
|
|
||||||
# We need this due to circular dependencies
|
|
||||||
AM_LDFLAGS = \
|
|
||||||
$(munix) \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_vectors_undo_get_type \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_vectors_mod_undo_get_type \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_config_param_spec_duplicate \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_operations_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)xcf_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)internal_procs_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_pdb_compat_procs_register \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_layer_mode_is_legacy \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_parallel_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_async_set_new \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_uncancelable_waitable_new
|
|
||||||
|
|
||||||
gimpconsoleldadd = \
|
|
||||||
xcf/libappxcf.a \
|
|
||||||
pdb/libappinternal-procs.a \
|
|
||||||
pdb/libapppdb.a \
|
|
||||||
plug-in/libappplug-in.a \
|
|
||||||
vectors/libappvectors.a \
|
|
||||||
core/libappcore.a \
|
|
||||||
file/libappfile.a \
|
|
||||||
file-data/libappfile-data.a \
|
|
||||||
text/libapptext.a \
|
|
||||||
paint/libapppaint.a \
|
|
||||||
operations/libappoperations.a \
|
|
||||||
operations/layer-modes/libapplayermodes.a \
|
|
||||||
operations/layer-modes-legacy/libapplayermodeslegacy.a \
|
|
||||||
gegl/libappgegl.a \
|
|
||||||
config/libappconfig.a \
|
|
||||||
$(libgimpconfig) \
|
|
||||||
$(libgimpmath) \
|
|
||||||
$(libgimpthumb) \
|
|
||||||
$(libgimpcolor) \
|
|
||||||
$(libgimpmodule) \
|
|
||||||
$(libgimpbase) \
|
|
||||||
$(APPSTREAM_GLIB_LIBS) \
|
|
||||||
$(GDK_PIXBUF_LIBS) \
|
|
||||||
$(FREETYPE_LIBS) \
|
|
||||||
$(FONTCONFIG_LIBS) \
|
|
||||||
$(PANGOCAIRO_LIBS) \
|
|
||||||
$(HARFBUZZ_LIBS) \
|
|
||||||
$(CAIRO_LIBS) \
|
|
||||||
$(GIO_UNIX_LIBS) \
|
|
||||||
$(GIO_WINDOWS_LIBS) \
|
|
||||||
$(GEGL_LIBS) \
|
|
||||||
$(GLIB_LIBS) \
|
|
||||||
$(LCMS_LIBS) \
|
|
||||||
$(GEXIV2_LIBS) \
|
|
||||||
$(Z_LIBS) \
|
|
||||||
$(JSON_C_LIBS) \
|
|
||||||
$(LIBARCHIVE_LIBS) \
|
|
||||||
$(LIBMYPAINT_LIBS) \
|
|
||||||
$(LIBBACKTRACE_LIBS) \
|
|
||||||
$(LIBUNWIND_LIBS) \
|
|
||||||
$(INTLLIBS) \
|
|
||||||
$(RT_LIBS) \
|
|
||||||
$(libm) \
|
|
||||||
$(libdl) \
|
|
||||||
$(libpsapi) \
|
|
||||||
$(libdbghelp) \
|
|
||||||
$(librpcrt4)
|
|
||||||
|
|
||||||
gimp_@GIMP_APP_VERSION@_LDFLAGS = \
|
|
||||||
$(AM_LDFLAGS) \
|
|
||||||
$(win32_ldflags) \
|
|
||||||
$(framework_cocoa) \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_lebl_dialog \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_core_pixbufs_get_resource \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_tool_cursors_get_resource
|
|
||||||
|
|
||||||
|
|
||||||
gimp_@GIMP_APP_VERSION@_LDADD = \
|
|
||||||
gui/libappgui.a \
|
|
||||||
menus/libappmenus.a \
|
|
||||||
actions/libappactions.a \
|
|
||||||
dialogs/libappdialogs.a \
|
|
||||||
tools/libapptools.a \
|
|
||||||
display/libappdisplay.a \
|
|
||||||
propgui/libapppropgui.a \
|
|
||||||
widgets/libappwidgets.a \
|
|
||||||
$(libgimpwidgets) \
|
|
||||||
$(GTK_LIBS) \
|
|
||||||
$(GTK_MAC_INTEGRATION_LIBS) \
|
|
||||||
$(gimpconsoleldadd) \
|
|
||||||
$(exchndl) \
|
|
||||||
$(GIMPRC)
|
|
||||||
|
|
||||||
|
|
||||||
if ENABLE_GIMP_CONSOLE
|
|
||||||
|
|
||||||
gimp_console_@GIMP_APP_VERSION@_SOURCES = $(libapp_sources) main.c
|
|
||||||
|
|
||||||
gimp_console_@GIMP_APP_VERSION@_CPPFLAGS = \
|
|
||||||
$(AM_CPPFLAGS) \
|
|
||||||
-DGIMP_CONSOLE_COMPILATION
|
|
||||||
|
|
||||||
gimp_console_@GIMP_APP_VERSION@_LDADD = \
|
|
||||||
$(gimpconsoleldadd) \
|
|
||||||
$(GIMPCONSOLERC)
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
install-exec-hook:
|
|
||||||
if DEFAULT_BINARY
|
|
||||||
cd $(DESTDIR)$(bindir) \
|
|
||||||
&& rm -f gimp$(EXEEXT) \
|
|
||||||
&& $(LN_S) gimp-$(GIMP_APP_VERSION)$(EXEEXT) gimp$(EXEEXT)
|
|
||||||
if ENABLE_GIMP_CONSOLE
|
|
||||||
cd $(DESTDIR)$(bindir) \
|
|
||||||
&& rm -f gimp-console$(EXEEXT) \
|
|
||||||
&& $(LN_S) gimp-console-$(GIMP_APP_VERSION)$(EXEEXT) gimp-console$(EXEEXT)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
uninstall-local:
|
|
||||||
if DEFAULT_BINARY
|
|
||||||
rm -f $(DESTDIR)$(bindir)/gimp$(EXEEXT)
|
|
||||||
if ENABLE_GIMP_CONSOLE
|
|
||||||
rm -f $(DESTDIR)$(bindir)/gimp-console$(EXEEXT)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
# require gimp-console when making dist
|
|
||||||
#
|
|
||||||
if ENABLE_GIMP_CONSOLE
|
|
||||||
dist-check-gimp-console:
|
|
||||||
else
|
|
||||||
dist-check-gimp-console:
|
|
||||||
@echo "*** gimp-console must be enabled in order to make dist"
|
|
||||||
@false
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
# hook to assure that the system gimprc and the gimprc manpage are
|
|
||||||
# uptodate when a release is made
|
|
||||||
#
|
|
||||||
dist-dump-gimprc: gimp-console-$(GIMP_APP_VERSION)$(EXEEXT)
|
|
||||||
./$< --dump-gimprc-system > gimprc.tmp \
|
|
||||||
&& (cmp -s gimprc.tmp $(top_srcdir)/etc/gimprc.in || \
|
|
||||||
cp gimprc.tmp $(top_srcdir)/etc/gimprc.in) \
|
|
||||||
&& rm gimprc.tmp
|
|
||||||
./$< --dump-gimprc-manpage > gimprc.tmp \
|
|
||||||
&& (cmp -s gimprc.tmp $(top_srcdir)/docs/gimprc.5.in ||\
|
|
||||||
cp gimprc.tmp $(top_srcdir)/docs/gimprc.5.in) \
|
|
||||||
&& rm gimprc.tmp
|
|
||||||
|
|
||||||
dist-hook: dist-check-gimp-console dist-dump-gimprc
|
|
7
app/actions/.gitignore
vendored
7
app/actions/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappactions.a
|
|
||||||
/libappactions.la
|
|
|
@ -1,206 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Actions\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappactions.a
|
|
||||||
|
|
||||||
libappactions_a_SOURCES = \
|
|
||||||
actions-types.h \
|
|
||||||
actions.c \
|
|
||||||
actions.h \
|
|
||||||
\
|
|
||||||
gimpgeglprocedure.c \
|
|
||||||
gimpgeglprocedure.h \
|
|
||||||
\
|
|
||||||
brush-editor-actions.c \
|
|
||||||
brush-editor-actions.h \
|
|
||||||
brushes-actions.c \
|
|
||||||
brushes-actions.h \
|
|
||||||
buffers-actions.c \
|
|
||||||
buffers-actions.h \
|
|
||||||
buffers-commands.c \
|
|
||||||
buffers-commands.h \
|
|
||||||
channels-actions.c \
|
|
||||||
channels-actions.h \
|
|
||||||
channels-commands.c \
|
|
||||||
channels-commands.h \
|
|
||||||
colormap-actions.c \
|
|
||||||
colormap-actions.h \
|
|
||||||
colormap-commands.c \
|
|
||||||
colormap-commands.h \
|
|
||||||
context-actions.c \
|
|
||||||
context-actions.h \
|
|
||||||
context-commands.c \
|
|
||||||
context-commands.h \
|
|
||||||
cursor-info-actions.c \
|
|
||||||
cursor-info-actions.h \
|
|
||||||
cursor-info-commands.c \
|
|
||||||
cursor-info-commands.h \
|
|
||||||
dashboard-actions.c \
|
|
||||||
dashboard-actions.h \
|
|
||||||
dashboard-commands.c \
|
|
||||||
dashboard-commands.h \
|
|
||||||
data-commands.c \
|
|
||||||
data-commands.h \
|
|
||||||
data-editor-commands.c \
|
|
||||||
data-editor-commands.h \
|
|
||||||
debug-actions.c \
|
|
||||||
debug-actions.h \
|
|
||||||
debug-commands.c \
|
|
||||||
debug-commands.h \
|
|
||||||
dialogs-actions.c \
|
|
||||||
dialogs-actions.h \
|
|
||||||
dialogs-commands.c \
|
|
||||||
dialogs-commands.h \
|
|
||||||
dock-actions.c \
|
|
||||||
dock-actions.h \
|
|
||||||
dock-commands.c \
|
|
||||||
dock-commands.h \
|
|
||||||
dockable-actions.c \
|
|
||||||
dockable-actions.h \
|
|
||||||
dockable-commands.c \
|
|
||||||
dockable-commands.h \
|
|
||||||
documents-actions.c \
|
|
||||||
documents-actions.h \
|
|
||||||
documents-commands.c \
|
|
||||||
documents-commands.h \
|
|
||||||
drawable-actions.c \
|
|
||||||
drawable-actions.h \
|
|
||||||
drawable-commands.c \
|
|
||||||
drawable-commands.h \
|
|
||||||
dynamics-actions.c \
|
|
||||||
dynamics-actions.h \
|
|
||||||
dynamics-editor-actions.c \
|
|
||||||
dynamics-editor-actions.h \
|
|
||||||
edit-actions.c \
|
|
||||||
edit-actions.h \
|
|
||||||
edit-commands.c \
|
|
||||||
edit-commands.h \
|
|
||||||
error-console-actions.c \
|
|
||||||
error-console-actions.h \
|
|
||||||
error-console-commands.c \
|
|
||||||
error-console-commands.h \
|
|
||||||
file-actions.c \
|
|
||||||
file-actions.h \
|
|
||||||
file-commands.c \
|
|
||||||
file-commands.h \
|
|
||||||
filters-actions.c \
|
|
||||||
filters-actions.h \
|
|
||||||
filters-commands.c \
|
|
||||||
filters-commands.h \
|
|
||||||
fonts-actions.c \
|
|
||||||
fonts-actions.h \
|
|
||||||
gradient-editor-actions.c \
|
|
||||||
gradient-editor-actions.h \
|
|
||||||
gradient-editor-commands.c \
|
|
||||||
gradient-editor-commands.h \
|
|
||||||
gradients-actions.c \
|
|
||||||
gradients-actions.h \
|
|
||||||
gradients-commands.c \
|
|
||||||
gradients-commands.h \
|
|
||||||
help-actions.c \
|
|
||||||
help-actions.h \
|
|
||||||
help-commands.c \
|
|
||||||
help-commands.h \
|
|
||||||
image-actions.c \
|
|
||||||
image-actions.h \
|
|
||||||
image-commands.c \
|
|
||||||
image-commands.h \
|
|
||||||
images-actions.c \
|
|
||||||
images-actions.h \
|
|
||||||
images-commands.c \
|
|
||||||
images-commands.h \
|
|
||||||
items-commands.c \
|
|
||||||
items-commands.h \
|
|
||||||
items-actions.c \
|
|
||||||
items-actions.h \
|
|
||||||
layers-actions.c \
|
|
||||||
layers-actions.h \
|
|
||||||
layers-commands.c \
|
|
||||||
layers-commands.h \
|
|
||||||
mypaint-brushes-actions.c \
|
|
||||||
mypaint-brushes-actions.h \
|
|
||||||
palette-editor-actions.c \
|
|
||||||
palette-editor-actions.h \
|
|
||||||
palette-editor-commands.c \
|
|
||||||
palette-editor-commands.h \
|
|
||||||
palettes-actions.c \
|
|
||||||
palettes-actions.h \
|
|
||||||
palettes-commands.c \
|
|
||||||
palettes-commands.h \
|
|
||||||
patterns-actions.c \
|
|
||||||
patterns-actions.h \
|
|
||||||
plug-in-actions.c \
|
|
||||||
plug-in-actions.h \
|
|
||||||
plug-in-commands.c \
|
|
||||||
plug-in-commands.h \
|
|
||||||
procedure-commands.c \
|
|
||||||
procedure-commands.h \
|
|
||||||
quick-mask-actions.c \
|
|
||||||
quick-mask-actions.h \
|
|
||||||
quick-mask-commands.c \
|
|
||||||
quick-mask-commands.h \
|
|
||||||
sample-points-actions.c \
|
|
||||||
sample-points-actions.h \
|
|
||||||
sample-points-commands.c \
|
|
||||||
sample-points-commands.h \
|
|
||||||
select-actions.c \
|
|
||||||
select-actions.h \
|
|
||||||
select-commands.c \
|
|
||||||
select-commands.h \
|
|
||||||
templates-actions.c \
|
|
||||||
templates-actions.h \
|
|
||||||
templates-commands.c \
|
|
||||||
templates-commands.h \
|
|
||||||
text-editor-actions.c \
|
|
||||||
text-editor-actions.h \
|
|
||||||
text-editor-commands.c \
|
|
||||||
text-editor-commands.h \
|
|
||||||
text-tool-actions.c \
|
|
||||||
text-tool-actions.h \
|
|
||||||
text-tool-commands.c \
|
|
||||||
text-tool-commands.h \
|
|
||||||
tool-options-actions.c \
|
|
||||||
tool-options-actions.h \
|
|
||||||
tool-options-commands.c \
|
|
||||||
tool-options-commands.h \
|
|
||||||
tool-presets-actions.c \
|
|
||||||
tool-presets-actions.h \
|
|
||||||
tool-presets-commands.c \
|
|
||||||
tool-presets-commands.h \
|
|
||||||
tool-preset-editor-actions.c \
|
|
||||||
tool-preset-editor-actions.h \
|
|
||||||
tool-preset-editor-commands.c \
|
|
||||||
tool-preset-editor-commands.h \
|
|
||||||
tools-actions.c \
|
|
||||||
tools-actions.h \
|
|
||||||
tools-commands.c \
|
|
||||||
tools-commands.h \
|
|
||||||
vector-toolpath-actions.c \
|
|
||||||
vector-toolpath-actions.h \
|
|
||||||
vector-toolpath-commands.c \
|
|
||||||
vector-toolpath-commands.h \
|
|
||||||
vectors-actions.c \
|
|
||||||
vectors-actions.h \
|
|
||||||
vectors-commands.c \
|
|
||||||
vectors-commands.h \
|
|
||||||
view-actions.c \
|
|
||||||
view-actions.h \
|
|
||||||
view-commands.c \
|
|
||||||
view-commands.h \
|
|
||||||
window-actions.c \
|
|
||||||
window-actions.h \
|
|
||||||
window-commands.c \
|
|
||||||
window-commands.h \
|
|
||||||
windows-actions.c \
|
|
||||||
windows-actions.h \
|
|
||||||
windows-commands.c \
|
|
||||||
windows-commands.h
|
|
12
app/config/.gitignore
vendored
12
app/config/.gitignore
vendored
|
@ -1,12 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/foorc
|
|
||||||
/libappconfig.a
|
|
||||||
/libappconfig.la
|
|
||||||
/test-config
|
|
||||||
/*.trs
|
|
||||||
/*.log
|
|
||||||
/xgen-cec
|
|
|
@ -1,170 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
||||||
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
|
||||||
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
||||||
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
||||||
libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la
|
|
||||||
libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la
|
|
||||||
|
|
||||||
if OS_WIN32
|
|
||||||
else
|
|
||||||
libm = -lm
|
|
||||||
endif
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Config\" \
|
|
||||||
-DGIMP_APP_VERSION_STRING=\"$(GIMP_APP_VERSION)\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GIO_UNIX_CFLAGS) \
|
|
||||||
$(GIO_WINDOWS_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
$(MYPAINT_BRUSHES_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappconfig.a
|
|
||||||
|
|
||||||
libappconfig_a_sources = \
|
|
||||||
config-enums.h \
|
|
||||||
config-types.h \
|
|
||||||
gimpconfig-dump.c \
|
|
||||||
gimpconfig-dump.h \
|
|
||||||
gimpconfig-file.c \
|
|
||||||
gimpconfig-file.h \
|
|
||||||
gimpconfig-utils.c \
|
|
||||||
gimpconfig-utils.h \
|
|
||||||
gimpcoreconfig.c \
|
|
||||||
gimpcoreconfig.h \
|
|
||||||
gimpdialogconfig.c \
|
|
||||||
gimpdialogconfig.h \
|
|
||||||
gimpdisplayconfig.c \
|
|
||||||
gimpdisplayconfig.h \
|
|
||||||
gimpdisplayoptions.c \
|
|
||||||
gimpdisplayoptions.h \
|
|
||||||
gimpearlyrc.c \
|
|
||||||
gimpearlyrc.h \
|
|
||||||
gimpgeglconfig.c \
|
|
||||||
gimpgeglconfig.h \
|
|
||||||
gimpguiconfig.c \
|
|
||||||
gimpguiconfig.h \
|
|
||||||
gimppluginconfig.c \
|
|
||||||
gimppluginconfig.h \
|
|
||||||
gimprc.c \
|
|
||||||
gimprc.h \
|
|
||||||
gimprc-blurbs.h \
|
|
||||||
gimprc-deserialize.c \
|
|
||||||
gimprc-deserialize.h \
|
|
||||||
gimprc-serialize.c \
|
|
||||||
gimprc-serialize.h \
|
|
||||||
gimprc-unknown.c \
|
|
||||||
gimprc-unknown.h \
|
|
||||||
gimpxmlparser.c \
|
|
||||||
gimpxmlparser.h
|
|
||||||
|
|
||||||
libappconfig_a_built_sources = \
|
|
||||||
config-enums.c
|
|
||||||
|
|
||||||
libappconfig_a_SOURCES = \
|
|
||||||
$(libappconfig_a_built_sources) \
|
|
||||||
$(libappconfig_a_sources)
|
|
||||||
|
|
||||||
EXTRA_PROGRAMS = test-config
|
|
||||||
|
|
||||||
#
|
|
||||||
# unit tests for the GimpConfig system
|
|
||||||
#
|
|
||||||
|
|
||||||
TESTS = test-config
|
|
||||||
|
|
||||||
test_config_DEPENDENCIES = $(gimpconfig_libs)
|
|
||||||
|
|
||||||
# We need this due to circular dependencies
|
|
||||||
test_config_LDFLAGS = \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_vectors_undo_get_type \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_vectors_mod_undo_get_type \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_config_param_spec_duplicate \
|
|
||||||
-Wl,-u,$(SYMPREFIX)xcf_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)internal_procs_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_pdb_compat_procs_register \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_layer_mode_is_legacy \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_async_set_new \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_uncancelable_waitable_new
|
|
||||||
|
|
||||||
test_config_LDADD = \
|
|
||||||
../xcf/libappxcf.a \
|
|
||||||
../pdb/libappinternal-procs.a \
|
|
||||||
../pdb/libapppdb.a \
|
|
||||||
../plug-in/libappplug-in.a \
|
|
||||||
../vectors/libappvectors.a \
|
|
||||||
../core/libappcore.a \
|
|
||||||
../file/libappfile.a \
|
|
||||||
../file-data/libappfile-data.a \
|
|
||||||
../text/libapptext.a \
|
|
||||||
../paint/libapppaint.a \
|
|
||||||
../gegl/libappgegl.a \
|
|
||||||
../operations/libappoperations.a \
|
|
||||||
../operations/layer-modes/libapplayermodes.a \
|
|
||||||
../operations/layer-modes-legacy/libapplayermodeslegacy.a \
|
|
||||||
libappconfig.a \
|
|
||||||
../gimp-debug.o \
|
|
||||||
../gimp-log.o \
|
|
||||||
$(libgimpmodule) \
|
|
||||||
$(libgimpcolor) \
|
|
||||||
$(libgimpthumb) \
|
|
||||||
$(libgimpmath) \
|
|
||||||
$(libgimpconfig) \
|
|
||||||
$(libgimpbase) \
|
|
||||||
$(APPSTREAM_GLIB_LIBS) \
|
|
||||||
$(PANGOCAIRO_LIBS) \
|
|
||||||
$(HARFBUZZ_LIBS) \
|
|
||||||
$(GDK_PIXBUF_LIBS) \
|
|
||||||
$(GEGL_LIBS) \
|
|
||||||
$(GIO_LIBS) \
|
|
||||||
$(GEXIV2_LIBS) \
|
|
||||||
$(Z_LIBS) \
|
|
||||||
$(JSON_C_LIBS) \
|
|
||||||
$(LIBARCHIVE_LIBS) \
|
|
||||||
$(LIBMYPAINT_LIBS) \
|
|
||||||
$(libm)
|
|
||||||
|
|
||||||
CLEANFILES = $(EXTRA_PROGRAMS) foorc
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = stamp-config-enums.h xgen-cec
|
|
||||||
CLEANFILES += $(gen_sources)
|
|
||||||
|
|
||||||
xgen-cec: $(srcdir)/config-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-config-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"config-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-config-enums.h: xgen-cec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/config-enums.c: xgen-cec stamp-config-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
12
app/core/.gitignore
vendored
12
app/core/.gitignore
vendored
|
@ -1,12 +0,0 @@
|
||||||
/*.lo
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/gimp-core-pixbufs.c
|
|
||||||
/gimp-core-pixbufs.h
|
|
||||||
/gimpmarshal.c
|
|
||||||
/gimpmarshal.h
|
|
||||||
/libappcore.a
|
|
||||||
/libappcore.la
|
|
||||||
/xgen-cec
|
|
|
@ -1,584 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
if PLATFORM_OSX
|
|
||||||
xobjective_c = "-xobjective-c"
|
|
||||||
xobjective_cxx = "-xobjective-c++"
|
|
||||||
xnone = "-xnone"
|
|
||||||
endif
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DGIMPDIR=\""$(gimpdir)"\" \
|
|
||||||
-DGIMP_VERSION=\"$(GIMP_VERSION)\" \
|
|
||||||
-DGIMP_APP_VERSION=\"$(GIMP_APP_VERSION)\" \
|
|
||||||
-DGIMP_USER_VERSION=\"$(GIMP_USER_VERSION)\" \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Core\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(APPSTREAM_GLIB_CFLAGS) \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
$(LIBMYPAINT_CFLAGS) \
|
|
||||||
$(MYPAINT_BRUSHES_CFLAGS) \
|
|
||||||
$(GEXIV2_CFLAGS) \
|
|
||||||
$(LIBUNWIND_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
AM_CFLAGS = \
|
|
||||||
$(xobjective_c)
|
|
||||||
|
|
||||||
AM_CXXFLAGS = \
|
|
||||||
$(xobjective_cxx)
|
|
||||||
|
|
||||||
AM_LDFLAGS = \
|
|
||||||
$(xnone)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappcore.a
|
|
||||||
|
|
||||||
libappcore_a_sources = \
|
|
||||||
core-enums.h \
|
|
||||||
core-types.h \
|
|
||||||
gimp.c \
|
|
||||||
gimp.h \
|
|
||||||
gimp-atomic.c \
|
|
||||||
gimp-atomic.h \
|
|
||||||
gimp-batch.c \
|
|
||||||
gimp-batch.h \
|
|
||||||
gimp-cairo.c \
|
|
||||||
gimp-cairo.h \
|
|
||||||
gimp-contexts.c \
|
|
||||||
gimp-contexts.h \
|
|
||||||
gimp-data-factories.c \
|
|
||||||
gimp-data-factories.h \
|
|
||||||
gimp-edit.c \
|
|
||||||
gimp-edit.h \
|
|
||||||
gimp-filter-history.c \
|
|
||||||
gimp-filter-history.h \
|
|
||||||
gimp-gradients.c \
|
|
||||||
gimp-gradients.h \
|
|
||||||
gimp-gui.c \
|
|
||||||
gimp-gui.h \
|
|
||||||
gimp-internal-data.c \
|
|
||||||
gimp-internal-data.h \
|
|
||||||
gimp-memsize.c \
|
|
||||||
gimp-memsize.h \
|
|
||||||
gimp-modules.c \
|
|
||||||
gimp-modules.h \
|
|
||||||
gimp-palettes.c \
|
|
||||||
gimp-palettes.h \
|
|
||||||
gimp-parallel.cc \
|
|
||||||
gimp-parallel.h \
|
|
||||||
gimp-parasites.c \
|
|
||||||
gimp-parasites.h \
|
|
||||||
gimp-spawn.c \
|
|
||||||
gimp-spawn.h \
|
|
||||||
gimp-tags.c \
|
|
||||||
gimp-tags.h \
|
|
||||||
gimp-templates.c \
|
|
||||||
gimp-templates.h \
|
|
||||||
gimp-transform-resize.c \
|
|
||||||
gimp-transform-resize.h \
|
|
||||||
gimp-transform-3d-utils.c \
|
|
||||||
gimp-transform-3d-utils.h \
|
|
||||||
gimp-transform-utils.c \
|
|
||||||
gimp-transform-utils.h \
|
|
||||||
gimp-units.c \
|
|
||||||
gimp-units.h \
|
|
||||||
gimp-user-install.c \
|
|
||||||
gimp-user-install.h \
|
|
||||||
gimp-utils.c \
|
|
||||||
gimp-utils.h \
|
|
||||||
gimpasync.c \
|
|
||||||
gimpasync.h \
|
|
||||||
gimpasyncset.c \
|
|
||||||
gimpasyncset.h \
|
|
||||||
gimpauxitem.c \
|
|
||||||
gimpauxitem.h \
|
|
||||||
gimpauxitemundo.c \
|
|
||||||
gimpauxitemundo.h \
|
|
||||||
gimpbacktrace.h \
|
|
||||||
gimpbacktrace-backend.h \
|
|
||||||
gimpbacktrace-linux.c \
|
|
||||||
gimpbacktrace-none.c \
|
|
||||||
gimpbacktrace-windows.c \
|
|
||||||
gimpbezierdesc.h \
|
|
||||||
gimpbezierdesc.c \
|
|
||||||
gimpboundary.c \
|
|
||||||
gimpboundary.h \
|
|
||||||
gimpbrush.c \
|
|
||||||
gimpbrush.h \
|
|
||||||
gimpbrush-boundary.c \
|
|
||||||
gimpbrush-boundary.h \
|
|
||||||
gimpbrush-header.h \
|
|
||||||
gimpbrush-load.c \
|
|
||||||
gimpbrush-load.h \
|
|
||||||
gimpbrush-mipmap.cc \
|
|
||||||
gimpbrush-mipmap.h \
|
|
||||||
gimpbrush-private.h \
|
|
||||||
gimpbrush-save.c \
|
|
||||||
gimpbrush-save.h \
|
|
||||||
gimpbrush-transform.cc \
|
|
||||||
gimpbrush-transform.h \
|
|
||||||
gimpbrushcache.c \
|
|
||||||
gimpbrushcache.h \
|
|
||||||
gimpbrushclipboard.c \
|
|
||||||
gimpbrushclipboard.h \
|
|
||||||
gimpbrushgenerated.c \
|
|
||||||
gimpbrushgenerated.h \
|
|
||||||
gimpbrushgenerated-load.c \
|
|
||||||
gimpbrushgenerated-load.h \
|
|
||||||
gimpbrushgenerated-save.c \
|
|
||||||
gimpbrushgenerated-save.h \
|
|
||||||
gimpbrushpipe.c \
|
|
||||||
gimpbrushpipe.h \
|
|
||||||
gimpbrushpipe-load.c \
|
|
||||||
gimpbrushpipe-load.h \
|
|
||||||
gimpbrushpipe-save.c \
|
|
||||||
gimpbrushpipe-save.h \
|
|
||||||
gimpbuffer.c \
|
|
||||||
gimpbuffer.h \
|
|
||||||
gimpcancelable.c \
|
|
||||||
gimpcancelable.h \
|
|
||||||
gimpchannel.c \
|
|
||||||
gimpchannel.h \
|
|
||||||
gimpchannel-combine.c \
|
|
||||||
gimpchannel-combine.h \
|
|
||||||
gimpchannel-select.c \
|
|
||||||
gimpchannel-select.h \
|
|
||||||
gimpchannelpropundo.c \
|
|
||||||
gimpchannelpropundo.h \
|
|
||||||
gimpchannelundo.c \
|
|
||||||
gimpchannelundo.h \
|
|
||||||
gimpchunkiterator.c \
|
|
||||||
gimpchunkiterator.h \
|
|
||||||
gimpcontainer.c \
|
|
||||||
gimpcontainer.h \
|
|
||||||
gimpcontainer-filter.c \
|
|
||||||
gimpcontainer-filter.h \
|
|
||||||
gimpcontext.c \
|
|
||||||
gimpcontext.h \
|
|
||||||
gimpcoords.c \
|
|
||||||
gimpcoords.h \
|
|
||||||
gimpcoords-interpolate.c \
|
|
||||||
gimpcoords-interpolate.h \
|
|
||||||
gimpcurve.c \
|
|
||||||
gimpcurve.h \
|
|
||||||
gimpcurve-load.c \
|
|
||||||
gimpcurve-load.h \
|
|
||||||
gimpcurve-map.c \
|
|
||||||
gimpcurve-map.h \
|
|
||||||
gimpcurve-save.c \
|
|
||||||
gimpcurve-save.h \
|
|
||||||
gimpdashpattern.c \
|
|
||||||
gimpdashpattern.h \
|
|
||||||
gimpdata.c \
|
|
||||||
gimpdata.h \
|
|
||||||
gimpdatafactory.c \
|
|
||||||
gimpdatafactory.h \
|
|
||||||
gimpdataloaderfactory.c \
|
|
||||||
gimpdataloaderfactory.h \
|
|
||||||
gimpdisplay.c \
|
|
||||||
gimpdisplay.h \
|
|
||||||
gimpdocumentlist.c \
|
|
||||||
gimpdocumentlist.h \
|
|
||||||
gimpdrawable.c \
|
|
||||||
gimpdrawable.h \
|
|
||||||
gimpdrawable-bucket-fill.c \
|
|
||||||
gimpdrawable-bucket-fill.h \
|
|
||||||
gimpdrawable-combine.c \
|
|
||||||
gimpdrawable-combine.h \
|
|
||||||
gimpdrawable-edit.c \
|
|
||||||
gimpdrawable-edit.h \
|
|
||||||
gimpdrawable-equalize.c \
|
|
||||||
gimpdrawable-equalize.h \
|
|
||||||
gimpdrawable-fill.c \
|
|
||||||
gimpdrawable-fill.h \
|
|
||||||
gimpdrawable-filters.c \
|
|
||||||
gimpdrawable-filters.h \
|
|
||||||
gimpdrawable-floating-selection.c \
|
|
||||||
gimpdrawable-floating-selection.h \
|
|
||||||
gimpdrawable-foreground-extract.c \
|
|
||||||
gimpdrawable-foreground-extract.h \
|
|
||||||
gimpdrawable-gradient.c \
|
|
||||||
gimpdrawable-gradient.h \
|
|
||||||
gimpdrawable-histogram.c \
|
|
||||||
gimpdrawable-histogram.h \
|
|
||||||
gimpdrawable-levels.c \
|
|
||||||
gimpdrawable-levels.h \
|
|
||||||
gimpdrawable-offset.c \
|
|
||||||
gimpdrawable-offset.h \
|
|
||||||
gimpdrawable-operation.c \
|
|
||||||
gimpdrawable-operation.h \
|
|
||||||
gimpdrawable-preview.c \
|
|
||||||
gimpdrawable-preview.h \
|
|
||||||
gimpdrawable-private.h \
|
|
||||||
gimpdrawable-shadow.c \
|
|
||||||
gimpdrawable-shadow.h \
|
|
||||||
gimpdrawable-stroke.c \
|
|
||||||
gimpdrawable-stroke.h \
|
|
||||||
gimpdrawable-transform.c \
|
|
||||||
gimpdrawable-transform.h \
|
|
||||||
gimpdrawablefilter.c \
|
|
||||||
gimpdrawablefilter.h \
|
|
||||||
gimpdrawablemodundo.c \
|
|
||||||
gimpdrawablemodundo.h \
|
|
||||||
gimpdrawablepropundo.c \
|
|
||||||
gimpdrawablepropundo.h \
|
|
||||||
gimpdrawablestack.c \
|
|
||||||
gimpdrawablestack.h \
|
|
||||||
gimpdrawableundo.c \
|
|
||||||
gimpdrawableundo.h \
|
|
||||||
gimpdynamics.c \
|
|
||||||
gimpdynamics.h \
|
|
||||||
gimpdynamics-load.c \
|
|
||||||
gimpdynamics-load.h \
|
|
||||||
gimpdynamics-save.c \
|
|
||||||
gimpdynamics-save.h \
|
|
||||||
gimpdynamicsoutput.c \
|
|
||||||
gimpdynamicsoutput.h \
|
|
||||||
gimperror.c \
|
|
||||||
gimperror.h \
|
|
||||||
gimpextension.c \
|
|
||||||
gimpextension.h \
|
|
||||||
gimpextension-error.c \
|
|
||||||
gimpextension-error.h \
|
|
||||||
gimpextensionmanager.c \
|
|
||||||
gimpextensionmanager.h \
|
|
||||||
gimpfilloptions.c \
|
|
||||||
gimpfilloptions.h \
|
|
||||||
gimpfilter.c \
|
|
||||||
gimpfilter.h \
|
|
||||||
gimpfilteredcontainer.c \
|
|
||||||
gimpfilteredcontainer.h \
|
|
||||||
gimpfilterstack.c \
|
|
||||||
gimpfilterstack.h \
|
|
||||||
gimpfloatingselectionundo.c \
|
|
||||||
gimpfloatingselectionundo.h \
|
|
||||||
gimpgradient.c \
|
|
||||||
gimpgradient.h \
|
|
||||||
gimpgradient-load.c \
|
|
||||||
gimpgradient-load.h \
|
|
||||||
gimpgradient-save.c \
|
|
||||||
gimpgradient-save.h \
|
|
||||||
gimpgrid.c \
|
|
||||||
gimpgrid.h \
|
|
||||||
gimpgrouplayer.c \
|
|
||||||
gimpgrouplayer.h \
|
|
||||||
gimpgrouplayerundo.c \
|
|
||||||
gimpgrouplayerundo.h \
|
|
||||||
gimpguide.c \
|
|
||||||
gimpguide.h \
|
|
||||||
gimpguideundo.c \
|
|
||||||
gimpguideundo.h \
|
|
||||||
gimphistogram.c \
|
|
||||||
gimphistogram.h \
|
|
||||||
gimpidtable.c \
|
|
||||||
gimpidtable.h \
|
|
||||||
gimpimage.c \
|
|
||||||
gimpimage.h \
|
|
||||||
gimpimage-arrange.c \
|
|
||||||
gimpimage-arrange.h \
|
|
||||||
gimpimage-color-profile.c \
|
|
||||||
gimpimage-color-profile.h \
|
|
||||||
gimpimage-colormap.c \
|
|
||||||
gimpimage-colormap.h \
|
|
||||||
gimpimage-convert-indexed.c \
|
|
||||||
gimpimage-convert-indexed.h \
|
|
||||||
gimpimage-convert-fsdither.h \
|
|
||||||
gimpimage-convert-data.h \
|
|
||||||
gimpimage-convert-precision.c \
|
|
||||||
gimpimage-convert-precision.h \
|
|
||||||
gimpimage-convert-type.c \
|
|
||||||
gimpimage-convert-type.h \
|
|
||||||
gimpimage-crop.c \
|
|
||||||
gimpimage-crop.h \
|
|
||||||
gimpimage-duplicate.c \
|
|
||||||
gimpimage-duplicate.h \
|
|
||||||
gimpimage-flip.c \
|
|
||||||
gimpimage-flip.h \
|
|
||||||
gimpimage-grid.h \
|
|
||||||
gimpimage-grid.c \
|
|
||||||
gimpimage-guides.c \
|
|
||||||
gimpimage-guides.h \
|
|
||||||
gimpimage-item-list.c \
|
|
||||||
gimpimage-item-list.h \
|
|
||||||
gimpimage-merge.c \
|
|
||||||
gimpimage-merge.h \
|
|
||||||
gimpimage-metadata.c \
|
|
||||||
gimpimage-metadata.h \
|
|
||||||
gimpimage-new.c \
|
|
||||||
gimpimage-new.h \
|
|
||||||
gimpimage-pick-color.c \
|
|
||||||
gimpimage-pick-color.h \
|
|
||||||
gimpimage-pick-item.c \
|
|
||||||
gimpimage-pick-item.h \
|
|
||||||
gimpimage-preview.c \
|
|
||||||
gimpimage-preview.h \
|
|
||||||
gimpimage-private.h \
|
|
||||||
gimpimage-quick-mask.c \
|
|
||||||
gimpimage-quick-mask.h \
|
|
||||||
gimpimage-resize.c \
|
|
||||||
gimpimage-resize.h \
|
|
||||||
gimpimage-rotate.c \
|
|
||||||
gimpimage-rotate.h \
|
|
||||||
gimpimage-sample-points.c \
|
|
||||||
gimpimage-sample-points.h \
|
|
||||||
gimpimage-scale.c \
|
|
||||||
gimpimage-scale.h \
|
|
||||||
gimpimage-snap.c \
|
|
||||||
gimpimage-snap.h \
|
|
||||||
gimpimage-symmetry.c \
|
|
||||||
gimpimage-symmetry.h \
|
|
||||||
gimpimage-transform.c \
|
|
||||||
gimpimage-transform.h \
|
|
||||||
gimpimage-undo.c \
|
|
||||||
gimpimage-undo.h \
|
|
||||||
gimpimage-undo-push.c \
|
|
||||||
gimpimage-undo-push.h \
|
|
||||||
gimpimageproxy.c \
|
|
||||||
gimpimageproxy.h \
|
|
||||||
gimpimageundo.c \
|
|
||||||
gimpimageundo.h \
|
|
||||||
gimpimagefile.c \
|
|
||||||
gimpimagefile.h \
|
|
||||||
gimpitem.c \
|
|
||||||
gimpitem.h \
|
|
||||||
gimpitem-exclusive.c \
|
|
||||||
gimpitem-exclusive.h \
|
|
||||||
gimpitem-preview.c \
|
|
||||||
gimpitem-preview.h \
|
|
||||||
gimpitemlist.c \
|
|
||||||
gimpitemlist.h \
|
|
||||||
gimpitempropundo.c \
|
|
||||||
gimpitempropundo.h \
|
|
||||||
gimpitemstack.c \
|
|
||||||
gimpitemstack.h \
|
|
||||||
gimpitemtree.c \
|
|
||||||
gimpitemtree.h \
|
|
||||||
gimpitemundo.c \
|
|
||||||
gimpitemundo.h \
|
|
||||||
gimplayer.c \
|
|
||||||
gimplayer.h \
|
|
||||||
gimplayer-floating-selection.c \
|
|
||||||
gimplayer-floating-selection.h \
|
|
||||||
gimplayer-new.c \
|
|
||||||
gimplayer-new.h \
|
|
||||||
gimplayermask.c \
|
|
||||||
gimplayermask.h \
|
|
||||||
gimplayermaskpropundo.c \
|
|
||||||
gimplayermaskpropundo.h \
|
|
||||||
gimplayermaskundo.c \
|
|
||||||
gimplayermaskundo.h \
|
|
||||||
gimplayerpropundo.c \
|
|
||||||
gimplayerpropundo.h \
|
|
||||||
gimplayerstack.c \
|
|
||||||
gimplayerstack.h \
|
|
||||||
gimplayerundo.c \
|
|
||||||
gimplayerundo.h \
|
|
||||||
gimplineart.c \
|
|
||||||
gimplineart.h \
|
|
||||||
gimplist.c \
|
|
||||||
gimplist.h \
|
|
||||||
gimpmaskundo.c \
|
|
||||||
gimpmaskundo.h \
|
|
||||||
gimpmybrush.c \
|
|
||||||
gimpmybrush.h \
|
|
||||||
gimpmybrush-load.c \
|
|
||||||
gimpmybrush-load.h \
|
|
||||||
gimpmybrush-private.h \
|
|
||||||
gimpobject.c \
|
|
||||||
gimpobject.h \
|
|
||||||
gimpobjectqueue.c \
|
|
||||||
gimpobjectqueue.h \
|
|
||||||
gimppaintinfo.c \
|
|
||||||
gimppaintinfo.h \
|
|
||||||
gimppattern.c \
|
|
||||||
gimppattern.h \
|
|
||||||
gimppattern-header.h \
|
|
||||||
gimppattern-load.c \
|
|
||||||
gimppattern-load.h \
|
|
||||||
gimppattern-save.c \
|
|
||||||
gimppattern-save.h \
|
|
||||||
gimppatternclipboard.c \
|
|
||||||
gimppatternclipboard.h \
|
|
||||||
gimppalette.c \
|
|
||||||
gimppalette.h \
|
|
||||||
gimppalette-import.c \
|
|
||||||
gimppalette-import.h \
|
|
||||||
gimppalette-load.c \
|
|
||||||
gimppalette-load.h \
|
|
||||||
gimppalette-save.c \
|
|
||||||
gimppalette-save.h \
|
|
||||||
gimppalettemru.c \
|
|
||||||
gimppalettemru.h \
|
|
||||||
gimpparamspecs.c \
|
|
||||||
gimpparamspecs.h \
|
|
||||||
gimpparamspecs-desc.c \
|
|
||||||
gimpparamspecs-desc.h \
|
|
||||||
gimpparasitelist.c \
|
|
||||||
gimpparasitelist.h \
|
|
||||||
gimppdbprogress.c \
|
|
||||||
gimppdbprogress.h \
|
|
||||||
gimppickable.c \
|
|
||||||
gimppickable.h \
|
|
||||||
gimppickable-auto-shrink.c \
|
|
||||||
gimppickable-auto-shrink.h \
|
|
||||||
gimppickable-contiguous-region.cc \
|
|
||||||
gimppickable-contiguous-region.h \
|
|
||||||
gimpprogress.c \
|
|
||||||
gimpprogress.h \
|
|
||||||
gimpprojectable.c \
|
|
||||||
gimpprojectable.h \
|
|
||||||
gimpprojection.c \
|
|
||||||
gimpprojection.h \
|
|
||||||
gimpresource.c \
|
|
||||||
gimpresource.h \
|
|
||||||
gimpsamplepoint.c \
|
|
||||||
gimpsamplepoint.h \
|
|
||||||
gimpsamplepointundo.c \
|
|
||||||
gimpsamplepointundo.h \
|
|
||||||
gimpscanconvert.c \
|
|
||||||
gimpscanconvert.h \
|
|
||||||
gimpselection.c \
|
|
||||||
gimpselection.h \
|
|
||||||
gimpsettings.c \
|
|
||||||
gimpsettings.h \
|
|
||||||
gimpstrokeoptions.c \
|
|
||||||
gimpstrokeoptions.h \
|
|
||||||
gimpsubprogress.c \
|
|
||||||
gimpsubprogress.h \
|
|
||||||
gimpsymmetry.c \
|
|
||||||
gimpsymmetry.h \
|
|
||||||
gimpsymmetry-mandala.c \
|
|
||||||
gimpsymmetry-mandala.h \
|
|
||||||
gimpsymmetry-mirror.c \
|
|
||||||
gimpsymmetry-mirror.h \
|
|
||||||
gimpsymmetry-tiling.c \
|
|
||||||
gimpsymmetry-tiling.h \
|
|
||||||
gimptag.c \
|
|
||||||
gimptag.h \
|
|
||||||
gimptagcache.c \
|
|
||||||
gimptagcache.h \
|
|
||||||
gimptagged.c \
|
|
||||||
gimptagged.h \
|
|
||||||
gimptaggedcontainer.c \
|
|
||||||
gimptaggedcontainer.h \
|
|
||||||
gimptempbuf.c \
|
|
||||||
gimptempbuf.h \
|
|
||||||
gimptemplate.c \
|
|
||||||
gimptemplate.h \
|
|
||||||
gimptilehandlerprojectable.c \
|
|
||||||
gimptilehandlerprojectable.h \
|
|
||||||
gimptoolgroup.c \
|
|
||||||
gimptoolgroup.h \
|
|
||||||
gimptoolinfo.c \
|
|
||||||
gimptoolinfo.h \
|
|
||||||
gimptoolitem.c \
|
|
||||||
gimptoolitem.h \
|
|
||||||
gimptooloptions.c \
|
|
||||||
gimptooloptions.h \
|
|
||||||
gimptoolpreset.c \
|
|
||||||
gimptoolpreset.h \
|
|
||||||
gimptoolpreset-load.c \
|
|
||||||
gimptoolpreset-load.h \
|
|
||||||
gimptoolpreset-save.c \
|
|
||||||
gimptoolpreset-save.h \
|
|
||||||
gimptreehandler.c \
|
|
||||||
gimptreehandler.h \
|
|
||||||
gimptreeproxy.c \
|
|
||||||
gimptreeproxy.h \
|
|
||||||
gimptriviallycancelablewaitable.c \
|
|
||||||
gimptriviallycancelablewaitable.h \
|
|
||||||
gimpuncancelablewaitable.c \
|
|
||||||
gimpuncancelablewaitable.h \
|
|
||||||
gimpunit.c \
|
|
||||||
gimpunit.h \
|
|
||||||
gimpundo.c \
|
|
||||||
gimpundo.h \
|
|
||||||
gimpundostack.c \
|
|
||||||
gimpundostack.h \
|
|
||||||
gimpviewable.c \
|
|
||||||
gimpviewable.h \
|
|
||||||
gimpwaitable.c \
|
|
||||||
gimpwaitable.h
|
|
||||||
|
|
||||||
libappcore_a_built_sources = \
|
|
||||||
gimp-core-pixbufs.c \
|
|
||||||
gimp-core-pixbufs.h \
|
|
||||||
core-enums.c \
|
|
||||||
gimpmarshal.c \
|
|
||||||
gimpmarshal.h
|
|
||||||
|
|
||||||
libappcore_a_extra_sources = \
|
|
||||||
gimpmarshal.list
|
|
||||||
|
|
||||||
libappcore_a_SOURCES = $(libappcore_a_built_sources) $(libappcore_a_sources)
|
|
||||||
|
|
||||||
BUILT_SOURCES = \
|
|
||||||
$(libappcore_a_built_sources)
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
|
||||||
$(libappcore_a_extra_sources)
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = \
|
|
||||||
gimp-core-pixbufs.c \
|
|
||||||
gimp-core-pixbufs.h \
|
|
||||||
stamp-core-enums.h \
|
|
||||||
xgen-gmh \
|
|
||||||
xgen-gmc \
|
|
||||||
xgen-cec
|
|
||||||
|
|
||||||
CLEANFILES = $(gen_sources)
|
|
||||||
|
|
||||||
gimpmarshal.h: $(srcdir)/gimpmarshal.list
|
|
||||||
$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=gimp_marshal $(srcdir)/gimpmarshal.list --header >> xgen-gmh \
|
|
||||||
&& (cmp -s xgen-gmh $(@F) || cp xgen-gmh $(@F)) \
|
|
||||||
&& rm -f xgen-gmh xgen-gmh~
|
|
||||||
|
|
||||||
gimpmarshal.c: gimpmarshal.h
|
|
||||||
$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=gimp_marshal $(srcdir)/gimpmarshal.list --prototypes --body >> xgen-gmc \
|
|
||||||
&& cp xgen-gmc $(@F) \
|
|
||||||
&& rm -f xgen-gmc xgen-gmc~
|
|
||||||
|
|
||||||
xgen-cec: $(srcdir)/core-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-core-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"core-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-core-enums.h: xgen-cec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/core-enums.c: xgen-cec stamp-core-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
gimp-core-pixbufs.h: $(top_builddir)/icons/Color/gimp-core-pixbufs.gresource.xml
|
|
||||||
$(AM_V_GEN) $(HOST_GLIB_COMPILE_RESOURCES) \
|
|
||||||
--sourcedir=$(top_builddir)/icons/Color --generate-header \
|
|
||||||
--target=$@ $(top_builddir)/icons/Color/gimp-core-pixbufs.gresource.xml
|
|
||||||
|
|
||||||
gimp-core-pixbufs.c: gimp-core-pixbufs.h
|
|
||||||
$(AM_V_GEN) $(HOST_GLIB_COMPILE_RESOURCES) \
|
|
||||||
--sourcedir=$(top_builddir)/icons/Color --generate-source \
|
|
||||||
--target=$@ $(top_builddir)/icons/Color/gimp-core-pixbufs.gresource.xml
|
|
8
app/dialogs/.gitignore
vendored
8
app/dialogs/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/authors.h
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappdialogs.a
|
|
||||||
/libappdialogs.la
|
|
|
@ -1,138 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Dialogs\" \
|
|
||||||
-DDESKTOP_DATADIR=\""$(DESKTOP_DATADIR)"\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(APPSTREAM_GLIB_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappdialogs.a
|
|
||||||
|
|
||||||
libappdialogs_a_sources = \
|
|
||||||
dialogs-types.h \
|
|
||||||
dialogs.c \
|
|
||||||
dialogs.h \
|
|
||||||
dialogs-constructors.c \
|
|
||||||
dialogs-constructors.h \
|
|
||||||
\
|
|
||||||
about-dialog.c \
|
|
||||||
about-dialog.h \
|
|
||||||
action-search-dialog.c \
|
|
||||||
action-search-dialog.h \
|
|
||||||
channel-options-dialog.c \
|
|
||||||
channel-options-dialog.h \
|
|
||||||
color-profile-dialog.c \
|
|
||||||
color-profile-dialog.h \
|
|
||||||
color-profile-import-dialog.c \
|
|
||||||
color-profile-import-dialog.h \
|
|
||||||
convert-indexed-dialog.c \
|
|
||||||
convert-indexed-dialog.h \
|
|
||||||
convert-precision-dialog.c \
|
|
||||||
convert-precision-dialog.h \
|
|
||||||
data-delete-dialog.c \
|
|
||||||
data-delete-dialog.h \
|
|
||||||
extensions-dialog.c \
|
|
||||||
extensions-dialog.h \
|
|
||||||
file-open-dialog.c \
|
|
||||||
file-open-dialog.h \
|
|
||||||
file-open-location-dialog.c \
|
|
||||||
file-open-location-dialog.h \
|
|
||||||
file-save-dialog.c \
|
|
||||||
file-save-dialog.h \
|
|
||||||
fill-dialog.c \
|
|
||||||
fill-dialog.h \
|
|
||||||
grid-dialog.h \
|
|
||||||
grid-dialog.c \
|
|
||||||
image-merge-layers-dialog.c \
|
|
||||||
image-merge-layers-dialog.h \
|
|
||||||
image-new-dialog.c \
|
|
||||||
image-new-dialog.h \
|
|
||||||
image-properties-dialog.c \
|
|
||||||
image-properties-dialog.h \
|
|
||||||
image-scale-dialog.c \
|
|
||||||
image-scale-dialog.h \
|
|
||||||
input-devices-dialog.c \
|
|
||||||
input-devices-dialog.h \
|
|
||||||
item-options-dialog.c \
|
|
||||||
item-options-dialog.h \
|
|
||||||
keyboard-shortcuts-dialog.c \
|
|
||||||
keyboard-shortcuts-dialog.h \
|
|
||||||
layer-add-mask-dialog.c \
|
|
||||||
layer-add-mask-dialog.h \
|
|
||||||
layer-options-dialog.c \
|
|
||||||
layer-options-dialog.h \
|
|
||||||
lebl-dialog.c \
|
|
||||||
lebl-dialog.h \
|
|
||||||
metadata-rotation-import-dialog.c \
|
|
||||||
metadata-rotation-import-dialog.h \
|
|
||||||
module-dialog.c \
|
|
||||||
module-dialog.h \
|
|
||||||
palette-import-dialog.c \
|
|
||||||
palette-import-dialog.h \
|
|
||||||
preferences-dialog.c \
|
|
||||||
preferences-dialog.h \
|
|
||||||
preferences-dialog-utils.c \
|
|
||||||
preferences-dialog-utils.h \
|
|
||||||
print-size-dialog.c \
|
|
||||||
print-size-dialog.h \
|
|
||||||
quit-dialog.c \
|
|
||||||
quit-dialog.h \
|
|
||||||
resize-dialog.c \
|
|
||||||
resize-dialog.h \
|
|
||||||
resolution-calibrate-dialog.c \
|
|
||||||
resolution-calibrate-dialog.h \
|
|
||||||
scale-dialog.c \
|
|
||||||
scale-dialog.h \
|
|
||||||
stroke-dialog.c \
|
|
||||||
stroke-dialog.h \
|
|
||||||
template-options-dialog.c \
|
|
||||||
template-options-dialog.h \
|
|
||||||
tips-dialog.c \
|
|
||||||
tips-dialog.h \
|
|
||||||
tips-parser.c \
|
|
||||||
tips-parser.h \
|
|
||||||
user-install-dialog.c \
|
|
||||||
user-install-dialog.h \
|
|
||||||
vectors-export-dialog.c \
|
|
||||||
vectors-export-dialog.h \
|
|
||||||
vectors-import-dialog.c \
|
|
||||||
vectors-import-dialog.h \
|
|
||||||
vectors-options-dialog.c \
|
|
||||||
vectors-options-dialog.h \
|
|
||||||
welcome-dialog.c \
|
|
||||||
welcome-dialog.h \
|
|
||||||
welcome-dialog-data.c \
|
|
||||||
welcome-dialog-data.h
|
|
||||||
|
|
||||||
libappdialogs_a_built_sources = \
|
|
||||||
authors.h
|
|
||||||
|
|
||||||
libappdialogs_a_SOURCES = \
|
|
||||||
$(libappdialogs_a_built_sources) $(libappdialogs_a_sources)
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
|
||||||
authors.xsl
|
|
||||||
|
|
||||||
|
|
||||||
$(srcdir)/about-dialog.c: authors.h
|
|
||||||
|
|
||||||
authors.h: $(top_srcdir)/authors.xml $(srcdir)/authors.xsl
|
|
||||||
if HAVE_XSLTPROC
|
|
||||||
$(XSLTPROC) $(srcdir)/authors.xsl $< > $(@) || rm -f $(@)
|
|
||||||
else
|
|
||||||
@echo "*** xsltproc is required to regenerate $(@) ***"; exit 1;
|
|
||||||
endif
|
|
||||||
|
|
||||||
$(srcdir)/welcome-dialog.c: welcome-dialog-data.h welcome-dialog-data.c
|
|
||||||
|
|
||||||
welcome-dialog-data.h: $(top_srcdir)/desktop/org.gimp.GIMP.appdata.xml.in.in $(top_srcdir)/tools/generate-welcome-dialog-data.py
|
|
||||||
$(top_srcdir)/tools/generate-welcome-dialog-data.py --header $(GIMP_VERSION) > $@
|
|
||||||
|
|
||||||
welcome-dialog-data.c: $(top_srcdir)/desktop/org.gimp.GIMP.appdata.xml.in.in $(top_srcdir)/tools/generate-welcome-dialog-data.py
|
|
||||||
$(top_srcdir)/tools/generate-welcome-dialog-data.py $(GIMP_VERSION) > $@
|
|
8
app/display/.gitignore
vendored
8
app/display/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappdisplay.a
|
|
||||||
/libappdisplay.la
|
|
||||||
/xgen-dec
|
|
|
@ -1,233 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Display\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappdisplay.a
|
|
||||||
|
|
||||||
libappdisplay_a_sources = \
|
|
||||||
display-enums.h \
|
|
||||||
display-types.h \
|
|
||||||
gimpcanvas.c \
|
|
||||||
gimpcanvas.h \
|
|
||||||
gimpcanvas-style.c \
|
|
||||||
gimpcanvas-style.h \
|
|
||||||
gimpcanvasarc.c \
|
|
||||||
gimpcanvasarc.h \
|
|
||||||
gimpcanvasboundary.c \
|
|
||||||
gimpcanvasboundary.h \
|
|
||||||
gimpcanvasbufferpreview.c \
|
|
||||||
gimpcanvasbufferpreview.h \
|
|
||||||
gimpcanvascanvasboundary.c \
|
|
||||||
gimpcanvascanvasboundary.h \
|
|
||||||
gimpcanvascorner.c \
|
|
||||||
gimpcanvascorner.h \
|
|
||||||
gimpcanvascursor.c \
|
|
||||||
gimpcanvascursor.h \
|
|
||||||
gimpcanvasgrid.c \
|
|
||||||
gimpcanvasgrid.h \
|
|
||||||
gimpcanvasgroup.c \
|
|
||||||
gimpcanvasgroup.h \
|
|
||||||
gimpcanvasguide.c \
|
|
||||||
gimpcanvasguide.h \
|
|
||||||
gimpcanvashandle.c \
|
|
||||||
gimpcanvashandle.h \
|
|
||||||
gimpcanvasitem.c \
|
|
||||||
gimpcanvasitem.h \
|
|
||||||
gimpcanvasitem-utils.c \
|
|
||||||
gimpcanvasitem-utils.h \
|
|
||||||
gimpcanvaslayerboundary.c \
|
|
||||||
gimpcanvaslayerboundary.h \
|
|
||||||
gimpcanvaslimit.c \
|
|
||||||
gimpcanvaslimit.h \
|
|
||||||
gimpcanvasline.c \
|
|
||||||
gimpcanvasline.h \
|
|
||||||
gimpcanvaspassepartout.c \
|
|
||||||
gimpcanvaspassepartout.h \
|
|
||||||
gimpcanvaspath.c \
|
|
||||||
gimpcanvaspath.h \
|
|
||||||
gimpcanvaspen.c \
|
|
||||||
gimpcanvaspen.h \
|
|
||||||
gimpcanvaspolygon.c \
|
|
||||||
gimpcanvaspolygon.h \
|
|
||||||
gimpcanvasprogress.c \
|
|
||||||
gimpcanvasprogress.h \
|
|
||||||
gimpcanvasproxygroup.c \
|
|
||||||
gimpcanvasproxygroup.h \
|
|
||||||
gimpcanvasrectangle.c \
|
|
||||||
gimpcanvasrectangle.h \
|
|
||||||
gimpcanvasrectangleguides.c \
|
|
||||||
gimpcanvasrectangleguides.h \
|
|
||||||
gimpcanvassamplepoint.c \
|
|
||||||
gimpcanvassamplepoint.h \
|
|
||||||
gimpcanvastextcursor.c \
|
|
||||||
gimpcanvastextcursor.h \
|
|
||||||
gimpcanvastransformguides.c \
|
|
||||||
gimpcanvastransformguides.h \
|
|
||||||
gimpcanvastransformpreview.c \
|
|
||||||
gimpcanvastransformpreview.h \
|
|
||||||
gimpcursorview.c \
|
|
||||||
gimpcursorview.h \
|
|
||||||
gimpdisplay.c \
|
|
||||||
gimpdisplay.h \
|
|
||||||
gimpdisplay-foreach.c \
|
|
||||||
gimpdisplay-foreach.h \
|
|
||||||
gimpdisplay-handlers.c \
|
|
||||||
gimpdisplay-handlers.h \
|
|
||||||
gimpdisplayshell.c \
|
|
||||||
gimpdisplayshell.h \
|
|
||||||
gimpdisplayshell-actions.c \
|
|
||||||
gimpdisplayshell-actions.h \
|
|
||||||
gimpdisplayshell-appearance.c \
|
|
||||||
gimpdisplayshell-appearance.h \
|
|
||||||
gimpdisplayshell-autoscroll.c \
|
|
||||||
gimpdisplayshell-autoscroll.h \
|
|
||||||
gimpdisplayshell-callbacks.c \
|
|
||||||
gimpdisplayshell-callbacks.h \
|
|
||||||
gimpdisplayshell-close.c \
|
|
||||||
gimpdisplayshell-close.h \
|
|
||||||
gimpdisplayshell-cursor.c \
|
|
||||||
gimpdisplayshell-cursor.h \
|
|
||||||
gimpdisplayshell-dnd.c \
|
|
||||||
gimpdisplayshell-dnd.h \
|
|
||||||
gimpdisplayshell-draw.c \
|
|
||||||
gimpdisplayshell-draw.h \
|
|
||||||
gimpdisplayshell-expose.c \
|
|
||||||
gimpdisplayshell-expose.h \
|
|
||||||
gimpdisplayshell-grab.c \
|
|
||||||
gimpdisplayshell-grab.h \
|
|
||||||
gimpdisplayshell-handlers.c \
|
|
||||||
gimpdisplayshell-handlers.h \
|
|
||||||
gimpdisplayshell-filter.c \
|
|
||||||
gimpdisplayshell-filter.h \
|
|
||||||
gimpdisplayshell-filter-dialog.c \
|
|
||||||
gimpdisplayshell-filter-dialog.h \
|
|
||||||
gimpdisplayshell-layer-select.c \
|
|
||||||
gimpdisplayshell-layer-select.h \
|
|
||||||
gimpdisplayshell-items.c \
|
|
||||||
gimpdisplayshell-items.h \
|
|
||||||
gimpdisplayshell-profile.c \
|
|
||||||
gimpdisplayshell-profile.h \
|
|
||||||
gimpdisplayshell-progress.c \
|
|
||||||
gimpdisplayshell-progress.h \
|
|
||||||
gimpdisplayshell-render.c \
|
|
||||||
gimpdisplayshell-render.h \
|
|
||||||
gimpdisplayshell-rotate.c \
|
|
||||||
gimpdisplayshell-rotate.h \
|
|
||||||
gimpdisplayshell-rotate-dialog.c \
|
|
||||||
gimpdisplayshell-rotate-dialog.h \
|
|
||||||
gimpdisplayshell-rulers.c \
|
|
||||||
gimpdisplayshell-rulers.h \
|
|
||||||
gimpdisplayshell-scale.c \
|
|
||||||
gimpdisplayshell-scale.h \
|
|
||||||
gimpdisplayshell-scale-dialog.c \
|
|
||||||
gimpdisplayshell-scale-dialog.h \
|
|
||||||
gimpdisplayshell-scroll.c \
|
|
||||||
gimpdisplayshell-scroll.h \
|
|
||||||
gimpdisplayshell-scrollbars.c \
|
|
||||||
gimpdisplayshell-scrollbars.h \
|
|
||||||
gimpdisplayshell-selection.c \
|
|
||||||
gimpdisplayshell-selection.h \
|
|
||||||
gimpdisplayshell-title.c \
|
|
||||||
gimpdisplayshell-title.h \
|
|
||||||
gimpdisplayshell-tool-events.c \
|
|
||||||
gimpdisplayshell-tool-events.h \
|
|
||||||
gimpdisplayshell-transform.c \
|
|
||||||
gimpdisplayshell-transform.h \
|
|
||||||
gimpdisplayshell-utils.c \
|
|
||||||
gimpdisplayshell-utils.h \
|
|
||||||
gimpmodifiersmanager.c \
|
|
||||||
gimpmodifiersmanager.h \
|
|
||||||
gimpimagewindow.c \
|
|
||||||
gimpimagewindow.h \
|
|
||||||
gimpmotionbuffer.c \
|
|
||||||
gimpmotionbuffer.h \
|
|
||||||
gimpmultiwindowstrategy.c \
|
|
||||||
gimpmultiwindowstrategy.h \
|
|
||||||
gimpnavigationeditor.c \
|
|
||||||
gimpnavigationeditor.h \
|
|
||||||
gimpscalecombobox.c \
|
|
||||||
gimpscalecombobox.h \
|
|
||||||
gimpsinglewindowstrategy.c \
|
|
||||||
gimpsinglewindowstrategy.h \
|
|
||||||
gimpstatusbar.c \
|
|
||||||
gimpstatusbar.h \
|
|
||||||
gimptooldialog.c \
|
|
||||||
gimptooldialog.h \
|
|
||||||
gimptoolgui.c \
|
|
||||||
gimptoolgui.h \
|
|
||||||
gimptoolcompass.c \
|
|
||||||
gimptoolcompass.h \
|
|
||||||
gimptoolfocus.h \
|
|
||||||
gimptoolfocus.c \
|
|
||||||
gimptoolgyroscope.c \
|
|
||||||
gimptoolgyroscope.h \
|
|
||||||
gimptoolhandlegrid.c \
|
|
||||||
gimptoolhandlegrid.h \
|
|
||||||
gimptoolline.c \
|
|
||||||
gimptoolline.h \
|
|
||||||
gimptoolpath.c \
|
|
||||||
gimptoolpath.h \
|
|
||||||
gimptoolpolygon.c \
|
|
||||||
gimptoolpolygon.h \
|
|
||||||
gimptoolrectangle.c \
|
|
||||||
gimptoolrectangle.h \
|
|
||||||
gimptoolrotategrid.c \
|
|
||||||
gimptoolrotategrid.h \
|
|
||||||
gimptoolsheargrid.c \
|
|
||||||
gimptoolsheargrid.h \
|
|
||||||
gimptooltransform3dgrid.c \
|
|
||||||
gimptooltransform3dgrid.h \
|
|
||||||
gimptooltransformgrid.c \
|
|
||||||
gimptooltransformgrid.h \
|
|
||||||
gimptoolwidget.c \
|
|
||||||
gimptoolwidget.h \
|
|
||||||
gimptoolwidgetgroup.c \
|
|
||||||
gimptoolwidgetgroup.h
|
|
||||||
|
|
||||||
libappdisplay_a_built_sources = display-enums.c
|
|
||||||
|
|
||||||
libappdisplay_a_SOURCES = \
|
|
||||||
$(libappdisplay_a_built_sources) \
|
|
||||||
$(libappdisplay_a_sources)
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = stamp-display-enums.h xgen-dec
|
|
||||||
CLEANFILES = $(gen_sources)
|
|
||||||
|
|
||||||
xgen-dec: $(srcdir)/display-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-display-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"display-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-display-enums.h: xgen-dec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/display-enums.c: xgen-dec stamp-display-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
7
app/file-data/.gitignore
vendored
7
app/file-data/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappfile-data.a
|
|
||||||
/libappfile-data.la
|
|
|
@ -1,28 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-File-Data\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(APPSTREAM_GLIB_CFLAGS) \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
$(LIBARCHIVE_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappfile-data.a
|
|
||||||
|
|
||||||
libappfile_data_a_SOURCES = \
|
|
||||||
file-data.c \
|
|
||||||
file-data.h \
|
|
||||||
file-data-gbr.c \
|
|
||||||
file-data-gbr.h \
|
|
||||||
file-data-gex.c \
|
|
||||||
file-data-gex.h \
|
|
||||||
file-data-gih.c \
|
|
||||||
file-data-gih.h \
|
|
||||||
file-data-pat.c \
|
|
||||||
file-data-pat.h
|
|
7
app/file/.gitignore
vendored
7
app/file/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappfile.a
|
|
||||||
/libappfile.la
|
|
|
@ -1,26 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-File\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappfile.a
|
|
||||||
|
|
||||||
libappfile_a_SOURCES = \
|
|
||||||
file-import.c \
|
|
||||||
file-import.h \
|
|
||||||
file-open.c \
|
|
||||||
file-open.h \
|
|
||||||
file-remote.c \
|
|
||||||
file-remote.h \
|
|
||||||
file-save.c \
|
|
||||||
file-save.h \
|
|
||||||
file-utils.c \
|
|
||||||
file-utils.h \
|
|
||||||
gimp-file.h
|
|
8
app/gegl/.gitignore
vendored
8
app/gegl/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/libappgegl.a
|
|
||||||
/libappgegl-generic.a
|
|
||||||
/libappgegl-sse2.a
|
|
||||||
/xgen-ggec
|
|
|
@ -1,102 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-GEGL\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = \
|
|
||||||
libappgegl-generic.a \
|
|
||||||
libappgegl-sse2.a \
|
|
||||||
libappgegl.a
|
|
||||||
|
|
||||||
libappgegl_generic_a_sources = \
|
|
||||||
gimp-gegl-enums.h \
|
|
||||||
gimp-gegl-types.h \
|
|
||||||
gimp-babl.c \
|
|
||||||
gimp-babl.h \
|
|
||||||
gimp-babl-compat.c \
|
|
||||||
gimp-babl-compat.h \
|
|
||||||
gimp-gegl.c \
|
|
||||||
gimp-gegl.h \
|
|
||||||
gimp-gegl-apply-operation.c \
|
|
||||||
gimp-gegl-apply-operation.h \
|
|
||||||
gimp-gegl-loops.cc \
|
|
||||||
gimp-gegl-loops.h \
|
|
||||||
gimp-gegl-mask.c \
|
|
||||||
gimp-gegl-mask.h \
|
|
||||||
gimp-gegl-mask-combine.cc \
|
|
||||||
gimp-gegl-mask-combine.h \
|
|
||||||
gimp-gegl-nodes.c \
|
|
||||||
gimp-gegl-nodes.h \
|
|
||||||
gimp-gegl-tile-compat.c \
|
|
||||||
gimp-gegl-tile-compat.h \
|
|
||||||
gimp-gegl-utils.c \
|
|
||||||
gimp-gegl-utils.h \
|
|
||||||
gimpapplicator.c \
|
|
||||||
gimpapplicator.h \
|
|
||||||
gimptilehandlervalidate.c \
|
|
||||||
gimptilehandlervalidate.h
|
|
||||||
|
|
||||||
libappgegl_generic_a_built_sources = gimp-gegl-enums.c
|
|
||||||
|
|
||||||
libappgegl_sse2_a_sources = \
|
|
||||||
gimp-gegl-loops-sse2.c \
|
|
||||||
gimp-gegl-loops-sse2.h
|
|
||||||
|
|
||||||
libappgegl_generic_a_SOURCES = $(libappgegl_generic_a_built_sources) $(libappgegl_generic_a_sources)
|
|
||||||
|
|
||||||
libappgegl_sse2_a_SOURCES = $(libappgegl_sse2_a_sources)
|
|
||||||
|
|
||||||
libappgegl_sse2_a_CFLAGS = $(SSE2_EXTRA_CFLAGS)
|
|
||||||
|
|
||||||
libappgegl_a_SOURCES =
|
|
||||||
|
|
||||||
|
|
||||||
libappgegl.a: libappgegl-generic.a \
|
|
||||||
libappgegl-sse2.a
|
|
||||||
$(AR) $(ARFLAGS) libappgegl.a \
|
|
||||||
$(libappgegl_generic_a_OBJECTS) \
|
|
||||||
$(libappgegl_sse2_a_OBJECTS)
|
|
||||||
$(RANLIB) libappgegl.a
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = stamp-gimp-gegl-enums.h xgen-ggec
|
|
||||||
CLEANFILES = $(gen_sources)
|
|
||||||
|
|
||||||
xgen-ggec: $(srcdir)/gimp-gegl-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-gimp-gegl-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"core/core-enums.h\"\n#include \"gimp-gegl-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-gimp-gegl-enums.h: xgen-ggec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/gimp-gegl-enums.c: xgen-ggec stamp-gimp-gegl-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
9
app/gui/.gitignore
vendored
9
app/gui/.gitignore
vendored
|
@ -1,9 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/gimpdbusservice-generated.c
|
|
||||||
/gimpdbusservice-generated.h
|
|
||||||
/libappgui.a
|
|
||||||
/libappgui.la
|
|
|
@ -1,84 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
if PLATFORM_OSX
|
|
||||||
xobjective_c = "-xobjective-c"
|
|
||||||
xobjective_cxx = "-xobjective-c++"
|
|
||||||
xnone = "-xnone"
|
|
||||||
endif
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-GUI\" \
|
|
||||||
-DGIMP_COMMAND=\"@GIMP_COMMAND@\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GIO_UNIX_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
$(GTK_MAC_INTEGRATION_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
AM_CFLAGS = \
|
|
||||||
$(xobjective_c)
|
|
||||||
|
|
||||||
AM_CXXFLAGS = \
|
|
||||||
$(xobjective_cxx)
|
|
||||||
|
|
||||||
AM_LDFLAGS = \
|
|
||||||
$(xnone)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappgui.a
|
|
||||||
|
|
||||||
libappgui_a_sources = \
|
|
||||||
gimpapp.c \
|
|
||||||
gimpapp.h \
|
|
||||||
gimpdbusservice.c \
|
|
||||||
gimpdbusservice.h \
|
|
||||||
gimpuiconfigurer.c \
|
|
||||||
gimpuiconfigurer.h \
|
|
||||||
gui.c \
|
|
||||||
gui.h \
|
|
||||||
gui-message.c \
|
|
||||||
gui-message.h \
|
|
||||||
gui-unique.c \
|
|
||||||
gui-unique.h \
|
|
||||||
gui-vtable.c \
|
|
||||||
gui-vtable.h \
|
|
||||||
gui-types.h \
|
|
||||||
icon-themes.c \
|
|
||||||
icon-themes.h \
|
|
||||||
modifiers.c \
|
|
||||||
modifiers.h \
|
|
||||||
session.c \
|
|
||||||
session.h \
|
|
||||||
splash.c \
|
|
||||||
splash.h \
|
|
||||||
themes.c \
|
|
||||||
themes.h
|
|
||||||
|
|
||||||
libappgui_a_built_sources = \
|
|
||||||
gimpdbusservice-generated.c \
|
|
||||||
gimpdbusservice-generated.h
|
|
||||||
|
|
||||||
libappgui_a_SOURCES = $(libappgui_a_built_sources) $(libappgui_a_sources)
|
|
||||||
|
|
||||||
BUILT_SOURCES = $(libappgui_a_built_sources)
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
|
||||||
dbus-service.xml
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = $(libappgui_a_built_sources)
|
|
||||||
CLEANFILES = $(gen_sources)
|
|
||||||
|
|
||||||
$(srcdir)/gimpdbusservice.c: $(libappgui_a_built_sources)
|
|
||||||
|
|
||||||
$(libappgui_a_built_sources): $(srcdir)/dbus-service.xml
|
|
||||||
$(GDBUS_CODEGEN) --interface-prefix org.gimp.GIMP. \
|
|
||||||
--generate-c-code gimpdbusservice-generated \
|
|
||||||
--c-namespace GimpDBusService \
|
|
||||||
$(srcdir)/dbus-service.xml
|
|
7
app/menus/.gitignore
vendored
7
app/menus/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappmenus.a
|
|
||||||
/libappmenus.la
|
|
|
@ -1,36 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Menus\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappmenus.a
|
|
||||||
|
|
||||||
libappmenus_a_SOURCES = \
|
|
||||||
menus-types.h \
|
|
||||||
menus.c \
|
|
||||||
menus.h \
|
|
||||||
dockable-menu.c \
|
|
||||||
dockable-menu.h \
|
|
||||||
file-menu.c \
|
|
||||||
file-menu.h \
|
|
||||||
filters-menu.c \
|
|
||||||
filters-menu.h \
|
|
||||||
image-menu.c \
|
|
||||||
image-menu.h \
|
|
||||||
plug-in-menus.c \
|
|
||||||
plug-in-menus.h \
|
|
||||||
shortcuts-rc.c \
|
|
||||||
shortcuts-rc.h \
|
|
||||||
tool-options-menu.c \
|
|
||||||
tool-options-menu.h \
|
|
||||||
window-menu.c \
|
|
||||||
window-menu.h \
|
|
||||||
windows-menu.c \
|
|
||||||
windows-menu.h
|
|
9
app/operations/.gitignore
vendored
9
app/operations/.gitignore
vendored
|
@ -1,9 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/libappoperations.a
|
|
||||||
/libappoperations-generic.a
|
|
||||||
/libappoperations-sse2.a
|
|
||||||
/libappoperations-sse4.a
|
|
||||||
/xgen-oec
|
|
|
@ -1,143 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
SUBDIRS = \
|
|
||||||
layer-modes \
|
|
||||||
layer-modes-legacy \
|
|
||||||
tests
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Operations\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = \
|
|
||||||
libappoperations.a
|
|
||||||
|
|
||||||
libappoperations_a_sources = \
|
|
||||||
operations-types.h \
|
|
||||||
operations-enums.h \
|
|
||||||
gimp-operations.c \
|
|
||||||
gimp-operations.h \
|
|
||||||
\
|
|
||||||
gimp-operation-config.c \
|
|
||||||
gimp-operation-config.h \
|
|
||||||
gimpoperationsettings.c \
|
|
||||||
gimpoperationsettings.h \
|
|
||||||
gimpbrightnesscontrastconfig.c \
|
|
||||||
gimpbrightnesscontrastconfig.h \
|
|
||||||
gimpcageconfig.c \
|
|
||||||
gimpcageconfig.h \
|
|
||||||
gimpcolorbalanceconfig.c \
|
|
||||||
gimpcolorbalanceconfig.h \
|
|
||||||
gimpcurvesconfig.c \
|
|
||||||
gimpcurvesconfig.h \
|
|
||||||
gimphuesaturationconfig.c \
|
|
||||||
gimphuesaturationconfig.h \
|
|
||||||
gimplevelsconfig.c \
|
|
||||||
gimplevelsconfig.h \
|
|
||||||
\
|
|
||||||
gimpoperationborder.c \
|
|
||||||
gimpoperationborder.h \
|
|
||||||
gimpoperationbuffersourcevalidate.c \
|
|
||||||
gimpoperationbuffersourcevalidate.h \
|
|
||||||
gimpoperationcagecoefcalc.c \
|
|
||||||
gimpoperationcagecoefcalc.h \
|
|
||||||
gimpoperationcagetransform.c \
|
|
||||||
gimpoperationcagetransform.h \
|
|
||||||
gimpoperationcomposecrop.c \
|
|
||||||
gimpoperationcomposecrop.h \
|
|
||||||
gimpoperationequalize.c \
|
|
||||||
gimpoperationequalize.h \
|
|
||||||
gimpoperationfillsource.c \
|
|
||||||
gimpoperationfillsource.h \
|
|
||||||
gimpoperationflood.c \
|
|
||||||
gimpoperationflood.h \
|
|
||||||
gimpoperationgradient.c \
|
|
||||||
gimpoperationgradient.h \
|
|
||||||
gimpoperationgrow.c \
|
|
||||||
gimpoperationgrow.h \
|
|
||||||
gimpoperationhistogramsink.c \
|
|
||||||
gimpoperationhistogramsink.h \
|
|
||||||
gimpoperationmaskcomponents.cc \
|
|
||||||
gimpoperationmaskcomponents.h \
|
|
||||||
gimpoperationoffset.c \
|
|
||||||
gimpoperationoffset.h \
|
|
||||||
gimpoperationprofiletransform.c \
|
|
||||||
gimpoperationprofiletransform.h \
|
|
||||||
gimpoperationscalarmultiply.c \
|
|
||||||
gimpoperationscalarmultiply.h \
|
|
||||||
gimpoperationsemiflatten.c \
|
|
||||||
gimpoperationsemiflatten.h \
|
|
||||||
gimpoperationsetalpha.c \
|
|
||||||
gimpoperationsetalpha.h \
|
|
||||||
gimpoperationshrink.c \
|
|
||||||
gimpoperationshrink.h \
|
|
||||||
gimpoperationthresholdalpha.c \
|
|
||||||
gimpoperationthresholdalpha.h \
|
|
||||||
\
|
|
||||||
gimpoperationpointfilter.c \
|
|
||||||
gimpoperationpointfilter.h \
|
|
||||||
gimpoperationbrightnesscontrast.c \
|
|
||||||
gimpoperationbrightnesscontrast.h \
|
|
||||||
gimpoperationcolorbalance.c \
|
|
||||||
gimpoperationcolorbalance.h \
|
|
||||||
gimpoperationcolorize.c \
|
|
||||||
gimpoperationcolorize.h \
|
|
||||||
gimpoperationcurves.c \
|
|
||||||
gimpoperationcurves.h \
|
|
||||||
gimpoperationdesaturate.c \
|
|
||||||
gimpoperationdesaturate.h \
|
|
||||||
gimpoperationhuesaturation.c \
|
|
||||||
gimpoperationhuesaturation.h \
|
|
||||||
gimpoperationlevels.c \
|
|
||||||
gimpoperationlevels.h \
|
|
||||||
gimpoperationposterize.c \
|
|
||||||
gimpoperationposterize.h \
|
|
||||||
gimpoperationthreshold.c \
|
|
||||||
gimpoperationthreshold.h
|
|
||||||
|
|
||||||
libappoperations_a_built_sources = operations-enums.c
|
|
||||||
|
|
||||||
libappoperations_a_SOURCES = \
|
|
||||||
$(libappoperations_a_built_sources) \
|
|
||||||
$(libappoperations_a_sources)
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = stamp-operations-enums.h xgen-oec
|
|
||||||
CLEANFILES = $(gen_sources)
|
|
||||||
|
|
||||||
xgen-oec: $(srcdir)/operations-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-operations-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"operations-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-operations-enums.h: xgen-oec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/operations-enums.c: xgen-oec stamp-operations-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
5
app/operations/layer-modes-legacy/.gitignore
vendored
5
app/operations/layer-modes-legacy/.gitignore
vendored
|
@ -1,5 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/libapplayermodeslegacy.a
|
|
|
@ -1,54 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Layer-Modes-Legacy\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = \
|
|
||||||
libapplayermodeslegacy.a
|
|
||||||
|
|
||||||
libapplayermodeslegacy_a_SOURCES = \
|
|
||||||
gimpoperationadditionlegacy.c \
|
|
||||||
gimpoperationadditionlegacy.h \
|
|
||||||
gimpoperationburnlegacy.c \
|
|
||||||
gimpoperationburnlegacy.h \
|
|
||||||
gimpoperationdarkenonlylegacy.c \
|
|
||||||
gimpoperationdarkenonlylegacy.h \
|
|
||||||
gimpoperationdifferencelegacy.c \
|
|
||||||
gimpoperationdifferencelegacy.h \
|
|
||||||
gimpoperationdividelegacy.c \
|
|
||||||
gimpoperationdividelegacy.h \
|
|
||||||
gimpoperationdodgelegacy.c \
|
|
||||||
gimpoperationdodgelegacy.h \
|
|
||||||
gimpoperationgrainextractlegacy.c \
|
|
||||||
gimpoperationgrainextractlegacy.h \
|
|
||||||
gimpoperationgrainmergelegacy.c \
|
|
||||||
gimpoperationgrainmergelegacy.h \
|
|
||||||
gimpoperationhardlightlegacy.c \
|
|
||||||
gimpoperationhardlightlegacy.h \
|
|
||||||
gimpoperationhslcolorlegacy.c \
|
|
||||||
gimpoperationhslcolorlegacy.h \
|
|
||||||
gimpoperationhsvhuelegacy.c \
|
|
||||||
gimpoperationhsvhuelegacy.h \
|
|
||||||
gimpoperationhsvsaturationlegacy.c \
|
|
||||||
gimpoperationhsvsaturationlegacy.h \
|
|
||||||
gimpoperationhsvvaluelegacy.c \
|
|
||||||
gimpoperationhsvvaluelegacy.h \
|
|
||||||
gimpoperationlightenonlylegacy.c \
|
|
||||||
gimpoperationlightenonlylegacy.h \
|
|
||||||
gimpoperationmultiplylegacy.c \
|
|
||||||
gimpoperationmultiplylegacy.h \
|
|
||||||
gimpoperationscreenlegacy.c \
|
|
||||||
gimpoperationscreenlegacy.h \
|
|
||||||
gimpoperationsoftlightlegacy.c \
|
|
||||||
gimpoperationsoftlightlegacy.h \
|
|
||||||
gimpoperationsubtractlegacy.c \
|
|
||||||
gimpoperationsubtractlegacy.h
|
|
||||||
|
|
8
app/operations/layer-modes/.gitignore
vendored
8
app/operations/layer-modes/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/libapplayermodes.a
|
|
||||||
/libapplayermodes-generic.a
|
|
||||||
/libapplayermodes-sse2.a
|
|
||||||
/libapplayermodes-sse4.a
|
|
|
@ -1,79 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Layer-Modes\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = \
|
|
||||||
libapplayermodes-generic.a \
|
|
||||||
libapplayermodes-sse2.a \
|
|
||||||
libapplayermodes-sse4.a \
|
|
||||||
libapplayermodes.a
|
|
||||||
|
|
||||||
libapplayermodes_generic_a_sources = \
|
|
||||||
gimp-layer-modes.c \
|
|
||||||
gimp-layer-modes.h \
|
|
||||||
\
|
|
||||||
gimpoperationlayermode.c \
|
|
||||||
gimpoperationlayermode.h \
|
|
||||||
gimpoperationlayermode-blend.c \
|
|
||||||
gimpoperationlayermode-blend.h \
|
|
||||||
gimpoperationlayermode-composite.c \
|
|
||||||
gimpoperationlayermode-composite.h \
|
|
||||||
\
|
|
||||||
gimpoperationantierase.c \
|
|
||||||
gimpoperationantierase.h \
|
|
||||||
gimpoperationbehind.c \
|
|
||||||
gimpoperationbehind.h \
|
|
||||||
gimpoperationdissolve.c \
|
|
||||||
gimpoperationdissolve.h \
|
|
||||||
gimpoperationerase.c \
|
|
||||||
gimpoperationerase.h \
|
|
||||||
gimpoperationmerge.c \
|
|
||||||
gimpoperationmerge.h \
|
|
||||||
gimpoperationnormal.c \
|
|
||||||
gimpoperationnormal.h \
|
|
||||||
gimpoperationpassthrough.c \
|
|
||||||
gimpoperationpassthrough.h \
|
|
||||||
gimpoperationreplace.c \
|
|
||||||
gimpoperationreplace.h \
|
|
||||||
gimpoperationsplit.c \
|
|
||||||
gimpoperationsplit.h
|
|
||||||
|
|
||||||
libapplayermodes_sse2_a_sources = \
|
|
||||||
gimpoperationlayermode-composite-sse2.c \
|
|
||||||
\
|
|
||||||
gimpoperationnormal-sse2.c
|
|
||||||
|
|
||||||
libapplayermodes_sse4_a_sources = \
|
|
||||||
gimpoperationnormal-sse4.c
|
|
||||||
|
|
||||||
|
|
||||||
libapplayermodes_generic_a_SOURCES = $(libapplayermodes_generic_a_sources)
|
|
||||||
|
|
||||||
libapplayermodes_sse2_a_SOURCES = $(libapplayermodes_sse2_a_sources)
|
|
||||||
|
|
||||||
libapplayermodes_sse2_a_CFLAGS = $(SSE2_EXTRA_CFLAGS)
|
|
||||||
|
|
||||||
libapplayermodes_sse4_a_SOURCES = $(libapplayermodes_sse4_a_sources)
|
|
||||||
|
|
||||||
libapplayermodes_sse4_a_CFLAGS = $(SSE4_1_EXTRA_CFLAGS)
|
|
||||||
|
|
||||||
libapplayermodes_a_SOURCES =
|
|
||||||
|
|
||||||
|
|
||||||
libapplayermodes.a: libapplayermodes-generic.a \
|
|
||||||
libapplayermodes-sse2.a \
|
|
||||||
libapplayermodes-sse4.a
|
|
||||||
$(AR) $(ARFLAGS) libapplayermodes.a \
|
|
||||||
$(libapplayermodes_generic_a_OBJECTS) \
|
|
||||||
$(libapplayermodes_sse2_a_OBJECTS) \
|
|
||||||
$(libapplayermodes_sse4_a_OBJECTS)
|
|
||||||
$(RANLIB) libapplayermodes.a
|
|
6
app/operations/tests/.gitignore
vendored
6
app/operations/tests/.gitignore
vendored
|
@ -1,6 +0,0 @@
|
||||||
.deps
|
|
||||||
.libs
|
|
||||||
/output
|
|
||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
test-operations*
|
|
|
@ -1,70 +0,0 @@
|
||||||
#TESTS = test-operations
|
|
||||||
|
|
||||||
EXTRA_PROGRAMS = $(TESTS)
|
|
||||||
CLEANFILES = $(EXTRA_PROGRAMS)
|
|
||||||
|
|
||||||
$(TESTS): output-dir
|
|
||||||
|
|
||||||
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
||||||
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
|
||||||
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
||||||
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
||||||
libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la
|
|
||||||
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
|
||||||
libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la
|
|
||||||
|
|
||||||
if OS_WIN32
|
|
||||||
else
|
|
||||||
libm = -lm
|
|
||||||
endif
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
# We need this due to circular dependencies, see more detailed
|
|
||||||
# comments about it in app/Makefile.am
|
|
||||||
AM_LDFLAGS = \
|
|
||||||
-Wl,-u,$(SYMPREFIX)xcf_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)internal_procs_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_vectors_undo_get_type \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_vectors_mod_undo_get_type \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_vectors_prop_undo_get_type
|
|
||||||
|
|
||||||
# Note that we have some duplicate entries here too to work around
|
|
||||||
# circular dependencies and systems on the same architectural layer as
|
|
||||||
# an alternative to LDFLAGS above
|
|
||||||
LDADD = \
|
|
||||||
$(top_builddir)/app/xcf/libappxcf.a \
|
|
||||||
$(top_builddir)/app/pdb/libappinternal-procs.a \
|
|
||||||
$(top_builddir)/app/pdb/libapppdb.a \
|
|
||||||
$(top_builddir)/app/plug-in/libappplug-in.a \
|
|
||||||
$(top_builddir)/app/vectors/libappvectors.a \
|
|
||||||
$(top_builddir)/app/core/libappcore.a \
|
|
||||||
$(top_builddir)/app/file/libappfile.a \
|
|
||||||
$(top_builddir)/app/text/libapptext.a \
|
|
||||||
$(top_builddir)/app/paint/libapppaint.a \
|
|
||||||
$(top_builddir)/app/config/libappconfig.a \
|
|
||||||
$(top_builddir)/app/libapp.a \
|
|
||||||
$(top_builddir)/app/gegl/libappgegl.a \
|
|
||||||
$(top_builddir)/app/operations/libappoperations.a \
|
|
||||||
$(libgimpconfig) \
|
|
||||||
$(libgimpmath) \
|
|
||||||
$(libgimpthumb) \
|
|
||||||
$(libgimpcolor) \
|
|
||||||
$(libgimpmodule) \
|
|
||||||
$(libgimpbase) \
|
|
||||||
$(GDK_PIXBUF_LIBS) \
|
|
||||||
$(PANGOCAIRO_LIBS) \
|
|
||||||
$(GEGL_LIBS) \
|
|
||||||
$(GLIB_LIBS) \
|
|
||||||
$(libm)
|
|
||||||
|
|
||||||
output-dir:
|
|
||||||
mkdir -p output
|
|
||||||
|
|
||||||
clean-local:
|
|
||||||
rm -rf output
|
|
8
app/paint/.gitignore
vendored
8
app/paint/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libapppaint.a
|
|
||||||
/libapppaint.la
|
|
||||||
/xgen-pec
|
|
|
@ -1,128 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Paint\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
$(LIBMYPAINT_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libapppaint.a
|
|
||||||
|
|
||||||
libapppaint_a_sources = \
|
|
||||||
paint-enums.h \
|
|
||||||
paint-types.h \
|
|
||||||
gimp-paint.c \
|
|
||||||
gimp-paint.h \
|
|
||||||
gimpairbrush.c \
|
|
||||||
gimpairbrush.h \
|
|
||||||
gimpairbrushoptions.c \
|
|
||||||
gimpairbrushoptions.h \
|
|
||||||
gimpbrushcore.c \
|
|
||||||
gimpbrushcore.h \
|
|
||||||
gimpbrushcore-loops.cc \
|
|
||||||
gimpbrushcore-loops.h \
|
|
||||||
gimpbrushcore-kernels.h \
|
|
||||||
gimpclone.c \
|
|
||||||
gimpclone.h \
|
|
||||||
gimpcloneoptions.c \
|
|
||||||
gimpcloneoptions.h \
|
|
||||||
gimpconvolve.c \
|
|
||||||
gimpconvolve.h \
|
|
||||||
gimpconvolveoptions.c \
|
|
||||||
gimpconvolveoptions.h \
|
|
||||||
gimpdodgeburn.c \
|
|
||||||
gimpdodgeburn.h \
|
|
||||||
gimpdodgeburnoptions.c \
|
|
||||||
gimpdodgeburnoptions.h \
|
|
||||||
gimperaser.c \
|
|
||||||
gimperaser.h \
|
|
||||||
gimperaseroptions.c \
|
|
||||||
gimperaseroptions.h \
|
|
||||||
gimpheal.c \
|
|
||||||
gimpheal.h \
|
|
||||||
gimpink.c \
|
|
||||||
gimpink.h \
|
|
||||||
gimpink-blob.c \
|
|
||||||
gimpink-blob.h \
|
|
||||||
gimpinkoptions.c \
|
|
||||||
gimpinkoptions.h \
|
|
||||||
gimpinkundo.c \
|
|
||||||
gimpinkundo.h \
|
|
||||||
gimpmybrushcore.c \
|
|
||||||
gimpmybrushcore.h \
|
|
||||||
gimpmybrushoptions.c \
|
|
||||||
gimpmybrushoptions.h \
|
|
||||||
gimpmybrushsurface.c \
|
|
||||||
gimpmybrushsurface.h \
|
|
||||||
gimppaintcore.c \
|
|
||||||
gimppaintcore.h \
|
|
||||||
gimppaintcore-loops.cc \
|
|
||||||
gimppaintcore-loops.h \
|
|
||||||
gimppaintcore-stroke.c \
|
|
||||||
gimppaintcore-stroke.h \
|
|
||||||
gimppaintcoreundo.c \
|
|
||||||
gimppaintcoreundo.h \
|
|
||||||
gimppaintoptions.c \
|
|
||||||
gimppaintoptions.h \
|
|
||||||
gimppencil.c \
|
|
||||||
gimppencil.h \
|
|
||||||
gimppenciloptions.c \
|
|
||||||
gimppenciloptions.h \
|
|
||||||
gimppaintbrush.c \
|
|
||||||
gimppaintbrush.h \
|
|
||||||
gimpperspectiveclone.c \
|
|
||||||
gimpperspectiveclone.h \
|
|
||||||
gimpperspectivecloneoptions.c \
|
|
||||||
gimpperspectivecloneoptions.h \
|
|
||||||
gimpsmudge.c \
|
|
||||||
gimpsmudge.h \
|
|
||||||
gimpsmudgeoptions.c \
|
|
||||||
gimpsmudgeoptions.h \
|
|
||||||
gimpsourcecore.c \
|
|
||||||
gimpsourcecore.h \
|
|
||||||
gimpsourceoptions.c \
|
|
||||||
gimpsourceoptions.h
|
|
||||||
|
|
||||||
libapppaint_a_built_sources = paint-enums.c
|
|
||||||
|
|
||||||
libapppaint_a_SOURCES = $(libapppaint_a_built_sources) $(libapppaint_a_sources)
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = stamp-paint-enums.h xgen-pec
|
|
||||||
CLEANFILES = $(gen_sources)
|
|
||||||
|
|
||||||
xgen-pec: $(srcdir)/paint-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-paint-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"paint-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-paint-enums.h: xgen-pec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/paint-enums.c: xgen-pec stamp-paint-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
8
app/pdb/.gitignore
vendored
8
app/pdb/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libapppdb.a
|
|
||||||
/libapppdb.la
|
|
||||||
/libappinternal-procs.a
|
|
|
@ -1,91 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-PDB\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_builddir)/pdb \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(PANGOCAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libapppdb.a libappinternal-procs.a
|
|
||||||
|
|
||||||
libapppdb_a_SOURCES = \
|
|
||||||
pdb-types.h \
|
|
||||||
\
|
|
||||||
gimp-pdb-compat.c \
|
|
||||||
gimp-pdb-compat.h \
|
|
||||||
gimppdb.c \
|
|
||||||
gimppdb.h \
|
|
||||||
gimppdb-query.c \
|
|
||||||
gimppdb-query.h \
|
|
||||||
gimppdb-utils.c \
|
|
||||||
gimppdb-utils.h \
|
|
||||||
gimppdbcontext.c \
|
|
||||||
gimppdbcontext.h \
|
|
||||||
gimppdberror.c \
|
|
||||||
gimppdberror.h \
|
|
||||||
gimpprocedure.c \
|
|
||||||
gimpprocedure.h
|
|
||||||
|
|
||||||
libappinternal_procs_a_SOURCES = \
|
|
||||||
internal-procs.c \
|
|
||||||
internal-procs.h \
|
|
||||||
brush-cmds.c \
|
|
||||||
brush-select-cmds.c \
|
|
||||||
brushes-cmds.c \
|
|
||||||
buffer-cmds.c \
|
|
||||||
channel-cmds.c \
|
|
||||||
context-cmds.c \
|
|
||||||
debug-cmds.c \
|
|
||||||
display-cmds.c \
|
|
||||||
drawable-cmds.c \
|
|
||||||
drawable-color-cmds.c \
|
|
||||||
drawable-edit-cmds.c \
|
|
||||||
dynamics-cmds.c \
|
|
||||||
edit-cmds.c \
|
|
||||||
file-cmds.c \
|
|
||||||
floating-sel-cmds.c \
|
|
||||||
font-cmds.c \
|
|
||||||
font-select-cmds.c \
|
|
||||||
fonts-cmds.c \
|
|
||||||
gimp-cmds.c \
|
|
||||||
gimprc-cmds.c \
|
|
||||||
gradient-cmds.c \
|
|
||||||
gradient-select-cmds.c \
|
|
||||||
gradients-cmds.c \
|
|
||||||
help-cmds.c \
|
|
||||||
image-cmds.c \
|
|
||||||
image-color-profile-cmds.c \
|
|
||||||
image-convert-cmds.c \
|
|
||||||
image-grid-cmds.c \
|
|
||||||
image-guides-cmds.c \
|
|
||||||
image-sample-points-cmds.c \
|
|
||||||
image-select-cmds.c \
|
|
||||||
image-transform-cmds.c \
|
|
||||||
image-undo-cmds.c \
|
|
||||||
item-cmds.c \
|
|
||||||
item-transform-cmds.c \
|
|
||||||
layer-cmds.c \
|
|
||||||
message-cmds.c \
|
|
||||||
paint-tools-cmds.c \
|
|
||||||
palette-cmds.c \
|
|
||||||
palette-select-cmds.c \
|
|
||||||
palettes-cmds.c \
|
|
||||||
pattern-cmds.c \
|
|
||||||
pattern-select-cmds.c \
|
|
||||||
patterns-cmds.c \
|
|
||||||
pdb-cmds.c \
|
|
||||||
plug-in-cmds.c \
|
|
||||||
plug-in-compat-cmds.c \
|
|
||||||
progress-cmds.c \
|
|
||||||
selection-cmds.c \
|
|
||||||
text-layer-cmds.c \
|
|
||||||
text-tool-cmds.c \
|
|
||||||
unit-cmds.c \
|
|
||||||
vectors-cmds.c
|
|
8
app/plug-in/.gitignore
vendored
8
app/plug-in/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappplug-in.a
|
|
||||||
/libappplug-in.la
|
|
||||||
/xgen-pec
|
|
|
@ -1,106 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Plug-In\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappplug-in.a
|
|
||||||
|
|
||||||
libappplug_in_a_SOURCES = \
|
|
||||||
plug-in-enums.c \
|
|
||||||
plug-in-enums.h \
|
|
||||||
plug-in-types.h \
|
|
||||||
\
|
|
||||||
gimpenvirontable.c \
|
|
||||||
gimpenvirontable.h \
|
|
||||||
gimpgpparams.c \
|
|
||||||
gimpinterpreterdb.c \
|
|
||||||
gimpinterpreterdb.h \
|
|
||||||
gimpplugindebug.c \
|
|
||||||
gimpplugindebug.h \
|
|
||||||
gimpplugin.c \
|
|
||||||
gimpplugin.h \
|
|
||||||
gimpplugin-cleanup.c \
|
|
||||||
gimpplugin-cleanup.h \
|
|
||||||
gimpplugin-context.c \
|
|
||||||
gimpplugin-context.h \
|
|
||||||
gimpplugin-message.c \
|
|
||||||
gimpplugin-message.h \
|
|
||||||
gimpplugin-proc.c \
|
|
||||||
gimpplugin-proc.h \
|
|
||||||
gimpplugin-progress.c \
|
|
||||||
gimpplugin-progress.h \
|
|
||||||
gimpplugindef.c \
|
|
||||||
gimpplugindef.h \
|
|
||||||
gimppluginerror.c \
|
|
||||||
gimppluginerror.h \
|
|
||||||
gimppluginmanager.c \
|
|
||||||
gimppluginmanager.h \
|
|
||||||
gimppluginmanager-call.c \
|
|
||||||
gimppluginmanager-call.h \
|
|
||||||
gimppluginmanager-data.c \
|
|
||||||
gimppluginmanager-data.h \
|
|
||||||
gimppluginmanager-file.c \
|
|
||||||
gimppluginmanager-file.h \
|
|
||||||
gimppluginmanager-help-domain.c \
|
|
||||||
gimppluginmanager-help-domain.h \
|
|
||||||
gimppluginmanager-menu-branch.c \
|
|
||||||
gimppluginmanager-menu-branch.h \
|
|
||||||
gimppluginmanager-query.c \
|
|
||||||
gimppluginmanager-query.h \
|
|
||||||
gimppluginmanager-restore.c \
|
|
||||||
gimppluginmanager-restore.h \
|
|
||||||
gimppluginprocedure.c \
|
|
||||||
gimppluginprocedure.h \
|
|
||||||
gimppluginprocframe.c \
|
|
||||||
gimppluginprocframe.h \
|
|
||||||
gimppluginshm.c \
|
|
||||||
gimppluginshm.h \
|
|
||||||
gimptemporaryprocedure.c \
|
|
||||||
gimptemporaryprocedure.h \
|
|
||||||
\
|
|
||||||
plug-in-menu-path.c \
|
|
||||||
plug-in-menu-path.h \
|
|
||||||
plug-in-rc.c \
|
|
||||||
plug-in-rc.h
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = stamp-plug-in-enums.h xgen-pec
|
|
||||||
CLEANFILES = $(EXTRA_PROGRAMS) $(gen_sources)
|
|
||||||
|
|
||||||
xgen-pec: $(srcdir)/plug-in-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-plug-in-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"plug-in-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-plug-in-enums.h: xgen-pec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/plug-in-enums.c: xgen-pec stamp-plug-in-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
7
app/propgui/.gitignore
vendored
7
app/propgui/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libapppropgui.a
|
|
||||||
/libapppropgui.la
|
|
|
@ -1,63 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DISO_CODES_LOCATION=\"$(ISO_CODES_LOCATION)\" \
|
|
||||||
-DISO_CODES_LOCALEDIR=\"$(ISO_CODES_LOCALEDIR)\" \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-PropGUI\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libapppropgui.a
|
|
||||||
|
|
||||||
libapppropgui_a_SOURCES = \
|
|
||||||
propgui-types.h \
|
|
||||||
\
|
|
||||||
gimppropgui.c \
|
|
||||||
gimppropgui.h \
|
|
||||||
gimppropgui-channel-mixer.c \
|
|
||||||
gimppropgui-channel-mixer.h \
|
|
||||||
gimppropgui-color-balance.c \
|
|
||||||
gimppropgui-color-balance.h \
|
|
||||||
gimppropgui-color-rotate.c \
|
|
||||||
gimppropgui-color-rotate.h \
|
|
||||||
gimppropgui-color-to-alpha.c \
|
|
||||||
gimppropgui-color-to-alpha.h \
|
|
||||||
gimppropgui-convolution-matrix.c \
|
|
||||||
gimppropgui-convolution-matrix.h \
|
|
||||||
gimppropgui-diffraction-patterns.c \
|
|
||||||
gimppropgui-diffraction-patterns.h \
|
|
||||||
gimppropgui-eval.c \
|
|
||||||
gimppropgui-eval.h \
|
|
||||||
gimppropgui-focus-blur.c \
|
|
||||||
gimppropgui-focus-blur.h \
|
|
||||||
gimppropgui-generic.c \
|
|
||||||
gimppropgui-generic.h \
|
|
||||||
gimppropgui-hue-saturation.c \
|
|
||||||
gimppropgui-hue-saturation.h \
|
|
||||||
gimppropgui-motion-blur-circular.c \
|
|
||||||
gimppropgui-motion-blur-circular.h \
|
|
||||||
gimppropgui-motion-blur-linear.c \
|
|
||||||
gimppropgui-motion-blur-linear.h \
|
|
||||||
gimppropgui-motion-blur-zoom.c \
|
|
||||||
gimppropgui-motion-blur-zoom.h \
|
|
||||||
gimppropgui-newsprint.c \
|
|
||||||
gimppropgui-newsprint.h \
|
|
||||||
gimppropgui-panorama-projection.c \
|
|
||||||
gimppropgui-panorama-projection.h \
|
|
||||||
gimppropgui-recursive-transform.c \
|
|
||||||
gimppropgui-recursive-transform.h \
|
|
||||||
gimppropgui-shadows-highlights.c \
|
|
||||||
gimppropgui-shadows-highlights.h \
|
|
||||||
gimppropgui-spiral.c \
|
|
||||||
gimppropgui-spiral.h \
|
|
||||||
gimppropgui-supernova.c \
|
|
||||||
gimppropgui-supernova.h \
|
|
||||||
gimppropgui-utils.c \
|
|
||||||
gimppropgui-utils.h \
|
|
||||||
gimppropgui-vignette.c \
|
|
||||||
gimppropgui-vignette.h
|
|
21
app/tests/.gitignore
vendored
21
app/tests/.gitignore
vendored
|
@ -1,21 +0,0 @@
|
||||||
.deps
|
|
||||||
.libs
|
|
||||||
/gimpdir-output
|
|
||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
libgimpapptestutils.a
|
|
||||||
test-core*
|
|
||||||
test-gimpidtable*
|
|
||||||
test-gimptilebackendtilemanager*
|
|
||||||
test-layer-grouping*
|
|
||||||
test-save-and-export*
|
|
||||||
test-session-2-8-compatibility-multi-window*
|
|
||||||
test-session-2-8-compatibility-single-window*
|
|
||||||
test-single-window-mode*
|
|
||||||
test-tools*
|
|
||||||
test-ui*
|
|
||||||
test-window-management*
|
|
||||||
test-xcf*
|
|
||||||
/*.trs
|
|
||||||
/*.log
|
|
||||||
/gimp-test-icon-theme
|
|
|
@ -1,176 +0,0 @@
|
||||||
# Prevent parallel builds for the tests, as e.g. done by make -j check
|
|
||||||
# The tests must not be run in parallel or in a different order as specified
|
|
||||||
.NOTPARALLEL: check
|
|
||||||
|
|
||||||
if PLATFORM_OSX
|
|
||||||
xobjective_c = "-xobjective-c"
|
|
||||||
xobjective_cxx = "-xobjective-c++"
|
|
||||||
xnone = "-xnone"
|
|
||||||
endif
|
|
||||||
|
|
||||||
SUBDIRS = \
|
|
||||||
files \
|
|
||||||
gimpdir \
|
|
||||||
gimpdir-empty
|
|
||||||
|
|
||||||
# Don't mess with user's gimpdir. Pass in the abs top srcdir to the
|
|
||||||
# tests through an environment variable so they can set the gimpdir
|
|
||||||
# they want to use
|
|
||||||
TESTS_ENVIRONMENT = \
|
|
||||||
GIMP_TESTING_ABS_TOP_SRCDIR=@abs_top_srcdir@ \
|
|
||||||
GIMP_TESTING_ABS_TOP_BUILDDIR=@abs_top_builddir@ \
|
|
||||||
GIMP_TESTING_PLUGINDIRS=@abs_top_builddir@/plug-ins/common \
|
|
||||||
GIMP_TESTING_PLUGINDIRS_BASENAME_IGNORES=mkgen.pl
|
|
||||||
|
|
||||||
# Run tests with xvfb-run if available
|
|
||||||
if HAVE_XVFB_RUN
|
|
||||||
TESTS_ENVIRONMENT += $(XVFB_RUN) --auto-servernum --server-args="-screen 0 1280x1024x24"
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
TESTS = \
|
|
||||||
test-core \
|
|
||||||
test-gimpidtable \
|
|
||||||
test-save-and-export \
|
|
||||||
test-single-window-mode \
|
|
||||||
test-ui \
|
|
||||||
test-xcf
|
|
||||||
|
|
||||||
# 3 tests disabled:
|
|
||||||
#test-tools
|
|
||||||
#test-session-2-8-compatibility-multi-window
|
|
||||||
#test-session-2-8-compatibility-single-window
|
|
||||||
|
|
||||||
EXTRA_PROGRAMS = $(TESTS)
|
|
||||||
CLEANFILES = $(EXTRA_PROGRAMS)
|
|
||||||
|
|
||||||
$(TESTS): gimpdir-output gimp-test-icon-theme
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libgimpapptestutils.a
|
|
||||||
libgimpapptestutils_a_SOURCES = \
|
|
||||||
gimp-app-test-utils.c \
|
|
||||||
gimp-app-test-utils.h \
|
|
||||||
gimp-test-session-utils.c \
|
|
||||||
gimp-test-session-utils.h \
|
|
||||||
tests.c \
|
|
||||||
tests.h
|
|
||||||
|
|
||||||
libgimpbase = $(top_builddir)/libgimpbase/libgimpbase-$(GIMP_API_VERSION).la
|
|
||||||
libgimpconfig = $(top_builddir)/libgimpconfig/libgimpconfig-$(GIMP_API_VERSION).la
|
|
||||||
libgimpcolor = $(top_builddir)/libgimpcolor/libgimpcolor-$(GIMP_API_VERSION).la
|
|
||||||
libgimpmath = $(top_builddir)/libgimpmath/libgimpmath-$(GIMP_API_VERSION).la
|
|
||||||
libgimpmodule = $(top_builddir)/libgimpmodule/libgimpmodule-$(GIMP_API_VERSION).la
|
|
||||||
libgimpwidgets = $(top_builddir)/libgimpwidgets/libgimpwidgets-$(GIMP_API_VERSION).la
|
|
||||||
libgimpthumb = $(top_builddir)/libgimpthumb/libgimpthumb-$(GIMP_API_VERSION).la
|
|
||||||
|
|
||||||
if PLATFORM_LINUX
|
|
||||||
libdl = -ldl
|
|
||||||
endif
|
|
||||||
|
|
||||||
if OS_WIN32
|
|
||||||
else
|
|
||||||
libm = -lm
|
|
||||||
endif
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(PANGOCAIRO_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(xobjective_c) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
# We need this due to circular dependencies
|
|
||||||
AM_LDFLAGS = \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_vectors_undo_get_type \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_vectors_mod_undo_get_type \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_config_param_spec_duplicate \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_operations_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)xcf_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)internal_procs_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_pdb_compat_procs_register \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_plug_in_manager_restore \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_layer_mode_is_legacy \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gui_init \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_tool_cursors_get_resource \
|
|
||||||
-Wl,-u,$(SYMPREFIX)gimp_lebl_dialog
|
|
||||||
|
|
||||||
# Note that we have some duplicate entries here too to work around
|
|
||||||
# circular dependencies and systems on the same architectural layer as
|
|
||||||
# an alternative to LDFLAGS above
|
|
||||||
LDADD = \
|
|
||||||
../gui/libappgui.a \
|
|
||||||
../tools/libapptools.a \
|
|
||||||
../dialogs/libappdialogs.a \
|
|
||||||
../menus/libappmenus.a \
|
|
||||||
../actions/libappactions.a \
|
|
||||||
../dialogs/libappdialogs.a \
|
|
||||||
../display/libappdisplay.a \
|
|
||||||
../propgui/libapppropgui.a \
|
|
||||||
../widgets/libappwidgets.a \
|
|
||||||
../xcf/libappxcf.a \
|
|
||||||
../pdb/libappinternal-procs.a \
|
|
||||||
../pdb/libapppdb.a \
|
|
||||||
../plug-in/libappplug-in.a \
|
|
||||||
../vectors/libappvectors.a \
|
|
||||||
../core/libappcore.a \
|
|
||||||
../file/libappfile.a \
|
|
||||||
../file-data/libappfile-data.a \
|
|
||||||
../text/libapptext.a \
|
|
||||||
../paint/libapppaint.a \
|
|
||||||
../config/libappconfig.a \
|
|
||||||
../libapp.a \
|
|
||||||
../operations/libappoperations.a \
|
|
||||||
../operations/layer-modes/libapplayermodes.a \
|
|
||||||
../operations/layer-modes-legacy/libapplayermodeslegacy.a \
|
|
||||||
libgimpapptestutils.a \
|
|
||||||
../gegl/libappgegl.a \
|
|
||||||
$(libgimpwidgets) \
|
|
||||||
$(libgimpconfig) \
|
|
||||||
$(libgimpmath) \
|
|
||||||
$(libgimpthumb) \
|
|
||||||
$(libgimpcolor) \
|
|
||||||
$(libgimpmodule) \
|
|
||||||
$(libgimpbase) \
|
|
||||||
$(GIMPICONRC) \
|
|
||||||
$(GTK_LIBS) \
|
|
||||||
$(APPSTREAM_GLIB_LIBS) \
|
|
||||||
$(GTK_MAC_INTEGRATION_LIBS) \
|
|
||||||
$(GDK_PIXBUF_LIBS) \
|
|
||||||
$(FREETYPE_LIBS) \
|
|
||||||
$(FONTCONFIG_LIBS) \
|
|
||||||
$(PANGOCAIRO_LIBS) \
|
|
||||||
$(HARFBUZZ_LIBS) \
|
|
||||||
$(CAIRO_LIBS) \
|
|
||||||
$(GEGL_LIBS) \
|
|
||||||
$(GIO_LIBS) \
|
|
||||||
$(GEXIV2_LIBS) \
|
|
||||||
$(Z_LIBS) \
|
|
||||||
$(JSON_C_LIBS) \
|
|
||||||
$(LIBARCHIVE_LIBS) \
|
|
||||||
$(LIBMYPAINT_LIBS) \
|
|
||||||
$(LIBBACKTRACE_LIBS) \
|
|
||||||
$(LIBUNWIND_LIBS) \
|
|
||||||
$(INTLLIBS) \
|
|
||||||
$(RT_LIBS) \
|
|
||||||
$(libm) \
|
|
||||||
$(libdl)
|
|
||||||
|
|
||||||
gimpdir-output:
|
|
||||||
mkdir -p gimpdir-output
|
|
||||||
mkdir -p gimpdir-output/brushes
|
|
||||||
mkdir -p gimpdir-output/patterns
|
|
||||||
mkdir -p gimpdir-output/gradients
|
|
||||||
|
|
||||||
gimp-test-icon-theme:
|
|
||||||
mkdir -p $$(echo $$(find $(top_srcdir)/icons/Color -name [0-9][0-9] -type d | sed 's@.*/\([0-9][0-9]\)$$@gimp-test-icon-theme/hicolor/\1x\1@'))
|
|
||||||
for dir in $$(echo $$(find $(top_srcdir)/icons/Color/ -name [0-9][0-9] -type d | sed 's@.*/\([0-9][0-9]\)$$@\1@')); do \
|
|
||||||
(cd gimp-test-icon-theme/hicolor/$${dir}x$${dir}/ && \
|
|
||||||
$(LN_S) $(abs_top_srcdir)/icons/Color/$${dir} apps); \
|
|
||||||
done
|
|
||||||
(cd gimp-test-icon-theme/hicolor && $(LN_S) $(abs_top_srcdir)/icons/Color/index.theme index.theme)
|
|
||||||
|
|
||||||
clean-local:
|
|
||||||
rm -rf gimpdir-output
|
|
||||||
rm -fr gimp-test-icon-theme
|
|
|
@ -1,2 +0,0 @@
|
||||||
EXTRA_DIST = \
|
|
||||||
gimp-2-6-file.xcf
|
|
11
app/tests/gimpdir-empty/.gitignore
vendored
11
app/tests/gimpdir-empty/.gitignore
vendored
|
@ -1,11 +0,0 @@
|
||||||
/colorrc
|
|
||||||
/controllerrc
|
|
||||||
/dockrc
|
|
||||||
/shortcutsrc
|
|
||||||
/parasiterc
|
|
||||||
/pluginrc
|
|
||||||
/sessionrc
|
|
||||||
/templaterc
|
|
||||||
/themerc
|
|
||||||
/toolrc
|
|
||||||
/unitrc
|
|
|
@ -1,7 +0,0 @@
|
||||||
SUBDIRS = \
|
|
||||||
brushes \
|
|
||||||
gradients \
|
|
||||||
patterns
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
|
||||||
tags.xml
|
|
0
app/tests/gimpdir-empty/brushes/.gitignore
vendored
0
app/tests/gimpdir-empty/brushes/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
# We only need the dir itself
|
|
0
app/tests/gimpdir-empty/gradients/.gitignore
vendored
0
app/tests/gimpdir-empty/gradients/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
# We only need the dir itself
|
|
0
app/tests/gimpdir-empty/patterns/.gitignore
vendored
0
app/tests/gimpdir-empty/patterns/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
# We only need the dir itself
|
|
9
app/tests/gimpdir/.gitignore
vendored
9
app/tests/gimpdir/.gitignore
vendored
|
@ -1,9 +0,0 @@
|
||||||
/colorrc
|
|
||||||
/controllerrc
|
|
||||||
/shortcutsrc
|
|
||||||
/parasiterc
|
|
||||||
/pluginrc
|
|
||||||
/templaterc
|
|
||||||
/themerc
|
|
||||||
/toolrc
|
|
||||||
/unitrc
|
|
|
@ -1,15 +0,0 @@
|
||||||
SUBDIRS = \
|
|
||||||
brushes \
|
|
||||||
gradients \
|
|
||||||
patterns
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
|
||||||
dockrc \
|
|
||||||
dockrc-2-8 \
|
|
||||||
dockrc-expected \
|
|
||||||
sessionrc \
|
|
||||||
sessionrc-2-8-multi-window \
|
|
||||||
sessionrc-2-8-single-window \
|
|
||||||
sessionrc-expected-multi-window \
|
|
||||||
sessionrc-expected-single-window \
|
|
||||||
tags.xml
|
|
0
app/tests/gimpdir/brushes/.gitignore
vendored
0
app/tests/gimpdir/brushes/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
# We only need the dir itself
|
|
0
app/tests/gimpdir/gradients/.gitignore
vendored
0
app/tests/gimpdir/gradients/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
# We only need the dir itself
|
|
0
app/tests/gimpdir/patterns/.gitignore
vendored
0
app/tests/gimpdir/patterns/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
# We only need the dir itself
|
|
8
app/text/.gitignore
vendored
8
app/text/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libapptext.a
|
|
||||||
/libapptext.la
|
|
||||||
/xgen-tec
|
|
|
@ -1,83 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Text\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(PANGOCAIRO_CFLAGS) \
|
|
||||||
$(HARFBUZZ_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libapptext.a
|
|
||||||
|
|
||||||
libapptext_a_sources = \
|
|
||||||
text-types.h \
|
|
||||||
text-enums.h \
|
|
||||||
gimpfont.c \
|
|
||||||
gimpfont.h \
|
|
||||||
gimpfontfactory.c \
|
|
||||||
gimpfontfactory.h \
|
|
||||||
gimptext.c \
|
|
||||||
gimptext.h \
|
|
||||||
gimptext-compat.c \
|
|
||||||
gimptext-compat.h \
|
|
||||||
gimptext-parasite.c \
|
|
||||||
gimptext-parasite.h \
|
|
||||||
gimptext-vectors.c \
|
|
||||||
gimptext-vectors.h \
|
|
||||||
gimptext-xlfd.c \
|
|
||||||
gimptext-xlfd.h \
|
|
||||||
gimptextlayer.c \
|
|
||||||
gimptextlayer.h \
|
|
||||||
gimptextlayer-transform.c \
|
|
||||||
gimptextlayer-transform.h \
|
|
||||||
gimptextlayer-xcf.c \
|
|
||||||
gimptextlayer-xcf.h \
|
|
||||||
gimptextlayout.c \
|
|
||||||
gimptextlayout.h \
|
|
||||||
gimptextlayout-render.c \
|
|
||||||
gimptextlayout-render.h \
|
|
||||||
gimptextundo.c \
|
|
||||||
gimptextundo.h
|
|
||||||
|
|
||||||
libapptext_a_built_sources = text-enums.c
|
|
||||||
|
|
||||||
libapptext_a_SOURCES = $(libapptext_a_built_sources) $(libapptext_a_sources)
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = stamp-text-enums.h xgen-tec
|
|
||||||
CLEANFILES = $(gen_sources)
|
|
||||||
|
|
||||||
xgen-tec: $(srcdir)/text-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-text-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"text-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-text-enums.h: xgen-tec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/text-enums.c: xgen-tec stamp-text-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
8
app/tools/.gitignore
vendored
8
app/tools/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libapptools.a
|
|
||||||
/libapptools.la
|
|
||||||
/xgen-tec
|
|
|
@ -1,282 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Tools\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libapptools.a
|
|
||||||
|
|
||||||
libapptools_a_sources = \
|
|
||||||
tools-enums.h \
|
|
||||||
tools-types.h \
|
|
||||||
gimp-tool-options-manager.c \
|
|
||||||
gimp-tool-options-manager.h \
|
|
||||||
gimp-tools.c \
|
|
||||||
gimp-tools.h \
|
|
||||||
tool_manager.c \
|
|
||||||
tool_manager.h \
|
|
||||||
\
|
|
||||||
gimpairbrushtool.c \
|
|
||||||
gimpairbrushtool.h \
|
|
||||||
gimpalignoptions.c \
|
|
||||||
gimpalignoptions.h \
|
|
||||||
gimpaligntool.c \
|
|
||||||
gimpaligntool.h \
|
|
||||||
gimpbrightnesscontrasttool.c \
|
|
||||||
gimpbrightnesscontrasttool.h \
|
|
||||||
gimpbrushtool.c \
|
|
||||||
gimpbrushtool.h \
|
|
||||||
gimpbucketfilloptions.c \
|
|
||||||
gimpbucketfilloptions.h \
|
|
||||||
gimpbucketfilltool.c \
|
|
||||||
gimpbucketfilltool.h \
|
|
||||||
gimpbycolorselecttool.c \
|
|
||||||
gimpbycolorselecttool.h \
|
|
||||||
gimpcageoptions.c \
|
|
||||||
gimpcageoptions.h \
|
|
||||||
gimpcagetool.c \
|
|
||||||
gimpcagetool.h \
|
|
||||||
gimpcloneoptions-gui.c \
|
|
||||||
gimpcloneoptions-gui.h \
|
|
||||||
gimpclonetool.c \
|
|
||||||
gimpclonetool.h \
|
|
||||||
gimpcoloroptions.c \
|
|
||||||
gimpcoloroptions.h \
|
|
||||||
gimpcolortool.c \
|
|
||||||
gimpcolortool.h \
|
|
||||||
gimpcolorpickeroptions.c \
|
|
||||||
gimpcolorpickeroptions.h \
|
|
||||||
gimpcolorpickertool.c \
|
|
||||||
gimpcolorpickertool.h \
|
|
||||||
gimpconvolvetool.c \
|
|
||||||
gimpconvolvetool.h \
|
|
||||||
gimpcropoptions.c \
|
|
||||||
gimpcropoptions.h \
|
|
||||||
gimpcroptool.c \
|
|
||||||
gimpcroptool.h \
|
|
||||||
gimpcurvestool.c \
|
|
||||||
gimpcurvestool.h \
|
|
||||||
gimpdodgeburntool.c \
|
|
||||||
gimpdodgeburntool.h \
|
|
||||||
gimpdrawtool.c \
|
|
||||||
gimpdrawtool.h \
|
|
||||||
gimpeditselectiontool.c \
|
|
||||||
gimpeditselectiontool.h \
|
|
||||||
gimpellipseselecttool.c \
|
|
||||||
gimpellipseselecttool.h \
|
|
||||||
gimperasertool.c \
|
|
||||||
gimperasertool.h \
|
|
||||||
gimpfilteroptions.c \
|
|
||||||
gimpfilteroptions.h \
|
|
||||||
gimpfiltertool.c \
|
|
||||||
gimpfiltertool.h \
|
|
||||||
gimpfiltertool-settings.c \
|
|
||||||
gimpfiltertool-settings.h \
|
|
||||||
gimpfiltertool-widgets.c \
|
|
||||||
gimpfiltertool-widgets.h \
|
|
||||||
gimpflipoptions.c \
|
|
||||||
gimpflipoptions.h \
|
|
||||||
gimpfliptool.c \
|
|
||||||
gimpfliptool.h \
|
|
||||||
gimpforegroundselectoptions.c \
|
|
||||||
gimpforegroundselectoptions.h \
|
|
||||||
gimpforegroundselecttool.c \
|
|
||||||
gimpforegroundselecttool.h \
|
|
||||||
gimpforegroundselecttoolundo.c \
|
|
||||||
gimpforegroundselecttoolundo.h \
|
|
||||||
gimpfreeselecttool.c \
|
|
||||||
gimpfreeselecttool.h \
|
|
||||||
gimpfuzzyselecttool.c \
|
|
||||||
gimpfuzzyselecttool.h \
|
|
||||||
gimpgegltool.c \
|
|
||||||
gimpgegltool.h \
|
|
||||||
gimpgenerictransformtool.c \
|
|
||||||
gimpgenerictransformtool.h \
|
|
||||||
gimpgradientoptions.c \
|
|
||||||
gimpgradientoptions.h \
|
|
||||||
gimpgradienttool.c \
|
|
||||||
gimpgradienttool.h \
|
|
||||||
gimpgradienttool-editor.c \
|
|
||||||
gimpgradienttool-editor.h \
|
|
||||||
gimpguidetool.c \
|
|
||||||
gimpguidetool.h \
|
|
||||||
gimphandletransformoptions.c \
|
|
||||||
gimphandletransformoptions.h \
|
|
||||||
gimphandletransformtool.c \
|
|
||||||
gimphandletransformtool.h \
|
|
||||||
gimphealtool.c \
|
|
||||||
gimphealtool.h \
|
|
||||||
gimphistogramoptions.c \
|
|
||||||
gimphistogramoptions.h \
|
|
||||||
gimpinkoptions-gui.c \
|
|
||||||
gimpinkoptions-gui.h \
|
|
||||||
gimpinktool.c \
|
|
||||||
gimpinktool.h \
|
|
||||||
gimpiscissorsoptions.c \
|
|
||||||
gimpiscissorsoptions.h \
|
|
||||||
gimpiscissorstool.c \
|
|
||||||
gimpiscissorstool.h \
|
|
||||||
gimplevelstool.c \
|
|
||||||
gimplevelstool.h \
|
|
||||||
gimpoffsettool.c \
|
|
||||||
gimpoffsettool.h \
|
|
||||||
gimpoperationtool.c \
|
|
||||||
gimpoperationtool.h \
|
|
||||||
gimpmagnifyoptions.c \
|
|
||||||
gimpmagnifyoptions.h \
|
|
||||||
gimpmagnifytool.c \
|
|
||||||
gimpmagnifytool.h \
|
|
||||||
gimpmeasureoptions.c \
|
|
||||||
gimpmeasureoptions.h \
|
|
||||||
gimpmeasuretool.c \
|
|
||||||
gimpmeasuretool.h \
|
|
||||||
gimpmoveoptions.c \
|
|
||||||
gimpmoveoptions.h \
|
|
||||||
gimpmovetool.c \
|
|
||||||
gimpmovetool.h \
|
|
||||||
gimpmybrushoptions-gui.c \
|
|
||||||
gimpmybrushoptions-gui.h \
|
|
||||||
gimpmybrushtool.c \
|
|
||||||
gimpmybrushtool.h \
|
|
||||||
gimpnpointdeformationoptions.c \
|
|
||||||
gimpnpointdeformationoptions.h \
|
|
||||||
gimpnpointdeformationtool.c \
|
|
||||||
gimpnpointdeformationtool.h \
|
|
||||||
gimppaintbrushtool.c \
|
|
||||||
gimppaintbrushtool.h \
|
|
||||||
gimppaintoptions-gui.c \
|
|
||||||
gimppaintoptions-gui.h \
|
|
||||||
gimppaintselectoptions.c \
|
|
||||||
gimppaintselectoptions.h \
|
|
||||||
gimppaintselecttool.c \
|
|
||||||
gimppaintselecttool.h \
|
|
||||||
gimppainttool.c \
|
|
||||||
gimppainttool.h \
|
|
||||||
gimppainttool-paint.c \
|
|
||||||
gimppainttool-paint.h \
|
|
||||||
gimppenciltool.c \
|
|
||||||
gimppenciltool.h \
|
|
||||||
gimpperspectiveclonetool.c \
|
|
||||||
gimpperspectiveclonetool.h \
|
|
||||||
gimpperspectivetool.c \
|
|
||||||
gimpperspectivetool.h \
|
|
||||||
gimppolygonselecttool.c \
|
|
||||||
gimppolygonselecttool.h \
|
|
||||||
gimprectangleselecttool.c \
|
|
||||||
gimprectangleselecttool.h \
|
|
||||||
gimprectangleselectoptions.c \
|
|
||||||
gimprectangleselectoptions.h \
|
|
||||||
gimprectangleoptions.c \
|
|
||||||
gimprectangleoptions.h \
|
|
||||||
gimpregionselectoptions.c \
|
|
||||||
gimpregionselectoptions.h \
|
|
||||||
gimpregionselecttool.c \
|
|
||||||
gimpregionselecttool.h \
|
|
||||||
gimprotatetool.c \
|
|
||||||
gimprotatetool.h \
|
|
||||||
gimpsamplepointtool.c \
|
|
||||||
gimpsamplepointtool.h \
|
|
||||||
gimpscaletool.c \
|
|
||||||
gimpscaletool.h \
|
|
||||||
gimpseamlesscloneoptions.c \
|
|
||||||
gimpseamlesscloneoptions.h \
|
|
||||||
gimpseamlessclonetool.c \
|
|
||||||
gimpseamlessclonetool.h \
|
|
||||||
gimpselectionoptions.c \
|
|
||||||
gimpselectionoptions.h \
|
|
||||||
gimpselectiontool.c \
|
|
||||||
gimpselectiontool.h \
|
|
||||||
gimpsheartool.c \
|
|
||||||
gimpsheartool.h \
|
|
||||||
gimpsmudgetool.c \
|
|
||||||
gimpsmudgetool.h \
|
|
||||||
gimpsourcetool.c \
|
|
||||||
gimpsourcetool.h \
|
|
||||||
gimptextoptions.c \
|
|
||||||
gimptextoptions.h \
|
|
||||||
gimptexttool.c \
|
|
||||||
gimptexttool.h \
|
|
||||||
gimptexttool-editor.c \
|
|
||||||
gimptexttool-editor.h \
|
|
||||||
gimpthresholdtool.c \
|
|
||||||
gimpthresholdtool.h \
|
|
||||||
gimptilehandleriscissors.c \
|
|
||||||
gimptilehandleriscissors.h \
|
|
||||||
gimptool.c \
|
|
||||||
gimptool.h \
|
|
||||||
gimptool-progress.c \
|
|
||||||
gimptool-progress.h \
|
|
||||||
gimptoolcontrol.c \
|
|
||||||
gimptoolcontrol.h \
|
|
||||||
gimptooloptions-gui.c \
|
|
||||||
gimptooloptions-gui.h \
|
|
||||||
gimptools-utils.c \
|
|
||||||
gimptools-utils.h \
|
|
||||||
gimptransform3doptions.c \
|
|
||||||
gimptransform3doptions.h \
|
|
||||||
gimptransform3dtool.c \
|
|
||||||
gimptransform3dtool.h \
|
|
||||||
gimptransformgridoptions.c \
|
|
||||||
gimptransformgridoptions.h \
|
|
||||||
gimptransformgridtool.c \
|
|
||||||
gimptransformgridtool.h \
|
|
||||||
gimptransformgridtoolundo.c \
|
|
||||||
gimptransformgridtoolundo.h \
|
|
||||||
gimptransformoptions.c \
|
|
||||||
gimptransformoptions.h \
|
|
||||||
gimptransformtool.c \
|
|
||||||
gimptransformtool.h \
|
|
||||||
gimpunifiedtransformtool.c \
|
|
||||||
gimpunifiedtransformtool.h \
|
|
||||||
gimpvectoroptions.c \
|
|
||||||
gimpvectoroptions.h \
|
|
||||||
gimpvectortool.c \
|
|
||||||
gimpvectortool.h \
|
|
||||||
gimpwarpoptions.c \
|
|
||||||
gimpwarpoptions.h \
|
|
||||||
gimpwarptool.c \
|
|
||||||
gimpwarptool.h
|
|
||||||
|
|
||||||
libapptools_a_built_sources = tools-enums.c
|
|
||||||
|
|
||||||
libapptools_a_SOURCES = $(libapptools_a_built_sources) $(libapptools_a_sources)
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = stamp-tools-enums.h xgen-tec
|
|
||||||
CLEANFILES = $(gen_sources)
|
|
||||||
|
|
||||||
xgen-tec: $(srcdir)/tools-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-tools-enums.h\"\n#include \"config.h\"\n#include <gio/gio.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"core/core-enums.h\"\n#include \"tools-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-tools-enums.h: xgen-tec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/tools-enums.c: xgen-tec stamp-tools-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
7
app/vectors/.gitignore
vendored
7
app/vectors/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappvectors.a
|
|
||||||
/libappvectors.la
|
|
|
@ -1,44 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Vectors\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappvectors.a
|
|
||||||
|
|
||||||
libappvectors_a_SOURCES = \
|
|
||||||
vectors-enums.h \
|
|
||||||
vectors-types.h \
|
|
||||||
gimpanchor.c \
|
|
||||||
gimpanchor.h \
|
|
||||||
gimpbezierstroke.h \
|
|
||||||
gimpbezierstroke.c \
|
|
||||||
gimpstroke.h \
|
|
||||||
gimpstroke.c \
|
|
||||||
gimpstroke-new.h \
|
|
||||||
gimpstroke-new.c \
|
|
||||||
gimpvectors.c \
|
|
||||||
gimpvectors.h \
|
|
||||||
gimpvectors-compat.c \
|
|
||||||
gimpvectors-compat.h \
|
|
||||||
gimpvectors-export.c \
|
|
||||||
gimpvectors-export.h \
|
|
||||||
gimpvectors-import.c \
|
|
||||||
gimpvectors-import.h \
|
|
||||||
gimpvectors-preview.c \
|
|
||||||
gimpvectors-preview.h \
|
|
||||||
gimpvectors-warp.c \
|
|
||||||
gimpvectors-warp.h \
|
|
||||||
gimpvectorsmodundo.c \
|
|
||||||
gimpvectorsmodundo.h \
|
|
||||||
gimpvectorspropundo.c \
|
|
||||||
gimpvectorspropundo.h \
|
|
||||||
gimpvectorsundo.c \
|
|
||||||
gimpvectorsundo.h
|
|
10
app/widgets/.gitignore
vendored
10
app/widgets/.gitignore
vendored
|
@ -1,10 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappwidgets.a
|
|
||||||
/libappwidgets.la
|
|
||||||
/xgen-wec
|
|
||||||
/gimp-tool-cursors.c
|
|
||||||
/gimp-tool-cursors.h
|
|
|
@ -1,544 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
if PLATFORM_OSX
|
|
||||||
xobjective_c = "-xobjective-c"
|
|
||||||
xobjective_cxx = "-xobjective-c++"
|
|
||||||
xnone = "-xnone"
|
|
||||||
endif
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DISO_CODES_LOCATION=\"$(ISO_CODES_LOCATION)\" \
|
|
||||||
-DISO_CODES_LOCALEDIR=\"$(ISO_CODES_LOCALEDIR)\" \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-Widgets\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GTK_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
AM_CFLAGS = \
|
|
||||||
$(xobjective_c)
|
|
||||||
|
|
||||||
AM_CXXFLAGS = \
|
|
||||||
$(xobjective_cxx)
|
|
||||||
|
|
||||||
AM_LDFLAGS = \
|
|
||||||
$(xnone)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappwidgets.a
|
|
||||||
|
|
||||||
libappwidgets_a_sources = \
|
|
||||||
widgets-enums.h \
|
|
||||||
widgets-types.h \
|
|
||||||
gimpaccellabel.c \
|
|
||||||
gimpaccellabel.h \
|
|
||||||
gimpaction.c \
|
|
||||||
gimpaction.h \
|
|
||||||
gimpaction-history.c \
|
|
||||||
gimpaction-history.h \
|
|
||||||
gimpactioneditor.c \
|
|
||||||
gimpactioneditor.h \
|
|
||||||
gimpactionfactory.c \
|
|
||||||
gimpactionfactory.h \
|
|
||||||
gimpactiongroup.c \
|
|
||||||
gimpactiongroup.h \
|
|
||||||
gimpactionimpl.c \
|
|
||||||
gimpactionimpl.h \
|
|
||||||
gimpactionview.c \
|
|
||||||
gimpactionview.h \
|
|
||||||
gimpblobeditor.c \
|
|
||||||
gimpblobeditor.h \
|
|
||||||
gimpbrusheditor.c \
|
|
||||||
gimpbrusheditor.h \
|
|
||||||
gimpbrushfactoryview.c \
|
|
||||||
gimpbrushfactoryview.h \
|
|
||||||
gimpbrushselect.c \
|
|
||||||
gimpbrushselect.h \
|
|
||||||
gimpbuffersourcebox.c \
|
|
||||||
gimpbuffersourcebox.h \
|
|
||||||
gimpbufferview.c \
|
|
||||||
gimpbufferview.h \
|
|
||||||
gimpcairo-wilber.c \
|
|
||||||
gimpcairo-wilber.h \
|
|
||||||
gimpcellrendererbutton.c \
|
|
||||||
gimpcellrendererbutton.h \
|
|
||||||
gimpcellrendererdashes.c \
|
|
||||||
gimpcellrendererdashes.h \
|
|
||||||
gimpcellrendererviewable.c \
|
|
||||||
gimpcellrendererviewable.h \
|
|
||||||
gimpcircle.c \
|
|
||||||
gimpcircle.h \
|
|
||||||
gimpchanneltreeview.c \
|
|
||||||
gimpchanneltreeview.h \
|
|
||||||
gimpclipboard.c \
|
|
||||||
gimpclipboard.h \
|
|
||||||
gimpcolorbar.c \
|
|
||||||
gimpcolorbar.h \
|
|
||||||
gimpcolordialog.c \
|
|
||||||
gimpcolordialog.h \
|
|
||||||
gimpcolordisplayeditor.c \
|
|
||||||
gimpcolordisplayeditor.h \
|
|
||||||
gimpcoloreditor.c \
|
|
||||||
gimpcoloreditor.h \
|
|
||||||
gimpcolorframe.c \
|
|
||||||
gimpcolorframe.h \
|
|
||||||
gimpcolorhistory.c \
|
|
||||||
gimpcolorhistory.h \
|
|
||||||
gimpcolormapeditor.c \
|
|
||||||
gimpcolormapeditor.h \
|
|
||||||
gimpcolormapselection.c \
|
|
||||||
gimpcolormapselection.h \
|
|
||||||
gimpcolorpanel.c \
|
|
||||||
gimpcolorpanel.h \
|
|
||||||
gimpcolorselectorpalette.c \
|
|
||||||
gimpcolorselectorpalette.h \
|
|
||||||
gimpcombotagentry.c \
|
|
||||||
gimpcombotagentry.h \
|
|
||||||
gimpcomponenteditor.c \
|
|
||||||
gimpcomponenteditor.h \
|
|
||||||
gimpcompressioncombobox.c \
|
|
||||||
gimpcompressioncombobox.h \
|
|
||||||
gimpcontainerbox.c \
|
|
||||||
gimpcontainerbox.h \
|
|
||||||
gimpcontainercombobox.c \
|
|
||||||
gimpcontainercombobox.h \
|
|
||||||
gimpcontainereditor.c \
|
|
||||||
gimpcontainereditor.h \
|
|
||||||
gimpcontainerentry.c \
|
|
||||||
gimpcontainerentry.h \
|
|
||||||
gimpcontainericonview.c \
|
|
||||||
gimpcontainericonview.h \
|
|
||||||
gimpcontainerpopup.c \
|
|
||||||
gimpcontainerpopup.h \
|
|
||||||
gimpcontainertreestore.c \
|
|
||||||
gimpcontainertreestore.h \
|
|
||||||
gimpcontainertreeview.c \
|
|
||||||
gimpcontainertreeview.h \
|
|
||||||
gimpcontainertreeview-dnd.c \
|
|
||||||
gimpcontainertreeview-dnd.h \
|
|
||||||
gimpcontainertreeview-private.h \
|
|
||||||
gimpcontainerview.c \
|
|
||||||
gimpcontainerview.h \
|
|
||||||
gimpcontainerview-utils.c \
|
|
||||||
gimpcontainerview-utils.h \
|
|
||||||
gimpcontrollereditor.c \
|
|
||||||
gimpcontrollereditor.h \
|
|
||||||
gimpcontrollerinfo.c \
|
|
||||||
gimpcontrollerinfo.h \
|
|
||||||
gimpcontrollerlist.c \
|
|
||||||
gimpcontrollerlist.h \
|
|
||||||
gimpcontrollers.c \
|
|
||||||
gimpcontrollers.h \
|
|
||||||
gimpcontrollerkeyboard.c \
|
|
||||||
gimpcontrollerkeyboard.h \
|
|
||||||
gimpcontrollerwheel.c \
|
|
||||||
gimpcontrollerwheel.h \
|
|
||||||
gimpcriticaldialog.c \
|
|
||||||
gimpcriticaldialog.h \
|
|
||||||
gimpcursor.c \
|
|
||||||
gimpcursor.h \
|
|
||||||
gimpcurveview.c \
|
|
||||||
gimpcurveview.h \
|
|
||||||
gimpdashboard.c \
|
|
||||||
gimpdashboard.h \
|
|
||||||
gimpdasheditor.c \
|
|
||||||
gimpdasheditor.h \
|
|
||||||
gimpdataeditor.c \
|
|
||||||
gimpdataeditor.h \
|
|
||||||
gimpdatafactoryview.c \
|
|
||||||
gimpdatafactoryview.h \
|
|
||||||
gimpdeviceeditor.c \
|
|
||||||
gimpdeviceeditor.h \
|
|
||||||
gimpdeviceinfo.c \
|
|
||||||
gimpdeviceinfo.h \
|
|
||||||
gimpdeviceinfo-coords.c \
|
|
||||||
gimpdeviceinfo-coords.h \
|
|
||||||
gimpdeviceinfoeditor.c \
|
|
||||||
gimpdeviceinfoeditor.h \
|
|
||||||
gimpdevicemanager.c \
|
|
||||||
gimpdevicemanager.h \
|
|
||||||
gimpdevices.c \
|
|
||||||
gimpdevices.h \
|
|
||||||
gimpdevicestatus.c \
|
|
||||||
gimpdevicestatus.h \
|
|
||||||
gimpdial.c \
|
|
||||||
gimpdial.h \
|
|
||||||
gimpdialogfactory.c \
|
|
||||||
gimpdialogfactory.h \
|
|
||||||
gimpdnd.c \
|
|
||||||
gimpdnd.h \
|
|
||||||
gimpdnd-xds.c \
|
|
||||||
gimpdnd-xds.h \
|
|
||||||
gimpdock.c \
|
|
||||||
gimpdock.h \
|
|
||||||
gimpdockcolumns.c \
|
|
||||||
gimpdockcolumns.h \
|
|
||||||
gimpdockable.c \
|
|
||||||
gimpdockable.h \
|
|
||||||
gimpdockbook.c \
|
|
||||||
gimpdockbook.h \
|
|
||||||
gimpdockcontainer.c \
|
|
||||||
gimpdockcontainer.h \
|
|
||||||
gimpdocked.c \
|
|
||||||
gimpdocked.h \
|
|
||||||
gimpdockwindow.c \
|
|
||||||
gimpdockwindow.h \
|
|
||||||
gimpdocumentview.c \
|
|
||||||
gimpdocumentview.h \
|
|
||||||
gimpdoubleaction.c \
|
|
||||||
gimpdoubleaction.h \
|
|
||||||
gimpdrawabletreeview.c \
|
|
||||||
gimpdrawabletreeview.h \
|
|
||||||
gimpdynamicseditor.c \
|
|
||||||
gimpdynamicseditor.h \
|
|
||||||
gimpdynamicsfactoryview.c \
|
|
||||||
gimpdynamicsfactoryview.h \
|
|
||||||
gimpdynamicsoutputeditor.c \
|
|
||||||
gimpdynamicsoutputeditor.h \
|
|
||||||
gimpeditor.c \
|
|
||||||
gimpeditor.h \
|
|
||||||
gimpenumaction.c \
|
|
||||||
gimpenumaction.h \
|
|
||||||
gimperrorconsole.c \
|
|
||||||
gimperrorconsole.h \
|
|
||||||
gimperrordialog.c \
|
|
||||||
gimperrordialog.h \
|
|
||||||
gimpexportdialog.c \
|
|
||||||
gimpexportdialog.h \
|
|
||||||
gimpextensiondetails.c \
|
|
||||||
gimpextensiondetails.h \
|
|
||||||
gimpextensionlist.c \
|
|
||||||
gimpextensionlist.h \
|
|
||||||
gimpfgbgeditor.c \
|
|
||||||
gimpfgbgeditor.h \
|
|
||||||
gimpfgbgview.c \
|
|
||||||
gimpfgbgview.h \
|
|
||||||
gimpfiledialog.c \
|
|
||||||
gimpfiledialog.h \
|
|
||||||
gimpfileprocview.c \
|
|
||||||
gimpfileprocview.h \
|
|
||||||
gimpfilleditor.c \
|
|
||||||
gimpfilleditor.h \
|
|
||||||
gimpfontfactoryview.c \
|
|
||||||
gimpfontfactoryview.h \
|
|
||||||
gimpfontselect.c \
|
|
||||||
gimpfontselect.h \
|
|
||||||
gimpgradienteditor.c \
|
|
||||||
gimpgradienteditor.h \
|
|
||||||
gimpgradientselect.c \
|
|
||||||
gimpgradientselect.h \
|
|
||||||
gimpgrideditor.c \
|
|
||||||
gimpgrideditor.h \
|
|
||||||
gimphandlebar.c \
|
|
||||||
gimphandlebar.h \
|
|
||||||
gimphelp.c \
|
|
||||||
gimphelp.h \
|
|
||||||
gimphelp-ids.h \
|
|
||||||
gimphistogrambox.c \
|
|
||||||
gimphistogrambox.h \
|
|
||||||
gimphistogrameditor.c \
|
|
||||||
gimphistogrameditor.h \
|
|
||||||
gimphistogramview.c \
|
|
||||||
gimphistogramview.h \
|
|
||||||
gimpiconpicker.c \
|
|
||||||
gimpiconpicker.h \
|
|
||||||
gimpimagecommenteditor.c \
|
|
||||||
gimpimagecommenteditor.h \
|
|
||||||
gimpimageeditor.c \
|
|
||||||
gimpimageeditor.h \
|
|
||||||
gimpimageparasiteview.c \
|
|
||||||
gimpimageparasiteview.h \
|
|
||||||
gimpimageprofileview.c \
|
|
||||||
gimpimageprofileview.h \
|
|
||||||
gimpimagepropview.c \
|
|
||||||
gimpimagepropview.h \
|
|
||||||
gimpimageview.c \
|
|
||||||
gimpimageview.h \
|
|
||||||
gimpitemtreeview.c \
|
|
||||||
gimpitemtreeview.h \
|
|
||||||
gimplanguagecombobox.c \
|
|
||||||
gimplanguagecombobox.h \
|
|
||||||
gimplanguageentry.c \
|
|
||||||
gimplanguageentry.h \
|
|
||||||
gimplanguagestore.c \
|
|
||||||
gimplanguagestore.h \
|
|
||||||
gimplanguagestore-parser.c \
|
|
||||||
gimplanguagestore-parser.h \
|
|
||||||
gimplayermodebox.c \
|
|
||||||
gimplayermodebox.h \
|
|
||||||
gimplayermodecombobox.c \
|
|
||||||
gimplayermodecombobox.h \
|
|
||||||
gimplayertreeview.c \
|
|
||||||
gimplayertreeview.h \
|
|
||||||
gimpmenu.c \
|
|
||||||
gimpmenu.h \
|
|
||||||
gimpmenubar.c \
|
|
||||||
gimpmenubar.h \
|
|
||||||
gimpmenushell.c \
|
|
||||||
gimpmenushell.h \
|
|
||||||
gimpmenudock.c \
|
|
||||||
gimpmenudock.h \
|
|
||||||
gimpmenufactory.c \
|
|
||||||
gimpmenufactory.h \
|
|
||||||
gimpmenumodel.c \
|
|
||||||
gimpmenumodel.h \
|
|
||||||
gimpmessagebox.c \
|
|
||||||
gimpmessagebox.h \
|
|
||||||
gimpmessagedialog.c \
|
|
||||||
gimpmessagedialog.h \
|
|
||||||
gimpmeter.c \
|
|
||||||
gimpmeter.h \
|
|
||||||
gimpmodifierseditor.c \
|
|
||||||
gimpmodifierseditor.h \
|
|
||||||
gimpnavigationview.c \
|
|
||||||
gimpnavigationview.h \
|
|
||||||
gimpopendialog.c \
|
|
||||||
gimpopendialog.h \
|
|
||||||
gimpoverlaybox.c \
|
|
||||||
gimpoverlaybox.h \
|
|
||||||
gimpoverlaychild.c \
|
|
||||||
gimpoverlaychild.h \
|
|
||||||
gimpoverlaydialog.c \
|
|
||||||
gimpoverlaydialog.h \
|
|
||||||
gimpoverlayframe.c \
|
|
||||||
gimpoverlayframe.h \
|
|
||||||
gimppaletteeditor.c \
|
|
||||||
gimppaletteeditor.h \
|
|
||||||
gimppaletteselect.c \
|
|
||||||
gimppaletteselect.h \
|
|
||||||
gimppaletteview.c \
|
|
||||||
gimppaletteview.h \
|
|
||||||
gimppanedbox.c \
|
|
||||||
gimppanedbox.h \
|
|
||||||
gimppatternfactoryview.c \
|
|
||||||
gimppatternfactoryview.h \
|
|
||||||
gimppatternselect.c \
|
|
||||||
gimppatternselect.h \
|
|
||||||
gimppdbdialog.c \
|
|
||||||
gimppdbdialog.h \
|
|
||||||
gimppickablebutton.c \
|
|
||||||
gimppickablebutton.h \
|
|
||||||
gimppickablepopup.c \
|
|
||||||
gimppickablepopup.h \
|
|
||||||
gimppivotselector.c \
|
|
||||||
gimppivotselector.h \
|
|
||||||
gimppixbuf.c \
|
|
||||||
gimppixbuf.h \
|
|
||||||
gimppluginview.c \
|
|
||||||
gimppluginview.h \
|
|
||||||
gimppolar.c \
|
|
||||||
gimppolar.h \
|
|
||||||
gimppopup.c \
|
|
||||||
gimppopup.h \
|
|
||||||
gimpprefsbox.c \
|
|
||||||
gimpprefsbox.h \
|
|
||||||
gimpprocedureaction.c \
|
|
||||||
gimpprocedureaction.h \
|
|
||||||
gimpprogressbox.c \
|
|
||||||
gimpprogressbox.h \
|
|
||||||
gimpprogressdialog.c \
|
|
||||||
gimpprogressdialog.h \
|
|
||||||
gimppropwidgets.c \
|
|
||||||
gimppropwidgets.h \
|
|
||||||
gimpradioaction.c \
|
|
||||||
gimpradioaction.h \
|
|
||||||
gimprender.c \
|
|
||||||
gimprender.h \
|
|
||||||
gimpsamplepointeditor.c \
|
|
||||||
gimpsamplepointeditor.h \
|
|
||||||
gimpsavedialog.c \
|
|
||||||
gimpsavedialog.h \
|
|
||||||
gimpsearchpopup.c \
|
|
||||||
gimpsearchpopup.h \
|
|
||||||
gimpselectiondata.c \
|
|
||||||
gimpselectiondata.h \
|
|
||||||
gimpselectioneditor.c \
|
|
||||||
gimpselectioneditor.h \
|
|
||||||
gimpsessioninfo.c \
|
|
||||||
gimpsessioninfo.h \
|
|
||||||
gimpsessioninfo-aux.c \
|
|
||||||
gimpsessioninfo-aux.h \
|
|
||||||
gimpsessioninfo-book.c \
|
|
||||||
gimpsessioninfo-book.h \
|
|
||||||
gimpsessioninfo-dock.c \
|
|
||||||
gimpsessioninfo-dock.h \
|
|
||||||
gimpsessioninfo-dockable.c \
|
|
||||||
gimpsessioninfo-dockable.h \
|
|
||||||
gimpsessioninfo-private.h \
|
|
||||||
gimpsessionmanaged.c \
|
|
||||||
gimpsessionmanaged.h \
|
|
||||||
gimpsettingsbox.c \
|
|
||||||
gimpsettingsbox.h \
|
|
||||||
gimpsettingseditor.c \
|
|
||||||
gimpsettingseditor.h \
|
|
||||||
gimpshortcutbutton.c \
|
|
||||||
gimpshortcutbutton.h \
|
|
||||||
gimpshortcutbutton.c \
|
|
||||||
gimpshortcutbutton.h \
|
|
||||||
gimpsizebox.c \
|
|
||||||
gimpsizebox.h \
|
|
||||||
gimpstringaction.c \
|
|
||||||
gimpstringaction.h \
|
|
||||||
gimpstrokeeditor.c \
|
|
||||||
gimpstrokeeditor.h \
|
|
||||||
gimpsymmetryeditor.c \
|
|
||||||
gimpsymmetryeditor.h \
|
|
||||||
gimptagentry.c \
|
|
||||||
gimptagentry.h \
|
|
||||||
gimptagpopup.c \
|
|
||||||
gimptagpopup.h \
|
|
||||||
gimptemplateeditor.c \
|
|
||||||
gimptemplateeditor.h \
|
|
||||||
gimptemplateview.c \
|
|
||||||
gimptemplateview.h \
|
|
||||||
gimptextbuffer.c \
|
|
||||||
gimptextbuffer.h \
|
|
||||||
gimptextbuffer-serialize.c \
|
|
||||||
gimptextbuffer-serialize.h \
|
|
||||||
gimptexteditor.c \
|
|
||||||
gimptexteditor.h \
|
|
||||||
gimptextproxy.c \
|
|
||||||
gimptextproxy.h \
|
|
||||||
gimptextstyleeditor.c \
|
|
||||||
gimptextstyleeditor.h \
|
|
||||||
gimptexttag.c \
|
|
||||||
gimptexttag.h \
|
|
||||||
gimpthumbbox.c \
|
|
||||||
gimpthumbbox.h \
|
|
||||||
gimptoggleaction.c \
|
|
||||||
gimptoggleaction.h \
|
|
||||||
gimptoolbar.c \
|
|
||||||
gimptoolbar.h \
|
|
||||||
gimptoolbox.c \
|
|
||||||
gimptoolbox.h \
|
|
||||||
gimptoolbox-color-area.c \
|
|
||||||
gimptoolbox-color-area.h \
|
|
||||||
gimptoolbox-dnd.c \
|
|
||||||
gimptoolbox-dnd.h \
|
|
||||||
gimptoolbox-image-area.c \
|
|
||||||
gimptoolbox-image-area.h \
|
|
||||||
gimptoolbox-indicator-area.c \
|
|
||||||
gimptoolbox-indicator-area.h \
|
|
||||||
gimptoolbutton.c \
|
|
||||||
gimptoolbutton.h \
|
|
||||||
gimptooleditor.c \
|
|
||||||
gimptooleditor.h \
|
|
||||||
gimptooloptionseditor.c \
|
|
||||||
gimptooloptionseditor.h \
|
|
||||||
gimptoolpalette.c \
|
|
||||||
gimptoolpalette.h \
|
|
||||||
gimptoolpreseteditor.c \
|
|
||||||
gimptoolpreseteditor.h \
|
|
||||||
gimptoolpresetfactoryview.c \
|
|
||||||
gimptoolpresetfactoryview.h \
|
|
||||||
gimptranslationstore.c \
|
|
||||||
gimptranslationstore.h \
|
|
||||||
gimpuimanager.c \
|
|
||||||
gimpuimanager.h \
|
|
||||||
gimpundoeditor.c \
|
|
||||||
gimpundoeditor.h \
|
|
||||||
gimpvectorstreeview.c \
|
|
||||||
gimpvectorstreeview.h \
|
|
||||||
gimpview.c \
|
|
||||||
gimpview.h \
|
|
||||||
gimpview-popup.c \
|
|
||||||
gimpview-popup.h \
|
|
||||||
gimpviewablebox.c \
|
|
||||||
gimpviewablebox.h \
|
|
||||||
gimpviewablebutton.c \
|
|
||||||
gimpviewablebutton.h \
|
|
||||||
gimpviewabledialog.c \
|
|
||||||
gimpviewabledialog.h \
|
|
||||||
gimpviewrenderer.c \
|
|
||||||
gimpviewrenderer.h \
|
|
||||||
gimpviewrenderer-frame.c \
|
|
||||||
gimpviewrenderer-frame.h \
|
|
||||||
gimpviewrenderer-utils.c \
|
|
||||||
gimpviewrenderer-utils.h \
|
|
||||||
gimpviewrendererbrush.c \
|
|
||||||
gimpviewrendererbrush.h \
|
|
||||||
gimpviewrendererbuffer.c \
|
|
||||||
gimpviewrendererbuffer.h \
|
|
||||||
gimpviewrendererdrawable.c \
|
|
||||||
gimpviewrendererdrawable.h \
|
|
||||||
gimpviewrenderergradient.c \
|
|
||||||
gimpviewrenderergradient.h \
|
|
||||||
gimpviewrendererimage.c \
|
|
||||||
gimpviewrendererimage.h \
|
|
||||||
gimpviewrendererimagefile.c \
|
|
||||||
gimpviewrendererimagefile.h \
|
|
||||||
gimpviewrendererlayer.c \
|
|
||||||
gimpviewrendererlayer.h \
|
|
||||||
gimpviewrendererpalette.c \
|
|
||||||
gimpviewrendererpalette.h \
|
|
||||||
gimpviewrenderervectors.c \
|
|
||||||
gimpviewrenderervectors.h \
|
|
||||||
gimpwidgets-constructors.c \
|
|
||||||
gimpwidgets-constructors.h \
|
|
||||||
gimpwidgets-utils.c \
|
|
||||||
gimpwidgets-utils.h \
|
|
||||||
gimpwindow.c \
|
|
||||||
gimpwindow.h \
|
|
||||||
gimpwindowstrategy.c \
|
|
||||||
gimpwindowstrategy.h
|
|
||||||
|
|
||||||
libappwidgets_a_built_sources = \
|
|
||||||
gimp-tool-cursors.c \
|
|
||||||
gimp-tool-cursors.h \
|
|
||||||
widgets-enums.c
|
|
||||||
|
|
||||||
libappwidgets_a_SOURCES = \
|
|
||||||
$(libappwidgets_a_built_sources) \
|
|
||||||
$(libappwidgets_a_sources)
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
# rules to generate built sources
|
|
||||||
#
|
|
||||||
# setup autogeneration dependencies
|
|
||||||
gen_sources = \
|
|
||||||
gimp-tool-cursors.c \
|
|
||||||
gimp-tool-cursors.h \
|
|
||||||
stamp-widgets-enums.h \
|
|
||||||
xgen-wec
|
|
||||||
CLEANFILES = $(gen_sources)
|
|
||||||
|
|
||||||
xgen-wec: $(srcdir)/widgets-enums.h $(GIMP_MKENUMS) Makefile.am
|
|
||||||
$(AM_V_GEN) $(GIMP_MKENUMS) \
|
|
||||||
--fhead "#include \"stamp-widgets-enums.h\"\n#include \"config.h\"\n#include <gtk/gtk.h>\n#include \"libgimpbase/gimpbase.h\"\n#include \"widgets-enums.h\"\n#include \"gimp-intl.h\"" \
|
|
||||||
--fprod "\n/* enumerations from \"@basename@\" */" \
|
|
||||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static const G@Type@Value values[] =\n {" \
|
|
||||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
|
|
||||||
--vtail " { 0, NULL, NULL }\n };\n" \
|
|
||||||
--dhead " static const Gimp@Type@Desc descs[] =\n {" \
|
|
||||||
--dprod " { @VALUENAME@, @valuedesc@, @valuehelp@ },@if ('@valueabbrev@' ne 'NULL')@\n /* Translators: this is an abbreviated version of @valueudesc@.\n Keep it short. */\n { @VALUENAME@, @valueabbrev@, NULL },@endif@" \
|
|
||||||
--dtail " { 0, NULL, NULL }\n };\n\n static GType type = 0;\n\n if (G_UNLIKELY (! type))\n {\n type = g_@type@_register_static (\"@EnumName@\", values);\n gimp_type_set_translation_context (type, \"@enumnick@\");\n gimp_@type@_set_value_descriptions (type, descs);\n }\n\n return type;\n}\n" \
|
|
||||||
$< > $@
|
|
||||||
|
|
||||||
stamp-widgets-enums.h: xgen-wec
|
|
||||||
echo "/* Generated on `date`. */" > $@
|
|
||||||
|
|
||||||
# copy the generated enum file back to the source directory only if it's
|
|
||||||
# changed; otherwise, only update its timestamp, so that the recipe isn't
|
|
||||||
# executed again on the next build, however, allow this to (harmlessly) fail,
|
|
||||||
# to support building from a read-only source tree.
|
|
||||||
$(srcdir)/widgets-enums.c: xgen-wec stamp-widgets-enums.h
|
|
||||||
$(AM_V_GEN) if ! cmp -s $< $@; then \
|
|
||||||
cp $< $@; \
|
|
||||||
else \
|
|
||||||
touch $@ 2> /dev/null \
|
|
||||||
|| true; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
gimp-tool-cursors.h: $(top_builddir)/cursors/gimp-tool-cursors.gresource.xml
|
|
||||||
$(AM_V_GEN) $(HOST_GLIB_COMPILE_RESOURCES) \
|
|
||||||
--sourcedir=$(top_srcdir)/cursors --generate-header \
|
|
||||||
--target=$@ $(top_builddir)/cursors/gimp-tool-cursors.gresource.xml
|
|
||||||
|
|
||||||
gimp-tool-cursors.c: gimp-tool-cursors.h
|
|
||||||
$(AM_V_GEN) $(HOST_GLIB_COMPILE_RESOURCES) \
|
|
||||||
--sourcedir=$(top_srcdir)/cursors --generate-source \
|
|
||||||
--target=$@ $(top_builddir)/cursors/gimp-tool-cursors.gresource.xml
|
|
7
app/xcf/.gitignore
vendored
7
app/xcf/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/.deps
|
|
||||||
/.libs
|
|
||||||
/*.lo
|
|
||||||
/libappxcf.a
|
|
||||||
/libappxcf.la
|
|
|
@ -1,31 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
|
||||||
-DG_LOG_DOMAIN=\"Gimp-XCF\" \
|
|
||||||
-I$(top_builddir) \
|
|
||||||
-I$(top_srcdir) \
|
|
||||||
-I$(top_builddir)/app \
|
|
||||||
-I$(top_srcdir)/app \
|
|
||||||
$(CAIRO_CFLAGS) \
|
|
||||||
$(GEGL_CFLAGS) \
|
|
||||||
$(GDK_PIXBUF_CFLAGS) \
|
|
||||||
-I$(includedir)
|
|
||||||
|
|
||||||
noinst_LIBRARIES = libappxcf.a
|
|
||||||
|
|
||||||
libappxcf_a_SOURCES = \
|
|
||||||
xcf.c \
|
|
||||||
xcf.h \
|
|
||||||
xcf-load.c \
|
|
||||||
xcf-load.h \
|
|
||||||
xcf-read.c \
|
|
||||||
xcf-read.h \
|
|
||||||
xcf-private.h \
|
|
||||||
xcf-save.c \
|
|
||||||
xcf-save.h \
|
|
||||||
xcf-seek.c \
|
|
||||||
xcf-seek.h \
|
|
||||||
xcf-utils.c \
|
|
||||||
xcf-utils.h \
|
|
||||||
xcf-write.c \
|
|
||||||
xcf-write.h
|
|
42
autogen.sh
42
autogen.sh
|
@ -1,42 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# This script does all the magic calls to automake/autoconf and
|
|
||||||
# friends that are needed to configure a git clone. As described in
|
|
||||||
# the file HACKING you need a couple of extra tools to run this script
|
|
||||||
# successfully.
|
|
||||||
#
|
|
||||||
# If you are compiling from a released tarball you don't need these
|
|
||||||
# tools and you shouldn't use this script. Just call ./configure
|
|
||||||
# directly.
|
|
||||||
|
|
||||||
# Run this to generate all the initial makefiles, etc.
|
|
||||||
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
||||||
test -n "$srcdir" || srcdir=.
|
|
||||||
|
|
||||||
PROJECT="GNU Image Manipulation Program"
|
|
||||||
|
|
||||||
srcdir=`dirname $0`
|
|
||||||
ORIGDIR=`pwd`
|
|
||||||
cd $srcdir
|
|
||||||
|
|
||||||
(test -f configure.ac) || {
|
|
||||||
echo "*** ERROR: Directory "\`$srcdir\'" does not look like the top-level project directory ***"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
autoreconf --verbose --force --install -Wno-portability || exit $?
|
|
||||||
|
|
||||||
cd $ORIGDIR
|
|
||||||
|
|
||||||
if test -z "$NOCONFIGURE"; then
|
|
||||||
$srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@"
|
|
||||||
RC=$?
|
|
||||||
if test $RC -ne 0; then
|
|
||||||
echo
|
|
||||||
echo "Configure failed or did not finish!"
|
|
||||||
exit $RC
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo
|
|
||||||
echo "Now type 'make' to compile the $PROJECT."
|
|
||||||
fi
|
|
2
build/.gitignore
vendored
2
build/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
|
@ -1,2 +0,0 @@
|
||||||
SUBDIRS = \
|
|
||||||
windows
|
|
4
build/windows/.gitignore
vendored
4
build/windows/.gitignore
vendored
|
@ -1,4 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/gimp.rc
|
|
||||||
/gimp-plug-ins.rc
|
|
|
@ -1,16 +0,0 @@
|
||||||
if BUILD_WINDOWS_INSTALLER
|
|
||||||
installer = installer
|
|
||||||
endif
|
|
||||||
|
|
||||||
SUBDIRS = \
|
|
||||||
$(installer)
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
|
||||||
gimprc.rule \
|
|
||||||
gimprc-plug-ins.rule \
|
|
||||||
gimp.rc \
|
|
||||||
gimp-plug-ins.rc \
|
|
||||||
gimp.manifest \
|
|
||||||
fileicon.ico \
|
|
||||||
plug-ins.ico \
|
|
||||||
wilber.ico
|
|
6
build/windows/installer/.gitignore
vendored
6
build/windows/installer/.gitignore
vendored
|
@ -1,6 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/Preprocessed.iss
|
|
||||||
/compile.log
|
|
||||||
/_Output/
|
|
||||||
/_Uninst/
|
|
|
@ -1,2 +0,0 @@
|
||||||
SUBDIRS = \
|
|
||||||
lang
|
|
6
build/windows/installer/lang/.gitignore
vendored
6
build/windows/installer/lang/.gitignore
vendored
|
@ -1,6 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/setup.isl
|
|
||||||
/setup.isl.in
|
|
||||||
/*.setup.isl
|
|
||||||
/stamp-isl
|
|
|
@ -1,87 +0,0 @@
|
||||||
isl_xml_in_files = setup.isl.xml.in
|
|
||||||
isl_xml_files = $(isl_xml_in_files:.isl.xml.in=.isl.xml)
|
|
||||||
|
|
||||||
stamp_files = \
|
|
||||||
stamp-isl
|
|
||||||
|
|
||||||
CLEANFILES = $(isl_xml_files) $(stamp_files)
|
|
||||||
EXTRA_DIST = $(isl_xml_in_files)
|
|
||||||
|
|
||||||
# First we use the XML file to be able to do gettext translation
|
|
||||||
$(isl_xml_files): $(isl_xml_in_files) $(wildcard $(top_srcdir)/po-windows-installer/*.po) Makefile.am
|
|
||||||
$(AM_V_GEN) GETTEXTDATADIRS=$(abs_srcdir) $(MSGFMT) --xml --template $< -d $(top_srcdir)/po-windows-installer -o $@
|
|
||||||
|
|
||||||
# Then, we generate the .isl file for each language using some xsltproc magic
|
|
||||||
languages = \
|
|
||||||
bg:bg \
|
|
||||||
ca:ca \
|
|
||||||
cs:cs \
|
|
||||||
da:da \
|
|
||||||
de:de \
|
|
||||||
el:el \
|
|
||||||
en: \
|
|
||||||
en_GB:en_GB \
|
|
||||||
eo:eo \
|
|
||||||
es:es \
|
|
||||||
eu:eu \
|
|
||||||
fi:fi \
|
|
||||||
fr:fr \
|
|
||||||
gl:gl \
|
|
||||||
he:he \
|
|
||||||
hu:hu \
|
|
||||||
id:id \
|
|
||||||
is:is \
|
|
||||||
it:it \
|
|
||||||
ja:ja \
|
|
||||||
ka:ka \
|
|
||||||
kab:kab \
|
|
||||||
ko:ko \
|
|
||||||
lt:lt \
|
|
||||||
lv:lv \
|
|
||||||
mr:mr \
|
|
||||||
ms:ms \
|
|
||||||
nl:nl \
|
|
||||||
pl:pl \
|
|
||||||
pt:pt \
|
|
||||||
pt_BR:pt_BR \
|
|
||||||
ro:ro \
|
|
||||||
ru:ru \
|
|
||||||
sk:sk \
|
|
||||||
sl:sl \
|
|
||||||
sv:sv \
|
|
||||||
tr:tr \
|
|
||||||
uk:uk \
|
|
||||||
vi:vi \
|
|
||||||
zh_CN:zh_CN \
|
|
||||||
zh_TW:zh_TW
|
|
||||||
|
|
||||||
stamp-isl: setup.isl.xml gimp-ms-installer-config.xsl.in Makefile.am
|
|
||||||
@ \
|
|
||||||
for lang in $(languages); do \
|
|
||||||
code=`echo $$lang | cut -d: -f1`; \
|
|
||||||
prefix=`echo $$lang | cut -d: -f2`; \
|
|
||||||
lang_check=`[ "$$prefix" ] && echo "value[lang('$$code')]" || echo "value"`; \
|
|
||||||
xslin="$(srcdir)/gimp-ms-installer-config.xsl.in"; \
|
|
||||||
xsl="$(builddir)/gimp-ms-installer-config.xsl"; \
|
|
||||||
isl="$(builddir)/$$code.setup.isl"; \
|
|
||||||
echo " GEN $$isl"; \
|
|
||||||
sed "s/@LANG_CHECK@/$$lang_check/" "$$xslin" > "$$xsl"; \
|
|
||||||
$(XSLTPROC) --xinclude --output "$$isl" "$$xsl" $< || rm -f "$$isl"; \
|
|
||||||
done && \
|
|
||||||
echo timestamp > stamp-isl
|
|
||||||
|
|
||||||
all-local: $(stamp_files)
|
|
||||||
|
|
||||||
clean-local:
|
|
||||||
@ \
|
|
||||||
for lang in $(languages); do \
|
|
||||||
code=`echo $$lang | cut -d: -f1`; \
|
|
||||||
isl="$(builddir)/$$code.setup.isl"; \
|
|
||||||
echo " RM $$isl"; \
|
|
||||||
rm -f "$$isl"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
TESTS_ENVIRONMENT = \
|
|
||||||
GIMP_TESTING_ABS_TOP_SRCDIR=@abs_top_srcdir@
|
|
||||||
|
|
||||||
TESTS = test-installer-langs.sh
|
|
2
build/windows/jhbuild/.gitignore
vendored
2
build/windows/jhbuild/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
checkout/
|
|
||||||
targets/
|
|
3328
configure.ac
3328
configure.ac
File diff suppressed because it is too large
Load diff
4
cursors/.gitignore
vendored
4
cursors/.gitignore
vendored
|
@ -1,4 +0,0 @@
|
||||||
/Makefile
|
|
||||||
/Makefile.in
|
|
||||||
/gimp-color-picker-cursors.gresource.xml
|
|
||||||
/gimp-tool-cursors.gresource.xml
|
|
|
@ -1,204 +0,0 @@
|
||||||
## Process this file with automake to produce Makefile.in
|
|
||||||
|
|
||||||
CURSOR_IMAGES = \
|
|
||||||
cursor-bad.png \
|
|
||||||
cursor-bad-x2.png \
|
|
||||||
cursor-color-picker.png \
|
|
||||||
cursor-color-picker-x2.png \
|
|
||||||
cursor-corner-bottom-left.png \
|
|
||||||
cursor-corner-bottom-left-x2.png \
|
|
||||||
cursor-corner-bottom-right.png \
|
|
||||||
cursor-corner-bottom-right-x2.png \
|
|
||||||
cursor-corner-bottom.png \
|
|
||||||
cursor-corner-bottom-x2.png \
|
|
||||||
cursor-corner-left.png \
|
|
||||||
cursor-corner-left-x2.png \
|
|
||||||
cursor-corner-right.png \
|
|
||||||
cursor-corner-right-x2.png \
|
|
||||||
cursor-corner-top-left.png \
|
|
||||||
cursor-corner-top-left-x2.png \
|
|
||||||
cursor-corner-top-right.png \
|
|
||||||
cursor-corner-top-right-x2.png \
|
|
||||||
cursor-corner-top.png \
|
|
||||||
cursor-corner-top-x2.png \
|
|
||||||
cursor-crosshair-small.png \
|
|
||||||
cursor-crosshair-small-x2.png \
|
|
||||||
cursor-crosshair.png \
|
|
||||||
cursor-crosshair-x2.png \
|
|
||||||
cursor-mouse.png \
|
|
||||||
cursor-mouse-x2.png \
|
|
||||||
cursor-move.png \
|
|
||||||
cursor-move-x2.png \
|
|
||||||
cursor-none.png \
|
|
||||||
cursor-none-x2.png \
|
|
||||||
cursor-side-bottom-left.png \
|
|
||||||
cursor-side-bottom-left-x2.png \
|
|
||||||
cursor-side-bottom-right.png \
|
|
||||||
cursor-side-bottom-right-x2.png \
|
|
||||||
cursor-side-bottom.png \
|
|
||||||
cursor-side-bottom-x2.png \
|
|
||||||
cursor-side-left.png \
|
|
||||||
cursor-side-left-x2.png \
|
|
||||||
cursor-side-right.png \
|
|
||||||
cursor-side-right-x2.png \
|
|
||||||
cursor-side-top-left.png \
|
|
||||||
cursor-side-top-left-x2.png \
|
|
||||||
cursor-side-top-right.png \
|
|
||||||
cursor-side-top-right-x2.png \
|
|
||||||
cursor-side-top.png \
|
|
||||||
cursor-side-top-x2.png \
|
|
||||||
cursor-single-dot.png \
|
|
||||||
cursor-single-dot-x2.png \
|
|
||||||
cursor-zoom.png \
|
|
||||||
cursor-zoom-x2.png \
|
|
||||||
\
|
|
||||||
modifier-anchor.png \
|
|
||||||
modifier-anchor-x2.png \
|
|
||||||
modifier-background.png \
|
|
||||||
modifier-background-x2.png \
|
|
||||||
modifier-bad.png \
|
|
||||||
modifier-bad-x2.png \
|
|
||||||
modifier-control.png \
|
|
||||||
modifier-control-x2.png \
|
|
||||||
modifier-foreground.png \
|
|
||||||
modifier-foreground-x2.png \
|
|
||||||
modifier-intersect.png \
|
|
||||||
modifier-intersect-x2.png \
|
|
||||||
modifier-join.png \
|
|
||||||
modifier-join-x2.png \
|
|
||||||
modifier-minus.png \
|
|
||||||
modifier-minus-x2.png \
|
|
||||||
modifier-move.png \
|
|
||||||
modifier-move-x2.png \
|
|
||||||
modifier-pattern.png \
|
|
||||||
modifier-pattern-x2.png \
|
|
||||||
modifier-plus.png \
|
|
||||||
modifier-plus-x2.png \
|
|
||||||
modifier-resize.png \
|
|
||||||
modifier-resize-x2.png \
|
|
||||||
modifier-rotate.png \
|
|
||||||
modifier-rotate-x2.png \
|
|
||||||
modifier-select.png \
|
|
||||||
modifier-select-x2.png \
|
|
||||||
modifier-zoom.png \
|
|
||||||
modifier-zoom-x2.png \
|
|
||||||
\
|
|
||||||
tool-airbrush.png \
|
|
||||||
tool-airbrush-x2.png \
|
|
||||||
tool-blur.png \
|
|
||||||
tool-blur-x2.png \
|
|
||||||
tool-bucket-fill.png \
|
|
||||||
tool-bucket-fill-x2.png \
|
|
||||||
tool-burn.png \
|
|
||||||
tool-burn-x2.png \
|
|
||||||
tool-clone.png \
|
|
||||||
tool-clone-x2.png \
|
|
||||||
tool-color-picker.png \
|
|
||||||
tool-color-picker-x2.png \
|
|
||||||
tool-crop.png \
|
|
||||||
tool-crop-x2.png \
|
|
||||||
tool-dodge.png \
|
|
||||||
tool-dodge-x2.png \
|
|
||||||
tool-ellipse-select.png \
|
|
||||||
tool-ellipse-select-x2.png \
|
|
||||||
tool-eraser.png \
|
|
||||||
tool-eraser-x2.png \
|
|
||||||
tool-flip-horizontal.png \
|
|
||||||
tool-flip-horizontal-x2.png \
|
|
||||||
tool-flip-vertical.png \
|
|
||||||
tool-flip-vertical-x2.png \
|
|
||||||
tool-free-select.png \
|
|
||||||
tool-free-select-x2.png \
|
|
||||||
tool-fuzzy-select.png \
|
|
||||||
tool-fuzzy-select-x2.png \
|
|
||||||
tool-gradient.png \
|
|
||||||
tool-gradient-x2.png \
|
|
||||||
tool-hand.png \
|
|
||||||
tool-hand-x2.png \
|
|
||||||
tool-heal.png \
|
|
||||||
tool-heal-x2.png \
|
|
||||||
tool-ink.png \
|
|
||||||
tool-ink-x2.png \
|
|
||||||
tool-iscissors.png \
|
|
||||||
tool-iscissors-x2.png \
|
|
||||||
tool-measure.png \
|
|
||||||
tool-measure-x2.png \
|
|
||||||
tool-move.png \
|
|
||||||
tool-move-x2.png \
|
|
||||||
tool-paintbrush.png \
|
|
||||||
tool-paintbrush-x2.png \
|
|
||||||
tool-paths-anchor.png \
|
|
||||||
tool-paths-anchor-x2.png \
|
|
||||||
tool-paths-control.png \
|
|
||||||
tool-paths-control-x2.png \
|
|
||||||
tool-paths-segment.png \
|
|
||||||
tool-paths-segment-x2.png \
|
|
||||||
tool-paths.png \
|
|
||||||
tool-paths-x2.png \
|
|
||||||
tool-pencil.png \
|
|
||||||
tool-pencil-x2.png \
|
|
||||||
tool-perspective.png \
|
|
||||||
tool-perspective-x2.png \
|
|
||||||
tool-polygon-select.png \
|
|
||||||
tool-polygon-select-x2.png \
|
|
||||||
tool-rect-select.png \
|
|
||||||
tool-rect-select-x2.png \
|
|
||||||
tool-resize.png \
|
|
||||||
tool-resize-x2.png \
|
|
||||||
tool-rotate.png \
|
|
||||||
tool-rotate-x2.png \
|
|
||||||
tool-shear.png \
|
|
||||||
tool-shear-x2.png \
|
|
||||||
tool-smudge.png \
|
|
||||||
tool-smudge-x2.png \
|
|
||||||
tool-text.png \
|
|
||||||
tool-text-x2.png \
|
|
||||||
tool-transform-3d-camera.png \
|
|
||||||
tool-transform-3d-camera-x2.png \
|
|
||||||
tool-warp.png \
|
|
||||||
tool-warp-x2.png \
|
|
||||||
tool-zoom.png \
|
|
||||||
tool-zoom-x2.png
|
|
||||||
|
|
||||||
COLOR_PICKER_IMAGES = \
|
|
||||||
cursor-color-picker.png \
|
|
||||||
cursor-color-picker-x2.png
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
|
||||||
$(CURSOR_IMAGES) \
|
|
||||||
gimp-tool-cursors.xcf \
|
|
||||||
gimp-tool-cursors-x2.xcf
|
|
||||||
|
|
||||||
noinst_DATA = \
|
|
||||||
gimp-tool-cursors.gresource.xml \
|
|
||||||
gimp-color-picker-cursors.gresource.xml
|
|
||||||
|
|
||||||
CLEANFILES = $(noinst_DATA)
|
|
||||||
|
|
||||||
|
|
||||||
gimp-tool-cursors.gresource.xml: $(CURSOR_IMAGES) Makefile.am
|
|
||||||
$(AM_V_GEN) ( rm -f $@; \
|
|
||||||
echo '<?xml version="1.0" encoding="UTF-8"?>' > $@; \
|
|
||||||
echo '<gresources>' >> $@; \
|
|
||||||
echo ' <gresource prefix="/org/gimp/tool-cursors">' >> $@; \
|
|
||||||
for image in $(CURSOR_IMAGES); do \
|
|
||||||
echo " <file preprocess=\"to-pixdata\">$$image</file>" >> $@; \
|
|
||||||
done; \
|
|
||||||
echo ' </gresource>' >> $@; \
|
|
||||||
echo '</gresources>' >> $@ )
|
|
||||||
|
|
||||||
gimp-color-picker-cursors.gresource.xml: $(CURSOR_IMAGES) Makefile.am
|
|
||||||
$(AM_V_GEN) ( rm -f $@; \
|
|
||||||
echo '<?xml version="1.0" encoding="UTF-8"?>' > $@; \
|
|
||||||
echo '<gresources>' >> $@; \
|
|
||||||
echo ' <gresource prefix="/org/gimp/color-picker-cursors">' >> $@; \
|
|
||||||
for image in $(COLOR_PICKER_IMAGES); do \
|
|
||||||
echo " <file preprocess=\"to-pixdata\">$$image</file>" >> $@; \
|
|
||||||
done; \
|
|
||||||
echo ' </gresource>' >> $@; \
|
|
||||||
echo ' <gresource prefix="/org/gimp/color-picker-cursors-raw">' >> $@; \
|
|
||||||
for image in $(COLOR_PICKER_IMAGES); do \
|
|
||||||
echo " <file>$$image</file>" >> $@; \
|
|
||||||
done; \
|
|
||||||
echo ' </gresource>' >> $@; \
|
|
||||||
echo '</gresources>' >> $@ )
|
|
2
data/.gitignore
vendored
2
data/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/Makefile.in
|
|
||||||
/Makefile
|
|
|
@ -1,24 +0,0 @@
|
||||||
## Makefile.am for gimp/data
|
|
||||||
|
|
||||||
SUBDIRS = \
|
|
||||||
brushes \
|
|
||||||
dynamics \
|
|
||||||
environ \
|
|
||||||
gradients \
|
|
||||||
images \
|
|
||||||
interpreters \
|
|
||||||
palettes \
|
|
||||||
patterns \
|
|
||||||
tips \
|
|
||||||
tags \
|
|
||||||
tool-presets
|
|
||||||
|
|
||||||
fontdir = $(gimpdatadir)/fonts
|
|
||||||
|
|
||||||
install-data-local:
|
|
||||||
$(mkinstalldirs) $(DESTDIR)$(fontdir)
|
|
||||||
echo '[package]' > $(DESTDIR)$(gimpdatadir)/gimp-release
|
|
||||||
echo 'revision=@GIMP_PACKAGE_REVISION@' >> $(DESTDIR)$(gimpdatadir)/gimp-release
|
|
||||||
|
|
||||||
uninstall-local:
|
|
||||||
rm -f $(DESTDIR)$(gimpdatadir)/gimp-release
|
|
2
data/brushes/.gitignore
vendored
2
data/brushes/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/Makefile.in
|
|
||||||
/Makefile
|
|
2
data/brushes/Basic/.gitignore
vendored
2
data/brushes/Basic/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/Makefile.in
|
|
||||||
/Makefile
|
|
|
@ -1,17 +0,0 @@
|
||||||
## Makefile.am for gimp/data/brushes/Basic
|
|
||||||
|
|
||||||
brushbasicdatadir = $(gimpdatadir)/brushes/Basic
|
|
||||||
|
|
||||||
brushbasicdata_DATA = \
|
|
||||||
1-pixel.vbr \
|
|
||||||
Block-01.vbr \
|
|
||||||
Block-02.vbr \
|
|
||||||
Block-03.vbr \
|
|
||||||
Hardness-025.vbr \
|
|
||||||
Hardness-050.vbr \
|
|
||||||
Hardness-075.vbr \
|
|
||||||
Hardness-100.vbr \
|
|
||||||
pixel.gbr \
|
|
||||||
Star.vbr
|
|
||||||
|
|
||||||
EXTRA_DIST = $(brushbasicdata_DATA)
|
|
2
data/brushes/Fun/.gitignore
vendored
2
data/brushes/Fun/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/Makefile.in
|
|
||||||
/Makefile
|
|
|
@ -1,10 +0,0 @@
|
||||||
## Makefile.am for gimp/data/brushes/Fun
|
|
||||||
|
|
||||||
brushfundatadir = $(gimpdatadir)/brushes/Fun
|
|
||||||
|
|
||||||
brushfundata_DATA = \
|
|
||||||
GEGL-goat.gih \
|
|
||||||
pepper.gbr \
|
|
||||||
Wilber.gih
|
|
||||||
|
|
||||||
EXTRA_DIST = $(brushfundata_DATA)
|
|
2
data/brushes/Legacy/.gitignore
vendored
2
data/brushes/Legacy/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/Makefile.in
|
|
||||||
/Makefile
|
|
|
@ -1,10 +0,0 @@
|
||||||
## Makefile.am for gimp/data/brushes/Legacy
|
|
||||||
|
|
||||||
brushlegacydatadir = $(gimpdatadir)/brushes/Legacy
|
|
||||||
|
|
||||||
brushlegacydata_DATA = \
|
|
||||||
confetti.gbr \
|
|
||||||
confetti.gih \
|
|
||||||
vine.gih
|
|
||||||
|
|
||||||
EXTRA_DIST = $(brushlegacydata_DATA)
|
|
|
@ -1,10 +0,0 @@
|
||||||
## Makefile.am for gimp/data/brushes
|
|
||||||
|
|
||||||
SUBDIRS = \
|
|
||||||
Basic \
|
|
||||||
Fun \
|
|
||||||
Media \
|
|
||||||
Legacy \
|
|
||||||
Sketch \
|
|
||||||
Splatters \
|
|
||||||
Texture
|
|
2
data/brushes/Media/.gitignore
vendored
2
data/brushes/Media/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/Makefile.in
|
|
||||||
/Makefile
|
|
|
@ -1,18 +0,0 @@
|
||||||
## Makefile.am for gimp/data/brushes/Media
|
|
||||||
|
|
||||||
brushmediadatadir = $(gimpdatadir)/brushes/Media
|
|
||||||
|
|
||||||
brushmediadata_DATA = \
|
|
||||||
Acrylic-01.gih \
|
|
||||||
Acrylic-02.gih \
|
|
||||||
Acrylic-03.gih \
|
|
||||||
Acrylic-04.gih \
|
|
||||||
Acrylic-05.gih \
|
|
||||||
Bristles-01.gbr \
|
|
||||||
Bristles-02.gbr \
|
|
||||||
Bristles-03.gbr \
|
|
||||||
Oils-01.gbr \
|
|
||||||
Oils-02.gbr \
|
|
||||||
Oils-03.gbr
|
|
||||||
|
|
||||||
EXTRA_DIST = $(brushmediadata_DATA)
|
|
2
data/brushes/Sketch/.gitignore
vendored
2
data/brushes/Sketch/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/Makefile.in
|
|
||||||
/Makefile
|
|
|
@ -1,17 +0,0 @@
|
||||||
## Makefile.am for gimp/data/brushes/Sketch
|
|
||||||
|
|
||||||
brushsketchdatadir = $(gimpdatadir)/brushes/Sketch
|
|
||||||
|
|
||||||
brushsketchdata_DATA = \
|
|
||||||
Chalk-01.gih \
|
|
||||||
Chalk-02.gih \
|
|
||||||
Chalk-03.gih \
|
|
||||||
Charcoal-01.gbr \
|
|
||||||
Charcoal-02.gbr \
|
|
||||||
Charcoal-03.gih \
|
|
||||||
Pencil-01.gih \
|
|
||||||
Pencil-02.gih \
|
|
||||||
Pencil-03.gih \
|
|
||||||
Pencil-Scratch.gbr
|
|
||||||
|
|
||||||
EXTRA_DIST = $(brushsketchdata_DATA)
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue