diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-10-13 15:44:00 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-10-13 15:44:00 +0000 |
commit | 3b65b21cb5140da4fd49a158fca69fa2d26d74dc (patch) | |
tree | b0873690a20bb1bf3f660b098e0bdad2fc36a087 /games-strategy/majesty-demo | |
parent | add version 0.20.0 (diff) | |
download | gentoo-2-3b65b21cb5140da4fd49a158fca69fa2d26d74dc.tar.gz gentoo-2-3b65b21cb5140da4fd49a158fca69fa2d26d74dc.tar.bz2 gentoo-2-3b65b21cb5140da4fd49a158fca69fa2d26d74dc.zip |
Support multilib providers for deps.
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'games-strategy/majesty-demo')
-rw-r--r-- | games-strategy/majesty-demo/ChangeLog | 5 | ||||
-rw-r--r-- | games-strategy/majesty-demo/majesty-demo-1.0.0.ebuild | 33 |
2 files changed, 23 insertions, 15 deletions
diff --git a/games-strategy/majesty-demo/ChangeLog b/games-strategy/majesty-demo/ChangeLog index f2501a6300d7..9f90ebc2a532 100644 --- a/games-strategy/majesty-demo/ChangeLog +++ b/games-strategy/majesty-demo/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-strategy/majesty-demo # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/majesty-demo/ChangeLog,v 1.14 2014/08/10 21:21:00 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/majesty-demo/ChangeLog,v 1.15 2014/10/13 15:44:00 mgorny Exp $ + + 13 Oct 2014; Michał Górny <mgorny@gentoo.org> majesty-demo-1.0.0.ebuild: + Support multilib providers for deps. 10 Aug 2014; Sergei Trofimovich <slyfox@gentoo.org> majesty-demo-1.0.0.ebuild: QA: drop trailing '.' from DESCRIPTION diff --git a/games-strategy/majesty-demo/majesty-demo-1.0.0.ebuild b/games-strategy/majesty-demo/majesty-demo-1.0.0.ebuild index 07a8d08c11bf..ed89cd7a108d 100644 --- a/games-strategy/majesty-demo/majesty-demo-1.0.0.ebuild +++ b/games-strategy/majesty-demo/majesty-demo-1.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/majesty-demo/majesty-demo-1.0.0.ebuild,v 1.15 2014/08/10 21:21:00 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-strategy/majesty-demo/majesty-demo-1.0.0.ebuild,v 1.16 2014/10/13 15:44:00 mgorny Exp $ EAPI=4 inherit eutils unpacker games @@ -16,19 +16,24 @@ IUSE="" RESTRICT="mirror bindist strip" RDEPEND="sys-libs/glibc - x86? ( - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXau - x11-libs/libXdmcp ) - ppc? ( - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXau - x11-libs/libXdmcp ) - amd64? ( - app-emulation/emul-linux-x86-baselibs - app-emulation/emul-linux-x86-xlibs )" + || ( + ppc? ( + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXau + x11-libs/libXdmcp + ) + !ppc? ( + x11-libs/libX11[abi_x86_32(-)] + x11-libs/libXext[abi_x86_32(-)] + x11-libs/libXau[abi_x86_32(-)] + x11-libs/libXdmcp[abi_x86_32(-)] + ) + amd64? ( + app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] + ) + )" S=${WORKDIR} |