blob: 4466add312fd0fd3e88162ec8214f117dc6d8615 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/slimrat/slimrat-1.0.ebuild,v 1.1 2010/03/10 21:33:28 scarabeus Exp $
EAPI=2
inherit eutils confutils
DESCRIPTION="Linux Rapidshare downloader"
HOMEPAGE="http://code.google.com/p/slimrat/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="X"
DEPEND="
>=dev-lang/perl-5.10.1[ithreads]
>=dev-perl/WWW-Mechanize-1.52
virtual/perl-Getopt-Long
virtual/perl-Term-ANSIColor
X? (
dev-perl/gtk2-gladexml
dev-perl/Spiffy
x11-misc/xclip
)
"
# aview: displaying captcha
RDEPEND="${DEPEND}
media-gfx/aview
X? ( x11-terms/xterm )
"
src_install() {
# install binaries
exeinto "/usr/share/${PN}"
doexe "src/${PN}" || die "doexe failed"
dosym "/usr/share/${PN}/${PN}" "${ROOT}usr/bin/${PN}"
if use X; then
doexe "src/${PN}-gui" || die "doexe failed"
dosym "/usr/share/${PN}/${PN}-gui" "/usr/bin/${PN}-gui"
fi
# install data
insinto /etc
newins "${S}/slimrat.conf" slimrat.conf
insinto "/usr/share/${PN}"
doins -r "src/"*.pm "src/Clipboard" "src/plugins/" "src/${PN}.glade" || die "doins failed"
}
|