blob: d94ca29fd305a1d4ddea03733bb5397754bc589e (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/binkplayer/binkplayer-1.9p.ebuild,v 1.3 2010/01/04 12:11:05 ssuominen Exp $
DESCRIPTION="Bink Video! Player"
HOMEPAGE="http://www.radgametools.com/default.htm"
# No version on the archives and upstream has said they are not
# interested in providing versioned archives.
# SRC_URI="http://www.radgametools.com/down/Bink/BinkLinuxPlayer.zip"
SRC_URI="mirror://gentoo/${P}.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND="amd64? (
app-emulation/emul-linux-x86-sdl
app-emulation/emul-linux-x86-compat
)
x86? (
media-libs/libsdl
media-libs/sdl-mixer
~virtual/libstdc++-3.3
)"
S=${WORKDIR}
QA_DT_HASH="opt/bin/BinkPlayer"
QA_PRESTRIPPED="opt/bin/BinkPlayer"
src_install() {
into /opt
dobin BinkPlayer || die
}
|