summaryrefslogtreecommitdiff
path: root/community/tuxpaint
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/tuxpaint
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 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, 0 insertions, 82 deletions
diff --git a/community/tuxpaint/PKGBUILD b/community/tuxpaint/PKGBUILD
deleted file mode 100644
index f83770517..000000000
--- a/community/tuxpaint/PKGBUILD
+++ /dev/null
@@ -1,63 +0,0 @@
-# $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
deleted file mode 100644
index 25e80cd2a..000000000
--- a/community/tuxpaint/tuxpaint-0.9.21-libpng1.5.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-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);