From 1e6588d64f084decf287a58b7ff93ff0ce4d0446 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 4 Jun 2012 00:01:23 +0000 Subject: Mon Jun 4 00:01:23 UTC 2012 --- community/rxvt-unicode/PKGBUILD | 38 +++++++++++++++++++++++++------------- 1 file changed, 25 insertions(+), 13 deletions(-) (limited to 'community/rxvt-unicode') diff --git a/community/rxvt-unicode/PKGBUILD b/community/rxvt-unicode/PKGBUILD index 77c2758f4..62ab3add2 100644 --- a/community/rxvt-unicode/PKGBUILD +++ b/community/rxvt-unicode/PKGBUILD @@ -1,17 +1,17 @@ -# $Id: PKGBUILD 68942 2012-04-06 10:19:39Z seblu $ +# $Id: PKGBUILD 71847 2012-06-02 10:32:52Z bluewind $ # Maintainer: Sébastien Luttringer -# Contributor: Angel Velasquez +# Contributor: Angel Velasquez # Contributor: tobias # Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org pkgname=rxvt-unicode pkgver=9.15 -pkgrel=2 +pkgrel=3 pkgdesc='An unicode enabled rxvt-clone terminal emulator (urxvt)' arch=('i686' 'x86_64') url='http://software.schmorp.de/pkg/rxvt-unicode.html' license=('GPL') -depends=('gcc-libs' 'libxft' 'gdk-pixbuf2' 'perl') +depends=('libxft' 'gdk-pixbuf2' 'perl' 'startup-notification') optdepends=('gtk2-perl: to use the urxvt-tabbed') source=( "http://dist.schmorp.de/rxvt-unicode/$pkgname-$pkgver.tar.bz2" @@ -26,38 +26,50 @@ md5sums=('15595aa326167ac5eb68c28d95432faf' build() { cd $pkgname-$pkgver - ./configure --prefix=/usr \ + ./configure \ + --prefix=/usr \ --with-terminfo=/usr/share/terminfo \ --enable-256-color \ + --enable-combining \ + --enable-fading \ --enable-font-styles \ - --enable-xim \ + --enable-iso14755 \ --enable-keepscrolling \ + --enable-lastlog \ + --enable-mousewheel \ + --enable-next-scroll \ + --enable-perl \ + --enable-pixbuf \ + --enable-pointer-blank \ + --enable-rxvt-scroll \ --enable-selectionscrolling \ + --enable-slipwheeling \ --enable-smart-resize \ - --enable-pixbuf \ + --enable-startup-notification \ --enable-transparency \ + --enable-unicode3 \ --enable-utmp \ --enable-wtmp \ - --enable-lastlog \ + --enable-xft \ + --enable-xim \ + --enable-xterm-scroll \ --disable-frills make } package() { - cd $pkgname-$pkgver + pushd $pkgname-$pkgver # workaround terminfo installation export TERMINFO="$pkgdir/usr/share/terminfo" install -d "$TERMINFO" - make DESTDIR="$pkgdir" install - # install the tabbing wrapper ( requires gtk2-perl! ) sed -i 's/\"rxvt\"/"urxvt"/' doc/rxvt-tabbed install -Dm 755 doc/rxvt-tabbed "$pkgdir/usr/bin/urxvt-tabbed" - + popd # install freedesktop menu for _f in urxvt urxvtc urxvt-tabbed; do - install -Dm644 ../$_f.desktop "$pkgdir/usr/share/applications/$_f.desktop" + install -Dm644 $_f.desktop "$pkgdir/usr/share/applications/$_f.desktop" done } -- cgit v1.2.3-54-g00ecf