Skip to content

Instantly share code, notes, and snippets.

@tlatsas
Created May 2, 2012 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlatsas/2574949 to your computer and use it in GitHub Desktop.
Save tlatsas/2574949 to your computer and use it in GitHub Desktop.
t4k common with libpng 1.5
--- src/t4k_common-0.1.1/src/t4k_loaders.c 2011-04-08 05:46:07.000000000 +0300
+++ src.new/t4k_common-0.1.1/src/t4k_loaders.c 2012-05-02 10:35:41.836670434 +0300
@@ -1028,12 +1028,9 @@
{
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_ALPHA;
- 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_ALPHA, 1,
+ PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
png_set_sRGB_gAMA_and_cHRM(png_ptr, info_ptr,
PNG_sRGB_INTENT_PERCEPTUAL);
# Maintainer: Tasos Latsas < tlatsas2000 at gmail dot com >
pkgname=t4k_common
pkgver=0.1.1
pkgrel=1
pkgdesc="Common library for code shared by TuxType and TuxMath"
arch=('i686' 'x86_64')
url="http://tux4kids.alioth.debian.org/"
license=('GPL')
depends=('sdl_image' 'sdl_mixer' 'sdl_pango' 'sdl_net' 'librsvg')
makedepends=('make')
options=('!docs')
source=("https://alioth.debian.org/frs/download.php/3540/${pkgname}-${pkgver}.tar.gz", 'fix-into_ptr.patch')
sha1sums=('626eddedee86059ccab593a226c8d98571018b46' 'aa909083dec77cf7a0e8c25ef422e05b8a84efe1')
build() {
cd "${srcdir}"/${pkgname}-${pkgver}
patch -Np2 -i "${srcdir}/fix-into_ptr.patch"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}"/${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}
# vim: ts=2 sw=2 et:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment