Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#25835 - foobillard freeze (pc too!) when the game is finished
Attached to Project:
Arch Linux
Opened by Pierre-Henri Berard (pierrebe) - Wednesday, 31 August 2011, 00:22 GMT
Last edited by Eric Belanger (Snowman) - Friday, 16 September 2011, 04:13 GMT
Opened by Pierre-Henri Berard (pierrebe) - Wednesday, 31 August 2011, 00:22 GMT
Last edited by Eric Belanger (Snowman) - Friday, 16 September 2011, 04:13 GMT
|
DetailsDescription:
The title explain exactly the bug.The origin is probably Mesa 7.11. With Mesa 7.10, foobillard worked fine. Additional info: * package version(s): foobillard 3.0a-6 on arch x86_64 and ati-dri driver (r300) * config and/or log files etc. Steps to reproduce: Play, win and... reboot! (I didn't find something else than to reboot) |
This task depends upon
Closed by Eric Belanger (Snowman)
Friday, 16 September 2011, 04:13 GMT
Reason for closing: Won't fix
Additional comments about closing: see last comment
Friday, 16 September 2011, 04:13 GMT
Reason for closing: Won't fix
Additional comments about closing: see last comment
##########################################################################
pkgname=foobillard++
pkgver=3.4beta
pkgrel=1
pkgdesc="An OpenGL billiard game for Linux"
arch=('i686' 'x86_64')
url="http://foobillardplus.sourceforge.net/"
license=('GPL2')
depends=('bzip2' 'freetype2' 'libpng' 'mesa' 'sdl_net')
replaces=('foobillard')
conflicts=('foobillard')
source=(http://downloads.sourceforge.net/foobillardplus/foobillardplus-${pkgver}.tar.gz)
md5sums=('130418a45ba84b4132f9b27712feb919')
sha1sums=('d8723568e460ee62cb913b0c8d7c9a9f557395ee')
build() {
cd "${srcdir}/foobillardplus-${pkgver}"
sed -i 's|$prefix/foobillardplus|$prefix|' configure
sed -i 's|$prefix/data|$prefix/share/foobillardplus|' configure
sed -i 's|"/data"|"/share/foobillardplus"|' src/language.c
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/foobillardplus-${pkgver}"
install -Dm755 src/foobillardplus "${pkgdir}"/usr/bin/foobillardplus
install -d "${pkgdir}"/usr/share/foobillardplus
cp -R data/* "${pkgdir}"/usr/share/foobillardplus
find $pkgdir -depth -type d -name .svn -exec rm -rf {} \;
}
##########################################################################