diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-25 14:43:26 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-25 14:43:26 +0000 |
commit | e451058280925d9bb791eeae11c82427ad2e1339 (patch) | |
tree | 1460509b1bda875c080b159e87f522ce72025fee /sys-apps/most | |
parent | Closing #38881. (Manifest recommit) (diff) | |
download | gentoo-2-e451058280925d9bb791eeae11c82427ad2e1339.tar.gz gentoo-2-e451058280925d9bb791eeae11c82427ad2e1339.tar.bz2 gentoo-2-e451058280925d9bb791eeae11c82427ad2e1339.zip |
Closing #38900.
Diffstat (limited to 'sys-apps/most')
-rw-r--r-- | sys-apps/most/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/most/most-4.9.2.ebuild | 14 |
2 files changed, 16 insertions, 5 deletions
diff --git a/sys-apps/most/ChangeLog b/sys-apps/most/ChangeLog index f6cf386324b7..faef962fdc21 100644 --- a/sys-apps/most/ChangeLog +++ b/sys-apps/most/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/most -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/ChangeLog,v 1.6 2003/02/12 09:03:57 vapier Exp $ +# 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 $ + + 25 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> most-4.9.2.ebuild: + Add binary depending on arch. Closing #38900. *most-4.9.2 (13 May 2002) diff --git a/sys-apps/most/most-4.9.2.ebuild b/sys-apps/most/most-4.9.2.ebuild index 1d6d817834f6..613f8ecb19b4 100644 --- a/sys-apps/most/most-4.9.2.ebuild +++ b/sys-apps/most/most-4.9.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# 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.2.ebuild,v 1.13 2003/09/07 02:58:23 msterret Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/most/most-4.9.2.ebuild,v 1.14 2004/02/25 14:43:26 aliz Exp $ S=${WORKDIR}/${P} DESCRIPTION="An extremely excellent text file reader" @@ -24,7 +24,15 @@ src_compile() { } src_install() { - dobin src/x86objs/most + case ${ARCH} in + x86) + dobin src/x86objs/most + ;; + amd64) + dobin src/amd64objs/most + ;; + esac + doman most.1 dodoc COPYING COPYRIGHT README changes.txt |