blob: f94376d0131a7c0259dc1cab7b63d5a5fadb069e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/unarj/unarj-2.63a-r2.ebuild,v 1.2 2004/11/15 07:46:23 sejo Exp $
inherit eutils
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"
LICENSE="arj"
SLOT="0"
KEYWORDS="~x86 ppc ~sparc ~alpha ~arm ~amd64"
IUSE=""
src_unpack() {
unpack ${A}
cd ${S}
sed -i "/^CFLAGS/s:-O2:${CFLAGS}:" ${S}/Makefile
epatch ${FILESDIR}/unarj-2.65-CAN-2004-0947.patch
epatch ${FILESDIR}/unarj-2.65-sanitation.patch
}
src_compile() {
emake || die
}
src_install() {
dobin unarj || die
dodoc unarj.txt technote.txt readme.txt
}
|