# $Id: PKGBUILD 93636 2013-07-08 07:28:15Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski # Contributor: Brad Fanella # Contributor: Andrea Scarpino # Contributor: tobias pkgname=openbox pkgver=3.5.0 pkgrel=9 pkgdesc='Highly configurable and lightweight X11 window manager' arch=('i686' 'x86_64') url='http://openbox.org' license=('GPL') depends=('startup-notification' 'libxml2' 'libxinerama' 'libxrandr' 'libxcursor' 'pango' 'imlib2') optdepends=('python2: for the xdg-autostart script') groups=('lxde') options=('!libtool') backup=('etc/xdg/openbox/menu.xml' 'etc/xdg/openbox/rc.xml' 'etc/xdg/openbox/autostart' 'etc/xdg/openbox/environment') source=(http://www.icculus.org/openbox/releases/$pkgname-$pkgver.tar.gz openbox-3.5.0-Fix-crash-on-NET_WM_MOVERESIZE_CANCEL.patch openbox-3.5.0-title-matching.patch openbox-3.5.0-which-2.20.patch) md5sums=('00441b53cf14c03566c8e82643544ff9' 'f2e5198a9dfc803c59fd42448a85f2da' '0a11d7149da210a31ef88f8a9c717711' '7ca3b5244bb092d46f5bcf1e2bdf4a18') prepare() { cd $pkgname-$pkgver patch -Np1 -i "$srcdir"/openbox-3.5.0-Fix-crash-on-NET_WM_MOVERESIZE_CANCEL.patch # FS#29812 patch -Np1 -i "$srcdir"/openbox-3.5.0-title-matching.patch # OB#5277 patch -Np1 -i "$srcdir"/openbox-3.5.0-which-2.20.patch # FS#11455 sed -i 's|/usr/bin/env python|/usr/bin/env python2|' \ data/autostart/openbox-xdg-autostart } build() { cd $pkgname-$pkgver ./configure --prefix=/usr \ --with-x \ --enable-startup-notification \ --sysconfdir=/etc \ --libexecdir=/usr/lib/openbox make } package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install rm "$pkgdir"/usr/bin/{gdm-control,gnome-panel-control} sed -i 's:startkde:/usr/bin/\0:' \ "$pkgdir"/usr/share/xsessions/openbox-kde.desktop sed -i 's:=gnome-session:=/usr/bin/gnome-session:' \ "$pkgdir"/usr/share/xsessions/openbox-gnome.desktop }