blob: 01e6281cfd4b36d89304f3ec7e26600b94a0767c (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
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="mirror://gentoo/${P}.zip"
# distributable per http://www.radgametools.com/binkfaq.htm
LICENSE="freedist"
SLOT="0"
KEYWORDS="-* amd64 x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND="
>=media-libs/libsdl-1.2.15-r5[abi_x86_32(-)]
>=media-libs/openal-1.15.1-r1[abi_x86_32(-)]"
S=${WORKDIR}
QA_PREBUILT="opt/bin/BinkPlayer"
src_install() {
into /opt
dobin BinkPlayer
}
|