blob: da676885c940aae8e32a5044b56e7a62956db485 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
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"
S="${WORKDIR}"
# distributable per http://www.radgametools.com/binkfaq.htm
LICENSE="freedist"
SLOT="0"
KEYWORDS="-* amd64 x86"
RDEPEND="
media-libs/libsdl[abi_x86_32(-)]
media-libs/openal[abi_x86_32(-)]"
BDEPEND="app-arch/unzip"
QA_PREBUILT="opt/bin/BinkPlayer"
src_install() {
into /opt
dobin BinkPlayer
}
|