diff options
author | Tim Dickson <dickson.tim@googlemail.com> | 2022-08-21 10:26:41 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-08-27 22:50:26 +0700 |
commit | 5c06499fd6a37f20a1f21b9bc07944073674f37e (patch) | |
tree | b536b3a50f5544213dff3481383eb607d8f7e470 /graphics | |
parent | 82e8c1f81cbea61c4c4b23f24fdb1c1e41f97ae9 (diff) | |
download | slackbuilds-5c06499fd6a37f20a1f21b9bc07944073674f37e.tar.gz |
graphics/tuxpaint: Patched for new SDL2_Pango.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/tuxpaint/README | 7 | ||||
-rw-r--r-- | graphics/tuxpaint/tuxpaint.SlackBuild | 7 | ||||
-rw-r--r-- | graphics/tuxpaint/tuxpaint_SDL2_Pango.patch | 19 |
3 files changed, 29 insertions, 4 deletions
diff --git a/graphics/tuxpaint/README b/graphics/tuxpaint/README index 61289d88b4..8d4a427dac 100644 --- a/graphics/tuxpaint/README +++ b/graphics/tuxpaint/README @@ -9,8 +9,9 @@ and has entertaining, child-oriented additions such as sound effects. tuxpaint-config is now also included as a gui tool to configure tuxpaint. -Note: Please uninstall inkscape before creating this package to avoid -a couple of file artifacts outside the package directory. inkscape can -be reinstalled once this package is created. +Note: Please uninstall inkscape before creating this package if you +want to avoid a couple of file artifacts outside the package directory. +inkscape can be reinstalled once this package is created. This is the sdl2 version of the program. Note: dependencies have changed +note: this build update (3) is needed for using SDL2_Pango>0.9.0 diff --git a/graphics/tuxpaint/tuxpaint.SlackBuild b/graphics/tuxpaint/tuxpaint.SlackBuild index 5c3bd40acb..6bc864e373 100644 --- a/graphics/tuxpaint/tuxpaint.SlackBuild +++ b/graphics/tuxpaint/tuxpaint.SlackBuild @@ -13,13 +13,14 @@ # - stop spamming the real /usr (ugh). # 20220610 tim dickson: updated to 0.9.28 . sticking with sdl1 version for now # 20220629 tim dickson: changed to the sdl2 version +# 20220820 tim dickson: added patch to work with newer SDL2_Pango. should be fixed upstream in next release cd $(dirname $0) ; CWD=$(pwd) PRGNAM=tuxpaint VERSION=${VERSION:-0.9.28} CONFVER=${CONFVER:-0.0.19} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -79,6 +80,10 @@ mkdir trans # using the xdg-icon-resource and xdg-desktop-menu tools: these don't # support DESTDIR or any other way to control where the files get # installed (meaning they install to the real /usr, not $PKG/usr). + +#patch to fix working with newer SDL2_Pango. remove for next version update +patch <$CWD/tuxpaint_SDL2_Pango.patch + sed -i '/^linux_ARCH_INSTALL/s,install-xdg ,,' Makefile make PREFIX=/usr LIBDIRSUFFIX=$LIBDIRSUFFIX OPTFLAGS="$SLKCFLAGS" diff --git a/graphics/tuxpaint/tuxpaint_SDL2_Pango.patch b/graphics/tuxpaint/tuxpaint_SDL2_Pango.patch new file mode 100644 index 0000000000..11011b49fe --- /dev/null +++ b/graphics/tuxpaint/tuxpaint_SDL2_Pango.patch @@ -0,0 +1,19 @@ +--- a/Makefile ++++ b/Makefile +@@ -294,6 +294,7 @@ + + # SDL Pango is needed to render complex scripts like Thai and Arabic + SDL2_PANGO_LIB:=$(call linktest,SDL2_Pango,-lSDL2_Pango,$(SDL_LIBS)) ++SDL2_PANGO_CFLAGS:=$(shell $(PKG_CONFIG) --cflags SDL2_Pango) + NOPANGOFLAG:=$(if $(SDL2_PANGO_LIB),,-DNO_SDLPANGO$(warning -lSDL2_Pango failed, no scripts for you!)) + + SDL_LIBS+=$(SDL_MIXER_LIB) $(SDL2_PANGO_LIB) +@@ -341,6 +342,7 @@ + -Waggregate-return \ + -Wstrict-prototypes -Wmissing-prototypes \ + $(shell src/test-option.sh -Wstrict-aliasing=2) \ ++ $(SDL2_PANGO_CFLAGS) \ + $(ARCH_CFLAGS) + + DEFS:=-DVER_DATE=\"$(VER_DATE)\" -DVER_VERSION=\"$(VER_VERSION)\" \ + |