diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-01-15 14:43:18 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-01-15 14:43:18 +0000 |
commit | b913e23426016124263243622b09fdea05b0fe8d (patch) | |
tree | dfe7c5ee0903811d46d4dc0c96a9ab2f7ec7f06e /games-action/parsec | |
parent | Fixed DEPEND for modular X, see bug #118306. Removed old version. (diff) | |
download | gentoo-2-b913e23426016124263243622b09fdea05b0fe8d.tar.gz gentoo-2-b913e23426016124263243622b09fdea05b0fe8d.tar.bz2 gentoo-2-b913e23426016124263243622b09fdea05b0fe8d.zip |
preserve execute permissions. bug #119081
(Portage version: 2.0.53)
Diffstat (limited to 'games-action/parsec')
-rw-r--r-- | games-action/parsec/ChangeLog | 5 | ||||
-rw-r--r-- | games-action/parsec/parsec-0197.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/games-action/parsec/ChangeLog b/games-action/parsec/ChangeLog index 318cfb0c4ad6..ae7db64417a0 100644 --- a/games-action/parsec/ChangeLog +++ b/games-action/parsec/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/parsec # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/parsec/ChangeLog,v 1.7 2006/01/02 18:52:14 metalgod Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/parsec/ChangeLog,v 1.8 2006/01/15 14:43:18 mr_bones_ Exp $ + + 15 Jan 2006; Michael Sterrett <mr_bones_@gentoo.org> parsec-0197.ebuild: + preserve execute permissions. bug #119081 02 Jan 2006; Luis Medinas <metalgod@gentoo.org> parsec-0197.ebuild: Fix package to work on amd64 thanks to Marti Raudsepp <integor@gmail.com>. diff --git a/games-action/parsec/parsec-0197.ebuild b/games-action/parsec/parsec-0197.ebuild index 03e759bcd6f1..37fc7637bfa0 100644 --- a/games-action/parsec/parsec-0197.ebuild +++ b/games-action/parsec/parsec-0197.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-action/parsec/parsec-0197.ebuild,v 1.8 2006/01/02 20:07:27 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/parsec/parsec-0197.ebuild,v 1.9 2006/01/15 14:43:18 mr_bones_ Exp $ inherit games @@ -31,8 +31,9 @@ src_install() { local dir=${GAMES_PREFIX_OPT}/${PN} dogamesbin "${FILESDIR}/parsec" || die "dogamesbin failed" - insinto "${dir}" - doins -r * || die "doins failed" + dodir "${dir}" + # preserve execute permissions. bug #119081 + cp -r * "${D}${dir}" || die "cp failed" sed -i \ -e "s:GENTOO_DIR:${dir}:" \ "${D}${GAMES_BINDIR}/parsec" \ |