You are not logged in.
Theres a patch here to make the gnome pager respond to the scroll wheel:
http://bugzilla.gnome.org/show_bug.cgi?id=130308
Can anyone be kind enough to give me step by step instructions on how to apply the patch?? Thanks!
Offline
There's example, write PKGBUILD yourself:
# Contributor: ganlu <iamganlu@21cn.com>
pkgname=stardict
pkgver=2.4.3
pkgrel=1
pkgdesc="Dictionary"
url="http://stardict.sourceforge.net/"
depends=('xorg' 'gtk2' 'libgnomeui')
backup=()
source=(http://belnet.dl.sourceforge.net/sourceforge/stardict/$pkgname-$pkgver.tar.bz2 http://61.153.200.30/lucida/linux-patch … gtk24.diff)
md5sums=( 'a578782c9df8e985a32069d19bae0960' '1f1a4dbf41d9ec76a5af9499c7451dc4')
build() {
cd $startdir/src/$pkgname-$pkgver
# enable stardict can be compiled under gtk 2.4.x
patch -p1 < ../../stardict-2.4.3-gtk24.diff
# ox dict patch
# patch -p1 < ../../stardict-ox-fix.diff
./configure --prefix=/usr --sysconfdir=/etc
make || return 1
make DESTDIR=$startdir/pkg install
}
Offline
thanks!
Offline