blob: b952122696f4eef48e99c1c89f182f75f57cc2c6 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/binkplayer/binkplayer-1.8n.ebuild,v 1.1 2006/08/22 07:34:57 mr_bones_ 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="media-libs/libsdl
media-libs/sdl-mixer
amd64? ( app-emulation/emul-linux-x86-sdl )"
S=${WORKDIR}
src_install() {
into /opt
dobin BinkPlayer || die "dobin failed"
}
|