diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2007-06-22 05:18:14 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2007-06-22 05:18:14 +0000 |
commit | 9df4da08d42b32ef5a97f10126291d1b898f47b6 (patch) | |
tree | a293234c13a1f561fba81c3740d180ab36229e1d /games-action/descent1-maps/descent1-maps-1.0.ebuild | |
parent | Version bump, see bug #181855. (diff) | |
download | gentoo-2-9df4da08d42b32ef5a97f10126291d1b898f47b6.tar.gz gentoo-2-9df4da08d42b32ef5a97f10126291d1b898f47b6.tar.bz2 gentoo-2-9df4da08d42b32ef5a97f10126291d1b898f47b6.zip |
tidy
(Portage version: 2.1.2.7)
Diffstat (limited to 'games-action/descent1-maps/descent1-maps-1.0.ebuild')
-rw-r--r-- | games-action/descent1-maps/descent1-maps-1.0.ebuild | 23 |
1 files changed, 5 insertions, 18 deletions
diff --git a/games-action/descent1-maps/descent1-maps-1.0.ebuild b/games-action/descent1-maps/descent1-maps-1.0.ebuild index 691a63bc4c28..c14a714e5608 100644 --- a/games-action/descent1-maps/descent1-maps-1.0.ebuild +++ b/games-action/descent1-maps/descent1-maps-1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/descent1-maps/descent1-maps-1.0.ebuild,v 1.5 2007/02/22 05:17:29 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/descent1-maps/descent1-maps-1.0.ebuild,v 1.6 2007/06/22 05:18:14 mr_bones_ Exp $ inherit games @@ -12,24 +12,11 @@ LICENSE="as-is" SLOT="0" KEYWORDS="x86" IUSE="" -DEPEND="|| ( - games-action/d1x-rebirth - games-action/d1x )" +DEPEND="games-action/d1x-rebirth" src_install () { - local dir="${GAMES_DATADIR}/d1x" - cd "${S}" || die - - # Install map data - insinto "${dir}" - for x in *.rdl *.msn; do - doins "${x}" || die - done - - # Install documentation - for x in *.txt; do - dodoc "${x}" || die - done - + insinto "${GAMES_DATADIR}/d1x" + doins *.rdl *.msn || die + dodoc *.txt prepgamesdirs } |