blob: 79548ffc50258df3b51191f0afcff068f717102c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/cedega/cedega-5.0.1.ebuild,v 1.1 2005/11/13 22:28:28 vapier Exp $
MY_P="cedega-small-${PV}"
DESCRIPTION="Cedega replaces WineX, a distribution of Wine with enhanced DirectX for gaming"
HOMEPAGE="http://www.transgaming.com/"
SRC_URI="${MY_P}.tgz"
LICENSE="Aladdin"
SLOT="3"
KEYWORDS="-* amd64 x86"
IUSE="cups opengl"
RESTRICT="fetch"
RDEPEND="virtual/x11
opengl? ( virtual/opengl )
>=sys-libs/ncurses-5.2
cups? ( net-print/cups )
>=media-libs/freetype-2.0.0
>=dev-lang/python-2.3
>=dev-python/pygtk-2.4
!app-emulation/point2play
amd64? ( app-emulation/emul-linux-x86-xlibs
app-emulation/emul-linux-x86-soundlibs )"
pkg_nofetch() {
einfo "Please download the appropriate Cedega archive (${MY_P}.tgz)"
einfo "from ${HOMEPAGE} (requires a Transgaming subscription)"
einfo
einfo "Then put the file in ${DISTDIR}"
}
src_install() {
rm -r "${WORKDIR}"/usr/share/gnome
mv "${WORKDIR}"/usr "${D}"/ || die "mv usr"
}
pkg_postinst() {
einfo "Run /usr/bin/cedega to start cedega as any non-root user."
einfo "This is a wrapper-script which will take care of creating"
einfo "an initial environment and do everything else."
einfo ""
einfo "Optionally, if you have binfmt_misc compiled into your kernel,"
einfo "you can add the following to /etc/sysctl.conf to allow direct"
einfo "excecution of Windows binaries through the cedega wrapper:"
einfo ""
einfo " fs.binfmt_misc.register = :WINEXE:M::MZ::/usr/bin/cedega:"
einfo ""
einfo "You will also need to mount the /proc/sys/fs/binfmt_misc"
einfo "file system in order for this to work. You can add the following"
einfo "line into your /etc/fstab file:"
einfo ""
einfo " none /proc/sys/fs/binfmt_misc binfmt_misc defaults 0 0"
einfo ""
einfo "Note: Binaries will still need excecutable permissions to run."
einfo "Note: If binfmt_misc is compiled as a module, make sure you"
einfo "have it loaded on startup by adding it to"
einfo "/etc/modules.autoload.d/<your kernel version>"
}
|