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 | 1492a6a9bf3df51c3a45fc0315a137084daeedd5 (patch) | |
tree | 64df2183c33af9e3c31853d7fcdf78ddd31b4de7 /games-fps/industri | |
parent | Fix libxml2 dep; bug #161626 (diff) | |
download | gentoo-2-1492a6a9bf3df51c3a45fc0315a137084daeedd5.tar.gz gentoo-2-1492a6a9bf3df51c3a45fc0315a137084daeedd5.tar.bz2 gentoo-2-1492a6a9bf3df51c3a45fc0315a137084daeedd5.zip |
Add games-fps/quake1-data to RDEPEND w/ USE=cdinstall, since it requires the data to play.
(Portage version: 2.1.2_rc4-r1)
Diffstat (limited to 'games-fps/industri')
-rw-r--r-- | games-fps/industri/ChangeLog | 8 | ||||
-rw-r--r-- | games-fps/industri/industri-1.01.ebuild | 13 |
2 files changed, 14 insertions, 7 deletions
diff --git a/games-fps/industri/ChangeLog b/games-fps/industri/ChangeLog index 007fd94418fb..122a9d2723a1 100644 --- a/games-fps/industri/ChangeLog +++ b/games-fps/industri/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-fps/industri -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/industri/ChangeLog,v 1.6 2006/12/05 17:08:32 wolf31o2 Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/industri/ChangeLog,v 1.7 2007/01/11 21:43:06 wolf31o2 Exp $ + + 11 Jan 2007; Chris Gianelloni <wolf31o2@gentoo.org> industri-1.01.ebuild: + Add games-fps/quake1-data to RDEPEND w/ USE=cdinstall, since it requires the + data to play. 05 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org> industri-1.01.ebuild: Removing old virtual/x11 dependency. 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 } |