diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-01-11 21:43:06 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-01-11 21:43:06 +0000 |
commit | 2bbe1e2d4aeaf45d27c60f6573d5122bb811a760 (patch) | |
tree | 007f8adcf1f05c4b5b0e9f3a0f722237aa548199 /games-fps/industri/industri-1.01.ebuild | |
parent | Fix libxml2 dep; bug #161626 (diff) | |
download | historical-2bbe1e2d4aeaf45d27c60f6573d5122bb811a760.tar.gz historical-2bbe1e2d4aeaf45d27c60f6573d5122bb811a760.tar.bz2 historical-2bbe1e2d4aeaf45d27c60f6573d5122bb811a760.zip |
Add games-fps/quake1-data to RDEPEND w/ USE=cdinstall, since it requires the data to play.
Package-Manager: portage-2.1.2_rc4-r1
Diffstat (limited to 'games-fps/industri/industri-1.01.ebuild')
-rw-r--r-- | games-fps/industri/industri-1.01.ebuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/games-fps/industri/industri-1.01.ebuild b/games-fps/industri/industri-1.01.ebuild index e5074fa2a85f..03d6dcb7dcfb 100644 --- a/games-fps/industri/industri-1.01.ebuild +++ b/games-fps/industri/industri-1.01.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/industri/industri-1.01.ebuild,v 1.12 2006/12/05 17:08:32 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/industri/industri-1.01.ebuild,v 1.13 2007/01/11 21:43:06 wolf31o2 Exp $ inherit toolchain-funcs games @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/industri/industri_BIN-${PV}-src.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" -IUSE="" +IUSE="cdinstall" RDEPEND="virtual/opengl media-libs/mesa @@ -21,6 +21,7 @@ RDEPEND="virtual/opengl x11-libs/libX11 x11-libs/libXxf86vm media-libs/libpng + cdinstall? ( games-fps/quake1-data ) sys-libs/zlib" DEPEND="${RDEPEND} x11-proto/xf86dgaproto @@ -73,6 +74,8 @@ src_install() { pkg_postinst() { games_pkg_postinst - einfo "Please setup your quake pak files before playing in" - einfo "${GAMES_DATADIR}/quake1" + if ! use cdinstall + then + elog "You need to copy pak0.pak to ${GAMES_DATADIR}/quake1 to play." + fi } |