diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/tvision |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/tvision')
-rw-r--r-- | community/tvision/PKGBUILD | 27 | ||||
-rw-r--r-- | community/tvision/tvision-build-fix.patch | 13 |
2 files changed, 40 insertions, 0 deletions
diff --git a/community/tvision/PKGBUILD b/community/tvision/PKGBUILD new file mode 100644 index 000000000..2363dde33 --- /dev/null +++ b/community/tvision/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 23701 2010-08-14 23:06:10Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=tvision +pkgver=2.2.1_r1 +pkgrel=1 +pkgdesc="turbo vision library port (console interface)" +arch=(i686 x86_64) +url="http://tvision.sourceforge.net" +license=("GPL") +depends=(gpm gcc-libs libxmu allegro) +options=('!makeflags') +source=("http://downloads.sourceforge.net/project/tvision/UNIX/2.2.1%20CVS20100714%20Source%20and%20Debian%205.0/rhtvision_${pkgver/_r/-}.tar.gz" + tvision-build-fix.patch) +md5sums=('46b815d86bbbb2f9b112b11f63e2f5a6' + 'e24e3520bd7c6beb441716b8998b4c64') + +build() { + cd $srcdir/$pkgname + + patch -p1 <$srcdir/tvision-build-fix.patch + + ./configure --prefix=/usr --include=/usr/include + make || return 1 + make prefix=$pkgdir/usr install +} diff --git a/community/tvision/tvision-build-fix.patch b/community/tvision/tvision-build-fix.patch new file mode 100644 index 000000000..51fea1bda --- /dev/null +++ b/community/tvision/tvision-build-fix.patch @@ -0,0 +1,13 @@ +diff -wbBur tvision/classes/x11/x11src.cc tvision.q/classes/x11/x11src.cc +--- tvision/classes/x11/x11src.cc 2009-12-29 15:52:24.000000000 +0000 ++++ tvision.q/classes/x11/x11src.cc 2010-08-14 22:52:01.000000000 +0000 +@@ -40,6 +40,9 @@ + // That's a nasty side effect: X defines Boolean! + #if (defined(TVOS_UNIX) || defined(TVCompf_Cygwin)) && defined(HAVE_X11) + #include <X11/Xmu/Atoms.h> ++ #include <sys/types.h> ++ #include <sys/stat.h> ++ #include <fcntl.h> + #endif + + #define Uses_stdio |