Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 19494 - grdesktop has a keymap path problem and is outdated anyway
Summary: grdesktop has a keymap path problem and is outdated anyway
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Brad Cowan (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-04-17 13:53 UTC by Christian Birchinger (RETIRED)
Modified: 2003-05-05 00:41 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
ebuild for grdesktop 0.19 (grdesktop-0.19.ebuild,934 bytes, patch)
2003-04-27 11:44 UTC, David Ropte
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Christian Birchinger (RETIRED) gentoo-dev 2003-04-17 13:53:06 UTC
grdesktop searches for the keymaps in /usr/X11R6 instead of /usr (where our
rdesktop ebuild stores the keymaps)

Reproducible: Always
Steps to Reproduce:
1. emerge it
2. start it
3.

Actual Results:  
it will complain about the missing keymaps

Expected Results:  
it should have been compiled with the right path

latest version is 0.19 and offers a compile option for this.

- bump version to 0.19
- add --with-keymap-path=/usr/share/rdesktop/keymaps to configure
Comment 1 David Ropte 2003-04-27 11:44:50 UTC
Created attachment 11224 [details, diff]
ebuild for grdesktop 0.19

ebuild for grdesktop 0.19 that fixes the path problem.
Comment 2 David Ropte 2003-04-27 11:46:51 UTC
Comment on attachment 11224 [details, diff]
ebuild for grdesktop 0.19

># Copyright 1999-2003 Gentoo Technologies, Inc.
># Distributed under the terms of the GNU General Public License v2
># $Header: /home/cvsroot/gentoo-x86/net-misc/grdesktop/grdesktop-0.19.ebuild,v 1.3 2003/02/13 14:50:55 vapier Exp $
>
>DESCRIPTION="Gtk2 frontend for rdesktop"
>HOMEPAGE="http://www.nongnu.org/grdesktop"
>SRC_URI="http://savannah.nongnu.org/download/${PN}/${PN}.pkg/${PV}/${P}.tar.gz"
>
>LICENSE="GPL-2"
>SLOT="0"
>KEYWORDS="x86"
>
>IUSE=""
>
>DEPEND=">=x11-libs/gtk+-2.0.6-r3
>	>=net-misc/rdesktop-1.1.0.19.9.0
>	>=app-text/docbook2X-0.6.1"
>
>#RDEPEND=""
>
>S="${WORKDIR}/${P}"
>
>src_compile() {
>	econf \
>	    --host=${CHOST} \
>	    --prefix=/usr \
>           --with-keymap-path=/usr/share/rdesktop/keymaps \
>	    --infodir=/usr/share/info \
>	    --datadir=/usr/share \
>	    --mandir=/usr/share/man || die "./configure failed"
>	emake || die
>}
>
>src_install() {
>	einstall
>
>	dodoc AUTHORS ABOUT-NLS COPYING ChangeLog INSTALL NEWS README TODO    
>}
Comment 3 Brad Cowan (RETIRED) gentoo-dev 2003-05-05 00:41:46 UTC
my fault...had been added to cvs with that fix since march, for some reason I must have never ran cvs commit :)