summaryrefslogtreecommitdiffstats
path: root/abs/not_built/extra/xfconf/PKGBUILD
blob: f6b97cf703b981a18be80b72d6e36a7128c6c317 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# $Id: PKGBUILD 87984 2010-08-18 20:44:29Z andyrtr $
# Maintainer: tobias <tobias funnychar archlinux.org>

pkgname=xfconf
pkgver=4.6.2
pkgrel=2
pkgdesc="a simple client-server configuration storage and query system"
arch=('i686' 'x86_64')
license=('GPL2')
url="http://www.xfce.org/"
groups=('xfce4')
# http://www.xfce.org/documentation/requirements
# keep dbus and gtk2, see also http://bugs.archlinux.org/task/14536
depends=( "libxfce4util>=4.6.2" "dbus-glib>=0.86" 'dbus>=1.2.24' 'gtk2>=2.20.1')
makedepends=('pkgconfig' 'perl-extutils-depends' 'perl-extutils-pkgconfig' 'glib-perl' 'intltool' 'chrpath')
options=('!libtool' '!emptydirs')
replaces=('libxfce4mcs' 'xfce-mcs-manager' 'xfce-mcs-plugins')
conflicts=('libxfce4mcs' 'xfce-mcs-manager' 'xfce-mcs-plugins')
source=(http://archive.xfce.org/src/xfce/${pkgname}/4.6/${pkgname}-${pkgver}.tar.bz2)
md5sums=('5ff93c15077c6dbbcd38c437bc1ab2ef')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/xfce4 \
    --localstatedir=/var --disable-static --with-perl-options=INSTALLDIRS="vendor" 
  make
}

package() {
  cd ${srcdir}/${pkgname}-${pkgver}
  make DESTDIR=${startdir}/pkg install || return 1
  # remove unneeded dynloader bootstrap file
  rm ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.bs 
  
  # fix insecure rpath, http://bugs.archlinux.org/task/19980
  chrpath -d ${pkgdir}/usr/lib/perl5/vendor_perl/auto/Xfce4/Xfconf/Xfconf.so
}