diff options
author | 2006-03-26 08:42:47 +0000 | |
---|---|---|
committer | 2006-03-26 08:42:47 +0000 | |
commit | 1695f5ddf4b548832c3372c52320072e526f8c48 (patch) | |
tree | 36e7d7abaf4d314d7f8773444685771f6fafb0f4 /games-emulation | |
parent | Incorporate changes by Jouni Rinne (bug #120054) (diff) | |
download | gentoo-2-1695f5ddf4b548832c3372c52320072e526f8c48.tar.gz gentoo-2-1695f5ddf4b548832c3372c52320072e526f8c48.tar.bz2 gentoo-2-1695f5ddf4b548832c3372c52320072e526f8c48.zip |
sync with xmame ebuild
(Portage version: 2.1_pre6-r7)
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/xmess/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/xmess/xmess-0.104.ebuild | 13 |
2 files changed, 10 insertions, 8 deletions
diff --git a/games-emulation/xmess/ChangeLog b/games-emulation/xmess/ChangeLog index 57929bc2e098..a04dc6ef13ae 100644 --- a/games-emulation/xmess/ChangeLog +++ b/games-emulation/xmess/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/xmess # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/ChangeLog,v 1.48 2006/03/24 21:47:03 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/ChangeLog,v 1.49 2006/03/26 08:42:46 mr_bones_ Exp $ + + 26 Mar 2006; Michael Sterrett <mr_bones_@gentoo.org> xmess-0.104.ebuild: + sync with xmame ebuild 24 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org> xmess-0.83.1.ebuild, -xmess-0.103.ebuild: diff --git a/games-emulation/xmess/xmess-0.104.ebuild b/games-emulation/xmess/xmess-0.104.ebuild index 6affd8d8052a..6bdf75298bbb 100644 --- a/games-emulation/xmess/xmess-0.104.ebuild +++ b/games-emulation/xmess/xmess-0.104.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/games-emulation/xmess/xmess-0.104.ebuild,v 1.1 2006/03/23 03:16:50 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xmess/xmess-0.104.ebuild,v 1.2 2006/03/26 08:42:47 mr_bones_ Exp $ inherit flag-o-matic toolchain-funcs eutils games @@ -173,7 +173,7 @@ src_compile() { src_install() { local disp=0, f - local utils="chdman imgtool dat2html" + local utils="chdman imgtool dat2html romcmp xml2info" sed -i \ -e "s:^PREFIX.*:PREFIX=${D}/usr:" \ @@ -202,12 +202,11 @@ src_install() { exeinto "${GAMES_LIBDIR}/${PN}" for f in $utils do - doexe $f || die "doexe failed" - rm -f "${D}${GAMES_BINDIR}"/$f 2> /dev/null + if [[ -f "${D}${GAMES_BINDIR}"/$f ]] ; then + doexe $f || die "doexe failed" + rm -f "${D}${GAMES_BINDIR}"/$f 2> /dev/null + fi done - if [[ ${PN} == "xmame" ]] ; then - doexe xml2info || die "doexe failed" - fi insinto "${GAMES_DATADIR}/${PN}" doins -r ctrlr || die "doins failed" |