summaryrefslogtreecommitdiff
path: root/community/tuxpaint
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/tuxpaint
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/tuxpaint')
-rw-r--r--community/tuxpaint/PKGBUILD63
-rw-r--r--community/tuxpaint/tuxpaint-0.9.21-libpng1.5.patch19
2 files changed, 82 insertions, 0 deletions
diff --git a/community/tuxpaint/PKGBUILD b/community/tuxpaint/PKGBUILD
new file mode 100644
index 000000000..f83770517
--- /dev/null
+++ b/community/tuxpaint/PKGBUILD
@@ -0,0 +1,63 @@
+# $Id: PKGBUILD 91097 2013-05-19 11:35:37Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Mateusz Herych <heniekk@gmail.com>
+# Contributor: Sergio Jovani Guzman <moret.sjg@gmail.com>
+# Contributor: royrocks <royrocks13@gmail.com>
+
+pkgname=tuxpaint
+pkgver=0.9.21
+pkgrel=9
+pkgdesc='Drawing program designed for young children'
+arch=('x86_64' 'i686')
+url='http://www.tuxpaint.org/'
+license=('GPL')
+backup=('etc/tuxpaint/tuxpaint.conf')
+depends=('python2' 'fribidi' 'sdl_ttf' 'sdl_mixer' 'sdl_image' 'sdl_pango'
+ 'libpaper' 'librsvg')
+makedepends=('setconf' 'optipng')
+optdepends=('tuxpaint-stamps: more stamps'
+ 'tuxpaint-conf: configuration manager')
+source=("http://downloads.sourceforge.net/sourceforge/tuxpaint/$pkgname-$pkgver.tar.gz"
+ 'tuxpaint-0.9.21-libpng1.5.patch')
+sha256sums=('6d4f2b981643b5c937708e5e6cdaf318ae7b5562375327b4b1cb84611e65ede9'
+ '6d572467fce710c9323ba53bb3309eb7ed1401b4fee2c1f56533e871558a7f20')
+
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ setconf src/tuxpaint.desktop Categories 'Game;KidsGame;Graphics;RasterGraphics;'
+ sed -i 's:# fu:fu:' src/tuxpaint.conf
+
+ # python2 fix
+ for f in docs/zh_tw/mkTuxpaintIM.py fonts/locale/zh_tw_docs/maketuxfont.py; do
+ sed -i '0,/on/s//on2/' $f
+ done
+
+ # libpng15 fix
+ patch -p0 -i ../tuxpaint-0.9.21-libpng1.5.patch
+ sed -i 's:$(ARCH_LINKS):$(ARCH_LINKS) -lpng:' Makefile
+
+ # libpng16 fix
+ find -name '*.png' -exec optipng -quiet -force -fix {} +
+}
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make PREFIX=/usr
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make \
+ PREFIX=/usr \
+ DESTDIR="$pkgdir" \
+ GNOME_PREFIX=/usr \
+ X11_ICON_PREFIX="$pkgdir/usr/share/pixmaps" \
+ install
+ chmod -R 644 "$pkgdir/usr/share/doc/tuxpaint-dev/"*
+ chmod 755 "$pkgdir/usr/share/doc/tuxpaint-dev/html"
+}
+
+# vim:set ts=2 sw=2 et:
diff --git a/community/tuxpaint/tuxpaint-0.9.21-libpng1.5.patch b/community/tuxpaint/tuxpaint-0.9.21-libpng1.5.patch
new file mode 100644
index 000000000..25e80cd2a
--- /dev/null
+++ b/community/tuxpaint/tuxpaint-0.9.21-libpng1.5.patch
@@ -0,0 +1,19 @@
+http://tuxpaint.cvs.sourceforge.net/viewvc/tuxpaint/tuxpaint/src/tuxpaint.c?r1=1.828&r2=1.829
+No longer directly accessing PNG structure members directly, now using png_set_IHDR(). (Patch from SF.net Bug #3386433)
+
+--- src/tuxpaint.c 2011/07/29 21:27:39 1.828
++++ src/tuxpaint.c 2011/08/08 17:59:12 1.829
+@@ -13425,12 +13425,7 @@
+ {
+ png_init_io(png_ptr, fi);
+
+- info_ptr->width = surf->w;
+- info_ptr->height = surf->h;
+- info_ptr->bit_depth = 8;
+- info_ptr->color_type = PNG_COLOR_TYPE_RGB;
+- info_ptr->interlace_type = 1;
+- info_ptr->valid = 0; /* will be updated by various png_set_FOO() functions */
++ png_set_IHDR(png_ptr, info_ptr, surf->w, surf->h, 8, PNG_COLOR_TYPE_RGB, 1, PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
+
+ png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
+ PNG_sRGB_INTENT_PERCEPTUAL);