You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-arch/arj/arj-3.10.22-r5.ebuild

56 lines
1.2 KiB

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools eutils multilib toolchain-funcs
PATCH_LEVEL=13
DESCRIPTION="Utility for opening arj archives"
HOMEPAGE="http://arj.sourceforge.net"
SRC_URI="mirror://debian/pool/main/a/arj/${P/-/_}.orig.tar.gz
mirror://debian/pool/main/a/arj/${P/-/_}-${PATCH_LEVEL}.debian.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~ia64 ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
IUSE=""
src_prepare() {
epatch \
"${FILESDIR}"/${P}-implicit-declarations.patch \
"${FILESDIR}/${P}-glibc2.10.patch"
EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" \
epatch "${WORKDIR}"/debian/patches
epatch "${FILESDIR}"/${P}-darwin.patch
epatch "${FILESDIR}"/${P}-interix.patch
cd gnu
eautoconf
}
src_configure() {
cd gnu || die
CFLAGS="${CFLAGS} -Wall" econf
}
src_compile() {
sed -i -e '/stripgcc/d' GNUmakefile || die "sed failed."
ARJLIBDIR="${EPREFIX}/usr/$(get_libdir)"
emake CC=$(tc-getCC) libdir="${ARJLIBDIR}" \
ADD_LDFLAGS="${LDFLAGS}" \
pkglibdir="${ARJLIBDIR}" all
}
src_install() {
emake pkglibdir="${ARJLIBDIR}" DESTDIR="${D}" install
dodoc doc/rev_hist.txt
}