blob: a8b1f9f481727929409362bbbfac92b9b84a74bf (
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-2020 Gentoo Authors
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
DESCRIPTION="Micro Linux distro to boot from CD and play video files localized in CD root"
HOMEPAGE="http://movix.sourceforge.net"
SRC_URI="mirror://sourceforge/movix/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
# Don't use Gentoo mirrors
RESTRICT="mirror"
RDEPEND="app-cdr/cdrtools"
DEPEND="dev-lang/perl
app-alternatives/awk"
src_install() {
emake -j1 DESTDIR="${D}" install
dodoc AUTHORS ChangeLog README* TODO
# Mplayer is no longer built with support for win32 codecs in Gentoo
#dosym /usr/lib/win32 /usr/share/emovix/codecs
}
|