diff options
Diffstat (limited to 'app-emulation/playonlinux')
-rw-r--r-- | app-emulation/playonlinux/ChangeLog | 10 | ||||
-rw-r--r-- | app-emulation/playonlinux/metadata.xml | 10 | ||||
-rw-r--r-- | app-emulation/playonlinux/playonlinux-3.5.ebuild | 92 |
3 files changed, 112 insertions, 0 deletions
diff --git a/app-emulation/playonlinux/ChangeLog b/app-emulation/playonlinux/ChangeLog new file mode 100644 index 000000000000..0847d846fbee --- /dev/null +++ b/app-emulation/playonlinux/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-emulation/playonlinux +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/playonlinux/ChangeLog,v 1.1 2009/05/16 10:48:22 volkmar Exp $ + +*playonlinux-3.5 (16 May 2009) + + 16 May 2009; Mounir Lamouri <volkmar@gentoo.org> +metadata.xml, + +playonlinux-3.5.ebuild: + Initial commit. See bug 213287 + diff --git a/app-emulation/playonlinux/metadata.xml b/app-emulation/playonlinux/metadata.xml new file mode 100644 index 000000000000..d44dc8ef07cc --- /dev/null +++ b/app-emulation/playonlinux/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>volkmar@gentoo.org</email> + <name>Mounir Lamouri</name> + </maintainer> +</pkgmetadata> + diff --git a/app-emulation/playonlinux/playonlinux-3.5.ebuild b/app-emulation/playonlinux/playonlinux-3.5.ebuild new file mode 100644 index 000000000000..564657089f29 --- /dev/null +++ b/app-emulation/playonlinux/playonlinux-3.5.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/playonlinux/playonlinux-3.5.ebuild,v 1.1 2009/05/16 10:48:22 volkmar Exp $ + +EAPI="1" + +inherit eutils python games + +MY_PN="PlayOnLinux" + +DESCRIPTION="Set of scripts to easily install and use Windows(tm) games and softwares" +HOMEPAGE="http://playonlinux.com/" +SRC_URI="http://www.playonlinux.com/script_files/${MY_PN}/${PV}/${MY_PN}_${PV}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="" +RDEPEND="app-emulation/wine + app-arch/cabextract + app-arch/unzip + dev-python/wxpython:2.8 + media-gfx/imagemagick + x11-terms/xterm" + +S=${WORKDIR}/${PN} + +# TODO: +# Having a real install script and let playonlinux use standard filesystem +# architecture to prevent having everything installed into GAMES_DATADIR +# It will let using LANGUAGES easily + +src_install() { + # all things without exec permissions + insinto "${GAMES_DATADIR}/${PN}" + doins -r themes lang lib etc || die "doins failed" + + # bash/ install + exeinto "${GAMES_DATADIR}/${PN}/bash" + doexe bash/* || die "doexe failed" + exeinto "${GAMES_DATADIR}/${PN}/bash/terminals" + doexe bash/terminals/* || die "doexe failed" + exeinto "${GAMES_DATADIR}/${PN}/bash/expert" + doexe bash/expert/* || die "doexe failed" + exeinto "${GAMES_DATADIR}/${PN}/bash/options" + doexe bash/options/* || die "doexe failed" + + # python/ install + exeinto "${GAMES_DATADIR}/${PN}/python" + doexe python/* || die "doexe failed" + exeinto "${GAMES_DATADIR}/${PN}/python/tools" + doexe python/tools/* || die "doexe failed" + # sub dir without exec permissions + insinto "${GAMES_DATADIR}/${PN}/python" + doins -r python/lib || die "doins failed" + + # daemon/ install + exeinto "${GAMES_DATADIR}/${PN}/daemon" + doexe daemon/* || "doexe failed" + + # main executable files + exeinto "${GAMES_DATADIR}/${PN}" + doexe ${PN} || die "doexe failed" + doexe ${PN}-pkg || die "doexe failed" + doexe ${PN}-daemon || die "doexe failed" + + # making a script to run app from ${GAMES_BINDIR} + echo "#!/bin/bash" > ${PN}_launcher + echo "cd \"${GAMES_DATADIR}/${PN}\" && ./${PN}" >> ${PN}_launcher + newgamesbin playonlinux_launcher playonlinux || die "newgamesbin failed" + + dodoc CHANGELOG || die "dodoc failed" + + doicon etc/${PN}.png || die "doicon failed" + make_desktop_entry ${PN} ${MY_PN} || die "make_desktop_entry failed" + prepgamesdirs +} + +pkg_postinst() { + games_pkg_postinst + python_mod_optimize "${ROOT}${GAMES_DATADIR}/${PN}" +} + +pkg_postrm() { + python_mod_cleanup "${ROOT}${GAMES_DATADIR}/${PN}" + + ewarn "Installed softwares and games with playonlinux have not been removed." + ewarn "To remove them, you can re-install playonlinux and remove them using it" + ewarn "or do it manually." +} |