diff options
author | Julian Ospald <hasufell@gentoo.org> | 2013-01-18 20:10:34 +0000 |
---|---|---|
committer | Julian Ospald <hasufell@gentoo.org> | 2013-01-18 20:10:34 +0000 |
commit | b8f8a97e30cc1cd9cec8017dea9ff7f19292266a (patch) | |
tree | 438c6da819ce29ab2a5915fbb810b22c1fee69ff /dev-games | |
parent | Fix ChangeLog header (diff) | |
download | gentoo-2-b8f8a97e30cc1cd9cec8017dea9ff7f19292266a.tar.gz gentoo-2-b8f8a97e30cc1cd9cec8017dea9ff7f19292266a.tar.bz2 gentoo-2-b8f8a97e30cc1cd9cec8017dea9ff7f19292266a.zip |
fix static-libs build
(Portage version: 2.2.0_alpha153/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
Diffstat (limited to 'dev-games')
-rw-r--r-- | dev-games/cegui/ChangeLog | 5 | ||||
-rw-r--r-- | dev-games/cegui/cegui-0.7.7-r1.ebuild | 13 |
2 files changed, 10 insertions, 8 deletions
diff --git a/dev-games/cegui/ChangeLog b/dev-games/cegui/ChangeLog index cae754491078..91ed339a9517 100644 --- a/dev-games/cegui/ChangeLog +++ b/dev-games/cegui/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-games/cegui # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/cegui/ChangeLog,v 1.55 2013/01/07 22:54:59 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/cegui/ChangeLog,v 1.56 2013/01/18 20:10:34 hasufell Exp $ + + 18 Jan 2013; Julian Ospald <hasufell@gentoo.org> cegui-0.7.7-r1.ebuild: + fix static-libs build 07 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -cegui-0.7.7.ebuild: old diff --git a/dev-games/cegui/cegui-0.7.7-r1.ebuild b/dev-games/cegui/cegui-0.7.7-r1.ebuild index f753cb40fca4..88aaa980c734 100644 --- a/dev-games/cegui/cegui-0.7.7-r1.ebuild +++ b/dev-games/cegui/cegui-0.7.7-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/cegui/cegui-0.7.7-r1.ebuild,v 1.1 2012/12/20 22:44:04 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/cegui/cegui-0.7.7-r1.ebuild,v 1.2 2013/01/18 20:10:34 hasufell Exp $ EAPI=4 inherit eutils @@ -46,11 +46,6 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${MY_P} S2=${WORKDIR}/${MY_P}_static -src_unpack() { - default - cp -a "${S}" "${S2}" || die -} - src_prepare() { epatch "${FILESDIR}"/${P}-irrlicht-1.8.patch @@ -71,6 +66,10 @@ src_prepare() { cp -r Samples Samples.clean rm -f $(find Samples.clean -name 'Makefile*') fi + + if use static-libs ; then + cp -a "${S}" "${S2}" || die + fi } src_configure() { |