diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-03-24 21:22:09 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-03-24 21:22:09 +0000 |
commit | 5c20f219599266b99d7bfffb695c38a70787abe5 (patch) | |
tree | 2c4b825cdcaeb5b3dd0ef998b5315479820f683d /games-action/heavygear2 | |
parent | Mark 1.0 ~ia64 (diff) | |
download | historical-5c20f219599266b99d7bfffb695c38a70787abe5.tar.gz historical-5c20f219599266b99d7bfffb695c38a70787abe5.tar.bz2 historical-5c20f219599266b99d7bfffb695c38a70787abe5.zip |
Moved games_pkg_postinst to the beginning of pkg_postinst.
Package-Manager: portage-2.1_pre6-r6
Diffstat (limited to 'games-action/heavygear2')
-rw-r--r-- | games-action/heavygear2/ChangeLog | 8 | ||||
-rw-r--r-- | games-action/heavygear2/heavygear2-1.0b.ebuild | 11 |
2 files changed, 11 insertions, 8 deletions
diff --git a/games-action/heavygear2/ChangeLog b/games-action/heavygear2/ChangeLog index a307c39ee7eb..ff5f1d965c64 100644 --- a/games-action/heavygear2/ChangeLog +++ b/games-action/heavygear2/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/heavygear2 -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/heavygear2/ChangeLog,v 1.11 2005/10/21 17:26:30 wolf31o2 Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/heavygear2/ChangeLog,v 1.12 2006/03/24 21:19:11 wolf31o2 Exp $ + + 24 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org> + heavygear2-1.0b.ebuild: + Moved games_pkg_postinst to the beginning of pkg_postinst. 21 Oct 2005; Chris Gianelloni <wolf31o2@gentoo.org> heavygear2-1.0b.ebuild: diff --git a/games-action/heavygear2/heavygear2-1.0b.ebuild b/games-action/heavygear2/heavygear2-1.0b.ebuild index 07dffad0b754..67df0918dd4c 100644 --- a/games-action/heavygear2/heavygear2-1.0b.ebuild +++ b/games-action/heavygear2/heavygear2-1.0b.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-action/heavygear2/heavygear2-1.0b.ebuild,v 1.11 2005/10/21 17:26:30 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/heavygear2/heavygear2-1.0b.ebuild,v 1.12 2006/03/24 21:19:11 wolf31o2 Exp $ inherit eutils games @@ -65,20 +65,19 @@ 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 hg2 ./hg2 "${dir}" "${dir}" newicon ${CDROM_ROOT}/icon.xpm hg2.xpm + games_make_wrapper hg2 ./hg2 "${dir}" "${dir}" + make_desktop_entry hg2 "Heavy Gear II" hg2.xpm prepgamesdirs - make_desktop_entry hg2 "Heavy Gear II" hg2.xpm } pkg_postinst() { + games_pkg_postinst if ! use videos ; then einfo "You will need to mount the Heavy Gear II CD to see the cut-scene videos." echo fi einfo "To play the game run:" einfo " hg2" - - games_pkg_postinst } |