summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2008-02-10 11:30:07 +0000
committerSamuli Suominen <drac@gentoo.org>2008-02-10 11:30:07 +0000
commiteca61d28075f7efb49569770918c30c97595f655 (patch)
treeb0368f8ddac7138d7effca7828d21a29d4264966 /sys-apps
parentFix XJED_HAS_XRENDERFONT handling and X dependencies. (diff)
downloadgentoo-2-eca61d28075f7efb49569770918c30c97595f655.tar.gz
gentoo-2-eca61d28075f7efb49569770918c30c97595f655.tar.bz2
gentoo-2-eca61d28075f7efb49569770918c30c97595f655.zip
Version bump for bugs 185563 and 199079, thanks to Jarnie Webb and Rafał Mużyło for reporting.
(Portage version: 2.1.4.1)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/most/ChangeLog8
-rw-r--r--sys-apps/most/most-5.0.0a.ebuild32
2 files changed, 39 insertions, 1 deletions
diff --git a/sys-apps/most/ChangeLog b/sys-apps/most/ChangeLog
index 3aeae4dcfbe8..5dbe1c2bc6a4 100644
--- a/sys-apps/most/ChangeLog
+++ b/sys-apps/most/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sys-apps/most
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/ChangeLog,v 1.35 2008/02/09 10:54:42 drac Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/ChangeLog,v 1.36 2008/02/10 11:30:07 drac Exp $
+
+*most-5.0.0a (10 Feb 2008)
+
+ 10 Feb 2008; Samuli Suominen <drac@gentoo.org> +most-5.0.0a.ebuild:
+ Version bump for bugs 185563 and 199079, thanks to Jarnie Webb and Rafał
+ Mużyło for reporting.
09 Feb 2008; Samuli Suominen <drac@gentoo.org> most-4.10.2-r1.ebuild:
Fix most for slang 2.1.3.
diff --git a/sys-apps/most/most-5.0.0a.ebuild b/sys-apps/most/most-5.0.0a.ebuild
new file mode 100644
index 000000000000..6d60ee03613e
--- /dev/null
+++ b/sys-apps/most/most-5.0.0a.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2008 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.ebuild,v 1.1 2008/02/10 11:30:07 drac Exp $
+
+DESCRIPTION="a 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="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=sys-libs/slang-2.1.3"
+DEPEND="${RDEPEND}"
+
+src_unpack() {
+ unpack ${A}
+ sed -i -e 's:$(INSTALL) -s:$(INSTALL):' "${S}"/src/Makefile.in
+}
+
+src_compile() {
+ unset ARCH
+ econf
+ emake || die "emake failed."
+}
+
+src_install() {
+ emake DESTDIR="${D}" DOC_DIR="/usr/share/doc/${PF}" \
+ install || die "emake install failed."
+ prepalldocs
+}