summaryrefslogtreecommitdiff
path: root/community-testing
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-06 12:13:36 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-06 12:13:36 -0300
commit4a9023500f5b915ccbf556296c756ce3f2faef5b (patch)
tree28258893f8d5094fdb84ede1e97afa36a5276696 /community-testing
parent3dac66779d53dc58badb4f964177f7692c1bd92c (diff)
parentbdb5b3e66f6afa586ea147f69af5e4ba388f7615 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: core/gcc/PKGBUILD extra/shared-mime-info/PKGBUILD extra/smb4k/PKGBUILD libre/audacious-plugins-libre/PKGBUILD multilib/gcc-multilib/PKGBUILD testing/xfig/PKGBUILD
Diffstat (limited to 'community-testing')
-rw-r--r--community-testing/xvkbd/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community-testing/xvkbd/PKGBUILD b/community-testing/xvkbd/PKGBUILD
new file mode 100644
index 000000000..c48eda54b
--- /dev/null
+++ b/community-testing/xvkbd/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 63468 2012-02-04 13:50:13Z ibiru $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Contributor: Benjamin Andresen <benny@klapmuetz.org>
+# Contributor: Mikko Seppдlд <t-r-a-y@mbnet.fi>
+
+pkgname=xvkbd
+pkgver=3.2
+pkgrel=3
+pkgdesc="virtual (graphical) keyboard program for X Window System"
+arch=('i686' 'x86_64')
+url="http://homepage3.nifty.com/tsato/xvkbd/"
+license=('GPL')
+depends=('libxmu' 'xaw3d' 'glibc' 'libxt' 'libxtst' 'libxp' 'libxpm')
+makedepends=('imake')
+source=(http://homepage3.nifty.com/tsato/xvkbd/xvkbd-$pkgver.tar.gz)
+md5sums=('1bce8d6c27e6e7df92ec09b414f82dad')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ xmkmf
+ sed -i 's|#include <X11/Xaw/|#include <X11/Xaw3d/|' xvkbd.c
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR=$pkgdir install
+ # fix
+ rm -f $pkgdir/usr/lib/X11/app-defaults
+ mkdir -p $pkgdir/usr/lib/X11
+ mv $pkgdir/etc/X11/app-defaults $pkgdir/usr/lib/X11/
+ rm -rf $pkgdir/etc/
+}