diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-03-06 23:03:06 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-03-06 23:17:05 -0500 |
commit | 2a7fdd67e7cae78ef37db299866d810e06b93f3c (patch) | |
tree | 3921bfa40523172df2be2c88e4275b85ebc750e3 /app-arch/pax/pax-20160306.ebuild | |
parent | app-text/ronn: Stable for HPPA (bug #576632). (diff) | |
download | gentoo-2a7fdd67e7cae78ef37db299866d810e06b93f3c.tar.gz gentoo-2a7fdd67e7cae78ef37db299866d810e06b93f3c.tar.bz2 gentoo-2a7fdd67e7cae78ef37db299866d810e06b93f3c.zip |
app-arch/pax: switch to MirOS version #537522
Diffstat (limited to 'app-arch/pax/pax-20160306.ebuild')
-rw-r--r-- | app-arch/pax/pax-20160306.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/app-arch/pax/pax-20160306.ebuild b/app-arch/pax/pax-20160306.ebuild new file mode 100644 index 000000000000..1cfdaa455475 --- /dev/null +++ b/app-arch/pax/pax-20160306.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit unpacker toolchain-funcs + +DESCRIPTION="pax (Portable Archive eXchange) is the POSIX standard archive tool" +HOMEPAGE="https://www.mirbsd.org/pax.htm" +SRC_URI="https://www.mirbsd.org/MirOS/dist/mir/cpio/paxmirabilis-${PV}.cpio.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="" + +RDEPEND="dev-libs/libbsd" +DEPEND="${RDEPEND} + $(unpacker_src_uri_depends)" + +S=${WORKDIR}/${PN} + +src_prepare() { + # Newer C libraries omit this include from sys/types.h. + sed -i '1i#include <sys/sysmacros.h>' extern.h || die +} + +src_configure() { + tc-export CC PKG_CONFIG +} + +src_compile() { + # We can't rely on LFS flags as it uses the fts.h interface which lacks 64-bit support. + set -- \ + ${CC} ${CPPFLAGS} ${CFLAGS} \ + -DHAVE_STRLCPY -DHAVE_VIS -DHAVE_STRMODE \ + -DLONG_OFF_T -DHAVE_LINKAT \ + $(${PKG_CONFIG} --cflags libbsd-overlay) \ + -Wall ${LDFLAGS} *.c -o ${PN} \ + $(${PKG_CONFIG} --libs libbsd-overlay) + echo "$@" + "$@" || die +} + +src_install() { + dobin ${PN} + doman ${PN}.1 + + dosym pax /usr/bin/paxcpio + newman cpio.1 paxcpio.1 + + dosym pax /usr/bin/paxtar + newman tar.1 paxtar.1 +} |