blob: 4270d5f1c870cc1fbbd2dd462ed529ff104188a1 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unrar/unrar-3.2.0_beta2.ebuild,v 1.2 2003/06/17 20:35:41 gmsoft Exp $
MY_P=${PN}src
S=${WORKDIR}/${PN}
DESCRIPTION="Uncompress rar files"
SRC_URI="http://www.rarlab.com/rar/${MY_P}-${PV/_beta2/}.tar.gz"
HOMEPAGE="http://www.rarlab.com/rar_add.htm"
SLOT="0"
LICENSE="unRAR"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa"
DEPEND=""
src_compile() {
#cp ${FILESDIR}/unrar-3.00-rartypes.hpp rartypes.hpp
make -f makefile.unix || die
}
src_install() {
dobin unrar
dodoc readme.txt license.txt
}
|