diff options
author | Jon Portnoy <avenj@gentoo.org> | 2004-04-06 17:48:07 +0000 |
---|---|---|
committer | Jon Portnoy <avenj@gentoo.org> | 2004-04-06 17:48:07 +0000 |
commit | 4e1a4800c5354d19197af2b747a0d7edeada5fec (patch) | |
tree | 88607943581893bc5800d5d64e1e78c01e84de80 /sys-apps/most | |
parent | Filtering -fomit-frame-pointer to fix bug #46901. (Manifest recommit) (diff) | |
download | gentoo-2-4e1a4800c5354d19197af2b747a0d7edeada5fec.tar.gz gentoo-2-4e1a4800c5354d19197af2b747a0d7edeada5fec.tar.bz2 gentoo-2-4e1a4800c5354d19197af2b747a0d7edeada5fec.zip |
Version bump, bug 46314
Diffstat (limited to 'sys-apps/most')
-rw-r--r-- | sys-apps/most/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/most/Manifest | 4 | ||||
-rw-r--r-- | sys-apps/most/files/digest-most-4.9.4 | 1 | ||||
-rw-r--r-- | sys-apps/most/most-4.9.4.ebuild | 41 |
4 files changed, 51 insertions, 2 deletions
diff --git a/sys-apps/most/ChangeLog b/sys-apps/most/ChangeLog index faef962fdc21..0efeec6385d0 100644 --- a/sys-apps/most/ChangeLog +++ b/sys-apps/most/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/most # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/ChangeLog,v 1.7 2004/02/25 14:43:26 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/ChangeLog,v 1.8 2004/04/06 17:48:07 avenj Exp $ + +*most-4.9.4 (06 Apr 2004) + + 06 Apr 2004; Jon Portnoy <avenj@gentoo.org> most-4.9.4.ebuild : + Version bump, bug #46314. 25 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> most-4.9.2.ebuild: Add binary depending on arch. Closing #38900. diff --git a/sys-apps/most/Manifest b/sys-apps/most/Manifest index 857e4e44eb5e..4485747ac38b 100644 --- a/sys-apps/most/Manifest +++ b/sys-apps/most/Manifest @@ -1,4 +1,6 @@ -MD5 1639142c817cbef2667dd31e3150afab most-4.9.2.ebuild 953 MD5 389078c5d3936311f9768e06be8f9bcd ChangeLog 1229 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 +MD5 1639142c817cbef2667dd31e3150afab most-4.9.2.ebuild 953 +MD5 3358d785c73bd8a22833384d623b7cfb most-4.9.4.ebuild 955 MD5 a23dcc37cb7e0fb3d5fde35a36d9f270 files/digest-most-4.9.2 61 +MD5 fca955f15889eb7ffb4639dd1484ccfa files/digest-most-4.9.4 62 diff --git a/sys-apps/most/files/digest-most-4.9.4 b/sys-apps/most/files/digest-most-4.9.4 new file mode 100644 index 000000000000..277fe3ecef11 --- /dev/null +++ b/sys-apps/most/files/digest-most-4.9.4 @@ -0,0 +1 @@ +MD5 54d21cbd39bbe5fd89f8162eddb4cbd3 most-4.9.4.tar.gz 117274 diff --git a/sys-apps/most/most-4.9.4.ebuild b/sys-apps/most/most-4.9.4.ebuild new file mode 100644 index 000000000000..21d037c9c024 --- /dev/null +++ b/sys-apps/most/most-4.9.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/most-4.9.4.ebuild,v 1.1 2004/04/06 17:48:07 avenj Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="An extremely excellent text file reader" +HOMEPAGE="http://freshmeat.net/projects/most/" +KEYWORDS="~x86 ~amd64 -ppc" +SLOT="0" +LICENSE="GPL-2" +SRC_URI="ftp://space.mit.edu/pub/davis/most/${P}.tar.gz" + +DEPEND=">=sys-libs/slang-1.4.2 + >=sys-libs/ncurses-5.2-r2" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc || die + + #*possible* (not definite) pmake problems, let's not risk it. + make SYS_INITFILE="/etc/most.conf" || die +} + +src_install() { + case ${ARCH} in + x86) + dobin src/x86objs/most + ;; + amd64) + dobin src/amd64objs/most + ;; + esac + + doman most.1 + + dodoc COPYING COPYRIGHT README changes.txt + docinto txt + dodoc default.rc lesskeys.rc most-fun.txt +} |