summaryrefslogtreecommitdiff
path: root/community/dia
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-06-11 22:48:58 +0000
committerroot <root@rshg047.dnsready.net>2011-06-11 22:48:58 +0000
commite392819937e37aa7f33ba83bb3e23bb1ccabaa37 (patch)
tree973aad7153fa658dce8cc60d9fc78f41c2dfa578 /community/dia
parent8bb6e3c7e5bec1adf2c819a1985de4d1f3347fb6 (diff)
Sat Jun 11 22:48:58 UTC 2011
Diffstat (limited to 'community/dia')
-rw-r--r--community/dia/PKGBUILD19
1 files changed, 10 insertions, 9 deletions
diff --git a/community/dia/PKGBUILD b/community/dia/PKGBUILD
index 89c7f852e..954be7621 100644
--- a/community/dia/PKGBUILD
+++ b/community/dia/PKGBUILD
@@ -1,12 +1,11 @@
-# $Id: PKGBUILD 32607 2010-11-15 15:15:59Z spupykin $
+# $Id: PKGBUILD 49059 2011-06-10 08:42:06Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Maintainer:
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
# Contributor: Gregor Ibic <gregor.ibic@intelicom.si>
pkgname=dia
pkgver=0.97.1
-pkgrel=3
+pkgrel=4
pkgdesc="A GTK+ based diagram creation program"
arch=('i686' 'x86_64')
license=('GPL')
@@ -15,30 +14,32 @@ install=dia.install
depends=('libxslt' 'desktop-file-utils' 'libart-lgpl' 'gtk2')
makedepends=('intltool' 'python2' 'docbook-xsl')
optdepends=('python2')
-options=('!libtool')
+options=('!libtool' 'docs')
source=("ftp://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.97/${pkgname}-${pkgver}.tar.bz2"
"dia-overflow-fix.patch")
md5sums=('57e44bb9f387559a0506b52a134deaf0'
'8fd9a2ad35b5a6fd8c758d7c73dbfe66')
-md5sums=('57e44bb9f387559a0506b52a134deaf0'
- '8fd9a2ad35b5a6fd8c758d7c73dbfe66')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
export PYTHON=/usr/bin/python2
sed -i 's#python2\.1#python2 python2.1#' configure
- patch -p1 <$srcdir/dia-overflow-fix.patch
+ patch -p1 <$srcdir/dia-overflow-fix.patch || true
./configure --prefix=/usr \
- --enable-db2html \
--with-cairo \
--with-python \
- --disable-gnome
+ --disable-gnome \
+ --with-hardbooks
+ sed -i 's#SUBDIRS = lib objects plug-ins shapes app bindings samples po sheets data doc tests installer#SUBDIRS = lib objects plug-ins shapes app bindings samples po sheets data tests installer#' Makefile
make
+ cd doc && make html
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
+ cd doc && make DESTDIR="${pkgdir}" install-html
+ ln -sf ../doc/dia/html $pkgdir/usr/share/dia/help
}