diff options
author | Roy Marples <uberlord@gentoo.org> | 2006-10-24 09:55:15 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2006-10-24 09:55:15 +0000 |
commit | 03f3818c82720d7f40b185bdb5bec3663861772b (patch) | |
tree | 61dbc488cd5108b22f523a38778acd0167b4c275 /app-arch | |
parent | New upstream release, to be paired with audacious 1.2.0 final. (diff) | |
download | gentoo-2-03f3818c82720d7f40b185bdb5bec3663861772b.tar.gz gentoo-2-03f3818c82720d7f40b185bdb5bec3663861772b.tar.bz2 gentoo-2-03f3818c82720d7f40b185bdb5bec3663861772b.zip |
Don't assume that freebsd == i386 :) Added ~sparc-fbsd keyword.
(Portage version: 2.1.2_pre3-r5)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/unzip/ChangeLog | 6 | ||||
-rw-r--r-- | app-arch/unzip/unzip-5.52-r1.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/app-arch/unzip/ChangeLog b/app-arch/unzip/ChangeLog index f5d664ee9ad4..afda1b1fc6f7 100644 --- a/app-arch/unzip/ChangeLog +++ b/app-arch/unzip/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-arch/unzip # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.45 2006/09/03 20:15:25 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/ChangeLog,v 1.46 2006/10/24 09:55:15 uberlord Exp $ + + 24 Oct 2006; Roy Marples <uberlord@gentoo.org> unzip-5.52-r1.ebuild: + Don't assume that freebsd == i386 :) + Added ~sparc-fbsd keyword. 04 Sep 2006; Joshua Kinard <kumba@gentoo.org> unzip-5.52-r1.ebuild: Marked stable on mips. diff --git a/app-arch/unzip/unzip-5.52-r1.ebuild b/app-arch/unzip/unzip-5.52-r1.ebuild index 7f982f8f38d5..23afa78afc50 100644 --- a/app-arch/unzip/unzip-5.52-r1.ebuild +++ b/app-arch/unzip/unzip-5.52-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-5.52-r1.ebuild,v 1.16 2006/09/03 20:15:25 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/unzip/unzip-5.52-r1.ebuild,v 1.17 2006/10/24 09:55:15 uberlord Exp $ inherit eutils toolchain-funcs flag-o-matic @@ -10,7 +10,7 @@ SRC_URI="ftp://ftp.info-zip.org/pub/infozip/src/${PN}${PV/.}.tar.gz" LICENSE="Info-ZIP" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ~ppc-macos ppc64 s390 sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ~ppc-macos ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" IUSE="" DEPEND="" @@ -37,8 +37,8 @@ src_compile() { case ${CHOST} in i?86*-linux*) TARGET=linux_asm ;; *-linux*) TARGET=linux_noasm ;; - *-dragonfly*) TARGET=freebsd ;; - *-freebsd*) TARGET=freebsd ;; + *-dragonfly*) use x86 && TARGET=freebsd || TARGET=bsd ;; + *-freebsd*) use x86 && TARGET=freebsd || TARGET=bsd ;; *-openbsd*) TARGET=bsd ;; *-darwin*) TARGET=macosx ;; *) die "Unknown target, you suck" ;; |