llk_linux 2.3 errror in gentoo
run-time error, i use gdb find out
main.c line 1624
ui_pixbuf.pause = gdk_pixbuf_new_from_file("/tmp/llk_pause.jpg",NULL);
ui_pixbuf.mainback = gdk_pixbuf_new_from_file("/tmp/llk_mainback.jpg",NULL);
gdk_pixbuf_new_from_file return 0, it cann't recognize jpg format
here is llk_linux-2.3.ebuild for gentoo user
[code:1]# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="Lian lian Kan for linux"
HOMEPAGE="http://llk-linux.sourceforge.net/ \
http://linuxfans.org/nuke/modules.php?name=Forums&file=viewforum&f=65"
SRC_URI="http://llk-linux.sourceforge.net/dist/${P}beta1.tar.gz"
LICENSE="GPL"
SLOT="0"
KEYWORDS="~x86 ~mips ~amd64"
IUSE=""
#RESTRICT="strip"
DEPEND=""
RDEPEND="${DEPEND}"
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}[/code:1]