blob: 7baa012c762ea5c9de1819151b0c9aa3db8c3c16 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/arc/arc-5.21m.ebuild,v 1.7 2005/09/30 20:17:21 fuzzyray Exp $
inherit eutils
DESCRIPTION="Create & extract files from DOS .ARC files"
HOMEPAGE="http://arc.sourceforge.net/"
SRC_URI="mirror://sourceforge/arc/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
IUSE=""
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-compile-cleanups.patch
}
src_compile() {
emake \
OPT="${CFLAGS}" \
LIBS="${LDFLAGS}" \
|| die "emake failed"
}
src_install() {
dobin arc marc || die "dobin failed"
doman arc.1
dodoc Arc521.doc Arcinfo Changelog Readme
}
|