blob: 81f7761cb7eef4189ca96017ab804c56da4c426e (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-arch/rar/rar-3.0.ebuild,v 1.4 2002/07/21 01:19:13 cardoe Exp $
LICENSE="RAR"
S=${WORKDIR}/${PN}
MY_P=${PN}linux-${PV}
SLOT="0"
DESCRIPTION="RAR compressor/uncompressor"
SRC_URI="http://www.rarlab.com/rar/${MY_P}.tar.gz"
SLOT="0"
HOMEPAGE="http://www.rarsoft.com"
KEYWORDS="x86"
RDEPEND="virtual/glibc"
src_install () {
dodir /opt/${PN}
for i in bin etc lib
do
dodir /opt/${PN}/${i}
done
exeinto /opt/${PN}/bin
doexe rar unrar
insinto /opt/${PN}/lib
doins default.sfx
insinto /opt/${PN}/etc
doins rarfiles.lst
dodoc *.{txt,diz}
dodir /etc/env.d
insinto /etc/env.d
doins ${FILESDIR}/10rar
}
|