diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-08 04:20:16 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-08 04:20:16 +0000 |
commit | 2bb3f0b2d6a449b34be41c5de4ba638ab29c43f2 (patch) | |
tree | 9c8520a4cd74e36bd62a34b658f80fba7d67a1b8 /sys-apps | |
parent | Stable on SPARC. (diff) | |
download | gentoo-2-2bb3f0b2d6a449b34be41c5de4ba638ab29c43f2.tar.gz gentoo-2-2bb3f0b2d6a449b34be41c5de4ba638ab29c43f2.tar.bz2 gentoo-2-2bb3f0b2d6a449b34be41c5de4ba638ab29c43f2.zip |
amd64/x86 love
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/linux32/linux32-2.0.ebuild | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/sys-apps/linux32/linux32-2.0.ebuild b/sys-apps/linux32/linux32-2.0.ebuild index 95285881f6a6..d79d9cdb12b6 100644 --- a/sys-apps/linux32/linux32-2.0.ebuild +++ b/sys-apps/linux32/linux32-2.0.ebuild @@ -1,26 +1,25 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/linux32/linux32-2.0.ebuild,v 1.1 2005/07/08 04:06:59 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/linux32/linux32-2.0.ebuild,v 1.2 2005/07/08 04:20:16 vapier Exp $ -DESCRIPTION="A simple utility that tricks uname into returning a 32bit environment identifier." +DESCRIPTION="A simple utility that tricks uname into returning a 32bit environment identifier" HOMEPAGE="http://www.gentoo.org/" SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" SLOT="0" -KEYWORDS="-* ~mips ~sparc ~ppc ~ppc64" +KEYWORDS="-* ~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="" -LICENSE="GPL-2" src_compile() { - cd ${S} emake linux32 } src_install() { into / - cd ${S} - dobin linux32 - ln -s linux32 ${D}/bin/linux64 + dobin linux32 || die + dosym linux32 /bin/linux64 doman linux32.8 - ln -s linux32.8.gz ${D}/usr/share/man/man1/linux64.8.gz - dodoc CHANGELOG COPYING CREDITS README + dosym linux32.8 /usr/share/man/man1/linux64.8 + dodoc CHANGELOG CREDITS README } |