diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-09-06 23:20:25 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-09-06 23:20:25 +0000 |
commit | d3c300851b2027a6e32e98dd96621f217ae575c9 (patch) | |
tree | 1fc7b6a5722b108fa6a82158eb35fe2a00795f4e /games-emulation/game-launcher | |
parent | Add patch to build on FreeBSD and add ~x86-fbsd keyword. See bug #146536. (diff) | |
download | gentoo-2-d3c300851b2027a6e32e98dd96621f217ae575c9.tar.gz gentoo-2-d3c300851b2027a6e32e98dd96621f217ae575c9.tar.bz2 gentoo-2-d3c300851b2027a6e32e98dd96621f217ae575c9.zip |
General QA cleanup. Use doins instead of cp -R.
(Portage version: 2.1.1_rc1-r1)
Diffstat (limited to 'games-emulation/game-launcher')
-rw-r--r-- | games-emulation/game-launcher/ChangeLog | 8 | ||||
-rw-r--r-- | games-emulation/game-launcher/game-launcher-0.9.8.ebuild | 9 |
2 files changed, 11 insertions, 6 deletions
diff --git a/games-emulation/game-launcher/ChangeLog b/games-emulation/game-launcher/ChangeLog index 194741428810..2e8b5e5fb107 100644 --- a/games-emulation/game-launcher/ChangeLog +++ b/games-emulation/game-launcher/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-emulation/game-launcher -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/game-launcher/ChangeLog,v 1.7 2005/09/26 17:50:44 wolf31o2 Exp $ +# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/game-launcher/ChangeLog,v 1.8 2006/09/06 23:20:25 wolf31o2 Exp $ + + 06 Sep 2006; Chris Gianelloni <wolf31o2@gentoo.org> + game-launcher-0.9.8.ebuild: + General QA cleanup. Use doins instead of cp -R. 26 Sep 2005; Chris Gianelloni <wolf31o2@gentoo.org> game-launcher-0.9.8.ebuild: diff --git a/games-emulation/game-launcher/game-launcher-0.9.8.ebuild b/games-emulation/game-launcher/game-launcher-0.9.8.ebuild index ae9a893369c6..5e39d78af0da 100644 --- a/games-emulation/game-launcher/game-launcher-0.9.8.ebuild +++ b/games-emulation/game-launcher/game-launcher-0.9.8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/game-launcher/game-launcher-0.9.8.ebuild,v 1.6 2005/09/26 17:50:44 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/game-launcher/game-launcher-0.9.8.ebuild,v 1.7 2006/09/06 23:20:25 wolf31o2 Exp $ inherit eutils games @@ -24,6 +24,7 @@ DEPEND="${RDEPEND} app-arch/unzip" S="${WORKDIR}/glaunch" +dir=${GAMES_PREFIX_OPT}/${PN} src_unpack() { unpack ${A} @@ -39,7 +40,7 @@ src_compile() { } src_install() { - dodir "/opt/${P}" - cp -R ${S}/* "${D}/opt/${P}" # doinst can't do recursive + insinto ${dir} + doins -r ${S}/* prepgamesdirs } |