You are not logged in.
Pages: 1
hi,
building vice with "--enable-gnomui3" option make a fullscreen problem: it doesn't fill the screen:
https://s18.postimg.org/med7q0r5l/vicex64.png
With "--enable-gnomui" all works good.
https://bugs.archlinux.org/task/56765
https://sourceforge.net/p/vice-emu/bugs/966/
PKBUILD from x64 version:
# $Id$
# Maintainer:
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=vice
pkgver=3.1
pkgrel=2
pkgdesc="The Versatile Commodore 8-bit Emulator"
arch=('i686')
license=('GPL')
url="http://vice-emu.sourceforge.net/"
depends=('gtkglext' 'libpulse' 'giflib')
makedepends=('xorg-bdftopcf' 'xorg-mkfontdir' 'libpcap' 'libxaw' 'ffmpeg')
source=("http://downloads.sourceforge.net/project/vice-emu/releases/${pkgname}-${pkgver}.tar.gz"
'disable-fc-cache.patch')
sha256sums=('3eb8159633816095006dec36c5c3edd055a87fd8bda193a1194a6801685d1240'
'8058210e092c4943a55baeff47e6d5f3661aeb3686fd1f75e07f47888da9cc98')
prepare() {
cd ${pkgname}-${pkgver}
rm -rf src/lib/{liblame,libx264,libffmpeg}
patch -p1 -i "$srcdir/disable-fc-cache.patch"
sed -i 's/lib64/lib/g' configure.ac
autoreconf -fi
}
build() {
cd ${pkgname}-${pkgver}
./configure --prefix=/usr \
--libdir=/usr/lib \
--enable-gnomeui \
--enable-external-ffmpeg
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" realdocdir="/usr/share/doc/vice" install -j1
ln -s /usr/share/doc/vice "${pkgdir}/usr/lib/vice/doc"
}
Offline
stable has: vice-3.1-1-i686.pkg.tar.xz
testing has: vice-3.1-2.0-i686.pkg.tar.xz
You can use the one from testing for now till the patch has propagated to stable.
Offline
strangely vice-3.1-2 doesn't work good on full screen: scrolling in unstable (in windows mode are good). maybe it's a problem of my video cart ati.
Offline
Pages: 1