diff options
author | 2006-06-27 20:22:47 +0000 | |
---|---|---|
committer | 2006-06-27 20:22:47 +0000 | |
commit | d0c582fbf0576d39d3725c4a078e22fb544cb0ff (patch) | |
tree | 5012341b7fc60dda24b01f41e73667b662bd257a /games-fps/quake2-textures/quake2-textures-0_beta8.ebuild | |
parent | remove defunct USE flag mmx2 (bug #138232) (diff) | |
download | historical-d0c582fbf0576d39d3725c4a078e22fb544cb0ff.tar.gz historical-d0c582fbf0576d39d3725c4a078e22fb544cb0ff.tar.bz2 historical-d0c582fbf0576d39d3725c4a078e22fb544cb0ff.zip |
Initial import. Ebuild by Paul Bredbury <brebs@sent.com>. Closing bug #137529.
Package-Manager: portage-2.1.1_pre1-r2
Diffstat (limited to 'games-fps/quake2-textures/quake2-textures-0_beta8.ebuild')
-rw-r--r-- | games-fps/quake2-textures/quake2-textures-0_beta8.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/games-fps/quake2-textures/quake2-textures-0_beta8.ebuild b/games-fps/quake2-textures/quake2-textures-0_beta8.ebuild new file mode 100644 index 000000000000..50a5809e84d8 --- /dev/null +++ b/games-fps/quake2-textures/quake2-textures-0_beta8.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/quake2-textures/quake2-textures-0_beta8.ebuild,v 1.1 2006/06/27 20:22:47 wolf31o2 Exp $ + +inherit eutils versionator games + +MY_PV=$(get_version_component_range 2-2) +MY_PV=${MY_PV/beta/} + +DESCRIPTION="High-resolution textures for Quake 2" +HOMEPAGE="http://jdolan.dyndns.org/trac/wiki/Retexture" +SRC_URI="http://jdolan.dyndns.org/jaydolan/tmp/retexture/pak${MY_PV}.zip" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND="" +DEPEND="app-arch/unzip" + +S=${WORKDIR} +dir=${GAMES_DATADIR}/quake2 + +src_install() { + insinto "${dir}"/baseq2 + doins *.pak || die "doins *.pak failed" + + dodoc README + + prepgamesdirs +} + +pkg_postinst() { + games_pkg_postinst + + einfo "Use a recent Quake 2 client to take advantage of" + einfo "these textures, e.g. qudos or quake2-icculus." + echo +} |