diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-12 21:23:03 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-12 21:23:03 +0000 |
commit | 63c53b0763106e31e01db8ebf5285672ed07c04e (patch) | |
tree | 196d3547a63891e137508ca4d4f6f6aabd93b676 /games-action | |
parent | Stable on amd64 (diff) | |
download | gentoo-2-63c53b0763106e31e01db8ebf5285672ed07c04e.tar.gz gentoo-2-63c53b0763106e31e01db8ebf5285672ed07c04e.tar.bz2 gentoo-2-63c53b0763106e31e01db8ebf5285672ed07c04e.zip |
fix executable permissions #95870
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/armagetronad/armagetronad-0.2.7.1.ebuild | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/games-action/armagetronad/armagetronad-0.2.7.1.ebuild b/games-action/armagetronad/armagetronad-0.2.7.1.ebuild index 3e46fc1c8645..5ab334471d73 100644 --- a/games-action/armagetronad/armagetronad-0.2.7.1.ebuild +++ b/games-action/armagetronad/armagetronad-0.2.7.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/armagetronad/armagetronad-0.2.7.1.ebuild,v 1.2 2005/06/11 22:08:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/armagetronad/armagetronad-0.2.7.1.ebuild,v 1.3 2005/06/12 21:23:03 vapier Exp $ inherit flag-o-matic eutils games @@ -41,18 +41,17 @@ src_compile() { } src_install() { - dodoc COPYING.txt dohtml doc/*.html docinto html/net dohtml doc/net/*.html newicon tron.ico ${PN}.ico - insinto "${GAMES_LIBDIR}/${PN}" + exeinto "${GAMES_LIBDIR}/${PN}" if use dedicated && ! use opengl; then - doins src/tron/${PN}-dedicated || die "copying files" + doexe src/tron/${PN}-dedicated || die "copying files" else - doins src/tron/${PN} || die "copying files" + doexe src/tron/${PN} || die "copying files" fi - doins src/network/armagetronad-* || die "copying files" + doexe src/network/armagetronad-* || die "copying files" insinto "${GAMES_DATADIR}/${PN}" if use dedicated && ! use opengl; then doins -r log language || die "copying files" |