summaryrefslogtreecommitdiff
path: root/community/mtpaint/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/mtpaint/PKGBUILD')
-rw-r--r--community/mtpaint/PKGBUILD15
1 files changed, 11 insertions, 4 deletions
diff --git a/community/mtpaint/PKGBUILD b/community/mtpaint/PKGBUILD
index e12c79de0..5717f5822 100644
--- a/community/mtpaint/PKGBUILD
+++ b/community/mtpaint/PKGBUILD
@@ -1,17 +1,18 @@
-# $Id: PKGBUILD 94750 2013-07-29 22:14:55Z arodseth $
+# $Id: PKGBUILD 94929 2013-08-01 07:01:24Z bpiotrowski $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Roman Kyrylych <roman@archlinux.org>
# Contributor: yosh64 <yosh64.at.gmail.dot.com>
pkgname=mtpaint
pkgver=3.40
-pkgrel=7
+pkgrel=8
pkgdesc='Simple paint program for creating icons and pixel based artwork'
arch=('x86_64' 'i686')
url='http://mtpaint.sourceforge.net/'
license=('GPL3')
depends=('gtk2' 'giflib' 'openjpeg' 'desktop-file-utils' 'lcms2')
-install=mtpaint.install
+makedepends=('setconf')
+install='mtpaint.install'
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2"
'libpng15.patch')
sha256sums=('ef321d2b404839c7b909bdf5283eb22a37fbdd35b4cc9e380ddc400573d7c890'
@@ -22,14 +23,20 @@ prepare() {
patch -Np1 -i '../libpng15.patch'
sed -i 's:openjpeg.h:openjpeg-1.5/openjpeg.h:' src/png.c
+ sed -i 's:EGifOpenFileName(file_name, FALSE):EGifOpenFileName(file_name, FALSE, NULL):' src/png.c
+ sed -i 's:DGifOpenFileName(file_name):DGifOpenFileName(file_name, NULL):g' src/png.c
+ sed -i 's:MakeMapObject(:GifMakeMapObject(:g' src/png.c
+ sed -i 's:FreeMapObject(:GifFreeMapObject(:g' src/png.c
}
build() {
cd "$srcdir/$pkgname-$pkgver"
- export CFLAGS="-w `pkg-config gtk+-2.0 --cflags` $CFLAGS"
+ export CFLAGS="`pkg-config gtk+-2.0 --cflags` $CFLAGS"
./configure --prefix=/usr --mandir=/usr/share/man man intl gif jpeg tiff
sed -i 's:-lpng:-lpng -lgif:' _conf.txt
+ sed -i 's:ungif:gif:g' _conf.txt
+ setconf _conf.txt CC 'gcc -w'
make
}