diff options
Diffstat (limited to 'sys-apps/most/most-4.9.2.ebuild')
-rw-r--r-- | sys-apps/most/most-4.9.2.ebuild | 14 |
1 files changed, 11 insertions, 3 deletions
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 |