summaryrefslogtreecommitdiff
path: root/community/freeimage
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-03-20 11:40:04 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-03-20 11:40:04 +0100
commitfa1021504c53eb066826883dab3918e432b93444 (patch)
tree312e7333a30cb09f648a85ec1a78bfb151ade116 /community/freeimage
parent65de768385d6ee97a2b45c807ab9955c642da7c0 (diff)
parent99136e3a2e9f6f07a7ff08d5721bce354b853c8b (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/freeimage/PKGBUILD community/gummi/PKGBUILD community/mfs/PKGBUILD community/nzbget/PKGBUILD community/openntpd/PKGBUILD community/proj/PKGBUILD community/yaws/PKGBUILD gnome-unstable/totem-plparser/PKGBUILD gnome-unstable/totem/PKGBUILD multilib/lib32-libice/PKGBUILD multilib/lib32-libx11/PKGBUILD multilib/lib32-libxcomposite/PKGBUILD multilib/lib32-libxdmcp/PKGBUILD multilib/lib32-libxext/PKGBUILD multilib/lib32-libxinerama/PKGBUILD multilib/lib32-libxrandr/PKGBUILD multilib/lib32-libxss/PKGBUILD multilib/lib32-libxtst/PKGBUILD multilib/lib32-libxxf86vm/PKGBUILD testing/bash/PKGBUILD testing/bash/system.bashrc
Diffstat (limited to 'community/freeimage')
-rw-r--r--community/freeimage/PKGBUILD21
1 files changed, 7 insertions, 14 deletions
diff --git a/community/freeimage/PKGBUILD b/community/freeimage/PKGBUILD
index e80272b38..225791d59 100644
--- a/community/freeimage/PKGBUILD
+++ b/community/freeimage/PKGBUILD
@@ -1,44 +1,37 @@
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Mihai Militaru <mihai.militaru@gmx.com>
# Contributor: scippio <scippio@berounet.cz>
pkgname=freeimage
-pkgver=3.15.1
+pkgver=3.15.3
pkgrel=1
-pkgdesc="Library project for developers who would like to support popular graphics image formats."
+pkgdesc="Library project for developers who would like to support popular graphics image formats"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL' 'custom:FIPL')
url="http://freeimage.sourceforge.net/"
depends=('gcc-libs')
makedepends=('hd2u')
-source=("http://downloads.sourceforge.net/project/freeimage/Source%20Distribution/${pkgver}/FreeImage${pkgver//./}.zip"
- 'gcc4.5_ln.patch')
-md5sums=('450d2ff278690b0d1d7d7d58fad083cc'
- 'f85279b2572a0a9e03775909cd9cd759')
+source=("http://downloads.sourceforge.net/project/freeimage/Source%20Distribution/${pkgver}/FreeImage${pkgver//./}.zip")
+md5sums=('6c305b4086500ff8541c596ea6fc7cd7')
build() {
cp -r FreeImage FreeImagefip
cd FreeImage
- patch -Np1 < ${srcdir}/gcc4.5_ln.patch
make
cd ${srcdir}/FreeImagefip
- patch -Np1 < ${srcdir}/gcc4.5_ln.patch
make -f Makefile.fip
}
package() {
cd FreeImage
- make DESTDIR=${pkgdir} install
+ make DESTDIR=${pkgdir} install || true
cd ${srcdir}/FreeImagefip
make -f Makefile.fip DESTDIR=${pkgdir} install
- install -D -m644 ${srcdir}/FreeImage/license-fi.txt \
- ${pkgdir}/usr/share/licenses/${pkgname}/license-fi.txt
-
- ln -s libfreeimage-${pkgver}.so ${pkgdir}/usr/lib/libfreeimage.so
- ln -s libfreeimageplus-${pkgver}.so ${pkgdir}/usr/lib/libfreeimageplus.so
+ install -D -m644 ${srcdir}/FreeImage/license-fi.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}