blob: ece755a57f2dd934b082fe188b58b66985864a43 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/winex/winex-20020628.ebuild,v 1.12 2003/04/01 18:06:58 phoenix Exp $
DESCRIPTION="distribution of Wine with enhanced DirectX for gaming"
SRC_URI="ftp:/www.ibiblio.org/gentoo/distfiles/${P}.tar.bz2"
HOMEPAGE="http://www.transgaming.com/"
SLOT="0"
KEYWORDS="x86 -ppc"
LICENSE="Aladdin"
IUSE="cups opengl"
DEPEND="virtual/x11
sys-devel/gcc
sys-devel/flex
dev-util/yacc
opengl? ( virtual/opengl )
>=sys-libs/ncurses-5.2
cups? ( net-print/cups )
>=media-libs/freetype-2.0.0
dev-lang/tcl dev-lang/tk
!app-emulation/winex-transgaming"
S=${WORKDIR}/wine
src_compile() {
cd ${S}
local myconf
use opengl && myconf="--enable-opengl" || myconf="--disable-opengl"
[ -z $DEBUG ] && myconf="$myconf --disable-trace --disable-debug" || myconf="$myconf --enable-trace --enable-debug"
# there's no configure flag for cups, it's supposed to be autodetected
# use the default setting in ./configure over the /etc/make.conf setting
unset CFLAGS CXXFLAGS
./configure --prefix=/usr \
--exec_prefix=/usr/winex \
--sysconfdir=/etc/winex \
--mandir=/usr/winex/man \
--host=${CHOST} \
--enable-curses \
${myconf} || die
cd ${S}/programs/winetest
cp Makefile 1
sed -e 's:wine.pm:include/wine.pm:' 1 > Makefile
cd ${S}
make depend all || die
cd programs && emake || die
}
src_install () {
local WINEXMAKEOPTS="prefix=${D}/usr \
mandir=${D}/usr/winex/man \
includedir=${D}/usr/winex/include \
exec_prefix=${D}/usr/winex"
cd ${S}
make ${WINEXMAKEOPTS} install || die
cd ${S}/programs
make ${WINEXMAKEOPTS} install || die
# these .so's are strange. they are from the make in programs/ above,
# and are for apps built with winelib (windows sources built directly
# against wine). Apparently the sources go into a <program name>.so file
# and you run it via a symlink <program name> -> wine. Unfortunately both
# the symlink and the .so apparently must reside in /usr/bin.
cd ${D}/usr/winex/bin
chmod a-x *.so
# bash script For users with both wine and winex
# TODO: find out why this doesn't work
DESTTREE=/usr/winex dobin ${FILESDIR}/winex
cd ${S}
dodoc ANNOUNCE AUTHORS BUGS ChangeLog DEVELOPERS-HINTS LICENSE README
insinto /etc/winex
doins documentation/samples/*
doins ${S}/winedefault.reg
dodir /etc/skel/.winex
dosym /etc/winex/config /etc/skel/.winex/config
insinto /etc/env.d
doins ${FILESDIR}/81winex
}
pkg_postinst() {
einfo "If you are installing winex for the first time,
copy /etc/winex/config (global configuration) to ~/.wine/config
and edit that for per-user configuration. Otherwise, winex will
not run.
Also, run \"/usr/winex/bin/regapi setValue < /etc/winex/winedefault.reg\"
to setup
per-user registry for using winex. More info in
/usr/share/doc/winex-${PV}."
}
|