blob: aa908730ee0d3a6c61e8e1334fae117002d48b7a (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unarj/unarj-2.63a-r1.ebuild,v 1.1 2002/11/04 21:37:40 raker Exp $
IUSE=""
DESCRIPTION="Utility for opening arj archives."
HOMEPAGE="http://ibiblio.org/pub/Linux/utils/compress/"
SRC_URI="http://ibiblio.org/pub/Linux/utils/compress/${P}.tar.gz"
SLOT="0"
LICENSE="arj"
KEYWORDS="x86 ppc sparc sparc64"
DEPEND=">=sys-apps/baselayout-1.8.0"
src_compile () {
emake || die
}
src_install () {
dobin unarj
dodoc unarj.txt technote.txt readme.txt
}
|