blob: 6652b03f7ccce9a77f5e8c6ac2e3e3da9696597a (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-misc/torbrowser-profile/torbrowser-profile-2.3.12_alpha2.ebuild,v 1.1 2012/07/14 16:57:17 hasufell Exp $
EAPI=4
MY_PN=torbrowser
MY_PV="${PV/_alpha/-alpha-}"
DESCRIPTION="Profile folder from the torbrowser bundle"
HOMEPAGE="https://www.torproject.org/dist/torbrowser/linux/"
SRC_URI="amd64? ( https://www.torproject.org/dist/${MY_PN}/linux/tor-browser-gnu-linux-x86_64-${MY_PV}-dev-en-US.tar.gz )
x86? ( https://www.torproject.org/dist/${MY_PN}/linux/tor-browser-gnu-linux-i686-${MY_PV}-dev-en-US.tar.gz )"
LICENSE="BSD GPL-2 MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="www-client/torbrowser"
S=${WORKDIR}/tor-browser_en-US
src_install() {
insinto /usr/share/${MY_PN}
doins -r Data/profile
dodoc Docs/changelog
}
|