blob: 07afd3b479848f298a291d1a748f1484f2446766 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/point2play/point2play-1.3b.ebuild,v 1.2 2004/06/25 11:56:00 agriffis Exp $
inherit eutils
MY_P=${PN}-small-1.3-2
DESCRIPTION="graphical frontend for WineX"
HOMEPAGE="http://www.transgaming.com/"
SRC_URI="${MY_P}.tgz"
LICENSE="point2play"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RESTRICT="fetch"
RDEPEND="virtual/x11
>=dev-lang/python-2.3
>=dev-python/pygtk-1.99.16
>=x11-themes/gtk-engines-metal-2.2.0"
S=${WORKDIR}
pkg_nofetch() {
einfo "Please download the appropriate Point2Play archive (${MY_P}.tgz)"
einfo "from ${HOMEPAGE} (requires a Transgaming subscription)"
echo
einfo "The archive should then be placed into ${DISTDIR}"
}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/1.3-fix-sound-test.patch
}
src_install() {
mv usr ${D}/
mv etc/X11/applnk ${D}/usr/share
}
|