diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-03-24 22:21:46 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-03-24 22:21:46 +0000 |
commit | 4055578263e7543417ddf3512104d625ad60f5d1 (patch) | |
tree | d832ac9063e57ca906ecf0aa532ca0258f092b2d /games-fps/tribes2 | |
parent | Mark 3.4.3 stable on ia64 (diff) | |
download | historical-4055578263e7543417ddf3512104d625ad60f5d1.tar.gz historical-4055578263e7543417ddf3512104d625ad60f5d1.tar.bz2 historical-4055578263e7543417ddf3512104d625ad60f5d1.zip |
Moved games_pkg_postinst to beginning of pkg_postinst.
Package-Manager: portage-2.1_pre6-r6
Diffstat (limited to 'games-fps/tribes2')
-rw-r--r-- | games-fps/tribes2/ChangeLog | 7 | ||||
-rw-r--r-- | games-fps/tribes2/tribes2-25034.ebuild | 12 |
2 files changed, 10 insertions, 9 deletions
diff --git a/games-fps/tribes2/ChangeLog b/games-fps/tribes2/ChangeLog index d03d8f616342..82805e31e9bb 100644 --- a/games-fps/tribes2/ChangeLog +++ b/games-fps/tribes2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-fps/tribes2 -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/tribes2/ChangeLog,v 1.10 2005/10/21 17:42:39 wolf31o2 Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-fps/tribes2/ChangeLog,v 1.11 2006/03/24 22:17:51 wolf31o2 Exp $ + + 24 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org> tribes2-25034.ebuild: + Moved games_pkg_postinst to beginning of pkg_postinst. 21 Oct 2005; Chris Gianelloni <wolf31o2@gentoo.org> tribes2-25034.ebuild: Added addition dir variable to games_make_wrapper for bug #109793. diff --git a/games-fps/tribes2/tribes2-25034.ebuild b/games-fps/tribes2/tribes2-25034.ebuild index a99fc5637c7e..b443693024a4 100644 --- a/games-fps/tribes2/tribes2-25034.ebuild +++ b/games-fps/tribes2/tribes2-25034.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/tribes2/tribes2-25034.ebuild,v 1.10 2005/10/21 17:42:39 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/tribes2/tribes2-25034.ebuild,v 1.11 2006/03/24 22:17:51 wolf31o2 Exp $ inherit eutils games @@ -59,17 +59,15 @@ src_install() { # we run touch on ${D} so as to make sure portage doesnt do any such thing find ${Ddir} -exec touch '{}' \; - games_make_wrapper t2launch ./t2launch "${dir}" "${dir}" - newicon ${CDROM_ROOT}/icon.xpm tribes2.xpm + games_make_wrapper t2launch ./t2launch "${dir}" "${dir}" + make_desktop_entry t2launch "Tribes 2" tribes2.xpm prepgamesdirs - make_desktop_entry t2launch "Tribes 2" tribes2.xpm } pkg_postinst() { + games_pkg_postinst einfo "To play the game run:" einfo " t2launch" - - games_pkg_postinst } |