It has been some time since the first release of lrg, we just reached 0.2.0 and I think that's a good milestone for an ebuild. So here it is:

(This is available in my overlay as well)

==========================================

[code]# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit python distutils

DESCRIPTION="Python GUI tool for rapidshare premium member to download rapidshare links."
HOMEPAGE="http://www.phamngochai.net/linux-rapidshare-grabber/"
SRC_URI="mirror://sourceforge/lrg/${P}.tar.gz"

LICENSE="GPL"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

DEPEND="virtual/python
                dev-python/wxpython
                dev-python/pycurl"
RDEPEND="${DEPEND}"

src_unpack() {
        unpack ${A}
}

src_compile() {
        cd "${PN}"
        distutils_src_compile
}
src_install() {
        cd "${PN}"
        distutils_src_install
}[/code]