diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-05-06 06:51:09 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-05-06 06:51:09 +0000 |
commit | e9f6d122508b92e91d3c62b651b484babc7b83c8 (patch) | |
tree | 99a4e5dfddaa30be50453a59fe026f75f5b78923 /sys-apps/most | |
parent | now with signing (diff) | |
download | gentoo-2-e9f6d122508b92e91d3c62b651b484babc7b83c8.tar.gz gentoo-2-e9f6d122508b92e91d3c62b651b484babc7b83c8.tar.bz2 gentoo-2-e9f6d122508b92e91d3c62b651b484babc7b83c8.zip |
Reduce parallel make to 1 due to problems with parallel make, bug #547820; EAPI bump
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sys-apps/most')
-rw-r--r-- | sys-apps/most/ChangeLog | 11 | ||||
-rw-r--r-- | sys-apps/most/metadata.xml | 2 | ||||
-rw-r--r-- | sys-apps/most/most-5.0.0a-r1.ebuild | 36 |
3 files changed, 46 insertions, 3 deletions
diff --git a/sys-apps/most/ChangeLog b/sys-apps/most/ChangeLog index 01fd9e605e58..73261f546800 100644 --- a/sys-apps/most/ChangeLog +++ b/sys-apps/most/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-apps/most -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/ChangeLog,v 1.48 2014/12/08 11:09:18 heroxbd Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/ChangeLog,v 1.49 2015/05/06 06:51:09 jlec Exp $ + +*most-5.0.0a-r1 (06 May 2015) + + 06 May 2015; Justin Lecher <jlec@gentoo.org> +most-5.0.0a-r1.ebuild, + metadata.xml: + Reduce parallel make to 1 due to problems with parallel make, bug #547820; + EAPI bump 08 Dec 2014; Benda Xu <heroxbd@gentoo.org> +files/most-5.0.0a-donot-hardcode-path.patch, diff --git a/sys-apps/most/metadata.xml b/sys-apps/most/metadata.xml index 80ac69d9c2f2..f23b9cae1593 100644 --- a/sys-apps/most/metadata.xml +++ b/sys-apps/most/metadata.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<herd>shell-tools</herd> + <herd>shell-tools</herd> </pkgmetadata> diff --git a/sys-apps/most/most-5.0.0a-r1.ebuild b/sys-apps/most/most-5.0.0a-r1.ebuild new file mode 100644 index 000000000000..889dcb883c24 --- /dev/null +++ b/sys-apps/most/most-5.0.0a-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/most-5.0.0a-r1.ebuild,v 1.1 2015/05/06 06:51:09 jlec Exp $ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Paging program that displays, one windowful at a time, the contents of a file" +HOMEPAGE="ftp://space.mit.edu/pub/davis/most" +SRC_URI="ftp://space.mit.edu/pub/davis/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="" + +RDEPEND=">=sys-libs/slang-2.1.3" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-5.0.0a-no-explicit-termcap.patch + epatch "${FILESDIR}"/${PN}-5.0.0a-donot-hardcode-path.patch + sed -i -e 's:$(INSTALL) -s:$(INSTALL):' src/Makefile.in || die + export MAKEOPTS+=" -j1" +} + +src_configure() { + unset ARCH + econf +} + +src_install() { + emake DESTDIR="${D}" DOC_DIR="${EPREFIX}/usr/share/doc/${PF}" \ + install +} |