summaryrefslogtreecommitdiff
path: root/community/rxvt-unicode
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-04 13:43:14 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-04 13:43:14 -0300
commitcbba2111ae585b17594535ec01f13bac66937331 (patch)
treef097dd36996ae3c7c96c9f91c1dd428670572b80 /community/rxvt-unicode
parentabcaa80b2d3bb539503c485bfea891adc7ffc193 (diff)
parent1e6588d64f084decf287a58b7ff93ff0ce4d0446 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/multipath-tools/PKGBUILD community/perl-gnome2-wnck/PKGBUILD community/znc/PKGBUILD core/openldap/PKGBUILD extra/mod_perl/PKGBUILD extra/perl-digest-nilsimsa/PKGBUILD extra/php/PKGBUILD extra/pidgin/PKGBUILD extra/postgresql/PKGBUILD extra/vim/PKGBUILD extra/xcb-util-keysyms/PKGBUILD extra/xcb-util-wm/PKGBUILD extra/xournal/PKGBUILD kde-unstable/kdepim/PKGBUILD multilib/lib32-libx11/PKGBUILD multilib/lib32-libxft/PKGBUILD multilib/lib32-xcb-util/PKGBUILD
Diffstat (limited to 'community/rxvt-unicode')
-rw-r--r--community/rxvt-unicode/PKGBUILD38
1 files changed, 25 insertions, 13 deletions
diff --git a/community/rxvt-unicode/PKGBUILD b/community/rxvt-unicode/PKGBUILD
index a29384742..f9f20d47d 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 <seblu@aur.archlinux.org>
-# Contributor: Angel Velasquez <angvp@archlinux.org>
+# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: tobias <tobias@archlinux.org>
# 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' 'mips64el')
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
}