summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/libwmf
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/libwmf')
-rw-r--r--abs/core-testing/libwmf/PKGBUILD31
-rw-r--r--abs/core-testing/libwmf/libwmf.install18
2 files changed, 0 insertions, 49 deletions
diff --git a/abs/core-testing/libwmf/PKGBUILD b/abs/core-testing/libwmf/PKGBUILD
deleted file mode 100644
index 4ec415d..0000000
--- a/abs/core-testing/libwmf/PKGBUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Jan de Groot <jgc@archlinux.org>
-# Contributor: FJ <joostef@gmail.com>
-pkgname=libwmf
-pkgver=0.2.8.4
-pkgrel=5
-pkgdesc="A library for reading vector images in Microsoft's native Windows Metafile Format (WMF)."
-arch=(i686 x86_64)
-url="http://wvware.sourceforge.net/libwmf.html"
-license=("LGPL")
-depends=('libpng' 'libx11' 'freetype2' 'libjpeg' 'gsfonts' 'expat>=2.0')
-makedepends=('gtk2>=2.10.0' 'pkgconfig')
-options=(!libtool)
-install=libwmf.install
-source=(http://heanet.dl.sf.net/sourceforge/wvware/${pkgname}-${pkgver}.tar.gz)
-md5sums=(d1177739bf1ceb07f57421f0cee191e0)
-
-build() {
- cd ${startdir}/src/${pkgname}-${pkgver}
- sed -i -e 's/src include fonts doc/src include fonts/g' Makefile.in
- ./configure --prefix=/usr \
- --with-gsfontdir=/usr/share/fonts/Type1 \
- --with-fontdir=/usr/share/fonts/Type1 \
- --with-gsfontmap=/usr/share/ghostscript/8.15/lib/Fontmap.GS
- make || return 1
- make DESTDIR=${startdir}/pkg install
- #Remove fonts, these are in gsfonts
- rm -rf ${startdir}/pkg/usr/share/fonts
- #Remove static GTK loader, can't use it anyways
- rm -f ${startdir}/pkg/usr/lib/gtk-2.0/*/loaders/*.a
-}
diff --git a/abs/core-testing/libwmf/libwmf.install b/abs/core-testing/libwmf/libwmf.install
deleted file mode 100644
index 17fa278..0000000
--- a/abs/core-testing/libwmf/libwmf.install
+++ /dev/null
@@ -1,18 +0,0 @@
-post_install() {
- if [ -x /usr/bin/gdk-pixbuf-query-loaders ]; then
- /usr/bin/gdk-pixbuf-query-loaders > /etc/gtk-2.0/gdk-pixbuf.loaders
- fi
-}
-
-post_upgrade() {
- post_install $1
-}
-
-post_remove() {
- post_install $1
-}
-
-op=$1
-shift
-
-$op $*