diff options
Diffstat (limited to 'community/tvision')
-rw-r--r-- | community/tvision/PKGBUILD | 25 | ||||
-rw-r--r-- | community/tvision/tvision-build-fix.patch | 13 |
2 files changed, 38 insertions, 0 deletions
diff --git a/community/tvision/PKGBUILD b/community/tvision/PKGBUILD new file mode 100644 index 000000000..a07df4e45 --- /dev/null +++ b/community/tvision/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 57007 2011-10-18 03:49:00Z ebelanger $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=tvision +pkgver=2.2.1_r1 +pkgrel=2 +pkgdesc="turbo vision library port (console interface)" +arch=(i686 x86_64) +url="http://tvision.sourceforge.net" +license=("GPL") +depends=(gpm gcc-libs libxmu) +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 + 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 |