summaryrefslogtreecommitdiff
blob: ae8ae0b0faebf64dec49dd8eb5027822073aa4b8 (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/rar-3.9.3.ebuild,v 1.3 2011/01/01 11:21:19 phajdan.jr Exp $

DESCRIPTION="RAR compressor/uncompressor"
HOMEPAGE="http://www.rarsoft.com/"
SRC_URI="x86? ( http://www.rarlab.com/rar/rarlinux-${PV}.tar.gz )
	amd64? ( http://www.rarlab.com/rar/rarlinux-x64-${PV}.tar.gz )"

LICENSE="RAR"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""

RDEPEND=">=sys-libs/glibc-2.4"

S=${WORKDIR}/${PN}

QA_DT_HASH="opt/rar/lib/default.sfx
	opt/rar/bin/unrar
	opt/rar/bin/rar"
QA_PRESTRIPPED="opt/rar/lib/default.sfx
	opt/rar/bin/unrar
	opt/rar/bin/rar"

src_compile() { :; }

src_install() {
	into /opt/rar
	dobin rar unrar || die
	insinto /opt/rar/lib
	doins default.sfx || die
	insinto /opt/rar/etc
	doins rarfiles.lst || die
	dodoc *.txt
	dodir /opt/bin
	dosym ../rar/bin/rar /opt/bin/rar
	dosym ../rar/bin/unrar /opt/bin/unrar
}