34 lines
858 B
Bash
34 lines
858 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="2"
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="Create & extract files from DOS .ARC files"
|
|
HOMEPAGE="http://arc.sourceforge.net"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
|
|
IUSE=""
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P/p/m}-darwin.patch \
|
|
"${FILESDIR}"/${P/p/m}-gentoo-fbsd.patch \
|
|
"${FILESDIR}"/${P/p/o}-interix.patch
|
|
sed -i Makefile \
|
|
-e 's/CFLAGS = $(OPT) $(SYSTEM)/CFLAGS += $(SYSTEM)/' \
|
|
|| die "sed Makefile"
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" OPT="${LDFLAGS}" || die "emake failed."
|
|
}
|
|
|
|
src_install() {
|
|
dobin arc marc
|
|
doman arc.1
|
|
dodoc Arc521.doc Arcinfo Changelog Readme
|
|
}
|