diff options
author | 2006-10-05 20:51:35 +0000 | |
---|---|---|
committer | 2006-10-05 20:51:35 +0000 | |
commit | 6b63e4c38215af9287035e4eec082a145ddb421a (patch) | |
tree | 27bbb8ec54223003f9759c58f323858ead5eebf3 /games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild | |
parent | Added games-strategy/heroes3 and games-strategy/heroes3-demo. (diff) | |
download | historical-6b63e4c38215af9287035e4eec082a145ddb421a.tar.gz historical-6b63e4c38215af9287035e4eec082a145ddb421a.tar.bz2 historical-6b63e4c38215af9287035e4eec082a145ddb421a.zip |
Initial import. Ebuild by Paul Bredbury <brebs@sent.com>. Closing bug #141746.
Package-Manager: portage-2.1.2_pre1-r4
Diffstat (limited to 'games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild')
-rw-r--r-- | games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild b/games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild new file mode 100644 index 000000000000..6c97fddba333 --- /dev/null +++ b/games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/heroes3-demo/heroes3-demo-1.3.1a.ebuild,v 1.1 2006/10/05 20:51:35 wolf31o2 Exp $ + +inherit eutils games + +MY_PN=${PN%-demo} + +DESCRIPTION="turn-based 2D medieval combat" +HOMEPAGE="http://www.lokigames.com/products/heroes3/" +SRC_URI="mirror://lokigames/loki_demos/${PN}.run" + +LICENSE="as-is" +SLOT="0" + +# Should also work on ppc +KEYWORDS="~amd64 ~x86" +IUSE="" +RESTRICT="strip" + +DEPEND="games-util/loki_patch" +RDEPEND=">=sys-libs/lib-compat-loki-0.2 + x86? ( + x11-libs/libX11 ) + amd64? ( + app-emulation/emul-linux-x86-xlibs + app-emulation/emul-linux-x86-compat )" + +S=${WORKDIR} + +src_unpack() { + unpack_makeself +} + +src_install() { + # Apply patch + loki_patch patch.dat data/ || die "loki patch failed" + + local dir="${GAMES_PREFIX_OPT}/${PN}" + local demo="data/demos/${MY_PN}_demo" + + local exe_stub="${MY_PN}_demo" + if use ppc ; then + exe="${exe_stub}.ppc" + else + exe="${exe_stub}.x86" + fi + + insinto "${dir}" + exeinto "${dir}" + doins -r "${demo}"/* || die "doins ${demo} failed" + rm "${D}/${dir}"/{${exe_stub}*,*.sh} || die "rm executables failed" + doexe "${demo}/${exe}" || die "doexe ${exe} failed" + + einfo "Linking libs provided by 'sys-libs/lib-compat-loki' to '${dir}'." + dosym /lib/loki_ld-linux.so.2 ${dir}/ld-linux.so.2 || die "dosym" + dosym /usr/lib/loki_libc.so.6 ${dir}/libc.so.6 || die "dosym" + dosym /usr/lib/loki_libnss_files.so.2 ${dir}/libnss_files.so.2 \ + || die "dosym" + + games_make_wrapper ${PN} "./${exe}" "${dir}" + newicon "${demo}/icon.xpm" ${PN}.png || die "newicon icon.xpm failed" + make_desktop_entry ${PN} "Heroes of Might and Magic III (Demo)" ${PN}.png + + prepgamesdirs +} |