diff options
author | Aron Griffis <agriffis@gentoo.org> | 2005-06-30 17:18:55 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2005-06-30 17:18:55 +0000 |
commit | a8636391b0e880f2ea3e7162b8ae8a5037beb353 (patch) | |
tree | 4ae70842f82e48fdfda5e5fba3a510f6671ba1d3 /net-im/ohphone | |
parent | Fix use invocation: [ use gnome ] will never work (diff) | |
download | gentoo-2-a8636391b0e880f2ea3e7162b8ae8a5037beb353.tar.gz gentoo-2-a8636391b0e880f2ea3e7162b8ae8a5037beb353.tar.bz2 gentoo-2-a8636391b0e880f2ea3e7162b8ae8a5037beb353.zip |
It's really obvious this was never tested on ppc. The way the ebuild was
written, the ppc binary would never have been installed.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-im/ohphone')
-rw-r--r-- | net-im/ohphone/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/ohphone/ohphone-1.4.1-r1.ebuild | 11 |
2 files changed, 12 insertions, 7 deletions
diff --git a/net-im/ohphone/ChangeLog b/net-im/ohphone/ChangeLog index a8f361a2e76c..d3cd780342b4 100644 --- a/net-im/ohphone/ChangeLog +++ b/net-im/ohphone/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-im/ohphone -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/ohphone/ChangeLog,v 1.4 2004/07/11 12:35:02 pylon Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/ohphone/ChangeLog,v 1.5 2005/06/30 17:18:55 agriffis Exp $ + + 30 Jun 2005; Aron Griffis <agriffis@gentoo.org> ohphone-1.4.1-r1.ebuild: + It's really obvious this was never tested on ppc. The way the ebuild was + written, the ppc binary would never have been installed. 11 Jul 2004; Lars Weiler <pylon@gentoo.org> ohphone-1.4.1-r1.ebuild: Add ~ppc to keywords. diff --git a/net-im/ohphone/ohphone-1.4.1-r1.ebuild b/net-im/ohphone/ohphone-1.4.1-r1.ebuild index 98f9d4d93e39..3d02d3650bcb 100644 --- a/net-im/ohphone/ohphone-1.4.1-r1.ebuild +++ b/net-im/ohphone/ohphone-1.4.1-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/ohphone/ohphone-1.4.1-r1.ebuild,v 1.7 2004/09/25 09:49:22 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/ohphone/ohphone-1.4.1-r1.ebuild,v 1.8 2005/06/30 17:18:55 agriffis Exp $ DESCRIPTION="Command line H.323 client" HOMEPAGE="http://www.openh323.org/" @@ -48,10 +48,11 @@ src_install() { doman ohphone.1 # fill in for other archs - if [ ${ARCH} = "x86" ]; then + if use x86; then dobin obj_linux_x86_r/ohphone - fi - if [ use ppc ]; then + elif use ppc; then dobin obj_linux_ppc_r/ohphone + else + die "no binary available for your arch" fi } |