blob: 91312325880392e097adba184f1d1737d828177b (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/rar-3.6.0.ebuild,v 1.7 2007/08/05 04:25:44 rajiv Exp $
inherit toolchain-funcs
DESCRIPTION="RAR compressor/uncompressor"
HOMEPAGE="http://www.rarsoft.com/"
SRC_URI="http://www.rarlab.com/rar/rarlinux-${PV}.tar.gz"
LICENSE="RAR"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
RESTRICT="strip"
RDEPEND="sys-libs/glibc amd64? ( app-emulation/emul-linux-x86-compat )"
S="${WORKDIR}/${PN}"
src_compile() { :; }
src_install() {
into /opt/rar
dobin rar unrar || die "dobin rar unrar"
insinto /opt/rar/lib
doins default.sfx || die "default.sfx"
insinto /opt/rar/etc
doins rarfiles.lst || die "rarfiles.lst"
dodoc *.{txt,diz}
dodir /opt/bin
dosym /opt/rar/bin/rar /opt/bin/rar
dosym /opt/rar/bin/unrar /opt/bin/unrar
}
pkg_postinst() {
if [[ $(gcc-major-version) = "3" && $(gcc-minor-version) -lt 4 ]]; then
ewarn "System gcc is too old to run ${PN}."
ewarn "${PN} requires >=sys-devel/gcc-3.4 to run."
fi
}
|