diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-27 03:37:37 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-27 03:37:37 +0000 |
commit | 41c84cec0a7453962e05a1a05791782d1b782c17 (patch) | |
tree | 94ad1120b9197459af4e3f390d961f9ed6c4691c /games-roguelike | |
parent | clean older ebuild (Manifest recommit) (diff) | |
download | gentoo-2-41c84cec0a7453962e05a1a05791782d1b782c17.tar.gz gentoo-2-41c84cec0a7453962e05a1a05791782d1b782c17.tar.bz2 gentoo-2-41c84cec0a7453962e05a1a05791782d1b782c17.zip |
IUSE; tidy
Diffstat (limited to 'games-roguelike')
-rw-r--r-- | games-roguelike/adom/adom-1.1.1-r1.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/games-roguelike/adom/adom-1.1.1-r1.ebuild b/games-roguelike/adom/adom-1.1.1-r1.ebuild index eed5e7b30533..e018a8bbc89d 100644 --- a/games-roguelike/adom/adom-1.1.1-r1.ebuild +++ b/games-roguelike/adom/adom-1.1.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/adom/adom-1.1.1-r1.ebuild,v 1.3 2004/03/10 13:40:06 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/adom/adom-1.1.1-r1.ebuild,v 1.4 2004/05/27 03:37:37 mr_bones_ Exp $ inherit games eutils @@ -11,20 +11,20 @@ SRC_URI="http://www.adom.de/adom/download/linux/${P//.}-elf.tar.gz" LICENSE="adom" SLOT="0" KEYWORDS="x86 ~amd64" +IUSE="" DEPEND="virtual/glibc >=sys-libs/ncurses-5.0 amd64? ( app-emulation/emul-linux-x86-baselibs )" -S=${WORKDIR}/${PN} +S="${WORKDIR}/${PN}" src_install() { - exeinto ${GAMES_PREFIX_OPT}/bin + exeinto "${GAMES_PREFIX_OPT}/bin" doexe adom - dodir ${GAMES_STATEDIR}/${PN} - keepdir ${GAMES_STATEDIR}/${PN} - echo ${GAMES_STATEDIR}/${PN} > adom_ds.cfg + keepdir "${GAMES_STATEDIR}/${PN}" + echo "${GAMES_STATEDIR}/${PN}" > adom_ds.cfg insinto /etc doins adom_ds.cfg @@ -32,5 +32,5 @@ src_install() { dodoc adomfaq.txt manual.doc readme.1st prepgamesdirs - fperms g+w ${GAMES_STATEDIR}/${PN} + fperms g+w "${GAMES_STATEDIR}/${PN}" } |